projects
/
pspp
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d6fd498
)
separate conditions for strtoul and strtoull
author
Jim Meyering
<jim@meyering.net>
Wed, 6 Dec 2000 10:26:51 +0000
(10:26 +0000)
committer
Jim Meyering
<jim@meyering.net>
Wed, 6 Dec 2000 10:26:51 +0000
(10:26 +0000)
m4/xstrtoumax.m4
patch
|
blob
|
history
diff --git
a/m4/xstrtoumax.m4
b/m4/xstrtoumax.m4
index 6e2fcafe7418fb8f5e90377e85ced17b02385568..1befbdd8dfa01f65e6cd84fab31e89367d3573d3 100644
(file)
--- a/
m4/xstrtoumax.m4
+++ b/
m4/xstrtoumax.m4
@@
-28,7
+28,13
@@
AC_DEFUN(jm_AC_PREREQ_XSTRTOUMAX,
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(strtoul strtoull)
+ AC_REPLACE_FUNCS(strtoull)
+ ;;
+ esac
+
+ case "$jm_cv_func_strtoumax_macro,$ac_cv_func_strtoumax" in
+ no,no)
+ AC_REPLACE_FUNCS(strtoul)
;;
esac