summaryrefslogtreecommitdiff
path: root/m4/xstrtoimax.m4
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2001-08-26 07:20:05 +0000
committerJim Meyering <jim@meyering.net>2001-08-26 07:20:05 +0000
commitb3e98fa251a39714d499bf138606947de71b9a2b (patch)
tree9a3fd336b8f7acd12f41a3af44074106f96cdf2c /m4/xstrtoimax.m4
parented1dca3b405e4875880dc80054dc2820a3db9b4b (diff)
downloadcoreutils-b3e98fa251a39714d499bf138606947de71b9a2b.tar.xz
resync with xstrtoumax.m4
Diffstat (limited to 'm4/xstrtoimax.m4')
-rw-r--r--m4/xstrtoimax.m412
1 files changed, 10 insertions, 2 deletions
diff --git a/m4/xstrtoimax.m4 b/m4/xstrtoimax.m4
index 64da34e75..6842186e9 100644
--- a/m4/xstrtoimax.m4
+++ b/m4/xstrtoimax.m4
@@ -1,4 +1,5 @@
#serial 1
+dnl Cloned from xstrtoumax.m4. Keep these files in sync.
# autoconf tests required for use of xstrtoimax.c
@@ -29,13 +30,20 @@ AC_DEFUN([jm_AC_PREREQ_XSTRTOIMAX],
dnl so we need the replacement strtoll only if strtoimax does not exist.
case "$ac_cv_type_long_long,$jm_cv_func_strtoimax_macro,$ac_cv_func_strtoimax" in
yes,no,no)
- AC_REPLACE_FUNCS(strtoll strtol)
+ AC_REPLACE_FUNCS(strtoll)
+
+ dnl Check for strtol. Mainly as a cue to cause automake to include
+ dnl strtol.c -- that file is included by each of strtoul.c and strtoull.c.
+ AC_REPLACE_FUNCS(strtol)
;;
esac
case "$jm_cv_func_strtoimax_macro,$ac_cv_func_strtoimax" in
no,no)
- AC_REPLACE_FUNCS(strtoul strtol)
+ AC_REPLACE_FUNCS(strtoul)
+
+ dnl See explanation above.
+ AC_REPLACE_FUNCS(strtol)
;;
esac