diff options
| author | djm <> | 2008-09-06 12:20:16 +0000 |
|---|---|---|
| committer | djm <> | 2008-09-06 12:20:16 +0000 |
| commit | 1cc2a70b2a8b91d243c2e4ac4e779efd950db5a2 (patch) | |
| tree | 8bad2049c8c0044c7964fd985794ad61777e7163 /src/lib/libssl/crypto/arch/sparc | |
| parent | 6b62d1fdd8a4fd35acfcc0c4bb1bf8b757fa8cda (diff) | |
| download | openbsd-1cc2a70b2a8b91d243c2e4ac4e779efd950db5a2.tar.gz openbsd-1cc2a70b2a8b91d243c2e4ac4e779efd950db5a2.tar.bz2 openbsd-1cc2a70b2a8b91d243c2e4ac4e779efd950db5a2.zip | |
remerge local tweaks, update per-arch configuration headers, update
Makefiles, crank shlib_version
Diffstat (limited to 'src/lib/libssl/crypto/arch/sparc')
| -rw-r--r-- | src/lib/libssl/crypto/arch/sparc/opensslconf.h | 57 |
1 files changed, 56 insertions, 1 deletions
diff --git a/src/lib/libssl/crypto/arch/sparc/opensslconf.h b/src/lib/libssl/crypto/arch/sparc/opensslconf.h index 47a6dd8596..94d322270b 100644 --- a/src/lib/libssl/crypto/arch/sparc/opensslconf.h +++ b/src/lib/libssl/crypto/arch/sparc/opensslconf.h | |||
| @@ -4,20 +4,74 @@ | |||
| 4 | /* OpenSSL was configured with the following options: */ | 4 | /* OpenSSL was configured with the following options: */ |
| 5 | #ifndef OPENSSL_DOING_MAKEDEPEND | 5 | #ifndef OPENSSL_DOING_MAKEDEPEND |
| 6 | 6 | ||
| 7 | #ifndef OPENSSL_NO_CAMELLIA | ||
| 8 | # define OPENSSL_NO_CAMELLIA | ||
| 9 | #endif | ||
| 10 | #ifndef OPENSSL_NO_CMS | ||
| 11 | # define OPENSSL_NO_CMS | ||
| 12 | #endif | ||
| 13 | #ifndef OPENSSL_NO_GMP | ||
| 14 | # define OPENSSL_NO_GMP | ||
| 15 | #endif | ||
| 7 | #ifndef OPENSSL_NO_KRB5 | 16 | #ifndef OPENSSL_NO_KRB5 |
| 8 | # define OPENSSL_NO_KRB5 | 17 | # define OPENSSL_NO_KRB5 |
| 9 | #endif | 18 | #endif |
| 19 | #ifndef OPENSSL_NO_MDC2 | ||
| 20 | # define OPENSSL_NO_MDC2 | ||
| 21 | #endif | ||
| 22 | #ifndef OPENSSL_NO_RC5 | ||
| 23 | # define OPENSSL_NO_RC5 | ||
| 24 | #endif | ||
| 25 | #ifndef OPENSSL_NO_RFC3779 | ||
| 26 | # define OPENSSL_NO_RFC3779 | ||
| 27 | #endif | ||
| 28 | #ifndef OPENSSL_NO_SEED | ||
| 29 | # define OPENSSL_NO_SEED | ||
| 30 | #endif | ||
| 31 | #ifndef OPENSSL_NO_TLSEXT | ||
| 32 | # define OPENSSL_NO_TLSEXT | ||
| 33 | #endif | ||
| 10 | 34 | ||
| 11 | #endif /* OPENSSL_DOING_MAKEDEPEND */ | 35 | #endif /* OPENSSL_DOING_MAKEDEPEND */ |
| 36 | #ifndef OPENSSL_THREADS | ||
| 37 | # define OPENSSL_THREADS | ||
| 38 | #endif | ||
| 39 | #ifndef OPENSSL_NO_DYNAMIC_ENGINE | ||
| 40 | # define OPENSSL_NO_DYNAMIC_ENGINE | ||
| 41 | #endif | ||
| 12 | 42 | ||
| 13 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application | 43 | /* The OPENSSL_NO_* macros are also defined as NO_* if the application |
| 14 | asks for it. This is a transient feature that is provided for those | 44 | asks for it. This is a transient feature that is provided for those |
| 15 | who haven't had the time to do the appropriate changes in their | 45 | who haven't had the time to do the appropriate changes in their |
| 16 | applications. */ | 46 | applications. */ |
| 17 | #ifdef OPENSSL_ALGORITHM_DEFINES | 47 | #ifdef OPENSSL_ALGORITHM_DEFINES |
| 48 | # if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA) | ||
| 49 | # define NO_CAMELLIA | ||
| 50 | # endif | ||
| 51 | # if defined(OPENSSL_NO_CMS) && !defined(NO_CMS) | ||
| 52 | # define NO_CMS | ||
| 53 | # endif | ||
| 54 | # if defined(OPENSSL_NO_GMP) && !defined(NO_GMP) | ||
| 55 | # define NO_GMP | ||
| 56 | # endif | ||
| 18 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) | 57 | # if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5) |
| 19 | # define NO_KRB5 | 58 | # define NO_KRB5 |
| 20 | # endif | 59 | # endif |
| 60 | # if defined(OPENSSL_NO_MDC2) && !defined(NO_MDC2) | ||
| 61 | # define NO_MDC2 | ||
| 62 | # endif | ||
| 63 | # if defined(OPENSSL_NO_RC5) && !defined(NO_RC5) | ||
| 64 | # define NO_RC5 | ||
| 65 | # endif | ||
| 66 | # if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779) | ||
| 67 | # define NO_RFC3779 | ||
| 68 | # endif | ||
| 69 | # if defined(OPENSSL_NO_SEED) && !defined(NO_SEED) | ||
| 70 | # define NO_SEED | ||
| 71 | # endif | ||
| 72 | # if defined(OPENSSL_NO_TLSEXT) && !defined(NO_TLSEXT) | ||
| 73 | # define NO_TLSEXT | ||
| 74 | # endif | ||
| 21 | #endif | 75 | #endif |
| 22 | 76 | ||
| 23 | /* crypto/opensslconf.h.in */ | 77 | /* crypto/opensslconf.h.in */ |
| @@ -27,6 +81,7 @@ | |||
| 27 | 81 | ||
| 28 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ | 82 | #if !(defined(VMS) || defined(__VMS)) /* VMS uses logical names instead */ |
| 29 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) | 83 | #if defined(HEADER_CRYPTLIB_H) && !defined(OPENSSLDIR) |
| 84 | #define ENGINESDIR "/usr/lib/engines" | ||
| 30 | #define OPENSSLDIR "/etc/ssl" | 85 | #define OPENSSLDIR "/etc/ssl" |
| 31 | #endif | 86 | #endif |
| 32 | #endif | 87 | #endif |
| @@ -69,7 +124,7 @@ | |||
| 69 | #endif | 124 | #endif |
| 70 | #endif | 125 | #endif |
| 71 | 126 | ||
| 72 | #if (defined(HEADER_DES_H) || defined(HEADER_DES_OLD_H)) && !defined(DES_LONG) | 127 | #if (defined(HEADER_NEW_DES_H) || defined(HEADER_DES_H)) && !defined(DES_LONG) |
| 73 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a | 128 | /* If this is set to 'unsigned int' on a DEC Alpha, this gives about a |
| 74 | * %20 speed up (longs are 8 bytes, int's are 4). */ | 129 | * %20 speed up (longs are 8 bytes, int's are 4). */ |
| 75 | #ifndef DES_LONG | 130 | #ifndef DES_LONG |
