diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/opensslconf.h.in | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/lib/libcrypto/opensslconf.h.in b/src/lib/libcrypto/opensslconf.h.in index cee83acf98..1c77f03c3d 100644 --- a/src/lib/libcrypto/opensslconf.h.in +++ b/src/lib/libcrypto/opensslconf.h.in | |||
@@ -1,5 +1,20 @@ | |||
1 | /* crypto/opensslconf.h.in */ | 1 | /* crypto/opensslconf.h.in */ |
2 | 2 | ||
3 | #ifdef OPENSSL_DOING_MAKEDEPEND | ||
4 | |||
5 | /* Include any symbols here that have to be explicitly set to enable a feature | ||
6 | * that should be visible to makedepend. | ||
7 | * | ||
8 | * [Our "make depend" doesn't actually look at this, we use actual build settings | ||
9 | * instead; we want to make it easy to remove subdirectories with disabled algorithms.] | ||
10 | */ | ||
11 | |||
12 | #ifndef OPENSSL_FIPS | ||
13 | #define OPENSSL_FIPS | ||
14 | #endif | ||
15 | |||
16 | #endif | ||
17 | |||
3 | /* Generate 80386 code? */ | 18 | /* Generate 80386 code? */ |
4 | #undef I386_ONLY | 19 | #undef I386_ONLY |
5 | 20 | ||