From owner-dev-commits-src-all@freebsd.org Sat Apr 17 20:12:49 2021 Return-Path: Delivered-To: dev-commits-src-all@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 1AD765E2191; Sat, 17 Apr 2021 20:12:49 +0000 (UTC) (envelope-from git@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 "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FN44x0Gnjz3JMh; Sat, 17 Apr 2021 20:12:49 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org (gitrepo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:5]) (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 did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F08291E6B6; Sat, 17 Apr 2021 20:12:48 +0000 (UTC) (envelope-from git@FreeBSD.org) Received: from gitrepo.freebsd.org ([127.0.1.44]) by gitrepo.freebsd.org (8.16.1/8.16.1) with ESMTP id 13HKCmEs034623; Sat, 17 Apr 2021 20:12:48 GMT (envelope-from git@gitrepo.freebsd.org) Received: (from git@localhost) by gitrepo.freebsd.org (8.16.1/8.16.1/Submit) id 13HKCmaw034622; Sat, 17 Apr 2021 20:12:48 GMT (envelope-from git) Date: Sat, 17 Apr 2021 20:12:48 GMT Message-Id: <202104172012.13HKCmaw034622@gitrepo.freebsd.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-main@FreeBSD.org From: Kristof Provost Subject: git: 8403170b3d39 - main - libpfct: Fix PIC flag MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit X-Git-Committer: kp X-Git-Repository: src X-Git-Refname: refs/heads/main X-Git-Reftype: branch X-Git-Commit: 8403170b3d39326f836bc999534fe8c4d41cda11 Auto-Submitted: auto-generated X-BeenThere: dev-commits-src-all@freebsd.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: Commit messages for all branches of the src repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2021 20:12:49 -0000 The branch main has been updated by kp: URL: https://cgit.FreeBSD.org/src/commit/?id=8403170b3d39326f836bc999534fe8c4d41cda11 commit 8403170b3d39326f836bc999534fe8c4d41cda11 Author: Kristof Provost AuthorDate: 2021-04-16 19:00:51 +0000 Commit: Kristof Provost CommitDate: 2021-04-17 20:10:13 +0000 libpfct: Fix PIC flag Use ${PICFLAG} rather than hard-adding -fPIC, which removes the requirement for libnv to be built PIC. MFC after: 4 weeks Sponsored by: Rubicon Communications, LLC ("Netgate") --- lib/libnv/Makefile | 1 - lib/libpfctl/Makefile | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libnv/Makefile b/lib/libnv/Makefile index 6105f6244fce..b13758931c4e 100644 --- a/lib/libnv/Makefile +++ b/lib/libnv/Makefile @@ -10,7 +10,6 @@ SHLIB_MAJOR= 0 .PATH: ${SRCTOP}/sys/contrib/libnv ${SRCTOP}/sys/sys CFLAGS+=-I${.CURDIR} -CFLAGS+=${PICFLAG} SRCS= cnvlist.c SRCS+= dnvlist.c diff --git a/lib/libpfctl/Makefile b/lib/libpfctl/Makefile index d7a00a94b349..69500ae496f4 100644 --- a/lib/libpfctl/Makefile +++ b/lib/libpfctl/Makefile @@ -7,6 +7,6 @@ INTERNALLIB= true SRCS= libpfctl.c INCS= libpfctl.h -CFLAGS+= -fPIC +CFLAGS+=${PICFLAG} .include