aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2021-09-19 15:05:39 +0000
committerIngo Schwarze <schwarze@openbsd.org>2021-09-19 15:05:39 +0000
commit4c96047b6275561be165dc65dd459974a7e3cb5b (patch)
tree2c04122bb04a2210b1c0f2d9e3ab3feab6ed4d27 /Makefile
parentda18dde44e7ed710106dba929c6d3e23d85e4666 (diff)
downloadmandoc-4c96047b6275561be165dc65dd459974a7e3cb5b.tar.gz
mandoc-4c96047b6275561be165dc65dd459974a7e3cb5b.tar.zst
mandoc-4c96047b6275561be165dc65dd459974a7e3cb5b.zip
Test availability of mkstemps(3) and provide a fallback implementation
in case it is missing; needed for SUN Solaris 10.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 17d445bf..8e6ae5bb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,6 @@
-# $Id: Makefile,v 1.536 2021/09/19 11:03:40 schwarze Exp $
+# $Id: Makefile,v 1.537 2021/09/19 15:05:39 schwarze Exp $
#
-# Copyright (c) 2011, 2013-2020 Ingo Schwarze <schwarze@openbsd.org>
+# Copyright (c) 2011, 2013-2021 Ingo Schwarze <schwarze@openbsd.org>
# Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv>
#
# Permission to use, copy, modify, and distribute this software for any
@@ -30,6 +30,7 @@ TESTSRCS = test-attribute.c \
test-getsubopt.c \
test-isblank.c \
test-mkdtemp.c \
+ test-mkstemps.c \
test-nanosleep.c \
test-noop.c \
test-ntohl.c \
@@ -66,6 +67,7 @@ SRCS = arch.c \
compat_getsubopt.c \
compat_isblank.c \
compat_mkdtemp.c \
+ compat_mkstemps.c \
compat_ohash.c \
compat_progname.c \
compat_reallocarray.c \
@@ -257,6 +259,7 @@ ALL_COBJS = compat_err.o \
compat_getsubopt.o \
compat_isblank.o \
compat_mkdtemp.o \
+ compat_mkstemps.o \
compat_ohash.o \
compat_progname.o \
compat_reallocarray.o \