comms/gmfsk fails to compile with clang. This is due to it using C89 extensions without declaring them. This just adds the workaround recommended in the porters handbook.
Responsible Changed From-To: freebsd-ports-bugs->xride xride@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Author: xride Date: Sun Mar 30 16:39:10 2014 New Revision: 349646 URL: http://svnweb.freebsd.org/changeset/ports/349646 QAT: https://qat.redports.org/buildarchive/r349646/ Log: Fix compile with clang PR: ports/187164 Submitted by: Carl Makin <carl@stagecraft.cx> (maintainer) Modified: head/comms/gmfsk/Makefile Modified: head/comms/gmfsk/Makefile ============================================================================== --- head/comms/gmfsk/Makefile Sun Mar 30 16:17:03 2014 (r349645) +++ head/comms/gmfsk/Makefile Sun Mar 30 16:39:10 2014 (r349646) @@ -19,6 +19,7 @@ GNU_CONFIGURE= yes # preprocessor include tests. The following line is a work around. CONFIGURE_ENV= LIBS="-L${LOCALBASE}/lib" CPPFLAGS+= -I${LOCALBASE}/include +USES_CSTD= gnu89 USES= gmake pkgconfig USE_GNOME= libgnomeui gnomehack gnomeprefix INSTALLS_OMF= yes _______________________________________________ svn-ports-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-ports-all To unsubscribe, send any mail to "svn-ports-all-unsubscribe@freebsd.org"
State Changed From-To: open->closed Committed, thank you for your help.