aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2004-08-22 01:41:47 +0000
committerGuy Harris <guy@alum.mit.edu>2004-08-22 01:41:47 +0000
commitc4e043e39c07d41649cfbb2a1c6f52f112b77aae (patch)
tree6fa7e8bdbb73d55f84194fc16d6e150982a78395
parent39313e55531901d1b3b864ae8c17209cb37fa6be (diff)
FreeBSD 3.4 doesn't have "strtoull()", but it does have "strtouq()",
which does the same thing - check for "strtoull()" and, if it's missing, check for "strtouq()" and, if we have it, define strtoull as strtouq. svn path=/trunk/; revision=11798
-rw-r--r--configure.in18
1 files changed, 18 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 23e63d1340..88a14ba9fb 100644
--- a/configure.in
+++ b/configure.in
@@ -468,6 +468,24 @@ else
])
fi
+AC_CHECK_FUNC(strtoull,,
+ [
+ #
+ # No strtoull - do we have strtouq?
+ #
+ AC_CHECK_FUNC(strtouq,
+ [
+ #
+ # Yes - define strtoull to be strtouq.
+ #
+ AC_DEFINE(strtoull, strtouq,
+ [Define as a function that behaves like strtoull])
+ ],
+ [
+ AC_MSG_ERROR([This platform has neither strtoull nor strtouq.])
+ ])
+ ])
+
AC_SUBST(ethereal_bin)
AC_SUBST(ethereal_man)