aboutsummaryrefslogtreecommitdiffstats
path: root/m4/strtoumax.m4
diff options
context:
space:
mode:
authorPaul Eggert2011-04-21 12:12:13 -0700
committerPaul Eggert2011-04-21 12:12:13 -0700
commita8a2bb29e2ea28dce51bb3a8680bfe2bd6945365 (patch)
treef382d740123da83c6f212cae2ecfcbd6555060e4 /m4/strtoumax.m4
parentd78050d6bab1f1add4284163b8fc474495ac6580 (diff)
downloademacs-a8a2bb29e2ea28dce51bb3a8680bfe2bd6945365.tar.gz
emacs-a8a2bb29e2ea28dce51bb3a8680bfe2bd6945365.zip
* Makefile.in (GNULIB_MODULES): Add strtoumax.
Diffstat (limited to 'm4/strtoumax.m4')
-rw-r--r--m4/strtoumax.m430
1 files changed, 30 insertions, 0 deletions
diff --git a/m4/strtoumax.m4 b/m4/strtoumax.m4
new file mode 100644
index 00000000000..448c4d9b777
--- /dev/null
+++ b/m4/strtoumax.m4
@@ -0,0 +1,30 @@
1# strtoumax.m4 serial 8
2dnl Copyright (C) 2002-2004, 2006, 2009-2011 Free Software Foundation, Inc.
3dnl This file is free software; the Free Software Foundation
4dnl gives unlimited permission to copy and/or distribute it,
5dnl with or without modifications, as long as this notice is preserved.
6
7AC_DEFUN([gl_FUNC_STRTOUMAX],
8[
9 AC_CACHE_CHECK([whether <inttypes.h> defines strtoumax as a macro],
10 gl_cv_func_strtoumax_macro,
11 [AC_EGREP_CPP([inttypes_h_defines_strtoumax], [#include <inttypes.h>
12#ifdef strtoumax
13 inttypes_h_defines_strtoumax
14#endif],
15 gl_cv_func_strtoumax_macro=yes,
16 gl_cv_func_strtoumax_macro=no)])
17
18 if test "$gl_cv_func_strtoumax_macro" != yes; then
19 AC_REPLACE_FUNCS([strtoumax])
20 if test $ac_cv_func_strtoumax = no; then
21 gl_PREREQ_STRTOUMAX
22 fi
23 fi
24])
25
26# Prerequisites of lib/strtoumax.c.
27AC_DEFUN([gl_PREREQ_STRTOUMAX], [
28 AC_CHECK_DECLS([strtoull])
29 AC_REQUIRE([AC_TYPE_UNSIGNED_LONG_LONG_INT])
30])