svn commit: r391708 - head/games/xmoto

Dmitry Marakasov amdmi3 at FreeBSD.org
Fri Jul 10 16:21:05 UTC 2015


Author: amdmi3
Date: Fri Jul 10 16:21:04 2015
New Revision: 391708
URL: https://svnweb.freebsd.org/changeset/ports/391708

Log:
  - Extend BROKEN condition: this is also broken on e.g. mips which still uses old gcc

Modified:
  head/games/xmoto/Makefile

Modified: head/games/xmoto/Makefile
==============================================================================
--- head/games/xmoto/Makefile	Fri Jul 10 15:00:20 2015	(r391707)
+++ head/games/xmoto/Makefile	Fri Jul 10 16:21:04 2015	(r391708)
@@ -21,7 +21,7 @@ LICENSE=	GPLv2 # or later
 LICENSE_FILE=	${WRKSRC}/COPYING
 
 GNU_CONFIGURE=	yes
-USES=		dos2unix gmake jpeg lua:51
+USES=		compiler:features dos2unix gmake jpeg lua:51
 USE_GNOME=	libxml2
 USE_SQLITE=	3
 USE_SDL=	sdl mixer ttf net
@@ -57,8 +57,8 @@ DESKTOP_ENTRIES="XMoto" \
 
 .include <bsd.port.pre.mk>
 
-.if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000
-BROKEN=		does not build
+.if ${COMPILER_TYPE} == gcc && ${COMPILER_VERSION} <= 42
+BROKEN=		does not build with gcc 4.2
 .endif
 
 post-extract:


More information about the svn-ports-all mailing list