Add an Interix clause in the makefile. Interix's libc does not have
support for many of the functions that are generally taken for granted.
Signed-off-by: Jonathan Callen <redacted>
---
Makefile | 13 +++++++++++++
1 files changed, 13 insertions(+), 0 deletions(-)
diff --git a/Makefile b/Makefile
index 1722bf0..563eec2 100644
--- a/Makefile
+++ b/Makefile
@@ -1071,6 +1071,19 @@ else
NO_CURL = YesPlease
endif
endif
+ifeq ($(uname_S),Interix)
+ NO_IPV6 = YesPlease
+ NO_MEMMEM = YesPlease
+ NO_MKDTEMP = YesPlease
+ NO_STRTOUMAX = YesPlease
+ NO_STRTOULL = YesPlease
+ NO_INET_NTOP = YesPlease
+ NO_INET_PTON = YesPlease
+ NO_NSEC = YesPlease
+ NO_MKSTEMPS = YesPlease
+ NO_POLL = YesPlease
+ NO_INTTYPES_H = YesPlease
+endif
-include config.mak.autogen
-include config.mak
--
1.7.1