Blame m4/glibc21.m4

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