svn commit: r309202 - head/games/tetrinet

Johan van Selst johans at FreeBSD.org
Tue Dec 18 22:54:06 UTC 2012


Author: johans
Date: Tue Dec 18 22:54:06 2012
New Revision: 309202
URL: http://svnweb.freebsd.org/changeset/ports/309202

Log:
  Fix potential build problem with non-standard compilers
  by avoiding global variable 'log' to be treated as built-in function
  (no functional changes)

Modified:
  head/games/tetrinet/Makefile

Modified: head/games/tetrinet/Makefile
==============================================================================
--- head/games/tetrinet/Makefile	Tue Dec 18 21:30:27 2012	(r309201)
+++ head/games/tetrinet/Makefile	Tue Dec 18 22:54:06 2012	(r309202)
@@ -13,7 +13,7 @@ MASTER_SITES=	http://tetrinet.or.cz/down
 MAINTAINER=	johans at FreeBSD.org
 COMMENT=	A console tetrinet client
 
-MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} -DHAVE_IPV6"
+MAKE_ARGS=	CC="${CC}" CFLAGS="${CFLAGS} -DHAVE_IPV6 -fno-builtin-log"
 PLIST_FILES=	bin/tetrinet bin/tetrinet-server
 
 .include <bsd.port.options.mk>


More information about the svn-ports-all mailing list