Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 18 Dec 2012 22:54:06 +0000 (UTC)
From:      Johan van Selst <johans@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r309202 - head/games/tetrinet
Message-ID:  <201212182254.qBIMs6Dw046489@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201212182254.qBIMs6Dw046489>