Received: by mail.netbsd.org (Postfix, from userid 605) id 65A1D84D48; Thu, 28 Nov 2019 09:23:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id E378584C2B for ; Thu, 28 Nov 2019 09:23:32 +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 IZfvS83-JC0O for ; Thu, 28 Nov 2019 09:23:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4427984D02 for ; Thu, 28 Nov 2019 09:23:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 31A8AFA97; Thu, 28 Nov 2019 09:23:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1574933012101090" MIME-Version: 1.0 Date: Thu, 28 Nov 2019 09:23:32 +0000 From: "Benny Siegert" Subject: CVS commit: pkgsrc/devel/glib2 To: pkgsrc-changes@NetBSD.org Reply-To: bsiegert@netbsd.org X-Mailer: log_accum Message-Id: <20191128092332.31A8AFA97@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. --_----------=_1574933012101090 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: bsiegert Date: Thu Nov 28 09:23:32 UTC 2019 Modified Files: pkgsrc/devel/glib2: Makefile Log Message: glib2: add more CPPFLAGS to fix compilation on Solaris 11.3. From Joern Clausen via PR pkg/54722. To generate a diff of this commit: cvs rdiff -u -r1.264 -r1.265 pkgsrc/devel/glib2/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1574933012101090 Content-Disposition: inline Content-Length: 752 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/glib2/Makefile diff -u pkgsrc/devel/glib2/Makefile:1.264 pkgsrc/devel/glib2/Makefile:1.265 --- pkgsrc/devel/glib2/Makefile:1.264 Tue Nov 26 10:27:09 2019 +++ pkgsrc/devel/glib2/Makefile Thu Nov 28 09:23:32 2019 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.264 2019/11/26 10:27:09 jperkin Exp $ +# $NetBSD: Makefile,v 1.265 2019/11/28 09:23:32 bsiegert Exp $ .include "Makefile.common" @@ -13,6 +13,7 @@ MESON_ARGS+= -Dlibmount=false MAKE_ENV+= LD_LIBRARY_PATH=${WRKSRC}/output/gio:${WRKSRC}/output/glib:${WRKSRC}/output/gobject:${WRKSRC}/output/gmodule +CPPFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ LDFLAGS.SunOS+= -liconv -lintl -lnsl -lsocket REPLACE_PYTHON+= gio/gio-querymodules-wrapper.py --_----------=_1574933012101090--