aboutsummaryrefslogtreecommitdiff
path: root/makevms.com
AgeCommit message (Collapse)AuthorFilesLines
2001-05-14ui_compat.h was forgotten in the "symlinking" routine.Richard Levitte1-1/+1
2001-05-06Add a general user interface API. This is designed to replace thingsRichard Levitte1-1/+2
like des_read_password and friends (backward compatibility functions using this new API are provided). The purpose is to remove prompting functions from the DES code section as well as provide for prompting through dialog boxes in a window system and the like.
2001-04-04OpenVMS/Alpha should use 64 bits. If nothing else, there'sRichard Levitte1-1/+1
performance to gain.
2001-03-09Use 32bit longs on Alpha as well, because that's what the VMSRichard Levitte1-1/+1
assembler code works with. Of course, the assembler code could differ between platforms. That might happen in the future.
2001-03-05Update the VMS build scripts for ECRichard Levitte1-1/+2
2001-03-02Introduce the possibility to access global variables throughRichard Levitte1-0/+5
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 Levitte1-1/+1
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 Levitte1-2/+55
2000-12-28Update VMS build procedures to match the current status.Richard Levitte1-2/+2
2000-11-22Addapt the VMS scripts to the changes in the Makefiles.Richard Levitte1-1/+1
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte1-3/+6
away now...
2000-10-26Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte1-1/+3
At the same time, add VMS support for Rijndael.
2000-09-14Remove engine stuff that was erroneously put in the main trunk.Richard Levitte1-2/+1
2000-09-08Synchronise the VMS build with the Unix one.Richard Levitte1-6/+12
2000-09-07It's not just VMS that needs some symbols to be hacked. Let'sRichard Levitte1-6/+1
centralise those hacks in crypto/symhacks.h and use it everywhere it's needed.
2000-06-18Modifications for VMS.Richard Levitte1-1/+1
2000-03-14Make it possible top build just a part of the crypto library.Richard Levitte1-1/+15
2000-02-28Forgot to check correctly for the new optionsRichard Levitte1-3/+4
2000-02-27No, the VAX is not a 64 bit architecture.Richard Levitte1-1/+1
2000-02-27Stop logging all the files that are copied all over the place...Richard Levitte1-2/+2
2000-02-27New "target": CONFIG. This will build the opensslconf.h file fromRichard Levitte1-8/+139
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 Levitte1-1/+5
2000-01-17Build the crypto test applications as well.Richard Levitte1-1/+1
1999-11-12Some crypto applications are now being built on Unix, so they should on VMS ↵Richard Levitte1-1/+1
as well. Not by default, however.
1999-07-28VMS updates.Ulf Möller1-14/+21
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-05-24Last minute VMS updates for 0.9.3.Bodo Möller1-1/+2
Submitted by: Richard Levitte
1999-05-20Bring VMS in sync with the recent changes.Ulf Möller1-1/+1
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-05-13VMS support.Ulf Möller1-64/+897
Submitted by: Richard Levitte <richard@levitte.org>
1998-12-21Import of old SSLeay release: SSLeay 0.8.1bRalf S. Engelschall1-0/+65