summaryrefslogtreecommitdiffstats
path: root/Makefile.org
AgeCommit message (Collapse)Author
2001-08-10Apply the Tru64 patch from Tim Mooney <mooney@dogbert.cc.ndsu.NoDak.edu>Richard Levitte
His comments are: 1) Changes all references for `True64' to be `Tru64', which is the correct spelling for the OS name. 2) Makes `alpha-cc' be the same as `alpha164-cc', and adds an `alphaold-cc' entry that is the same as the previous `alpha-cc'. The reason is that most people these days are using the newer compiler, so it should be the default. 3) Adds a bit of commentary to Configure, regarding the name changes of the OS over the years, so it's not so confusing to people that haven't been with the OS for a while. 4) Adds an `alpha-cc-rpath' target (which is *not* selected automatically by Configure under any circumstance) that builds an RPATH into the shared libraries. This is explained in the comment in Configure. It's very very useful for people that want it, and people that don't want it just shouldn't choose that target. 5) Adds the `-pthread' flag as the best way to get POSIX thread support from the newer compiler. 6) Updates the Makefile targets, so that when the `alpha164-cc', `alpha-cc', or `alpha-cc-rpath' target is what Configure is set to use, it uses a Makefile target that includes the `-msym' option when building the shared library. This is a performance enhancement. 7) Updates `config' so that if it detects you're running version 4 or 5 of the OS, it automatically selects `alpha-cc', but uses `alphaold-cc' for versions 1-3 of the OS. 8) Updates the comment in opensslv.h, fixing both the OS name typo and adding a reference to IRIX 6.x, since the shared library semantics are virtually identical there.
2001-07-09Patches from Vern Staats <staatsvr@asc.hpc.mil> to get Kerberos 5 inRichard Levitte
SSL according to RFC 2712. His comment is: This is a patch to openssl-SNAP-20010702 to support Kerberized SSL authentication. I'm expecting to have the full kssl-0.5 kit up on sourceforge by the end of the week. The full kit includes patches for mod-ssl, apache, and a few text clients. The sourceforge URL is http://sourceforge.net/projects/kssl/ . Thanks to a note from Simon Wilkinson I've replaced my KRB5 AP_REQ message with a real KerberosWrapper struct. I think this is fully RFC 2712 compliant now, including support for the optional authenticator field. I also added openssl-style ASN.1 macros for a few Kerberos structs; see crypto/krb5/ if you're interested.
2001-06-05Small detail about AIX forgotten...Richard Levitte
2001-05-06Add a general user interface API. This is designed to replace thingsRichard Levitte
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-27A method to create shared libraries on AIX, and according toRichard Levitte
"Howard Chu" <hyc@highlandsun.com>, it may be general enough to work on any Unixly system.
2001-04-26Linux shared libraries can be linked with debug symbols.Richard Levitte
Tru64 shared libraries can be linked with static libraries.
2001-04-12undo previous change ...Bodo Möller
2001-04-12update from 0.9.6aBodo Möller
2001-04-08'||', '&&' and 'test -x' apparently don't work on Ultrix;Bodo Möller
also 'test' appears to be available as '[' only in 'if' conditions.
2001-04-04Incorporate some changes that make OpenSSL compilable in CygWin.Richard Levitte
2001-04-04Make do_bsd-gcc-shared depend on do_gnu-shared instead of the non-existent ↵Richard Levitte
linux-shared
2001-03-24When using the native tools on Solaris, make damn sure the native ldRichard Levitte
is used, even if the user has GNU ld earlier in his $PATH.
2001-03-24ln on Solaris expects -f to come before -s.Richard Levitte
The linux-shared method is actually gcc-specific, so call it gnu-shared as well.
2001-03-22We really have no need for PEX_LIBS, so empty it.Richard Levitte
2001-03-15Minimise the amount of -L. when linking the shared libraries. ItRichard Levitte
seems like some Unixen (SCO) have opinions about too many -L.
2001-03-13typoBodo Möller
2001-03-11Forcibly enable memory leak checking during "make test"Bodo Möller
2001-03-06Change obj_... generation so that it does not generate rubbish orBodo Möller
abort with errors if no name is defined for some object, which was the case for 'pilotAttributeType 27'. Also avoid this very situation by assigning the name 'pilotAttributeType27'.
2001-03-05Move ec.h to ec2.h because it is not compatible with what we will use.Bodo Möller
Add EC vaporware: change relevant Makefiles and add some empty source files. "make update".
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-19Make all configuration macros available for application by makingRichard Levitte
sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
2001-01-10Pass ${PERL} down to the Makefile in sub-directory "test" inBodo Möller
"make tests"
2001-01-10Use $(PERL) in place of hard-coded perlBodo Möller
2000-11-30First tentative impementation of Kerberos 5 cryptos and keys for SSL/TLS. ↵Richard Levitte
Implemented by Vern Staats <staatsvr@asc.hpc.mil>, further hacked and distributed by Jeffrey Altman <jaltnab@columbia.edu>
2000-11-14Some platforms (namely HP-UX) require the 'x' bit set for shared libraries.Lutz Jänicke
For performance reasons, it is also recommended to make the (mmap'ed) shared library 'read-only'. -> New permissions for installed shared libraries = 555 This doesn't hurt anybody, provided the installation is performed with 'cp -f' :-)
2000-11-13HP-UX shared libraries do not build any longer, as EX_LIBS containsLutz Jänicke
"-Wl,+s" instead of +s: * Hardcoded necessary references to -ldld/-ldl into the build rules and removed EX_LIBS. HP-UX records the pathnames of dependent libraries when the shared libs are built, so that ./libcrypto.sl... is recorded in libssl.sl..., with "./" not being resolvable when running an application linked against -lssl: * Build libssl without explicit reference to libcrypto, applications will be linked with "-lssl -lcrypto" anyway. Document these informations in Makefile.org.
2000-11-12For a long time, I've wanted to be able to easily run one or a fewRichard Levitte
individual tests. I finally got myself to implement it...
2000-11-08Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte
away now...
2000-11-06Make sure that shared libraries get the internal name engine with theRichard Levitte
full version number and not just 0. This should mark the shared libraries as not backward compatible. Of course, this should be changed again when we can guarantee backward binary compatibility.
2000-11-01Add support for shared libraries under Irix.Richard Levitte
Submitted by Albert Chin-A-Young <china@thewrittenword.com>
2000-10-31Rename true64 to the correct tru64.Richard Levitte
Suggested by Albert Chin-A-Young <china@thewrittenword.com>
2000-10-27The majority of the OCSP code from CertCo.Richard Levitte
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-10-22When building shared libraries on HP-UX 10.20 and HP-UX 11.00 (32bit),Richard Levitte
ld warns that -Fl "may not be supported in future releases". We know that, and are doing things in HP-UX 11 (64bit), so turn off that warning with +vnocompatwarnings.
2000-10-22It seems like grep isn't as capable as I thought on some Unix systems.Richard Levitte
Use egrep instead.
2000-10-21Add what's needed to get shared libraries on HP-UX.Richard Levitte
N.B.: This has not been tested at all, that's my next step.
2000-10-14The experimental Rijndael code moved to the main trunk.Richard Levitte
make update done.
2000-10-13Rework the system to generate shared libraries:Richard Levitte
- Make note of the expected extension for the shared libraries and if there is a need for symbolic links from for example libcrypto.so.0 to libcrypto.so.0.9.7. There is extended info in Configure for that. - Make as few rebuilds of the shared libraries as possible. - Still avoid linking the OpenSSL programs with the shared libraries. - When installing, install the shared libraries separately from the static ones.
2000-10-09Make sure ranlib is only used on .a libraries.Richard Levitte
2000-09-26Verbose output when installing manual pages so that you see thatBodo Möller
something is going on (and what).
2000-09-21I'm using GNU tar...Richard Levitte
2000-08-17Allow reconfiguration. This can be useful if some source updateRichard Levitte
requires that you configure again, but you don't want to reenter all those configuration arguments again.
2000-08-14MD4 implemented. Assar Westerlund provided the digest code itself and the ↵Richard Levitte
test utility, I added the bits to get a EVP interface, the command line utility and the speed test
2000-08-02It's probably a good idea to make the shared libraries depend in EX_LIBS.Richard Levitte
2000-08-02A few corrections with the shared library support:Richard Levitte
1. make sure libssl.so becomes dependent on libcrypto.so 2. correct a number of silly bugs in the solaris-shared target, and make sure lib*.so also depends on libc.so.
2000-07-24Add support for solaris shared libraries, currently just experimentalRichard Levitte
(there's no way to get it through configuration yet).
2000-07-24Avoid loops, and make sure that it's possible to still build sharedRichard Levitte
libraries even if the "shared" configuration option wasn't chosen.
2000-07-21Redo and enhance the support for building shared libraries. CurrentlyRichard Levitte
there's support for building under Linux and True64 (using examples from the programming manuals), including versioning that is currently the same as OpenSSL versions but should really be a different series. With this change, it's up to the users to decide if they want shared libraries as well as the static ones. This decision now has to be done at configuration time (well, not really, those who know what they do can still do it the same way as before). The OpenSSL programs (openssl and the test programs) are currently always linked statically, but this may change in the future in a configurable manner. The necessary makefile variables to enable this are in place. Also note that I have done absolutely nothing about the Windows target to get something similar. On the other hand, DLLs are already the default there, but without versioning, and I've no idea what the possibilities for such a thing are there...
2000-07-05I got sick and tired of having to keep track of NIDs when such a thingRichard Levitte
could be done automagically, much like the numbering in libeay.num and ssleay.num. The solution works as follows: - New object identifiers are inserted in objects.txt, following the syntax given in objects.README. - objects.pl is used to process obj_mac.num and create a new obj_mac.h. - obj_dat.pl is used to create a new obj_dat.h, using the data in obj_mac.h. This is currently kind of a hack, and the perl code in objects.pl isn't very elegant, but it works as I intended. The simplest way to check that it worked correctly is to look in obj_dat.h and check the array nid_objs and make sure the objects haven't moved around (this is important!). Additions are OK, as well as consistent name changes.
2000-06-17Using speaking "variable" names in macros so that e.g. grepping forBodo Möller
sk_whatever_insert and sk_whatever_set immediately reveals the subtle difference in parameter order. Change mkstack.pl so that safestack.h is not rewritten when nothing has changed.