diff options
author | Thomas Beierlein <tomjbe@gentoo.org> | 2019-04-22 19:49:53 +0200 |
---|---|---|
committer | Thomas Beierlein <tomjbe@gentoo.org> | 2019-04-22 19:49:53 +0200 |
commit | 43ec94a2e8bfd95d2562b970b8cbfaa5e175ba50 (patch) | |
tree | 967bda8d9c756554be639d155a00f431ad49642c /media-radio/qrq | |
parent | net-wireless/gnuradio: new maint bump (diff) | |
download | gentoo-43ec94a2e8bfd95d2562b970b8cbfaa5e175ba50.tar.gz gentoo-43ec94a2e8bfd95d2562b970b8cbfaa5e175ba50.tar.bz2 gentoo-43ec94a2e8bfd95d2562b970b8cbfaa5e175ba50.zip |
media-radio/qrq: Add missing patch file
Thanks to Toralf Foerster for reporting
Closes:https://bugs.gentoo.org/684032
Package-Manager: Portage-2.3.62, Repoman-2.3.12
Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
Diffstat (limited to 'media-radio/qrq')
-rw-r--r-- | media-radio/qrq/files/qrq-0.3.2-tinfo.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/media-radio/qrq/files/qrq-0.3.2-tinfo.patch b/media-radio/qrq/files/qrq-0.3.2-tinfo.patch new file mode 100644 index 000000000000..6a0f38d18fab --- /dev/null +++ b/media-radio/qrq/files/qrq-0.3.2-tinfo.patch @@ -0,0 +1,20 @@ +--- a/Makefile 2019-04-19 16:16:08.354994946 +0200 ++++ b/Makefile 2019-04-19 16:18:30.711734410 +0200 +@@ -56,7 +56,7 @@ + endif + else ifeq ($(USE_PA), YES) + CFLAGS:=$(CFLAGS) -D PA -pthread +- LDFLAGS:=$(LDFLAGS) -lpthread -lpulse-simple -lpulse -lncurses ++ LDFLAGS:=$(LDFLAGS) -lpthread -lpulse-simple -lpulse $(shell pkg-config ncurses --libs) + OBJECTS=qrq.o pulseaudio.o + else ifeq ($(USE_WIN32), YES) + CFLAGS:=$(CFLAGS) -D WIN32 -Iinclude -Iinclude/ncursesw +@@ -64,7 +64,7 @@ + OBJECTS=qrq.o qrq.res lib/libncursesw.a + else + OBJECTS=qrq.o oss.o +- LDFLAGS:=$(LDFLAGS) -lpthread -lncurses ++ LDFLAGS:=$(LDFLAGS) -lpthread $(shell pkg-config ncurses --libs) + CFLAGS:=$(CFLAGS) -D OSS + endif + |