From carl@stagecraft.cx  Sat Mar  1 09:53:50 2014
Return-Path: <carl@stagecraft.cx>
Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115])
	(using TLSv1 with cipher ADH-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by hub.freebsd.org (Postfix) with ESMTPS id BB6F854A
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  1 Mar 2014 09:53:50 +0000 (UTC)
Received: from brain.stagecraft.cx (brain.stagecraft.cx [59.167.142.95])
	(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
	(No client certificate requested)
	by mx1.freebsd.org (Postfix) with ESMTPS id 4071D1DB2
	for <FreeBSD-gnats-submit@freebsd.org>; Sat,  1 Mar 2014 09:53:49 +0000 (UTC)
Received: from ferb.stagecraft.cx (ferb.stagecraft.cx [172.30.0.20])
	by brain.stagecraft.cx (8.14.7/8.14.7) with ESMTP id s219lFB2030751
	(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO)
	for <FreeBSD-gnats-submit@freebsd.org>; Sat, 1 Mar 2014 20:47:15 +1100 (EST)
	(envelope-from carl@stagecraft.cx)
Received: (from carl@localhost)
	by ferb.stagecraft.cx (8.14.7/8.14.7/Submit) id s219lFXV012255;
	Sat, 1 Mar 2014 20:47:15 +1100 (EST)
	(envelope-from carl)
Message-Id: <201403010947.s219lFXV012255@ferb.stagecraft.cx>
Date: Sat, 1 Mar 2014 20:47:15 +1100 (EST)
From: Carl Makin <carl@stagecraft.cx>
Reply-To: Carl Makin <carl@stagecraft.cx>
To: FreeBSD-gnats-submit@freebsd.org
Cc:
Subject: MAINTAINER-UPDATE comms/gmfsk - fix compile with clang
X-Send-Pr-Version: 3.114
X-GNATS-Notify:

>Number:         187164
>Category:       ports
>Synopsis:       MAINTAINER-UPDATE comms/gmfsk - fix compile with clang
>Confidential:   no
>Severity:       non-critical
>Priority:       medium
>Responsible:    xride
>State:          closed
>Quarter:        
>Keywords:       
>Date-Required:  
>Class:          maintainer-update
>Submitter-Id:   current-users
>Arrival-Date:   Sat Mar 01 10:00:01 UTC 2014
>Closed-Date:    Sun Mar 30 16:40:34 UTC 2014
>Last-Modified:  Sun Mar 30 16:50:03 UTC 2014
>Originator:     Carl Makin
>Release:        FreeBSD 9.2-RELEASE-p3 amd64
>Organization:
>Environment:
System: FreeBSD ferb 9.2-RELEASE-p3 FreeBSD 9.2-RELEASE-p3 #0: Sat Jan 11 03:25:02 UTC 2014 root@amd64-builder.daemonology.net:/usr/obj/usr/src/sys/GENERIC amd64


	
>Description:
	
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.

>How-To-Repeat:
	
>Fix:

	

--- Makefile.diff begins here ---
--- Makefile.orig	2014-03-01 20:43:55.000000000 +1100
+++ Makefile	2014-03-01 19:41:58.000000000 +1100
@@ -19,6 +19,7 @@
 # preprocessor include tests.  The following line is a work around.
 CONFIGURE_ENV=	LIBS="-L${LOCALBASE}/lib"
 CPPFLAGS+=	-I${LOCALBASE}/include
+USE_CSTD=	gnu89
 USES=		gmake pkgconfig
 USE_GNOME=	libgnomeui gnomehack gnomeprefix
 INSTALLS_OMF=	yes
--- Makefile.diff ends here ---


>Release-Note:
>Audit-Trail:
Responsible-Changed-From-To: freebsd-ports-bugs->xride 
Responsible-Changed-By: edwin 
Responsible-Changed-When: Sat Mar 1 10:00:09 UTC 2014 
Responsible-Changed-Why:  
xride@ wants this submitter's PRs (via the GNATS Auto Assign Tool) 

http://www.freebsd.org/cgi/query-pr.cgi?pr=187164 
State-Changed-From-To: open->closed 
State-Changed-By: xride 
State-Changed-When: Sun Mar 30 16:39:43 UTC 2014 
State-Changed-Why:  
Committed, thank you for your help. 

http://www.freebsd.org/cgi/query-pr.cgi?pr=187164 

From: dfilter@FreeBSD.ORG (dfilter service)
To: bug-followup@FreeBSD.org
Cc:  
Subject: Re: ports/187164: commit references a PR
Date: Sun, 30 Mar 2014 16:39:13 +0000 (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"
 
>Unformatted:
