Blame m4/glibc21.m4

Packit 971217
# glibc21.m4 serial 3
Packit 971217
dnl Copyright (C) 2000-2002, 2004 Free Software Foundation, Inc.
Packit 971217
dnl This file is free software; the Free Software Foundation
Packit 971217
dnl gives unlimited permission to copy and/or distribute it,
Packit 971217
dnl with or without modifications, as long as this notice is preserved.
Packit 971217
Packit 971217
# Test for the GNU C Library, version 2.1 or newer.
Packit 971217
# From Bruno Haible.
Packit 971217
Packit 971217
AC_DEFUN([gl_GLIBC21],
Packit 971217
  [
Packit 971217
    AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer,
Packit 971217
      ac_cv_gnu_library_2_1,
Packit 971217
      [AC_EGREP_CPP([Lucky GNU user],
Packit 971217
	[
Packit 971217
#include <features.h>
Packit 971217
#ifdef __GNU_LIBRARY__
Packit 971217
 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)
Packit 971217
  Lucky GNU user
Packit 971217
 #endif
Packit 971217
#endif
Packit 971217
	],
Packit 971217
	ac_cv_gnu_library_2_1=yes,
Packit 971217
	ac_cv_gnu_library_2_1=no)
Packit 971217
      ]
Packit 971217
    )
Packit 971217
    AC_SUBST(GLIBC21)
Packit 971217
    GLIBC21="$ac_cv_gnu_library_2_1"
Packit 971217
  ]
Packit 971217
)