]> git.saurik.com Git - wxWidgets.git/blobdiff - configure.in
patch fixing b32 makefile (sourceforge Bugs item #566439)
[wxWidgets.git] / configure.in
index 0c1bf77c84dc88f8083c43a140d14bb2f72c7693..40ce4d86419dda1b50336a63321be1ccd1c8a511 100644 (file)
@@ -1363,11 +1363,14 @@ dnl flush the cache because checking for libraries below might abort
 AC_CACHE_SAVE
 
 dnl check for glibc version
+dnl
+dnl VZ: I have no idea why had this check been there originally, but now
+dnl     it is only used to get the recursive mutexes under Linux
 if test "$USE_LINUX" = 1; then
     AC_CACHE_CHECK([for glibc 2.1 or later], wx_cv_lib_glibc21,[
         AC_TRY_COMPILE([#include <features.h>],
             [
-                #if !__GLIBC_PREREQ(2, 1)
+                #if (__GLIBC__ < 2) || (__GLIBC_MINOR__ < 1)
                     #error not glibc2.1
                 #endif
             ],