Bug 187164 - MAINTAINER-UPDATE comms/gmfsk - fix compile with clang
Summary: MAINTAINER-UPDATE comms/gmfsk - fix compile with clang
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Soeren Straarup
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-03-01 10:00 UTC by carl
Modified: 2014-03-30 17:50 UTC (History)
0 users

See Also:


Attachments
Makefile.diff (371 bytes, patch)
2014-03-01 10:00 UTC, carl
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description carl 2014-03-01 10:00:01 UTC
	
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.
Comment 1 Edwin Groothuis freebsd_committer freebsd_triage 2014-03-01 10:00:09 UTC
Responsible Changed
From-To: freebsd-ports-bugs->xride

xride@ wants this submitter's PRs (via the GNATS Auto Assign Tool)
Comment 2 dfilter service freebsd_committer freebsd_triage 2014-03-30 17:39:13 UTC
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"
Comment 3 Soeren Straarup freebsd_committer freebsd_triage 2014-03-30 17:39:43 UTC
State Changed
From-To: open->closed

Committed, thank you for your help.