From c4e043e39c07d41649cfbb2a1c6f52f112b77aae Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Sun, 22 Aug 2004 01:41:47 +0000 Subject: 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 --- configure.in | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'configure.in') 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) -- cgit v1.2.1