Received: by mail.netbsd.org (Postfix, from userid 605) id E4B3884D66; Tue, 28 Sep 2021 12:50:03 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 2986B84D4A for ; Tue, 28 Sep 2021 12:50:03 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id DYEA7XI54i5q for ; Tue, 28 Sep 2021 12:50:02 +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 37BEC84CD8 for ; Tue, 28 Sep 2021 12:50:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 310C4FA97; Tue, 28 Sep 2021 12:50:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1632833402236750" MIME-Version: 1.0 Date: Tue, 28 Sep 2021 12:50:02 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/print To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210928125002.310C4FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1632833402236750 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: jperkin Date: Tue Sep 28 12:50:02 UTC 2021 Modified Files: pkgsrc/print/ghostscript-agpl: Makefile pkgsrc/print/ghostscript-gpl: Makefile Log Message: ghostscript-*: Support GCC >= 10. To generate a diff of this commit: cvs rdiff -u -r1.62 -r1.63 pkgsrc/print/ghostscript-agpl/Makefile cvs rdiff -u -r1.61 -r1.62 pkgsrc/print/ghostscript-gpl/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1632833402236750 Content-Disposition: inline Content-Length: 1761 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/print/ghostscript-agpl/Makefile diff -u pkgsrc/print/ghostscript-agpl/Makefile:1.62 pkgsrc/print/ghostscript-agpl/Makefile:1.63 --- pkgsrc/print/ghostscript-agpl/Makefile:1.62 Wed Jun 9 20:20:09 2021 +++ pkgsrc/print/ghostscript-agpl/Makefile Tue Sep 28 12:50:01 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.62 2021/06/09 20:20:09 adam Exp $ +# $NetBSD: Makefile,v 1.63 2021/09/28 12:50:01 jperkin Exp $ DISTNAME= ghostscript-${GS_VERSION} PKGNAME= ${DISTNAME:S/ghostscript/ghostscript-agpl/} @@ -72,7 +72,7 @@ CFLAGS+= -fPIC .endif # Not ideal but too many files hardcode _XOPEN_SOURCE=500. -.if !empty(CC_VERSION:Mgcc-[6-9]*) || !empty(PKGSRC_COMPILER:Mclang) +.if !empty(CC_VERSION:Mgcc-[6-9]*) || !empty(CC_VERSION:Mgcc-1[0-9].*) || !empty(PKGSRC_COMPILER:Mclang) CPPFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ .else CPPFLAGS.SunOS+= -D__C99FEATURES__ Index: pkgsrc/print/ghostscript-gpl/Makefile diff -u pkgsrc/print/ghostscript-gpl/Makefile:1.61 pkgsrc/print/ghostscript-gpl/Makefile:1.62 --- pkgsrc/print/ghostscript-gpl/Makefile:1.61 Mon May 24 19:53:45 2021 +++ pkgsrc/print/ghostscript-gpl/Makefile Tue Sep 28 12:50:02 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.61 2021/05/24 19:53:45 wiz Exp $ +# $NetBSD: Makefile,v 1.62 2021/09/28 12:50:02 jperkin Exp $ DISTNAME= ghostscript-${GS_VERSION} PKGNAME= ${DISTNAME:S/ghostscript/ghostscript-gpl/} @@ -76,7 +76,7 @@ CFLAGS+= -fPIC .endif # Not ideal but too many files hardcode _XOPEN_SOURCE=500. -.if !empty(CC_VERSION:Mgcc-[6-9]*) || !empty(PKGSRC_COMPILER:Mclang) +.if !empty(CC_VERSION:Mgcc-[6-9]*) || !empty(CC_VERSION:Mgcc-1[0-9].*) || !empty(PKGSRC_COMPILER:Mclang) CPPFLAGS.SunOS+= -D_XOPEN_SOURCE=600 -D__EXTENSIONS__ .endif --_----------=_1632833402236750--