svn commit: r320808 - head/net/gq

Boris Samorodov bsam at FreeBSD.org
Thu Jun 13 15:47:13 UTC 2013


Author: bsam
Date: Thu Jun 13 15:47:13 2013
New Revision: 320808
URL: http://svnweb.freebsd.org/changeset/ports/320808

Log:
  Fix building with clang (CPPFLAGS+=-Wno-return-type).

Modified:
  head/net/gq/Makefile

Modified: head/net/gq/Makefile
==============================================================================
--- head/net/gq/Makefile	Thu Jun 13 15:30:22 2013	(r320807)
+++ head/net/gq/Makefile	Thu Jun 13 15:47:13 2013	(r320808)
@@ -26,7 +26,7 @@ USE_GMAKE=	yes
 GNU_CONFIGURE=	yes
 CONFIGURE_ARGS=	--with-ldap-prefix=${LOCALBASE}
 
-CPPFLAGS+=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS}
+CPPFLAGS+=	-I${LOCALBASE}/include ${PTHREAD_CFLAGS} -Wno-return-type
 LDFLAGS+=	-L${LOCALBASE}/lib ${PTHREAD_LIBS}
 
 .include <bsd.port.options.mk>


More information about the svn-ports-all mailing list