diff options
author | wen <wen@FreeBSD.org> | 2014-03-28 21:29:58 +0800 |
---|---|---|
committer | wen <wen@FreeBSD.org> | 2014-03-28 21:29:58 +0800 |
commit | 38b9b5490456768fac1086f33785234509f14269 (patch) | |
tree | dd17847187cbf906767cfac83c0cf5a348ec16d3 /games/blockout | |
parent | 4b47ae518fc34678020d6bbe8ef20dfe0ece1056 (diff) | |
download | freebsd-ports-gnome-38b9b5490456768fac1086f33785234509f14269.tar.gz freebsd-ports-gnome-38b9b5490456768fac1086f33785234509f14269.tar.zst freebsd-ports-gnome-38b9b5490456768fac1086f33785234509f14269.zip |
- Fix build on head
PR: 186577
Submitted by: S <devel@stasyan.com> (maintainer)
Diffstat (limited to 'games/blockout')
-rw-r--r-- | games/blockout/files/patch-ImageLib_src_Makefile | 13 | ||||
-rw-r--r-- | games/blockout/files/patch-Makefile | 7 |
2 files changed, 17 insertions, 3 deletions
diff --git a/games/blockout/files/patch-ImageLib_src_Makefile b/games/blockout/files/patch-ImageLib_src_Makefile new file mode 100644 index 000000000000..18ea4716790c --- /dev/null +++ b/games/blockout/files/patch-ImageLib_src_Makefile @@ -0,0 +1,13 @@ +--- ImageLib/src/Makefile.orig 2014-02-09 13:14:33.000000000 +0700 ++++ ImageLib/src/Makefile 2014-02-09 13:15:28.000000000 +0700 +@@ -32,8 +32,8 @@ + + #--------------------------------------------------------------------- + +-CXX = g++ +-CC = gcc ++#CXX = g++ ++#CC = gcc + + CXXFLAGS = -O2 -Dlinux -c -I. + CFLAGS = -O2 -Dlinux -c -I. diff --git a/games/blockout/files/patch-Makefile b/games/blockout/files/patch-Makefile index b4bfb259a8c1..27384e32e7a7 100644 --- a/games/blockout/files/patch-Makefile +++ b/games/blockout/files/patch-Makefile @@ -1,5 +1,5 @@ ---- BlockOut/Makefile.orig 2009-08-06 14:55:56.000000000 +0700 -+++ BlockOut/Makefile 2009-08-06 15:39:07.000000000 +0700 +--- BlockOut/Makefile.orig 2008-01-10 00:29:06.000000000 +0600 ++++ BlockOut/Makefile 2014-02-09 13:17:22.000000000 +0700 @@ -34,17 +34,17 @@ #--------------------------------------------------------------------- @@ -9,7 +9,8 @@ +SDL_ROOT = /usr/local +IMGLIB_ROOT = ../ImageLib/src - CXX = g++ +-CXX = g++ ++#CXX = g++ CXXFLAGS = -g -D_DEBUG -Dlinux -c \ - -I$(SDL_ROOT)/include/SDL -I$(IMGLIB_ROOT) -I. |