svn commit: r308172 - head/irc/dancer

Matthias Andree mandree at FreeBSD.org
Mon Dec 3 21:05:03 UTC 2012


Author: mandree
Date: Mon Dec  3 21:05:02 2012
New Revision: 308172
URL: http://svnweb.freebsd.org/changeset/ports/308172

Log:
  USE_CSTD=gnu89 to fix build with clang (hopefully on HEAD, too.)
  This is due to C89 inline semantics being used that cause linker failures when
  compiled as C99.
  
  Feature safe: yes

Modified:
  head/irc/dancer/Makefile   (contents, props changed)

Modified: head/irc/dancer/Makefile
==============================================================================
--- head/irc/dancer/Makefile	Mon Dec  3 20:16:21 2012	(r308171)
+++ head/irc/dancer/Makefile	Mon Dec  3 21:05:02 2012	(r308172)
@@ -20,6 +20,7 @@ GNU_CONFIGURE=	yes
 MAKE_ARGS+=	CSPECIAL="${CFLAGS}" LDFLAGS="${LDFLAGS}"
 LDFLAGS+=	-lm
 CPP=		#
+USE_CSTD=	gnu89
 
 do-install:
 	@${MKDIR} ${DATADIR}


More information about the svn-ports-head mailing list