summaryrefslogtreecommitdiff
path: root/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch
diff options
context:
space:
mode:
Diffstat (limited to 'games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch')
-rw-r--r--games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch b/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch
deleted file mode 100644
index 86c794b99e5e..000000000000
--- a/games-fps/yamagi-quake2/files/yamagi-quake2-addon-respect-flags-r4.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- a/Makefile 2020-02-24 19:01:11.000000000 +0300
-+++ b/Makefile 2020-03-08 03:07:40.480074095 +0300
-@@ -66,11 +66,11 @@ endif
- #
- # -MMD to generate header dependencies.
- ifeq ($(OSTYPE), Darwin)
--CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \
-- -Wall -pipe -g -fwrapv -arch x86_64
-+CFLAGS += -fno-strict-aliasing -fomit-frame-pointer \
-+ -Wall -fwrapv -arch x86_64
- else
--CFLAGS := -O2 -fno-strict-aliasing -fomit-frame-pointer \
-- -Wall -pipe -g -MMD -fwrapv
-+CFLAGS += -fno-strict-aliasing -fomit-frame-pointer \
-+ -Wall -MMD -fwrapv
- endif
-
- # ----------
-@@ -93,11 +93,11 @@ endif
-
- # Base LDFLAGS.
- ifeq ($(OSTYPE), Darwin)
--LDFLAGS := -shared -arch x86_64
-+LDFLAGS += -shared -arch x86_64
- else ifeq ($(OSTYPE), Windows)
--LDFLAGS := -shared -static-libgcc
-+LDFLAGS += -shared -static-libgcc
- else
--LDFLAGS := -shared -lm
-+LDFLAGS += -shared -lm
- endif
-
- # ----------