Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 3 Dec 2012 21:05:02 +0000 (UTC)
From:      Matthias Andree <mandree@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r308172 - head/irc/dancer
Message-ID:  <201212032105.qB3L52df044900@svn.freebsd.org>

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



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