diff options
author | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 12:37:35 +0200 |
---|---|---|
committer | Pacho Ramos <pacho@gentoo.org> | 2018-04-29 13:26:07 +0200 |
commit | c3a082f24694b6204ef4377c282314c61a4975b3 (patch) | |
tree | 7a88f1df3d7897adcb309ec6ce7b3476a5c60bd5 /games-emulation/higan/files | |
parent | games-emulation/gnuboy: Drop old (diff) | |
download | gentoo-c3a082f24694b6204ef4377c282314c61a4975b3.tar.gz gentoo-c3a082f24694b6204ef4377c282314c61a4975b3.tar.bz2 gentoo-c3a082f24694b6204ef4377c282314c61a4975b3.zip |
games-emulation/higan: Drop old
Package-Manager: Portage-2.3.31, Repoman-2.3.9
Diffstat (limited to 'games-emulation/higan/files')
-rw-r--r-- | games-emulation/higan/files/higan-099-QA.patch | 79 |
1 files changed, 0 insertions, 79 deletions
diff --git a/games-emulation/higan/files/higan-099-QA.patch b/games-emulation/higan/files/higan-099-QA.patch deleted file mode 100644 index fd4eb13dd34e..000000000000 --- a/games-emulation/higan/files/higan-099-QA.patch +++ /dev/null @@ -1,79 +0,0 @@ -diff -Naur a/higan/GNUmakefile b/higan/GNUmakefile ---- a/higan/GNUmakefile 2016-06-17 18:56:06.414883957 +0200 -+++ b/higan/GNUmakefile 2016-06-17 18:56:19.075903050 +0200 -@@ -4,7 +4,7 @@ - # target := loki - # console := true - --flags += -I. -I.. -O3 -+flags += -I. -I.. - objects := libco audio video resource - - # profile-guided optimization mode -@@ -31,7 +31,7 @@ - else ifeq ($(platform),macosx) - flags += -march=native - else ifneq ($(filter $(platform),linux bsd),) -- flags += -march=native -fopenmp -+ flags += -fopenmp - link += -fopenmp - link += -Wl,-export-dynamic - link += -lX11 -lXext -@@ -42,9 +42,9 @@ - compile = \ - $(strip \ - $(if $(filter %.c,$<), \ -- $(compiler) $(cflags) $(flags) $1 -c $< -o $@, \ -+ $(compiler) $(cflags) $(flags) $(CFLAGS) $1 -c $< -o $@, \ - $(if $(filter %.cpp,$<), \ -- $(compiler) $(cppflags) $(flags) $1 -c $< -o $@ \ -+ $(compiler) $(cppflags) $(flags) $(CXXFLAGS) $1 -c $< -o $@ \ - ) \ - ) \ - ) - ---- a/higan/target-tomoko/GNUmakefile 2016-06-17 19:10:27.729182818 +0200 -+++ b/higan/target-tomoko/GNUmakefile 2016-06-17 19:14:34.034554246 +0200 -@@ -45,10 +45,10 @@ - objects := $(patsubst %,obj/%.o,$(objects)) - - obj/ruby.o: ../ruby/ruby.cpp $(call rwildcard,../ruby/) -- $(compiler) $(rubyflags) -c $< -o $@ -+ $(compiler) $(rubyflags) $(CXXFLAGS) -c $< -o $@ - - obj/hiro.o: ../hiro/hiro.cpp $(call rwildcard,../hiro/) -- $(compiler) $(hiroflags) -c $< -o $@ -+ $(compiler) $(hiroflags) $(CXXFLAGS) -c $< -o $@ - - obj/ui-tomoko.o: $(ui)/tomoko.cpp $(call rwildcard,$(ui)/) - obj/ui-program.o: $(ui)/program/program.cpp $(call rwildcard,$(ui)/) -@@ -64,7 +64,7 @@ - - # targets - build: $(objects) -- $(strip $(compiler) -o out/$(name) $(objects) $(link)) -+ $(strip $(CXX) $(CXXFLAGS) -o out/$(name) $(objects) $(link)) - ifeq ($(platform),macosx) - @if [ -d out/$(name).app ]; then rm -r out/$(name).app; fi - mkdir -p out/$(name).app/Contents/MacOS/ - ---- a/icarus/GNUmakefile 2016-07-05 16:42:09.198091772 +0200 -+++ b/icarus/GNUmakefile 2016-07-05 16:48:14.388351427 +0200 -@@ -2,7 +2,7 @@ - include ../hiro/GNUmakefile - - name := icarus --flags += -I.. -O3 -+flags += -I.. $(CXXFLAGS) - link += - - ifeq ($(platform),windows) -@@ -14,7 +14,7 @@ - objects += $(if $(call streq,$(platform),windows),obj/resource.o) - - all: $(objects) -- $(call unique,$(compiler) -o out/$(name) $(objects) $(link) $(hirolink)) -+ $(call unique,$(compiler) -o out/$(name) $(objects) $(link) $(hirolink) $(LDFLAGS)) - ifeq ($(platform),macosx) - @if [ -d out/$(name).app ]; then rm -r out/$(name).app; fi - mkdir -p out/$(name).app/Contents/MacOS/ |