Source: libxcrypt
Version: 1:4.4.18-1
User: helm...@debian.org
Usertags: rebootstrap
Tags: patch

libxcrypt's method of glibc version detection uses the build
architecture compiler. It actually query the CC environment variable,
but this happens to be unset. The relevant perl script is called from
configure.ac, which knows the right compiler to use, but does not pass
it. Please consider applying the attached patch.

Helmut
--- libxcrypt-4.4.18.orig/configure.ac
+++ libxcrypt-4.4.18/configure.ac
@@ -427,6 +427,7 @@
 if test $enable_obsolete_api = 1; then
   AC_MSG_CHECKING([minimum symbol version to use for compatibility symbols])
   SYMVER_FLOOR=$(
+    export CC;
     $PERL ${srcdir}/build-aux/compute-symver-floor \
       ${srcdir}/lib/libcrypt.minver $host_os $host_cpu \
     2>&AS_MESSAGE_LOG_FD

Reply via email to