diff options
Diffstat (limited to 'src/lib/libcrypto/opensslconf.h')
-rw-r--r-- | src/lib/libcrypto/opensslconf.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/lib/libcrypto/opensslconf.h b/src/lib/libcrypto/opensslconf.h new file mode 100644 index 0000000000..5371f182c7 --- /dev/null +++ b/src/lib/libcrypto/opensslconf.h | |||
@@ -0,0 +1,18 @@ | |||
1 | /* $OpenBSD: opensslconf.h,v 1.3 2025/08/25 16:48:01 tb Exp $ */ | ||
2 | /* | ||
3 | * Public domain. | ||
4 | */ | ||
5 | |||
6 | #include <openssl/opensslfeatures.h> | ||
7 | |||
8 | #undef OPENSSL_EXPORT_VAR_AS_FUNCTION | ||
9 | |||
10 | #ifndef OPENSSL_FILE | ||
11 | #ifdef OPENSSL_NO_FILENAMES | ||
12 | #define OPENSSL_FILE "" | ||
13 | #define OPENSSL_LINE 0 | ||
14 | #else | ||
15 | #define OPENSSL_FILE __FILE__ | ||
16 | #define OPENSSL_LINE __LINE__ | ||
17 | #endif | ||
18 | #endif | ||