From: Richard Levitte Date: Mon, 24 Jul 2000 20:34:29 +0000 (+0000) Subject: This isn't entirely necessary if you do everything right from the X-Git-Tag: OpenSSL-engine-0_9_6-beta1~17^2~17 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=8886f118db26b4c38e15941ac739bbd9a1b05932 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... --- 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/) && (!/^-\?/) && /^-.*$/)