summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2000-07-24 20:34:29 +0000
committerRichard Levitte <levitte@openssl.org>2000-07-24 20:34:29 +0000
commit8886f118db26b4c38e15941ac739bbd9a1b05932 (patch)
treea37a0e06ade37b1bc306f20977695e932f791c74
parentf944e7845c18ed600b3b39dbdd450317aa19b21f (diff)
This isn't entirely necessary if you do everything right from the
start, but can save you some trouble. Just ignore "shared" if it comes up among the given options, at least for now...
-rwxr-xr-xutil/mk1mf.pl1
1 files changed, 1 insertions, 0 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index 367484ae7f..98ee587196 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -883,6 +883,7 @@ sub read_options
elsif (/^profile$/) { $profile=1; }
elsif (/^shlib$/) { $shlib=1; }
elsif (/^dll$/) { $shlib=1; }
+ elsif (/^shared$/) { } # We just need to ignore it for now...
elsif (/^([^=]*)=(.*)$/){ $VARS{$1}=$2; }
elsif (/^-[lL].*$/) { $l_flags.="$_ "; }
elsif ((!/^-help/) && (!/^-h/) && (!/^-\?/) && /^-.*$/)