From owner-svn-ports-all@freebsd.org Tue Aug 28 04:53:12 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id CF94410A1F4F; Tue, 28 Aug 2018 04:53:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 805F77253E; Tue, 28 Aug 2018 04:53:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 47A6F27ECD; Tue, 28 Aug 2018 04:53:12 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w7S4rC7n077175; Tue, 28 Aug 2018 04:53:12 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w7S4rBqH077173; Tue, 28 Aug 2018 04:53:11 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201808280453.w7S4rBqH077173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Tue, 28 Aug 2018 04:53:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-branches@freebsd.org Subject: svn commit: r478279 - in branches/2018Q3/dns/void-zones-tools: . files X-SVN-Group: ports-branches X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in branches/2018Q3/dns/void-zones-tools: . files X-SVN-Commit-Revision: 478279 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.27 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Aug 2018 04:53:13 -0000 Author: tobik Date: Tue Aug 28 04:53:11 2018 New Revision: 478279 URL: https://svnweb.freebsd.org/changeset/ports/478279 Log: MFH: r478228 dns/void-zones-tools: Respect CFLAGS and avoid using -march=native It currently compiles with -march=native which breaks on some machines cc -march=native -mssse3 -ffast-math -std=c11 -g0 -Ofast -fstrict-aliasing -Wno-parentheses binutils.c -c -o binutils.o error: unknown target CPU 'k6-3' Given that the build is currently targeting the build host CPU, existing binary packages on pkg.FreeBSD.org (or elsewhere) might be broken on many machines too, so bump PORTREVISION to trigger a rebuild. PR: 230899 Submitted by: tobik Reported by: Marco Beishuizen Approved by: Vidar Karlsen (maintainer) Approved by: ports-secteam (miwi) Added: branches/2018Q3/dns/void-zones-tools/files/patch-Makefile - copied unchanged from r478228, head/dns/void-zones-tools/files/patch-Makefile Modified: branches/2018Q3/dns/void-zones-tools/Makefile Directory Properties: branches/2018Q3/ (props changed) Modified: branches/2018Q3/dns/void-zones-tools/Makefile ============================================================================== --- branches/2018Q3/dns/void-zones-tools/Makefile Tue Aug 28 02:44:06 2018 (r478278) +++ branches/2018Q3/dns/void-zones-tools/Makefile Tue Aug 28 04:53:11 2018 (r478279) @@ -3,7 +3,7 @@ PORTNAME= void-zones-tools DISTVERSIONPREFIX= v DISTVERSION= 1.0.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= dns MAINTAINER= vidar@karlsen.tech Copied: branches/2018Q3/dns/void-zones-tools/files/patch-Makefile (from r478228, head/dns/void-zones-tools/files/patch-Makefile) ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ branches/2018Q3/dns/void-zones-tools/files/patch-Makefile Tue Aug 28 04:53:11 2018 (r478279, copy of r478228, head/dns/void-zones-tools/files/patch-Makefile) @@ -0,0 +1,19 @@ +--- Makefile.orig 2018-08-26 02:54:47 UTC ++++ Makefile +@@ -25,15 +25,7 @@ + + CC ?= clang + +-.if $(MACHINE) == "i386" || $(MACHINE) == "amd64" || $(MACHINE) == "x86_64" +-CFLAGS = $(CDEFS) -march=native -mssse3 -ffast-math +-.elif $(MACHINE) == "arm" +-CFLAGS = $(CDEFS) -fsigned-char +-.else +-CFLAGS = $(CDEFS) +-.endif +- +-CFLAGS += -std=c11 -g0 -Ofast -fstrict-aliasing -Wno-parentheses ++CFLAGS += -std=c11 -fstrict-aliasing -Wno-parentheses + PREFIX ?= /usr/local + + HEADERS = binutils.h store.h