fixed zlib
[kvm-coreboot.git] / packages / zlib / patches / zlib-1.2.1-fPIC.patch
blob5ccbddfd0fbea0008abc87a5704b23ade48095ed
1 --- zlib-1.2.1/configure
2 +++ zlib-1.2.1/configure
3 @@ -73,7 +73,12 @@
5 if test "$gcc" -eq 1 && ($cc -c $cflags $test.c) 2>/dev/null; then
6 CC="$cc"
7 - SFLAGS=${CFLAGS-"-fPIC -O3"}
8 + #SFLAGS=${CFLAGS-"-fPIC -O3"}
9 + # the above is horribly wrong on a few archs where -fPIC should ALWAYS be
10 + # used in the creation of shared libraries. without the following, the
11 + # shared lib test will sometimes fail even when shared libs -can- be created.
12 + SFLAGS=${CFLAGS-"-O3"}
13 + SFLAGS="${SFLAGS} -fPIC"
14 CFLAGS="$cflags"
15 case `(uname -s || echo unknown) 2>/dev/null` in
16 Linux | linux | GNU | GNU/*)