git: 8b2e453449d3 - main - security/libsecret: Mark as PIE_UNSAFE

From: Älven <alven_at_FreeBSD.org>
Date: Mon, 01 Sep 2025 09:15:24 UTC
The branch main has been updated by alven:

URL: https://cgit.FreeBSD.org/ports/commit/?id=8b2e453449d365065bbd4e897a9509abd5bac99d

commit 8b2e453449d365065bbd4e897a9509abd5bac99d
Author:     Älven <alven@FreeBSD.org>
AuthorDate: 2025-08-07 20:21:43 +0000
Commit:     Älven <alven@FreeBSD.org>
CommitDate: 2025-09-01 09:14:59 +0000

    security/libsecret: Mark as PIE_UNSAFE
    
    ld: error: relocation R_X86_64_64 cannot be used against local symbol;
    recompile with -fPIC
    
    PR:             288721
    Approved by:    gnome@ (maintainer, timeout > 3 weeks)
    Approved by:    yuri@ (Mentor)
---
 security/libsecret/Makefile | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/security/libsecret/Makefile b/security/libsecret/Makefile
index 43d6825802cd..9d01aa01e974 100644
--- a/security/libsecret/Makefile
+++ b/security/libsecret/Makefile
@@ -25,4 +25,6 @@ MESON_ARGS=	-Dbash_completion=disabled
 # see PR 287429 / https://gitlab.gnome.org/GNOME/libsecret/-/issues/106
 MESON_ARGS+=	-Dc_args="-DHAVE_CMSGCRED"
 
+PIE_UNSAFE=	yes
+
 .include <bsd.port.mk>