aboutsummaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorBodo Möller <bodo@openssl.org>2000-02-24 18:19:50 +0000
committerBodo Möller <bodo@openssl.org>2000-02-24 18:19:50 +0000
commita7b991bd68d16c65b4bc9616e0af3376e9670fe0 (patch)
treee268467755806db6ffcf22f999b1343746e6ea8f /Configure
parenta4cfd178f919c6a26c6f1e922e95dc61460a5e36 (diff)
downloadopenssl-a7b991bd68d16c65b4bc9616e0af3376e9670fe0.tar.gz
Don't define platform-dependent preprocessor symbols for OPENSSL_THREAD_DEFINES.
"make update".
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure16
1 files changed, 8 insertions, 8 deletions
diff --git a/Configure b/Configure
index cfa06fab59..5a46712da8 100755
--- a/Configure
+++ b/Configure
@@ -554,14 +554,14 @@ else
{
$thread_cflags="-DTHREADS $thread_cflag $cflags";
$thread_defines .= "#define THREADS\n";
- my $def;
- foreach $def (split ' ',$thread_cflag)
- {
- if ($def =~ s/^-D// && $def !~ /^_/)
- {
- $thread_defines .= "#define $def\n";
- }
- }
+# my $def;
+# foreach $def (split ' ',$thread_cflag)
+# {
+# if ($def =~ s/^-D// && $def !~ /^_/)
+# {
+# $thread_defines .= "#define $def\n";
+# }
+# }
}
$lflags="$libs$lflags"if ($libs ne "");