summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'games-strategy/widelands/files/widelands-0.0.12-build.patch')
-rw-r--r--games-strategy/widelands/files/widelands-0.0.12-build.patch60
1 files changed, 0 insertions, 60 deletions
diff --git a/games-strategy/widelands/files/widelands-0.0.12-build.patch b/games-strategy/widelands/files/widelands-0.0.12-build.patch
deleted file mode 100644
index 64f4691b2bc7..000000000000
--- a/games-strategy/widelands/files/widelands-0.0.12-build.patch
+++ /dev/null
@@ -1,60 +0,0 @@
---- Makefile
-+++ Makefile
-@@ -26,7 +26,7 @@
-
- #most current glibc systems implicitly contain libintl.so
- ifndef IMPLICIT_LIBINTL
--IMPLICIT_LIBINTL:=NO
-+IMPLICIT_LIBINTL:=YES
- endif
-
- # Is this a cross compile?
-@@ -64,7 +64,7 @@
- # profile optimized, debugging symbols, profiling
- #
- ifndef BUILD
--BUILD:=debug
-+BUILD:=release
- endif
-
- endif
-@@ -108,11 +108,9 @@
- BUILD:=$(strip $(BUILD))
-
- ifeq ($(BUILD),release)
--OPTIMIZE:=yes
- # heavy optimization
- #ADD_CFLAGS:=$(ADD_CFLAGS) -fomit-frame-pointer -finline-functions -ffast-math -funroll-loops -funroll-all-loops -fexpensive-optimizations
- # !!!! -fomit-frame-pointer breaks execeptions !!!!
--ADD_CFLAGS:=$(ADD_CFLAGS) -finline-functions -ffast-math -funroll-loops -funroll-all-loops -fexpensive-optimizations
- else
- ifeq ($(BUILD),profile)
- OPTIMIZE:=yes
-@@ -151,9 +149,8 @@
- # Object files and directories, final compilation flags
-
- OBJECT_DIR:=src/$(TARGET)-$(BUILD)
--CFLAGS:=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
--CXXFLAGS:=$(CFLAGS)
--LDFLAGS:=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net -lSDL_gfx
-+CXXFLAGS+=-Wall $(shell $(SDL_CONFIG) --cflags) $(ADD_CFLAGS)
-+LDFLAGS+=$(shell $(SDL_CONFIG) --libs) $(ADD_LDFLAGS) -lz -lpng -lSDL_image -lSDL_mixer -lSDL_ttf -lSDL_net -lSDL_gfx
-
- ##############################################################################
- # Building
-@@ -208,13 +205,13 @@
-
- $(OBJECT_DIR)/widelands: $(OBJ)
- @echo "===> LD $@"
-- $(Q)$(CXX) $(OBJ) -o $@ $(LDFLAGS) $(CFLAGS)
-+ $(CXX) $(OBJ) -o $@ $(LDFLAGS) $(CXXFLAGS)
-
- -include $(DEP)
-
- $(OBJECT_DIR)/%.o: src/%.cc src/build_id.h src/config.h
- @echo "===> CXX $<"
-- $(Q)$(CXX) -pipe $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
-+ $(CXX) $(CXXFLAGS) -MMD -MP -MF $@.d -c -o $@ $<
- $(Q)sed -e 's@^\(.*\)\.o:@\1.d \1.o:@' $@.d > $(OBJECT_DIR)/$*.d
- $(Q)rm $@.d
-