From: Oliver Kurth Date: Fri, 26 Jan 2018 23:04:35 +0000 (-0800) Subject: Change the glibc constraint to 2.11 from 2.12. X-Git-Tag: stable-10.3.0~173 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=757833d601541e9bde24571fa22e669900e98a7e;p=thirdparty%2Fopen-vm-tools.git Change the glibc constraint to 2.11 from 2.12. Earlier, we made a change 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 9754bb27e..0fa26665e 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