From owner-svn-ports-head@freebsd.org Wed Oct 14 06:41:25 2020 Return-Path: Delivered-To: svn-ports-head@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A588942EA9F; Wed, 14 Oct 2020 06:41:25 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CB2r53T49z4lZ8; Wed, 14 Oct 2020 06:41:25 +0000 (UTC) (envelope-from danfe@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 5A981A59E; Wed, 14 Oct 2020 06:41:25 +0000 (UTC) (envelope-from danfe@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09E6fP3Z010852; Wed, 14 Oct 2020 06:41:25 GMT (envelope-from danfe@FreeBSD.org) Received: (from danfe@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09E6fPUD010851; Wed, 14 Oct 2020 06:41:25 GMT (envelope-from danfe@FreeBSD.org) Message-Id: <202010140641.09E6fPUD010851@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: danfe set sender to danfe@FreeBSD.org using -f From: Alexey Dokuchaev Date: Wed, 14 Oct 2020 06:41:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r552302 - head/net/nifmon/files X-SVN-Group: ports-head X-SVN-Commit-Author: danfe X-SVN-Commit-Paths: head/net/nifmon/files X-SVN-Commit-Revision: 552302 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.33 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Oct 2020 06:41:25 -0000 Author: danfe Date: Wed Oct 14 06:41:24 2020 New Revision: 552302 URL: https://svnweb.freebsd.org/changeset/ports/552302 Log: Force -fcommon to unbreak the build against Clang 11 and GCC 10. PR: 250219 Modified: head/net/nifmon/files/patch-Makefile Modified: head/net/nifmon/files/patch-Makefile ============================================================================== --- head/net/nifmon/files/patch-Makefile Wed Oct 14 05:28:03 2020 (r552301) +++ head/net/nifmon/files/patch-Makefile Wed Oct 14 06:41:24 2020 (r552302) @@ -1,8 +1,10 @@ ---- Makefile.orig Wed May 2 20:41:22 2001 -+++ Makefile Wed Feb 25 17:43:00 2004 -@@ -5,7 +5,7 @@ +--- Makefile.orig 2001-05-02 18:41:22 UTC ++++ Makefile +@@ -4,8 +4,9 @@ MAN8 = nifmon.8 + BINDIR = /usr/local/bin MANDIR = /usr/local/man/man ++CFLAGS += -fcommon # compile debug support -COPTS += -DDEBUG -g -Wall +#COPTS += -DDEBUG -g -Wall