diff options
author | danfe <danfe@FreeBSD.org> | 2007-06-18 22:12:50 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2007-06-18 22:12:50 +0800 |
commit | 7d842b1bdce7e42e91d80ed0f3e20e22958b6bfd (patch) | |
tree | 8d15196e5b2dc09fbed9e232b69c6ddf2da9be02 | |
parent | d9c8e3e6d2b3a251912e10784c5f9e92cb412119 (diff) | |
download | freebsd-ports-gnome-7d842b1bdce7e42e91d80ed0f3e20e22958b6bfd.tar.gz freebsd-ports-gnome-7d842b1bdce7e42e91d80ed0f3e20e22958b6bfd.tar.zst freebsd-ports-gnome-7d842b1bdce7e42e91d80ed0f3e20e22958b6bfd.zip |
Fix the build with recent GCC.
Reported by: pointyhat (logs)
-rw-r--r-- | games/tecnoballz/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/games/tecnoballz/Makefile b/games/tecnoballz/Makefile index 0ff85c9316d8..e5340b4b0f6d 100644 --- a/games/tecnoballz/Makefile +++ b/games/tecnoballz/Makefile @@ -43,6 +43,10 @@ post-patch: 's|/var/lib/games|/var/games|; \ s|TecnoballZ/|${DATADIR}/|' \ ${WRKSRC}/src/ressources.cc + @${REINPLACE_CMD} -e 's|escapeMenu::||' \ + ${WRKSRC}/include/escapeMenu.h + @${REINPLACE_CMD} -e 's|zexplosion\*|class &|' \ + ${WRKSRC}/include/zeGigaBlit.h do-install: @${MKDIR} ${PREFIX}/bin |