diff options
author | Cy Schubert <cy@FreeBSD.org> | 2024-03-14 15:54:29 -0600 |
---|---|---|
committer | Cy Schubert <cy@FreeBSD.org> | 2024-03-14 18:26:46 -0600 |
commit | 41d59911159e830876ddc60d90d3d4bdc16b9cb6 (patch) | |
tree | 80cbcbb9ef452262782a6ad372dde1bffdcb30ed | |
parent | bbbf9ce2a68ead5dc5d0ba53fa1fcabc6487f2d8 (diff) | |
download | freebsd-ports-41d59911159e830876ddc60d90d3d4bdc16b9cb6.zip |
security/heimdal: Fix build
Fix build due to many undefined symbols listed in version.map. The
problem is that the listed functions are conditionally built and since
they exist in FreeBSD they are not built but they are still referenced
in version.map.
PR: 275979
Approved by: portmgr (just fix it)
(cherry picked from commit 64f7f98bb61947a72001a84f06840c374b26628d)
-rw-r--r-- | security/heimdal/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/security/heimdal/Makefile b/security/heimdal/Makefile index 51e1bb3f096d..f777807c7826 100644 --- a/security/heimdal/Makefile +++ b/security/heimdal/Makefile @@ -44,6 +44,7 @@ CONFIGURE_ARGS= --with-berkeley-db \ --sysconfdir="${PREFIX}/etc" # XXX --with-readline picks up libreadline even if found in /usr/lib. MAKE_ENV= INSTALL_CATPAGES=no +LDFLAGS= -Wl,--undefined-version INSTALL_TARGET= install-strip .if !exists(/etc/rc.d/ipropd_master) USE_RC_SUBR= ipropd_master ipropd_slave |