aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2005-07-02 15:32:23 +0000
committerChristian Grothoff <christian@grothoff.org>2005-07-02 15:32:23 +0000
commit4f882cd97a42d7f0d52cbce34afc3f6975ef4ee9 (patch)
tree11dfac5dc47065e58acfc411435146da0ae3692d /m4
parent7fe9cd12e1585e6d345d3c70f135f85a3b1d3b1b (diff)
downloadgnunet-gtk-4f882cd97a42d7f0d52cbce34afc3f6975ef4ee9.tar.gz
gnunet-gtk-4f882cd97a42d7f0d52cbce34afc3f6975ef4ee9.zip
bugfix
Diffstat (limited to 'm4')
-rw-r--r--m4/glibc2.m460
1 files changed, 30 insertions, 30 deletions
diff --git a/m4/glibc2.m4 b/m4/glibc2.m4
index 3a66ca44..e8f5bfe6 100644
--- a/m4/glibc2.m4
+++ b/m4/glibc2.m4
@@ -1,30 +1,30 @@
1# glibc2.m4 serial 1 1# glibc2.m4 serial 1
2dnl Copyright (C) 2000-2002, 2004 Free Software Foundation, Inc. 2dnl Copyright (C) 2000-2002, 2004 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation 3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it, 4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved. 5dnl with or without modifications, as long as this notice is preserved.
6 6
7# Test for the GNU C Library, version 2.0 or newer. 7# Test for the GNU C Library, version 2.0 or newer.
8# From Bruno Haible. 8# From Bruno Haible.
9 9
10AC_DEFUN([gt_GLIBC2], 10AC_DEFUN([gt_GLIBC2],
11 [ 11 [
12 AC_CACHE_CHECK(whether we are using the GNU C Library 2 or newer, 12 AC_CACHE_CHECK(whether we are using the GNU C Library 2 or newer,
13 ac_cv_gnu_library_2, 13 ac_cv_gnu_library_2,
14 [AC_EGREP_CPP([Lucky GNU user], 14 [AC_EGREP_CPP([Lucky GNU user],
15 [ 15 [
16#include <features.h> 16#include <features.h>
17#ifdef __GNU_LIBRARY__ 17#ifdef __GNU_LIBRARY__
18 #if (__GLIBC__ >= 2) 18 #if (__GLIBC__ >= 2)
19 Lucky GNU user 19 Lucky GNU user
20 #endif 20 #endif
21#endif 21#endif
22 ], 22 ],
23 ac_cv_gnu_library_2=yes, 23 ac_cv_gnu_library_2=yes,
24 ac_cv_gnu_library_2=no) 24 ac_cv_gnu_library_2=no)
25 ] 25 ]
26 ) 26 )
27 AC_SUBST(GLIBC2) 27 AC_SUBST(GLIBC2)
28 GLIBC2="$ac_cv_gnu_library_2" 28 GLIBC2="$ac_cv_gnu_library_2"
29 ] 29 ]
30) 30)