diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2012-01-23 16:05:27 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2012-01-23 16:05:27 +0000 |
commit | b64fed66faae2bac415a431665e5ce29e799cb58 (patch) | |
tree | 718bd595aef2b18d4cb46329f37653b2b653da14 /media-sound/shell-fm/files | |
parent | Patch to prevent (double free) crash wrt #392413 by "nzqr" (diff) | |
download | gentoo-2-b64fed66faae2bac415a431665e5ce29e799cb58.tar.gz gentoo-2-b64fed66faae2bac415a431665e5ce29e799cb58.tar.bz2 gentoo-2-b64fed66faae2bac415a431665e5ce29e799cb58.zip |
old
(Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
Diffstat (limited to 'media-sound/shell-fm/files')
-rw-r--r-- | media-sound/shell-fm/files/shell-fm-0.7-asneeded.patch | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/media-sound/shell-fm/files/shell-fm-0.7-asneeded.patch b/media-sound/shell-fm/files/shell-fm-0.7-asneeded.patch deleted file mode 100644 index fd0de6dbe040..000000000000 --- a/media-sound/shell-fm/files/shell-fm-0.7-asneeded.patch +++ /dev/null @@ -1,39 +0,0 @@ ---- a/source/Makefile -+++ b/source/Makefile -@@ -6,10 +6,10 @@ LIB := libshellfm.so - STATIC := libshellfm.a - - ifeq ($(shell uname -s), OpenBSD) -- LDFLAGS += -lossaudio -+ LDLIBS += -lossaudio - endif - ifeq ($(shell uname -s), NetBSD) -- LDFLAGS += -lossaudio -+ LDLIBS += -lossaudio - endif - ifeq ($(shell uname -s), Darwin) - CFLAGS += -D__darwin__ -@@ -18,12 +18,12 @@ endif - CFLAGS += -Os -Wall -W -I./include/ -DLIBAO \ - $(shell pkg-config --cflags mad) \ - $(shell pkg-config --cflags ao) --LDFLAGS += $(shell pkg-config --libs mad) \ -+LDLIBS += $(shell pkg-config --libs mad) \ - $(shell pkg-config --libs ao) - - ifeq ($(shell pkg-config --exists taglib_c && echo 1), 1) - CFLAGS += $(shell pkg-config --cflags taglib_c) -DTAGLIB -- LDFLAGS += $(shell pkg-config --libs taglib_c) -+ LDLIBS += $(shell pkg-config --libs taglib_c) - endif - - .PHONY: clean tags cscope -@@ -40,7 +40,7 @@ $(STATIC) : $(OBJECT) - $(AR) -cvq $(STATIC) $(OBJECT) - - $(BINARY) : $(STATIC) -- $(CC) -o $(BINARY) $(CFLAGS) $(MAIN) $(LDFLAGS) $(STATIC) -+ $(CC) $(CFLAGS) $(LDFLAGS) $(MAIN) $(STATIC) $(LDLIBS) -o $(BINARY) - - clean : - rm -f $(OBJECT) $(BINARY) $(LIB) $(STATIC) |