summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-02-18 19:01:55 +0000
committerUlf Möller <ulf@openssl.org>2000-02-18 19:01:55 +0000
commit7fa1343e93aaf7dd8fe52231ff323f8fb59a278f (patch)
tree22e82f1e8f328870c2634d979337b32d5a343dee /Configure
parentad86060357a590405f459f58bf9cdf4999264f4f (diff)
downloadopenssl-new-7fa1343e93aaf7dd8fe52231ff323f8fb59a278f.tar.gz
Make excluded cipher entry in opensslconf.h a bit more descriptive.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure3
1 files changed, 2 insertions, 1 deletions
diff --git a/Configure b/Configure
index 884893f179..da2453bedb 100755
--- a/Configure
+++ b/Configure
@@ -728,9 +728,10 @@ print OUT "/* WARNING: Generated automatically from opensslconf.h.in by Configur
print OUT "/* OpenSSL was configured with the following options: */\n";
$openssl_exclude_defines =~ s/^\s*#\s*define\s+(.*)/# ifndef $1\n# define $1\n# endif/mg;
+$openssl_exclude_defines = " /* no ciphers excluded */\n" if $openssl_exclude_defines eq "";
$openssl_thread_defines =~ s/^\s*#\s*define\s+(.*)/# ifndef $1\n# define $1\n# endif/mg;
$openssl_other_defines =~ s/^\s*#\s*define\s+(.*)/# ifndef $1\n# define $1\n# endif/mg;
-print OUT "#ifdef OPENSSL_EXCLUDE_DEFINES\n$openssl_exclude_defines#endif\n";
+print OUT "#ifdef OPENSSL_ALGORITHM_DEFINES\n$openssl_exclude_defines#endif\n";
print OUT "#ifdef OPENSSL_THREAD_DEFINES\n$openssl_thread_defines#endif\n";
print OUT "#ifdef OPENSSL_OTHER_DEFINES\n$openssl_other_defines#endif\n\n";