aboutsummaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorBen Laurie <ben@openssl.org>1999-03-07 15:21:08 +0000
committerBen Laurie <ben@openssl.org>1999-03-07 15:21:08 +0000
commitefadf60f9c4502e7e6d76a5e37a7e5f337ead0cd (patch)
tree6e374d5c5b83bf995fac232a6db1bd0bde495330 /Configure
parent26a0846fc181909cec6f6619e27515d2e3de6017 (diff)
downloadopenssl-efadf60f9c4502e7e6d76a5e37a7e5f337ead0cd.zip
openssl-efadf60f9c4502e7e6d76a5e37a7e5f337ead0cd.tar.gz
openssl-efadf60f9c4502e7e6d76a5e37a7e5f337ead0cd.tar.bz2
Don't make links on Windoze.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure9
1 files changed, 8 insertions, 1 deletions
diff --git a/Configure b/Configure
index aaeda79..51e4b83 100755
--- a/Configure
+++ b/Configure
@@ -246,6 +246,9 @@ my %misc_table = (
"VC-NT", "96:60:152:40:4212:20:1"
);
+my @WinTargets=qw(VC-NT VC-WIN32 VC-WIN16 VC-W31-16 VC-W31-32 VC-MSDOS BC-32
+ BC-16 CygWin32);
+
my $no_asm=0;
my $postfix="org";
my $Makefile="Makefile.ssl";
@@ -322,6 +325,10 @@ if (!defined($table{$target}))
exit(1);
}
+my $IsWindows=scalar grep /^$target$/,@WinTargets;
+
+print "IsWindows=$IsWindows\n";
+
(my $cc,my $cflags,my $lflags,my $bn_ops,my $bn_obj,my $des_obj,my $bf_obj,
$md5_obj,$sha1_obj,my $cast_obj,my $rc4_obj,$rmd160_obj,my $rc5_obj)=
split(/\s*:\s*/,$table{$target} . ":" x 20 , -1);
@@ -669,7 +676,7 @@ print "RC2 uses u$type[$rc2_int]\n" if $rc2_int != $def_int;
print "BF_PTR used\n" if $bf_ptr == 1;
print "BF_PTR2 used\n" if $bf_ptr == 2;
-system 'make links';
+system 'make links' if !$IsWindows;
exit(0);