summaryrefslogtreecommitdiffstats
path: root/crypto/opensslconf.h.in
AgeCommit message (Collapse)Author
2005-12-16Eliminate warning induced by http://cvs.openssl.org/chngview?cn=14690 andAndy Polyakov
keep disclaiming narrower than 32-bit support.
2004-06-01This fixes the installation target for dynamic engines, which was trying toGeoff Thorpe
install to a different location than it had created. (BTW, VMS will need a matching fix in eng_list.c.) Note, these aren't ssl-specific, so I'm putting "engines/" into the libs directory rather than at the "--prefix" level or inside "ssl/".
2002-12-11Let's not forget the other places where HEADER_DES_H and HEADER_DES_OLD_HRichard Levitte
were defined.
2002-01-26GCC uses __i386__.Richard Levitte
2001-11-06des_old.h doesn't really need to include des.h, so don't. That willRichard Levitte
avoid clashes with other code that have their own DES_ functions but really only use OpenSSL's old des_ functions.
2001-03-02Spelling corrected.Richard Levitte
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-22Since opensslconf.h might be included over and over, undefineRichard Levitte
OPENSSL_UNISTD before redefining it, to avoid compiler warnings.
2000-02-18Cosmetic change. No, openssl.h.in is not autogenerated :-)Richard Levitte
1999-10-07RC4 tune-up featuring 30-40% performance improvement on most RISCAndy Polyakov
platforms. See crypto/rc4/rc4_enc.c for further details.
1999-06-09Some pre-POSIX systems don't have unistd.h (but e.g. lib.c).Bodo Möller
Allow configuring the name of that header file.
1999-05-13VMS support.Ulf Möller
Submitted by: Richard Levitte <richard@levitte.org>
1999-05-05SHA-1 cleanups and performance enhancements.Ulf Möller
Submitted by: Andy Polyakov <appro@fy.chalmers.se>
1999-04-27More portable blowfish macros.Ulf Möller
Submitted by: Andy Polyakov <appro@fy.chalmers.se>
1999-04-24New Configure option --openssldir to replace ssldir.pl.Ulf Möller
1999-04-21New header file opensslconf.h contains the macros set by Configure.Ulf Möller
The configuration process could use some more clean-ups.