summaryrefslogtreecommitdiff
path: root/utils/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'utils/config.h')
-rw-r--r--utils/config.h14
1 files changed, 4 insertions, 10 deletions
diff --git a/utils/config.h b/utils/config.h
index 60b81967a..76142eeb6 100644
--- a/utils/config.h
+++ b/utils/config.h
@@ -90,6 +90,10 @@ char *realpath(const char *path, char *resolved_path);
#undef HAVE_STDOUT
#endif
+#define HAVE_MMAP
+#if (defined(_WIN32) || defined(riscos) || defined(__HAIKU__) || defined(__BEOS__) || defined(__amigaos4__) || defined(__AMIGA__))
+#undef HAVE_MMAP
+#endif
/* This section toggles build options on and off.
* Simply undefine a symbol to turn the relevant feature off.
@@ -127,14 +131,4 @@ char *realpath(const char *path, char *resolved_path);
#define NO_IPV6
#endif
-/* windows */
-#if (defined(_WIN32))
-#define SSIZET_FMT "Iu"
-#elif (defined(riscos))
-#define SSIZET_FMT "zd"
-#else
-#define SSIZET_FMT "zd"
-#define O_BINARY 0
-#endif
-
#endif