aboutsummaryrefslogtreecommitdiff
path: root/kerberos5/libexec
diff options
context:
space:
mode:
authorCy Schubert <cy@FreeBSD.org>2024-01-12 07:39:02 +0000
committerCy Schubert <cy@FreeBSD.org>2024-01-12 07:42:33 +0000
commit3091cdb11fb05e554a54710116be87ee1f55c287 (patch)
treea052b6300197a5ecc389d236d9f98afda107bb96 /kerberos5/libexec
parent91dc2374661d717a30d646e5c4200508dfd24a4c (diff)
downloadsrc-3091cdb11fb05e554a54710116be87ee1f55c287.tar.gz
src-3091cdb11fb05e554a54710116be87ee1f55c287.zip
Revert "kerberos: Fix numerous segfaults when using weak crypto"
This revision breaks Linux and MacOS cross builds because TARGET_ENDIANNESS is not define during bootstrapping on these platforms. I think the correct approach would be to separate the new fbsd_ossl_provider_load() and unload functions into their own library (instead of libroken). This avoids the less desirable option of including bsd.cpu.mk in secure/lib/Makefile.common, which does build but could complicate future work. Reported by: jrtc27 This reverts commit cb350ba7bf7ca7c4cb97ed2c20ab45af60382cfb.
Diffstat (limited to 'kerberos5/libexec')
-rw-r--r--kerberos5/libexec/kdc/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/kerberos5/libexec/kdc/Makefile b/kerberos5/libexec/kdc/Makefile
index 211f4f379054..41fde9115c00 100644
--- a/kerberos5/libexec/kdc/Makefile
+++ b/kerberos5/libexec/kdc/Makefile
@@ -11,7 +11,7 @@ SRCS= config.c \
CFLAGS+=-I${KRB5DIR}/lib/krb5 -I${KRB5DIR}/lib/asn1 -I${KRB5DIR}/lib/roken \
-I${KRB5DIR}/kdc -I${SRCTOP}/contrib/com_err ${LDAPCFLAGS}
-LIBADD= kdc hdb krb5 roken crypt vers crypto
+LIBADD= kdc hdb krb5 roken crypt vers
LDFLAGS=${LDAPLDFLAGS}
.include <bsd.prog.mk>