diff options
author | nia <nia@pkgsrc.org> | 2019-07-02 13:05:35 +0000 |
---|---|---|
committer | nia <nia@pkgsrc.org> | 2019-07-02 13:05:35 +0000 |
commit | e81b380fe5555ff5c907f878b2711a5ddb2c5c7d (patch) | |
tree | a8b1a3f926f9f6428080d31350aaa75204f7dc90 | |
parent | 5931068da78a4355faa6e8a1276518b83b2b1b6f (diff) | |
download | pkgsrc-e81b380fe5555ff5c907f878b2711a5ddb2c5c7d.tar.gz |
battleball: Specify c++03, this breaks with newer compiler defaults.
-rw-r--r-- | games/battleball/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/games/battleball/Makefile b/games/battleball/Makefile index 2261451bb6f..4981d6c4e2e 100644 --- a/games/battleball/Makefile +++ b/games/battleball/Makefile @@ -1,8 +1,8 @@ -# $NetBSD: Makefile,v 1.29 2015/04/25 14:22:52 tnn Exp $ +# $NetBSD: Makefile,v 1.30 2019/07/02 13:05:35 nia Exp $ DISTNAME= battleball.21.src PKGNAME= battleball-2.1 -PKGREVISION= 5 +PKGREVISION= 6 CATEGORIES= games x11 MASTER_SITES= # @@ -11,7 +11,7 @@ HOMEPAGE= http://web.archive.org/web/*/http://www.cs.utexas.edu/users/pahardin/b COMMENT= 3d game of soccer, with tanks WRKSRC= ${WRKDIR}/battleball-2.1-src -USE_LANGUAGES= c c++ +USE_LANGUAGES= c c++03 SED_CMDS= -e '/^INCS/s|$$|${CPPFLAGS}|' -e '/^LIBS/s|$$|${LDFLAGS}|' |