From: Julian Seward Date: Sun, 3 Jul 2005 10:18:33 +0000 (+0000) Subject: glibc-2.1 is now so ancient that it's probably untrue we still support it. X-Git-Tag: svn/VALGRIND_3_0_0~223 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f38f9613f74e6191ddd0dc2e1cf59d87dd100ace;p=thirdparty%2Fvalgrind.git glibc-2.1 is now so ancient that it's probably untrue we still support it. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@4095 --- diff --git a/configure.in b/configure.in index 980dc8ee48..7a615c8b42 100644 --- a/configure.in +++ b/configure.in @@ -226,16 +226,6 @@ AC_SUBST(DEFAULT_SUPP) glibc="" -AC_EGREP_CPP([GLIBC_21], [ -#include -#ifdef __GNU_LIBRARY__ - #if (__GLIBC__ == 2 && __GLIBC_MINOR__ == 1) - GLIBC_21 - #endif -#endif -], -glibc="2.1") - AC_EGREP_CPP([GLIBC_22], [ #include #ifdef __GNU_LIBRARY__ @@ -269,12 +259,6 @@ glibc="2.4") AC_MSG_CHECKING([the glibc version]) case "${glibc}" in - 2.1) - AC_MSG_RESULT(2.1 family) - AC_DEFINE([GLIBC_2_1], 1, [Define to 1 if you're using glibc 2.1.x]) - DEFAULT_SUPP="${DEFAULT_SUPP} glibc-2.1.supp" - ;; - 2.2) AC_MSG_RESULT(2.2 family) AC_DEFINE([GLIBC_2_2], 1, [Define to 1 if you're using glibc 2.2.x]) @@ -295,7 +279,7 @@ case "${glibc}" in *) AC_MSG_RESULT(unsupported version) - AC_MSG_ERROR([Valgrind requires glibc version 2.1, 2.2, 2.3 or 2.4]) + AC_MSG_ERROR([Valgrind requires glibc version 2.2, 2.3 or 2.4]) ;; esac