summaryrefslogtreecommitdiffstats
path: root/makevms.com
AgeCommit message (Collapse)Author
2001-03-02Introduce the possibility to access global variables throughRichard Levitte
functions on platform were that's the best way to handle exporting global variables in shared libraries. To enable this functionality, one must configure with "EXPORT_VAR_AS_FN" or defined the C macro "OPENSSL_EXPORT_VAR_AS_FUNCTION" in crypto/opensslconf.h (the latter is normally done by Configure or something similar). To implement a global variable, use the macro OPENSSL_IMPLEMENT_GLOBAL in the source file (foo.c) like this: OPENSSL_IMPLEMENT_GLOBAL(int,foo)=1; OPENSSL_IMPLEMENT_GLOBAL(double,bar); To declare a global variable, use the macros OPENSSL_DECLARE_GLOBAL and OPENSSL_GLOBAL_REF in the header file (foo.h) like this: OPENSSL_DECLARE_GLOBAL(int,foo); #define foo OPENSSL_GLOBAL_REF(foo) OPENSSL_DECLARE_GLOBAL(double,bar); #define bar OPENSSL_GLOBAL_REF(bar) The #defines are very important, and therefore so is including the header file everywere where the defined globals are used. The macro OPENSSL_EXPORT_VAR_AS_FUNCTION also affects the definition of ASN.1 items, but that structure is a bt different. The largest change is in util/mkdef.pl which has been enhanced with better and easier to understand logic to choose which symbols should go into the Windows .def files as well as a number of fixes and code cleanup (among others, algorithm keywords are now sorted lexicographically to avoid constant rewrites).
2001-02-22e_os.h does not belong with the exported headers. Do not put it thereRichard Levitte
and make all files the depend on it include it without prefixing it with openssl/. This means that all Makefiles will have $(TOP) as one of the include directories.
2001-02-20Let VMS catch up.Richard Levitte
2000-12-28Update VMS build procedures to match the current status.Richard Levitte
2000-11-22Addapt the VMS scripts to the changes in the Makefiles.Richard Levitte
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte
away now...
2000-10-26Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte
At the same time, add VMS support for Rijndael.
2000-09-14Remove engine stuff that was erroneously put in the main trunk.Richard Levitte
2000-09-08Synchronise the VMS build with the Unix one.Richard Levitte
2000-09-07It's not just VMS that needs some symbols to be hacked. Let'sRichard Levitte
centralise those hacks in crypto/symhacks.h and use it everywhere it's needed.
2000-06-18Modifications for VMS.Richard Levitte
2000-03-14Make it possible top build just a part of the crypto library.Richard Levitte
2000-02-28Forgot to check correctly for the new optionsRichard Levitte
2000-02-27No, the VAX is not a 64 bit architecture.Richard Levitte
2000-02-27Stop logging all the files that are copied all over the place...Richard Levitte
2000-02-27New "target": CONFIG. This will build the opensslconf.h file fromRichard Levitte
what is known about VAX and Alpha running VMS, and from the opensslconf.h.in (in VMS often named OPENSSLCONF.H_IN) file.
2000-01-18Build the test apps after all of the library has been built.Richard Levitte
2000-01-17Build the crypto test applications as well.Richard Levitte
1999-11-12Some crypto applications are now being built on Unix, so they should on VMS ↵Richard Levitte
as well. Not by default, however.
1999-07-28VMS updates.Ulf Möller
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-05-24Last minute VMS updates for 0.9.3.Bodo Möller
Submitted by: Richard Levitte
1999-05-20Bring VMS in sync with the recent changes.Ulf Möller
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-05-13VMS support.Ulf Möller
Submitted by: Richard Levitte <richard@levitte.org>
1998-12-21Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall