This isn't entirely necessary if you do everything right from the
authorRichard Levitte <levitte@openssl.org>
Mon, 24 Jul 2000 20:34:29 +0000 (20:34 +0000)
committerRichard Levitte <levitte@openssl.org>
Mon, 24 Jul 2000 20:34:29 +0000 (20:34 +0000)
start, but can save you some trouble.  Just ignore "shared" if it
comes up among the given options, at least for now...

util/mk1mf.pl

index 367484ae7fff62fcea5a7a85ad4ba5d87107e221..98ee58719654e2469fa27074988ed0fbf8748d39 100755 (executable)
@@ -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/) && (!/^-\?/) && /^-.*$/)