summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2011-05-26 20:36:21 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2011-05-26 20:36:21 +0000
commitbca9ab3d1a3ad076f577925a00bd6e071bb97408 (patch)
treeb461d46419a1b521086f770bf8f7922e8598b029 /Makefile
parente23d8aec20758e4e3134d8a5a4fd7484929aef72 (diff)
downloadmandoc-bca9ab3d1a3ad076f577925a00bd6e071bb97408.tar.gz
At least in theory, this patch lets us compile on Windows (which does
not have mmap(), from what I can tell).
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e0b5203d..d9c824e1 100644
--- a/Makefile
+++ b/Makefile
@@ -108,6 +108,7 @@ SRCS = Makefile \
term.h \
term_ascii.c \
term_ps.c \
+ test-mmap.c \
test-strlcat.c \
test-strlcpy.c \
tree.c \
@@ -382,6 +383,10 @@ config.h: config.h.pre config.h.post
echo '#define HAVE_STRLCAT'; \
rm test-strlcat; \
fi; \
+ if $(CC) $(CFLAGS) -Werror -o test-mmap test-mmap.c >> config.log 2>&1; then \
+ echo '#define HAVE_MMAP'; \
+ rm test-mmap; \
+ fi; \
if $(CC) $(CFLAGS) -Werror -o test-strlcpy test-strlcpy.c >> config.log 2>&1; then \
echo '#define HAVE_STRLCPY'; \
rm test-strlcpy; \