diff options
author | amdmi3 <amdmi3@FreeBSD.org> | 2015-05-12 21:52:06 +0800 |
---|---|---|
committer | amdmi3 <amdmi3@FreeBSD.org> | 2015-05-12 21:52:06 +0800 |
commit | 9eb457b3a61496bef6ef3fb1ac43df1d4b5f284d (patch) | |
tree | 4d15e20407528e0e9517f8de7f7016413755f835 /games | |
parent | ceec2b7749254e1ce5dc027a1f532b402382b0c2 (diff) | |
download | freebsd-ports-gnome-9eb457b3a61496bef6ef3fb1ac43df1d4b5f284d.tar.gz freebsd-ports-gnome-9eb457b3a61496bef6ef3fb1ac43df1d4b5f284d.tar.zst freebsd-ports-gnome-9eb457b3a61496bef6ef3fb1ac43df1d4b5f284d.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="" |