From: Oliver Kurth Date: Tue, 30 Jan 2018 00:52:18 +0000 (-0800) Subject: Change the glibc constraint to 2.11 from 2.12. X-Git-Tag: 10.2.5~20 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fd5cd39f8eb28421b2f280ebfac30ee7d15a4cd4;p=thirdparty%2Fopen-vm-tools.git Change the glibc constraint to 2.11 from 2.12. Earlier, a change was made to stop building open-vm-tools for LINUX systems with glibc < 2.12 But SLES 11 SP4 which is supported comes with glibc 2.11.3 The check will block SLES 11 SP4 from moving to OVT 10.2.x To fix it, this change relaxes the glibc constraint to 2.11. --- diff --git a/open-vm-tools/configure.ac b/open-vm-tools/configure.ac index 6ba126eed..a71d737ba 100644 --- a/open-vm-tools/configure.ac +++ b/open-vm-tools/configure.ac @@ -152,9 +152,9 @@ if test "x$enable_glibc_check" != "xno" ; then libc_ver_mnr=`expr "$libc_ver" : "[[0-9]]*\.\([[0-9]]*\)"` libc_ver_num=`expr $libc_ver_mjr \* 1000 + $libc_ver_mnr` - if test "$libc_ver_num" -lt 2012; then + if test "$libc_ver_num" -lt 2011; then AC_MSG_ERROR(["glibc version $libc_ver detected. -This version of open-vm-tools requires glibc version 2.12 or later. +This version of open-vm-tools requires glibc version 2.11 or later. Please use an older version of open-vm-tools for this system."]) fi fi