summaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2006-10-23 07:30:19 +0000
committerAndy Polyakov <appro@openssl.org>2006-10-23 07:30:19 +0000
commit08a638237d61382efe507dc27c34289d9605a964 (patch)
tree183dbd5254936c809d074d8c2acce7e67dfd3efe /Configure
parentd8cdd1567f36105f365714673166000f798c9709 (diff)
Allow for mingw cross-compile configuration.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure10
1 files changed, 0 insertions, 10 deletions
diff --git a/Configure b/Configure
index 726c89696a..5715b2ce67 100755
--- a/Configure
+++ b/Configure
@@ -937,8 +937,6 @@ foreach (sort (keys %disabled))
my $IsMK1MF=scalar grep /^$target$/,@MK1MF_Builds;
-$IsMK1MF=1 if ($target eq "mingw" && $^O ne "cygwin" && !is_msys());
-
$exe_ext=".exe" if ($target eq "Cygwin" || $target eq "DJGPP" || $target eq "mingw");
$exe_ext=".pm" if ($target =~ /vos/);
$openssldir="/usr/local/ssl" if ($openssldir eq "" and $prefix eq "");
@@ -1847,11 +1845,3 @@ sub test_sanity
print STDERR "No sanity errors detected!\n" if $errorcnt == 0;
return $errorcnt;
}
-
-# Attempt to detect MSYS environment
-
-sub is_msys
- {
- return 1 if (exists $ENV{"TERM"} && $ENV{"TERM"} eq "msys");
- return 0;
- }