aboutsummaryrefslogtreecommitdiffstats
path: root/Configure
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2000-06-06 20:52:42 +0000
committerUlf Möller <ulf@openssl.org>2000-06-06 20:52:42 +0000
commit7e6502a6cbb4672956ab6a899f761d93b0d44395 (patch)
tree73af1c1dc1d5de33e9443a309761f5d7cef5bb79 /Configure
parent9887c71c41a2bbae924f01e6cc1b41f2c5163a9e (diff)
downloadopenssl-7e6502a6cbb4672956ab6a899f761d93b0d44395.tar.gz
Option "no-symlinks" to configure without creating the links (e.g.
for use with makefile.one)
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 5 insertions, 1 deletions
diff --git a/Configure b/Configure
index 6b5accc4de..31221bb338 100755
--- a/Configure
+++ b/Configure
@@ -435,6 +435,7 @@ my $openssl_other_defines="";
my $libs="";
my $target="";
my $options="";
+my $symlink=1;
foreach (@ARGV)
{
s /^-no-/no-/; # some people just can't read the instructions
@@ -450,6 +451,8 @@ foreach (@ARGV)
{ $no_threads=1; }
elsif (/^threads$/)
{ $threads=1; }
+ elsif (/^no-symlinks$/)
+ { $symlink=0; }
elsif (/^no-(.+)$/)
{
my $algo=$1;
@@ -895,7 +898,8 @@ if($IsWindows) {
EOF
close(OUT);
} else {
- (system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?;
+ (system "make -f Makefile.ssl PERL=\'$perl\' links") == 0 or exit $?
+ if $symlink;
### (system 'make depend') == 0 or exit $? if $depflags ne "";
# Run "make depend" manually if you want to be able to delete
# the source code files of ciphers you left out.