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

Side by Side Diff: sys-libs/zlib/files/zlib-1.2.3-LDFLAGS.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
« no previous file with comments | « sys-libs/zlib/files/zlib-1.2.1-glibc.patch ('k') | sys-libs/zlib/files/zlib-1.2.3-build.patch » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 --- zlib-1.2.3/Makefile.in
2 +++ zlib-1.2.3/Makefile.in
3 @@ -24,7 +24,7 @@
4 #CFLAGS=-O3 -Wall -Wwrite-strings -Wpointer-arith -Wconversion \
5 # -Wstrict-prototypes -Wmissing-prototypes
6
7 -LDFLAGS=libz.a
8 +TEST_LDFLAGS=libz.a
9 LDSHARED=$(CC)
10 CPP=$(CC) -E
11
12 @@ -83,16 +83,16 @@
13 $(CC) $(CFLAGS) -DPIC -fPIC -c $< -o $@
14
15 $(SHAREDLIBV): $(PIC_OBJS)
16 - $(LDSHARED) -o $@ $(PIC_OBJS) -lc
17 + $(LDSHARED) -o $@ $(PIC_OBJS) -lc $(LDFLAGS)
18 rm -f $(SHAREDLIB) $(SHAREDLIBM)
19 ln -s $@ $(SHAREDLIB)
20 ln -s $@ $(SHAREDLIBM)
21
22 example$(EXE): example.o $(LIBS)
23 - $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS)
24 + $(CC) $(CFLAGS) -o $@ example.o $(LDFLAGS) $(TEST_LDFLAGS)
25
26 minigzip$(EXE): minigzip.o $(LIBS)
27 - $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS)
28 + $(CC) $(CFLAGS) -o $@ minigzip.o $(LDFLAGS) $(TEST_LDFLAGS)
29
30 install-libs: $(LIBS)
31 -@if [ ! -d $(exec_prefix) ]; then mkdir -p $(exec_prefix); fi
OLDNEW
« no previous file with comments | « sys-libs/zlib/files/zlib-1.2.1-glibc.patch ('k') | sys-libs/zlib/files/zlib-1.2.3-build.patch » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698