From 67c1c65bf2ef7752c036563e4dda4bea064569b2 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 20 Oct 2019 09:48:24 +0100 Subject: attempt a different fix for amiga os 3 strtoull --- utils/config.h | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'utils/config.h') diff --git a/utils/config.h b/utils/config.h index 5678beaa3..a87f19b53 100644 --- a/utils/config.h +++ b/utils/config.h @@ -67,6 +67,14 @@ char *strcasestr(const char *haystack, const char *needle); char *strchrnul(const char *s, int c); #endif +/* + * amigaos3 declares this but does not have it in its actual library + */ +#define HAVE_STRTOULL +#if !defined(__amigaos4__) && defined(__AMIGA__) +#undef HAVE_STRTOULL +#endif + #define HAVE_SYS_SELECT #define HAVE_POSIX_INET_HEADERS #if (defined(_WIN32)) -- cgit v1.2.3