aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-02-14 12:28:24 +0000
committerRichard Levitte <levitte@openssl.org>2002-02-14 12:28:24 +0000
commit49e045482a1e3f5150e269b932259a1cd0a1bacb (patch)
treef07a98f96e471b185a1aa852b157b3726802f5ee /Configure
parentd8309efc72ea30da49800233896fef4e43c51ed5 (diff)
downloadopenssl-49e045482a1e3f5150e269b932259a1cd0a1bacb.zip
openssl-49e045482a1e3f5150e269b932259a1cd0a1bacb.tar.gz
openssl-49e045482a1e3f5150e269b932259a1cd0a1bacb.tar.bz2
At Corinna Vinschen's request, change CygWin32 to Cygwin
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure12
1 files changed, 8 insertions, 4 deletions
diff --git a/Configure b/Configure
index 1e82476..e90c8a5 100755
--- a/Configure
+++ b/Configure
@@ -503,9 +503,9 @@ my %table=(
# and its library files in util/pl/*)
"Mingw32", "gcc:-DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32",
-# CygWin32
-"CygWin32-pre1.3", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown):CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32",
-"CygWin32", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32:cygwin-shared::.dll",
+# Cygwin
+"Cygwin-pre1.3", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall::(unknown):CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32",
+"Cygwin", "gcc:-DTERMIOS -DL_ENDIAN -fomit-frame-pointer -O3 -m486 -Wall:::CYGWIN32::BN_LLONG ${x86_gcc_des} ${x86_gcc_opts}::::::::::win32:cygwin-shared::.dll",
# Ultrix from Bernhard Simon <simon@zid.tuwien.ac.at>
"ultrix-cc","cc:-std1 -O -Olimit 1000 -DL_ENDIAN::(unknown):::::::",
@@ -875,13 +875,17 @@ if ($target eq "LIST") {
exit 0;
}
+if ($target =~ m/^CygWin32(-.*)$/) {
+ $target = "Cygwin".$1;
+}
+
print "Configuring for $target\n";
&usage if (!defined($table{$target}));
my $IsWindows=scalar grep /^$target$/,@WinTargets;
-$exe_ext=".exe" if ($target eq "CygWin32");
+$exe_ext=".exe" if ($target eq "Cygwin");
$openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq "");
$prefix=$openssldir if $prefix eq "";