From: Christian Heimes Date: Wed, 24 Nov 2021 09:47:22 +0000 (+0200) Subject: bpo-45847: Fix _crypt detection on Ubuntu (GH-29743) X-Git-Tag: v3.11.0a3~141 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=64c3807da93fc3e0c15bc376f220b2d24551023e;p=thirdparty%2FPython%2Fcpython.git bpo-45847: Fix _crypt detection on Ubuntu (GH-29743) --- diff --git a/configure b/configure index d2d79920d08f..abfda2b00de7 100755 --- a/configure +++ b/configure @@ -15805,7 +15805,7 @@ save_LIBS=$LIBS CPPFLAGS="$LIBCRYPT_CFLAGS $CFLAGS" - LDFLAGS="$LIBCRYPT_LIBS $LDFLAGS" + LIBS="$LIBCRYPT_LIBS $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for crypt or crypt_r" >&5 $as_echo_n "checking for crypt or crypt_r... " >&6; } if ${ac_cv_crypt_crypt+:} false; then : diff --git a/configure.ac b/configure.ac index 4961e5a2553c..1853baa5a8e8 100644 --- a/configure.ac +++ b/configure.ac @@ -4243,7 +4243,7 @@ PKG_CHECK_MODULES([LIBCRYPT], [libxcrypt >= 3.1.1], [ WITH_SAVE_ENV([ CPPFLAGS="$LIBCRYPT_CFLAGS $CFLAGS" - LDFLAGS="$LIBCRYPT_LIBS $LDFLAGS" + LIBS="$LIBCRYPT_LIBS $LIBS" AC_CACHE_CHECK([for crypt or crypt_r], [ac_cv_crypt_crypt], [ AC_LINK_IFELSE([AC_LANG_PROGRAM([ #ifdef HAVE_CRYPT_H