remove autoconf-2.57 work-around requiring AC_PROG_EGREP and AC_PROG_CPP
[gnulib.git] / m4 / strtoimax.m4
1 # strtoimax.m4 serial 8
2 dnl Copyright (C) 2002, 2003, 2004, 2006, 2009, 2010 Free Software Foundation,
3 dnl Inc.
4 dnl This file is free software; the Free Software Foundation
5 dnl gives unlimited permission to copy and/or distribute it,
6 dnl with or without modifications, as long as this notice is preserved.
7
8 AC_DEFUN([gl_FUNC_STRTOIMAX],
9 [
10   AC_CACHE_CHECK([whether <inttypes.h> defines strtoimax as a macro],
11     gl_cv_func_strtoimax_macro,
12     [AC_EGREP_CPP([inttypes_h_defines_strtoimax], [#include <inttypes.h>
13 #ifdef strtoimax
14  inttypes_h_defines_strtoimax
15 #endif],
16        gl_cv_func_strtoimax_macro=yes,
17        gl_cv_func_strtoimax_macro=no)])
18
19   if test "$gl_cv_func_strtoimax_macro" != yes; then
20     AC_REPLACE_FUNCS([strtoimax])
21     if test $ac_cv_func_strtoimax = no; then
22       gl_PREREQ_STRTOIMAX
23     fi
24   fi
25 ])
26
27 # Prerequisites of lib/strtoimax.c.
28 AC_DEFUN([gl_PREREQ_STRTOIMAX], [
29   AC_CHECK_DECLS([strtoll])
30   AC_REQUIRE([AC_TYPE_LONG_LONG_INT])
31 ])