Collapse different classes of macro databases
[openssl.git] / include / openssl / opensslconf.h.in
1 /*
2  * {- join("\n * ", @autowarntext) -}
3  *
4  * Copyright 2016-2018 The OpenSSL Project Authors. All Rights Reserved.
5  *
6  * Licensed under the OpenSSL license (the "License").  You may not use
7  * this file except in compliance with the License.  You can obtain a copy
8  * in the file LICENSE in the source distribution or at
9  * https://www.openssl.org/source/license.html
10  */
11
12 #include <openssl/opensslv.h>
13
14 #ifdef  __cplusplus
15 extern "C" {
16 #endif
17
18 #ifdef OPENSSL_ALGORITHM_DEFINES
19 # error OPENSSL_ALGORITHM_DEFINES no longer supported
20 #endif
21
22 /*
23  * OpenSSL was configured with the following options:
24  */
25
26 {- if (@{$config{openssl_sys_defines}}) {
27       foreach (@{$config{openssl_sys_defines}}) {
28         $OUT .= "#ifndef $_\n";
29         $OUT .= "# define $_ 1\n";
30         $OUT .= "#endif\n";
31       }
32     }
33     foreach (@{$config{openssl_api_defines}}) {
34         (my $macro, my $value) = $_ =~ /^(.*?)=(.*?)$/;
35         $OUT .= "#define $macro $value\n";
36     }
37     if (@{$config{openssl_feature_defines}}) {
38       foreach (@{$config{openssl_feature_defines}}) {
39         $OUT .= "#ifndef $_\n";
40         $OUT .= "# define $_\n";
41         $OUT .= "#endif\n";
42       }
43     }
44     "";
45 -}
46
47 /*
48  * Sometimes OPENSSSL_NO_xxx ends up with an empty file and some compilers
49  * don't like that.  This will hopefully silence them.
50  */
51 #define NON_EMPTY_TRANSLATION_UNIT static void *dummy = &dummy;
52
53 /*
54  * Applications should use -DOPENSSL_API_COMPAT=<version> to suppress the
55  * declarations of functions deprecated in or before <version>. Otherwise, they
56  * still won't see them if the library has been built to disable deprecated
57  * functions.
58  */
59 #ifndef DECLARE_DEPRECATED
60 # define DECLARE_DEPRECATED(f)   f;
61 # ifdef __GNUC__
62 #  if __GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ > 0)
63 #   undef DECLARE_DEPRECATED
64 #   define DECLARE_DEPRECATED(f)    f __attribute__ ((deprecated));
65 #  endif
66 # endif
67 #endif
68
69 #ifndef OPENSSL_FILE
70 # ifdef OPENSSL_NO_FILENAMES
71 #  define OPENSSL_FILE ""
72 #  define OPENSSL_LINE 0
73 # else
74 #  define OPENSSL_FILE __FILE__
75 #  define OPENSSL_LINE __LINE__
76 # endif
77 #endif
78
79 #ifndef OPENSSL_MIN_API
80 # define OPENSSL_MIN_API 0
81 #endif
82
83 #if !defined(OPENSSL_API_COMPAT) || OPENSSL_API_COMPAT < OPENSSL_MIN_API
84 # undef OPENSSL_API_COMPAT
85 # define OPENSSL_API_COMPAT OPENSSL_MIN_API
86 #endif
87
88 /*
89  * Do not deprecate things to be deprecated in version 1.2.0 before the
90  * OpenSSL version number matches.
91  */
92 #if OPENSSL_VERSION_NUMBER < 0x10200000L
93 # define DEPRECATEDIN_1_2_0(f)   f;
94 #elif OPENSSL_API_COMPAT < 0x10200000L
95 # define DEPRECATEDIN_1_2_0(f)   DECLARE_DEPRECATED(f)
96 #else
97 # define DEPRECATEDIN_1_2_0(f)
98 #endif
99
100 #if OPENSSL_API_COMPAT < 0x10100000L
101 # define DEPRECATEDIN_1_1_0(f)   DECLARE_DEPRECATED(f)
102 #else
103 # define DEPRECATEDIN_1_1_0(f)
104 #endif
105
106 #if OPENSSL_API_COMPAT < 0x10000000L
107 # define DEPRECATEDIN_1_0_0(f)   DECLARE_DEPRECATED(f)
108 #else
109 # define DEPRECATEDIN_1_0_0(f)
110 #endif
111
112 #if OPENSSL_API_COMPAT < 0x00908000L
113 # define DEPRECATEDIN_0_9_8(f)   DECLARE_DEPRECATED(f)
114 #else
115 # define DEPRECATEDIN_0_9_8(f)
116 #endif
117
118 /* Generate 80386 code? */
119 {- $config{processor} eq "386" ? "#define" : "#undef" -} I386_ONLY
120
121 #undef OPENSSL_UNISTD
122 #define OPENSSL_UNISTD {- $target{unistd} -}
123
124 {- $config{export_var_as_fn} ? "#define" : "#undef" -} OPENSSL_EXPORT_VAR_AS_FUNCTION
125
126 /*
127  * The following are cipher-specific, but are part of the public API.
128  */
129 #if !defined(OPENSSL_SYS_UEFI)
130 {- $config{bn_ll} ? "# define" : "# undef" -} BN_LLONG
131 /* Only one for the following should be defined */
132 {- $config{b64l} ? "# define" : "# undef" -} SIXTY_FOUR_BIT_LONG
133 {- $config{b64}  ? "# define" : "# undef" -} SIXTY_FOUR_BIT
134 {- $config{b32}  ? "# define" : "# undef" -} THIRTY_TWO_BIT
135 #endif
136
137 #define RC4_INT {- $config{rc4_int} -}
138
139 #ifdef  __cplusplus
140 }
141 #endif