Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: sys-libs/zlib/files/zlib-1.2.1-fPIC.patch

Issue 6776028: Upgrade libxml2 and its portage dependencies (Closed) Base URL: ssh://gitrw.chromium.org:9222/portage-stable.git@master
Patch Set: Created 9 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 --- zlib-1.2.1/configure
2 +++ zlib-1.2.1/configure
3 @@ -73,7 +73,12 @@
4
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/*)
OLDNEW
« no previous file with comments | « sys-libs/zlib/files/zlib-1.2.1-configure.patch ('k') | sys-libs/zlib/files/zlib-1.2.1-glibc.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698