diff options
author | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-05-12 21:52:06 +0800 |
---|---|---|
committer | Dmitry Marakasov <amdmi3@FreeBSD.org> | 2015-05-12 21:52:06 +0800 |
commit | 5798ebb36d5a1e0201015afdbfbc480915b1d598 (patch) | |
tree | 4d15e20407528e0e9517f8de7f7016413755f835 /games | |
parent | 84d226ea51fcc6674854e4005f551f8d5827e203 (diff) | |
download | freebsd-ports-gnome-5798ebb36d5a1e0201015afdbfbc480915b1d598.tar.gz freebsd-ports-gnome-5798ebb36d5a1e0201015afdbfbc480915b1d598.tar.zst freebsd-ports-gnome-5798ebb36d5a1e0201015afdbfbc480915b1d598.zip |
- Fix build on < 10.x
Approved by: portmgr blanket
Diffstat (limited to 'games')
-rw-r--r-- | games/darkplaces/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/games/darkplaces/Makefile b/games/darkplaces/Makefile index 019959b52434..721725a4b826 100644 --- a/games/darkplaces/Makefile +++ b/games/darkplaces/Makefile @@ -38,6 +38,10 @@ SERVER_DESC= Build dedicated server .include <bsd.port.options.mk> +.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 +USE_GCC= yes # internal compiler error on base gcc +.endif + .if ${PORT_OPTIONS:MGLX} || ${PORT_OPTIONS:MSDL} USE_GL= glu PLIST_SUB+= CLIENT="" |