From: Date: October 15 2007 7:59pm Subject: bk commit into 5.0 tree (joerg:1.2537) BUG#29658 List-Archive: http://lists.mysql.com/commits/35590 X-Bug: 29658 Message-Id: <20071015175921.18FC119AD@trift2.fambruehe> Below is the list of changes that have just been committed into a local 5.0 repository of joerg. When joerg does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-10-15 19:59:14+02:00, joerg@trift2. +1 -0 Allow for different directories containing the "libc", as it may well happen with 32- vs 64-bit Linux systems. This patch was proposed immediately with the report of Bug #29658 wrong test for static nss checking on linux, doesn't cover all platforms configure.in@stripped, 2007-10-15 19:59:10+02:00, joerg@trift2. +1 -1 Allow for different directories containing the "libc", as it may well happen with 32- vs 64-bit Linux systems. This patch was proposed immediately with the report of Bug #29658 wrong test for static nss checking on linux, doesn't cover all platforms diff -Nrup a/configure.in b/configure.in --- a/configure.in 2007-09-26 19:15:33 +02:00 +++ b/configure.in 2007-10-15 19:59:10 +02:00 @@ -631,7 +631,7 @@ AC_SUBST(NOINST_LDFLAGS) if test "$TARGET_LINUX" = "true" -a "$static_nss" = "" then - tmp=`nm /usr/lib/libc.a | grep _nss_files_getaliasent_r` + tmp=`nm /usr/lib*/libc.a | grep _nss_files_getaliasent_r` if test -n "$tmp" then STATIC_NSS_FLAGS="-lc -lnss_files -lnss_dns -lresolv"