Blame m4/glibc2.m4

Packit 741ade
# glibc2.m4 serial 1
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.0 or newer.
Packit 741ade
# From Bruno Haible.
Packit 741ade
Packit 741ade
AC_DEFUN([gt_GLIBC2],
Packit 741ade
  [
Packit 741ade
    AC_CACHE_CHECK(whether we are using the GNU C Library 2 or newer,
Packit 741ade
      ac_cv_gnu_library_2,
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)
Packit 741ade
  Lucky GNU user
Packit 741ade
 #endif
Packit 741ade
#endif
Packit 741ade
	],
Packit 741ade
	ac_cv_gnu_library_2=yes,
Packit 741ade
	ac_cv_gnu_library_2=no)
Packit 741ade
      ]
Packit 741ade
    )
Packit 741ade
    AC_SUBST(GLIBC2)
Packit 741ade
    GLIBC2="$ac_cv_gnu_library_2"
Packit 741ade
  ]
Packit 741ade
)