summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>2001-08-03 18:45:35 +0000
committerBen Laurie <ben@openssl.org>2001-08-03 18:45:35 +0000
commit75e98d0563ccb7710b099678043d28cfc35cbb57 (patch)
treed9fabdc00396831975c79b317dc6e8f01c27822c /Configure
parente9eb000c533058d2d39d71f6681b764a02f76ce9 (diff)
This ghastly hack prevents CVS wars over Kerberos (which is disabled by default).
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure2
1 files changed, 2 insertions, 0 deletions
diff --git a/Configure b/Configure
index a10ec8d64b..5bd2556a71 100755
--- a/Configure
+++ b/Configure
@@ -1099,7 +1099,9 @@ $openssl_thread_defines =~ s/^\s*#\s*define\s+(.*)/#ifndef $1\n# define $1\n#end
$openssl_sys_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 $openssl_sys_defines;
+print OUT "#ifndef OPENSSL_DOING_MAKEDEPEND\n\n";
print OUT $openssl_algorithm_defines;
+print OUT "\n#endif /* OPENSSL_DOING_MAKEDEPEND */\n";
print OUT $openssl_thread_defines;
print OUT $openssl_other_defines,"\n";