From 89a29e84f82c20c382b7cea5c6c2ecb5c981113e Mon Sep 17 00:00:00 2001 From: oreo639 Date: Fri, 5 Jan 2024 04:35:50 -0800 Subject: [PATCH] libsasl: fix build with glibc 2.38 disable rm'd applications that depend on crypt() The cyrus-sasl package was updated to use libxcrypt-devel, however here, the application that depends on crypt() gets rm'd so just disable it along with some other applications that get rm'd. --- srcpkgs/libsasl/template | 1 + 1 file changed, 1 insertion(+) diff --git a/srcpkgs/libsasl/template b/srcpkgs/libsasl/template index 76d1811f128..6c6da42d815 100644 --- a/srcpkgs/libsasl/template +++ b/srcpkgs/libsasl/template @@ -8,6 +8,7 @@ configure_args="--enable-cram --enable-digest --enable-auth-sasldb --enable-plain --enable-anon --enable-login --enable-gssapi --enable-ntlm --with-configdir=/etc/sasl2:/etc/sasl:/usr/lib/sasl2 --disable-otp --disable-srp --disable-srp-setpass --disable-krb4 + --with-saslauthd=no --with-authdaemond=no --with-pwcheck=no --with-devrandom=/dev/random ac_cv_gssapi_supports_spnego=yes" hostmakedepends="automake libtool pkg-config"