History log of /openssl/Configure (Results 1276 – 1300 of 1539)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: OpenSSL-engine-0_9_6a-beta1, OpenSSL_0_9_6a-beta1
# 10654d3a 11-Mar-2001 Bodo Möller

Forcibly enable memory leak checking during "make test"


# 0396479d 09-Mar-2001 Bodo Möller

Workaround for solaris64 linking problem (explicit "ar rs" is needed
to create a symbol table).

Sun patches such as 109147-06 probably fix this problem,
but we can easily avoid it.


# b28ec124 08-Mar-2001 Bodo Möller

Fixes to make 'no-ec' work (it should not turn 'objects' into 'objts' for example)


# 70d70a3c 07-Mar-2001 Richard Levitte

Code for better build under Darwin (MacOS X).
Submitted by Brad Dominy <jdominy@darwinuser.org>


# 62dc5aad 02-Mar-2001 Richard Levitte

Introduce the possibility to access global variables through
functions on platform were that's the best way to handle exporting
global variables in shared libraries. To enable this functiona

Introduce the possibility to access global variables through
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).

show more ...


# 5031a89d 22-Feb-2001 Richard Levitte

Define the OPENSSL_NO_* macros as NO_* macros for the sake of applications thathaven't yet been changed


# bc36ee62 20-Feb-2001 Richard Levitte

Use new-style system-id macros everywhere possible. I hope I haven't
missed any.

This compiles and runs on Linux, and external applications have no
problems with it. The definite t

Use new-style system-id macros everywhere possible. I hope I haven't
missed any.

This compiles and runs on Linux, and external applications have no
problems with it. The definite test will be to build this on VMS.

show more ...


# 7242cd8f 20-Feb-2001 Richard Levitte

I'm sick of the warnings about long long...


# 7bd51947 19-Feb-2001 Ulf Möller

Temporary fix for build break.
It's still inconsistent - probably better to undo the whole OPENSSL_NO_* thing.


# cf1b7d96 19-Feb-2001 Richard Levitte

Make all configuration macros available for application by making
sure they are available in opensslconf.h, by giving them names starting
with "OPENSSL_" to avoid conflicts with other package

Make all configuration macros available for application by making
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.

show more ...


# 0c435404 19-Feb-2001 Richard Levitte

An obvious but hard-to-see cut'n'paste error corrected.


# 2afbd6fa 13-Feb-2001 Richard Levitte

Update of linux-ppc. Contributed by MATSUURA Takanori
<t-matsuu@protein.osaka-u.ac.jp>


# 49ce63cd 09-Feb-2001 Bodo Möller

add linux-s390 configuration (based on information submitted by
Denis Beauchemin <Denis.Beauchemin@Courrier.USherb.ca>)


# 247c1361 04-Feb-2001 Ben Laurie

BN assembler is no longer option on x86.


# a43cf9fa 24-Jan-2001 Dr. Stephen Henson

Add debugging info to new ASN1 code to trace memory leaks.

Fix PKCS7 and PKCS12 memory leaks.

Initialise encapsulated content type properly.


# 36f74d60 22-Jan-2001 Ulf Möller

Definition of NO_KRB5 in ssl.h for external applications.


# 10a2975a 11-Jan-2001 Richard Levitte

Add configuration for GNU Hurd.


# 5d92be8c 31-Dec-2000 Richard Levitte

Temporary measure: if no KRB5 is defined, add "no-krb5" to the
options. This is so mk1mf.pl can pick it up from Makefile.


# de282fe3 13-Dec-2000 Richard Levitte

When using -pedantic, it's a good thing to define PEDANTIC as well.
Also, define a second debugging configuration without assembler.


# 9b7a552f 01-Dec-2000 Richard Levitte

Recognise Darwin as well. For now, have it do exactly the same thing as for Rhapsody


# f9b3bff6 30-Nov-2000 Richard Levitte

First tentative impementation of Kerberos 5 cryptos and keys for SSL/TLS. Implemented by Vern Staats <staatsvr@asc.hpc.mil>, further hacked and distributed by Jeffrey Altman <jaltnab@columbia.edu>


# 7f56097c 18-Nov-2000 Richard Levitte

I might want to debug the assembler modules...


# f6a8898f 12-Nov-2000 Richard Levitte

Update my own debugging configuration entry


# ccb9643f 08-Nov-2000 Richard Levitte

Remove references to RSAref. The glue library is but a memory to fade
away now...


Revision tags: rsaref
# 8de2910b 07-Nov-2000 Richard Levitte

Lutz tells me HP cc uses the same syntax for flags that should be
passed down to ld as GNU cc.


1...<<51525354555657585960>>...62