diff options
author | Johan van Selst <johans@FreeBSD.org> | 2012-12-18 22:54:06 +0000 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2012-12-18 22:54:06 +0000 |
commit | 130aaaf42371825ad4281f2d3bda9670a0a2bf49 (patch) | |
tree | 06d97f63f63fa55c95abefc392af660a040d324d | |
parent | a959e56271f9b226ee64c92e0350eef99786573f (diff) |
Fix potential build problem with non-standard compilers
by avoiding global variable 'log' to be treated as built-in function
(no functional changes)
Notes
Notes:
svn path=/head/; revision=309202
-rw-r--r-- | games/tetrinet/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/tetrinet/Makefile b/games/tetrinet/Makefile index 34b6bef6511c..3f94e4c04113 100644 --- a/games/tetrinet/Makefile +++ b/games/tetrinet/Makefile @@ -13,7 +13,7 @@ MASTER_SITES= http://tetrinet.or.cz/download/ 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> |