summaryrefslogtreecommitdiff
path: root/utils/config.h
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2019-10-20 09:48:24 +0100
committerVincent Sanders <vince@kyllikki.org>2019-10-20 09:48:24 +0100
commit67c1c65bf2ef7752c036563e4dda4bea064569b2 (patch)
tree3c3659428671e400b15fad5b97caa9a39d2b83f8 /utils/config.h
parent51c2d48096f8f53583422113508912b3243c48f0 (diff)
downloadnetsurf-67c1c65bf2ef7752c036563e4dda4bea064569b2.tar.gz
netsurf-67c1c65bf2ef7752c036563e4dda4bea064569b2.tar.bz2
attempt a different fix for amiga os 3 strtoull
Diffstat (limited to 'utils/config.h')
-rw-r--r--utils/config.h8
1 files changed, 8 insertions, 0 deletions
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))