Received: by mail.netbsd.org (Postfix, from userid 605) id 4B9C584ED5; Tue, 28 Sep 2021 12:59:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 854E884CD8 for ; Tue, 28 Sep 2021 12:59:41 +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 aeoRo9L7A5F4 for ; Tue, 28 Sep 2021 12:59:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id C554584ED4 for ; Tue, 28 Sep 2021 12:59:40 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C2B03FA97; Tue, 28 Sep 2021 12:59:40 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1632833980270850" MIME-Version: 1.0 Date: Tue, 28 Sep 2021 12:59:40 +0000 From: "Jonathan Perkin" Subject: CVS commit: pkgsrc/security/clamav To: pkgsrc-changes@NetBSD.org Reply-To: jperkin@netbsd.org X-Mailer: log_accum Message-Id: <20210928125940.C2B03FA97@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1632833980270850 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:59:40 UTC 2021 Modified Files: pkgsrc/security/clamav: Makefile Log Message: clamav: Support GCC >= 10. To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 pkgsrc/security/clamav/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1632833980270850 Content-Disposition: inline Content-Length: 788 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/clamav/Makefile diff -u pkgsrc/security/clamav/Makefile:1.77 pkgsrc/security/clamav/Makefile:1.78 --- pkgsrc/security/clamav/Makefile:1.77 Thu Jun 3 15:47:34 2021 +++ pkgsrc/security/clamav/Makefile Tue Sep 28 12:59:40 2021 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.77 2021/06/03 15:47:34 taca Exp $ +# $NetBSD: Makefile,v 1.78 2021/09/28 12:59:40 jperkin Exp $ .include "Makefile.common" @@ -39,7 +39,7 @@ NOT_PAX_MPROTECT_SAFE+= bin/clamscan NOT_PAX_MPROTECT_SAFE+= bin/freshclam CFLAGS.SunOS+= -D__EXTENSIONS__ -.if !empty(PKGSRC_COMPILER:Mclang) || !empty(CC_VERSION:Mgcc-[6-9]*) +.if !empty(PKGSRC_COMPILER:Mclang) || !empty(CC_VERSION:Mgcc-[6-9]*) || !empty(CC_VERSION:Mgcc-1[0-9].*) CFLAGS.SunOS+= -D_XOPEN_SOURCE=600 .endif --_----------=_1632833980270850--