summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/arch/sparc
diff options
context:
space:
mode:
authortedu <>2014-07-11 14:01:38 +0000
committertedu <>2014-07-11 14:01:38 +0000
commitb3bcf68aa09fbe686f5d5dc4b8c071f56c3946a0 (patch)
tree1cfb0cb95b3e2c5d07c759a681b7fa30b6a3b153 /src/lib/libcrypto/arch/sparc
parente0377f161e260f469c7bca512739a3c80f0a32b8 (diff)
downloadopenbsd-b3bcf68aa09fbe686f5d5dc4b8c071f56c3946a0.tar.gz
openbsd-b3bcf68aa09fbe686f5d5dc4b8c071f56c3946a0.tar.bz2
openbsd-b3bcf68aa09fbe686f5d5dc4b8c071f56c3946a0.zip
move all the feature settings to a common header.
probably ok beck jsing miod
Diffstat (limited to 'src/lib/libcrypto/arch/sparc')
-rw-r--r--src/lib/libcrypto/arch/sparc/opensslconf.h73
1 files changed, 1 insertions, 72 deletions
diff --git a/src/lib/libcrypto/arch/sparc/opensslconf.h b/src/lib/libcrypto/arch/sparc/opensslconf.h
index 3850f221ea..fd1cd4acf4 100644
--- a/src/lib/libcrypto/arch/sparc/opensslconf.h
+++ b/src/lib/libcrypto/arch/sparc/opensslconf.h
@@ -1,75 +1,4 @@
1# define OPENSSL_NO_CAMELLIA 1#include <opensslfeatures.h>
2# define OPENSSL_NO_EC_NISTP_64_GCC_128
3# define OPENSSL_NO_CMS
4# define OPENSSL_NO_GMP
5# define OPENSSL_NO_GOST
6# define OPENSSL_NO_JPAKE
7# define OPENSSL_NO_KRB5
8# define OPENSSL_NO_MD2
9# define OPENSSL_NO_PSK
10# define OPENSSL_NO_RC5
11# define OPENSSL_NO_RFC3779
12# define OPENSSL_NO_SCTP
13# define OPENSSL_NO_SEED
14# define OPENSSL_NO_SRP
15# define OPENSSL_NO_SSL2
16# define OPENSSL_NO_STORE
17
18# define OPENSSL_THREADS
19# define OPENSSL_NO_DYNAMIC_ENGINE
20
21/* The OPENSSL_NO_* macros are also defined as NO_* if the application
22 asks for it. This is a transient feature that is provided for those
23 who haven't had the time to do the appropriate changes in their
24 applications. */
25#ifdef OPENSSL_ALGORITHM_DEFINES
26# if defined(OPENSSL_NO_CAMELLIA) && !defined(NO_CAMELLIA)
27# define NO_CAMELLIA
28# endif
29# if defined(OPENSSL_NO_EC_NISTP_64_GCC_128) && !defined(NO_EC_NISTP_64_GCC_128)
30# define NO_EC_NISTP_64_GCC_128
31# endif
32# if defined(OPENSSL_NO_CMS) && !defined(NO_CMS)
33# define NO_CMS
34# endif
35# if defined(OPENSSL_NO_GMP) && !defined(NO_GMP)
36# define NO_GMP
37# endif
38# if defined(OPENSSL_NO_GOST) && !defined(NO_GOST)
39# define NO_GOST
40# endif
41# if defined(OPENSSL_NO_JPAKE) && !defined(NO_JPAKE)
42# define NO_JPAKE
43# endif
44# if defined(OPENSSL_NO_KRB5) && !defined(NO_KRB5)
45# define NO_KRB5
46# endif
47# if defined(OPENSSL_NO_MD2) && !defined(NO_MD2)
48# define NO_MD2
49# endif
50# if defined(OPENSSL_NO_RC5) && !defined(NO_RC5)
51# define NO_RC5
52# endif
53# if defined(OPENSSL_NO_RFC3779) && !defined(NO_RFC3779)
54# define NO_RFC3779
55# endif
56# if defined(OPENSSL_NO_SCTP) && !defined(NO_SCTP)
57# define NO_SCTP
58# endif
59# if defined(OPENSSL_NO_SEED) && !defined(NO_SEED)
60# define NO_SEED
61# endif
62# if defined(OPENSSL_NO_SRP) && !defined(NO_SRP)
63# define NO_SRP
64# endif
65# if defined(OPENSSL_NO_SSL2) && !defined(NO_SSL2)
66# define NO_SSL2
67# endif
68# if defined(OPENSSL_NO_STORE) && !defined(NO_STORE)
69# define NO_STORE
70# endif
71#endif
72
73/* crypto/opensslconf.h.in */ 2/* crypto/opensslconf.h.in */
74 3
75/* Generate 80386 code? */ 4/* Generate 80386 code? */