From 38bb9e9123bb58b213af7ad32b447bb787d775aa Mon Sep 17 00:00:00 2001 From: hasufell Date: Mon, 6 Aug 2012 18:40:24 +0200 Subject: games-arcade/retrobattle imported into main tree --- .../files/retrobattle-1.0.0-build.patch | 29 ---------------------- 1 file changed, 29 deletions(-) delete mode 100644 games-arcade/retrobattle/files/retrobattle-1.0.0-build.patch (limited to 'games-arcade/retrobattle/files/retrobattle-1.0.0-build.patch') diff --git a/games-arcade/retrobattle/files/retrobattle-1.0.0-build.patch b/games-arcade/retrobattle/files/retrobattle-1.0.0-build.patch deleted file mode 100644 index 8ffa83a83..000000000 --- a/games-arcade/retrobattle/files/retrobattle-1.0.0-build.patch +++ /dev/null @@ -1,29 +0,0 @@ -Author: hasufell -Date: Sat Aug 4 12:15:53 2012 +0200 - - respect CXX, CFLAGS and LDFLAGS - ---- src/Makefile -+++ src/Makefile -@@ -1,10 +1,9 @@ --CFLAGS = `sdl-config --cflags` -g -Wall -I. -DENABLE_BINRELOC --CPPFLAGS = $(CFLAGS) -+CXXFLAGS += $(shell sdl-config --cflags) -I. -DENABLE_BINRELOC - - # Uncomment the first LIBS line and comment out the other LIBS line to - # compile without SDL_Mixer - #LIBS = `sdl-config --libs` --LIBS = `sdl-config --libs` -lSDL_mixer -+LIBS = $(shell sdl-config --libs) -lSDL_mixer - - RETROINSTALLDIR ?= /opt - -@@ -25,7 +24,7 @@ - - - retrobattle: $(RETRO) -- g++ -o $@ $^ $(LIBS) -+ $(CXX) $(CXXFLAGS) $(LDFLAGS) -o $@ $^ $(LIBS) - mv $@ .. - - clean: -- cgit v1.2.3-65-gdbad