Received: by mail.netbsd.org (Postfix, from userid 605) id ADEA984D82; Thu, 1 Feb 2018 09:56:46 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 3A10684D51 for ; Thu, 1 Feb 2018 09:56:46 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id s9zGvGCnTDVV for ; Thu, 1 Feb 2018 09:56:45 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9745284D38 for ; Thu, 1 Feb 2018 09:56:45 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 95555FB40; Thu, 1 Feb 2018 09:56:45 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_151747900544480" MIME-Version: 1.0 Date: Thu, 1 Feb 2018 09:56:45 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/sysutils/gvfs To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20180201095645.95555FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_151747900544480 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Thu Feb 1 09:56:45 UTC 2018 Modified Files: pkgsrc/sysutils/gvfs: Makefile Log Message: gvfs: Handle newer GCC and clang on SunOS. To generate a diff of this commit: cvs rdiff -u -r1.89 -r1.90 pkgsrc/sysutils/gvfs/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_151747900544480 Content-Disposition: inline Content-Length: 804 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/gvfs/Makefile diff -u pkgsrc/sysutils/gvfs/Makefile:1.89 pkgsrc/sysutils/gvfs/Makefile:1.90 --- pkgsrc/sysutils/gvfs/Makefile:1.89 Sun Jan 28 20:11:04 2018 +++ pkgsrc/sysutils/gvfs/Makefile Thu Feb 1 09:56:45 2018 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.89 2018/01/28 20:11:04 wiz Exp $ +# $NetBSD: Makefile,v 1.90 2018/02/01 09:56:45 jperkin Exp $ # DISTNAME= gvfs-1.6.7 @@ -70,7 +70,11 @@ CONFIGURE_ARGS+= --disable-fuse BUILDLINK_TRANSFORM+= rm:-DG_DISABLE_DEPRECATED +.if !empty(PKGSRC_COMPILER:Mclang) || !empty(CC_VERSION:Mgcc-[6-9]*) +CFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ +.else CFLAGS.SunOS+= -D_XOPEN_SOURCE=500 -D__EXTENSIONS__ +.endif BUILDLINK_API_DEPENDS.glib2+= glib2>=2.23.4 .include "../../devel/glib2/modules.mk" --_----------=_151747900544480--