#serial 4
+dnl Closely related to xstrtoimax.m4. Keep these files in sync.
# autoconf tests required for use of xstrtoumax.c
dnl so we need the replacement strtoull only if strtoumax does not exist.
case "$ac_cv_type_unsigned_long_long,$jm_cv_func_strtoumax_macro,$ac_cv_func_strtoumax" in
yes,no,no)
- AC_REPLACE_FUNCS(strtoull strtol)
+ AC_REPLACE_FUNCS(strtoull)
+
+ 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_strtoumax_macro,$ac_cv_func_strtoumax" in
no,no)
- AC_REPLACE_FUNCS(strtoul strtol)
+ AC_REPLACE_FUNCS(strtoul)
+
+ dnl See explanation above.
+ AC_REPLACE_FUNCS(strtol)
;;
esac