Received: by mail.netbsd.org (Postfix, from userid 605) id E90A784D9E; Sat, 17 Jun 2017 19:53:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 77F4284D8F for ; Sat, 17 Jun 2017 19:53:11 +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 O2MzW8mctKjO for ; Sat, 17 Jun 2017 19:53:11 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id DC6B984D77 for ; Sat, 17 Jun 2017 19:53:10 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id DAA90FAE8; Sat, 17 Jun 2017 19:53:10 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_149772919071640" MIME-Version: 1.0 Date: Sat, 17 Jun 2017 19:53:10 +0000 From: "Joerg Sonnenberger" Subject: CVS commit: pkgsrc/sysutils/xenkernel48 To: pkgsrc-changes@NetBSD.org Reply-To: joerg@netbsd.org X-Mailer: log_accum Message-Id: <20170617195310.DAA90FAE8@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. --_----------=_149772919071640 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: joerg Date: Sat Jun 17 19:53:10 UTC 2017 Modified Files: pkgsrc/sysutils/xenkernel48: Makefile Log Message: Restrict -falign-functions to GCC. To generate a diff of this commit: cvs rdiff -u -r1.3 -r1.4 pkgsrc/sysutils/xenkernel48/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_149772919071640 Content-Disposition: inline Content-Length: 777 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/sysutils/xenkernel48/Makefile diff -u pkgsrc/sysutils/xenkernel48/Makefile:1.3 pkgsrc/sysutils/xenkernel48/Makefile:1.4 --- pkgsrc/sysutils/xenkernel48/Makefile:1.3 Thu Apr 13 13:08:34 2017 +++ pkgsrc/sysutils/xenkernel48/Makefile Sat Jun 17 19:53:10 2017 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.3 2017/04/13 13:08:34 bouyer Exp $ +# $NetBSD: Makefile,v 1.4 2017/06/17 19:53:10 joerg Exp $ VERSION= 4.8.0 DISTNAME= xen-${VERSION} @@ -39,8 +39,9 @@ EXTRA_CFLAGS+= -Qunused-arguments -no-in -Wno-error=address-of-packed-member \ -Wno-error=initializer-overrides \ -Wno-error=tautological-compare -.endif +.elif !empty(PKGSRC_COMPILER:Mgcc) EXTRA_CFLAGS+= -falign-functions=16 +.endif MAKE_ENV+= EXTRA_CFLAGS=${EXTRA_CFLAGS:Q} --_----------=_149772919071640--