Skip to content

Commit b0f1d71

Browse files
committed
Autoconf: Print the GNU C Library version when needed in autogen.sh
1 parent 2db7c32 commit b0f1d71

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

autogen.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,7 @@ if [ "$BUILD_YEAR2038" = yes ] && [ "`uname -s`" = Linux ]; then
3232
GLIBC_VERSION=`ldd --version|head -1|grep GLIBC|sed 's/.* //'`
3333
maj_glibc=`echo "$GLIBC_VERSION" | cut -d. -f1`
3434
min_glibc=`echo "$GLIBC_VERSION" | cut -d. -f2`
35+
echo "GNU C Library identification: $GLIBC_VERSION"
3536
if [ "$maj_glibc" -gt 2 ] || { [ "$maj_glibc" -eq 2 ] && \
3637
[ "$min_glibc" -ge 34 ]; }; then
3738
CONFIGURE_AC_NEW="configure.ac.new$$"

0 commit comments

Comments
 (0)