summaryrefslogtreecommitdiff
path: root/graphics/wildmagic/files/patch-LibRenderers_SoftRenderer_makefile.wm4
diff options
context:
space:
mode:
Diffstat (limited to 'graphics/wildmagic/files/patch-LibRenderers_SoftRenderer_makefile.wm4')
-rw-r--r--graphics/wildmagic/files/patch-LibRenderers_SoftRenderer_makefile.wm426
1 files changed, 0 insertions, 26 deletions
diff --git a/graphics/wildmagic/files/patch-LibRenderers_SoftRenderer_makefile.wm4 b/graphics/wildmagic/files/patch-LibRenderers_SoftRenderer_makefile.wm4
deleted file mode 100644
index 781b2dcbef3f..000000000000
--- a/graphics/wildmagic/files/patch-LibRenderers_SoftRenderer_makefile.wm4
+++ /dev/null
@@ -1,26 +0,0 @@
---- LibRenderers/SoftRenderer/makefile.wm4.orig Thu May 31 21:57:37 2007
-+++ LibRenderers/SoftRenderer/makefile.wm4 Thu May 31 22:08:12 2007
-@@ -38,7 +38,7 @@
- ifeq (Debug,$(findstring Debug,$(CFG)))
- CFLAGS += -g -D_DEBUG
- else
--CFLAGS += -O2 -DNDEBUG
-+CFLAGS += -DNDEBUG
- endif
-
- ifeq (Memory,$(findstring Memory,$(CFG)))
-@@ -51,9 +51,14 @@
- SRC := $(notdir $(SRC))
- OBJ := $(SRC:%.cpp=$(CFG)/%.o) $(SRC:%.c=$(CFG)/%.o)
- LIB := ../../SDK/Library/$(CFG)/libWm4SoftRenderer.a
-+LIBSH := ../../SDK/Library/$(CFG)/libWm4SoftRenderer.so.0
-+LIBSO := ../../SDK/Library/$(CFG)/libWm4SoftRenderer.so
-+SHLIBLDFLAGS = -shared
-
- build : $(OBJ)
- $(AR) $(ARFLAGS) $(LIB) $(CFG)/*.o
-+ $(CC) $(SHLIBLDFLAGS) -o $(LIBSH) $(CFG)/*.o
-+ ln -sf $(LIBSH) $(LIBSO)
- cp -fp $(INC) $(INCDIR)
-
- $(CFG)/%.o : %.cpp