summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Le Cuirot <chewi@gentoo.org>2018-07-22 22:57:05 +0100
committerJames Le Cuirot <chewi@gentoo.org>2018-07-22 22:58:25 +0100
commit130ed3ca91bbad44746a79e8a2184fb0c43ade97 (patch)
tree66aa8fa03c6d919345017ece7088f6e6f6304699 /dev-games/hdl_dump/files/Makefile.patch
parentprofiles: desktop: Enable media-libs/mlt[sdl2] (diff)
downloadgentoo-130ed3ca91bbad44746a79e8a2184fb0c43ade97.tar.gz
gentoo-130ed3ca91bbad44746a79e8a2184fb0c43ade97.tar.bz2
gentoo-130ed3ca91bbad44746a79e8a2184fb0c43ade97.zip
dev-games/hdl_dump: Version bump to 0.9.2.20180722
Upstream merged our security fixes. Package-Manager: Portage-2.3.42, Repoman-2.3.9
Diffstat (limited to 'dev-games/hdl_dump/files/Makefile.patch')
-rw-r--r--dev-games/hdl_dump/files/Makefile.patch38
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-games/hdl_dump/files/Makefile.patch b/dev-games/hdl_dump/files/Makefile.patch
new file mode 100644
index 000000000000..d1527676d9db
--- /dev/null
+++ b/dev-games/hdl_dump/files/Makefile.patch
@@ -0,0 +1,38 @@
+diff -Naur a/Makefile b/Makefile
+--- a/Makefile 2017-01-30 21:48:47.000000000 +0000
++++ b/Makefile 2018-07-21 23:12:11.829945396 +0100
+@@ -48,9 +48,8 @@
+ ###############################################################################
+
+
+-CFLAGS = -Wall -ansi -pedantic -Wno-long-long
++CFLAGS += -Wall -ansi -pedantic -Wno-long-long
+
+-LDFLAGS =
+
+ # iin_hdloader.c iin_net.c
+ SOURCES = hdl_dump.c \
+@@ -106,11 +105,11 @@
+ DEBUG = no
+ endif
+ ifeq ($(DEBUG), yes)
+- CFLAGS += -O0 -g -D_DEBUG
+- CXXFLAGS += -O0 -g -D_DEBUG
++ CFLAGS += -D_DEBUG
++ CXXFLAGS += -D_DEBUG
+ else
+- CFLAGS += -O2 -s -DNDEBUG
+- CXXFLAGS += -O2 -s -DNDEBUG
++ CFLAGS += -DNDEBUG
++ CXXFLAGS += -DNDEBUG
+ endif
+
+ ifeq ($(USE_THREADED_IIN), yes)
+@@ -183,7 +182,6 @@
+ @echo -e "\tLNK $@"
+ @$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
+ ifeq ($(RELEASE), yes)
+- -@upx -q -9 $@ > /dev/null
+ endif
+
+