Commit 3eb0ed6d authored by Ralf S. Engelschall's avatar Ralf S. Engelschall
Browse files

Allow DSO flags like -fpic, -fPIC, -KPIC etc. to be specified on the `perl

Configure ...' command line. This way one can compile OpenSSL libraries with
Position Independent Code (PIC) which is needed for linking it into DSOs.
parent 6242bb9c
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -5,6 +5,12 @@

 Changes between 0.9.1c and 0.9.2

  *) Allow DSO flags like -fpic, -fPIC, -KPIC etc. to be specified
     on the `perl Configure ...' command line. This way one can compile
     OpenSSL libraries with Position Independent Code (PIC) which is needed
     for linking it into DSOs.
     [Ralf S. Engelschall]

  *) Remarkably, export ciphers were totally broken and no-one had noticed!
     Fixed.
     [Ben Laurie]
+5 −1
Original line number Diff line number Diff line
@@ -289,9 +289,13 @@ foreach (@ARGV)
			{
			$flags.=$_." ";
			}
		elsif ($_ =~ /^-[fK](.*)$/)
			{
			$flags.=$_." ";
			}
		else
			{
			die "unknown options, only -Dxxx, -Lxxx and -lxxx supported\n";
			die "unknown options, only -Dxxx, -Lxxx, -lxxx, -fxxx and -Kxxx are supported\n";
			}
		}
	else