git: 9c238775a80d - stable/13 - libpfct: Fix PIC flag

Kristof Provost kp at FreeBSD.org
Fri May 7 15:25:58 UTC 2021


The branch stable/13 has been updated by kp:

URL: https://cgit.FreeBSD.org/src/commit/?id=9c238775a80d8fbaa61e72c8f08122be47481501

commit 9c238775a80d8fbaa61e72c8f08122be47481501
Author:     Kristof Provost <kp at FreeBSD.org>
AuthorDate: 2021-04-16 19:00:51 +0000
Commit:     Kristof Provost <kp at FreeBSD.org>
CommitDate: 2021-05-07 08:15:43 +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")
    
    (cherry picked from commit 8403170b3d39326f836bc999534fe8c4d41cda11)
---
 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 <bsd.lib.mk>


More information about the dev-commits-src-all mailing list