From 56cb4234e5662769045031a7818f3b90d8116331 Mon Sep 17 00:00:00 2001 From: Ingo Schwarze Date: Sun, 19 Sep 2021 15:05:39 +0000 Subject: Test availability of mkstemps(3) and provide a fallback implementation in case it is missing; needed for SUN Solaris 10. --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 01a4b7ad..ad4c175b 100644 --- a/Makefile +++ b/Makefile @@ -1,6 +1,6 @@ # $Id$ # -# Copyright (c) 2011, 2013-2020 Ingo Schwarze +# Copyright (c) 2011, 2013-2021 Ingo Schwarze # Copyright (c) 2010, 2011, 2012 Kristaps Dzonsons # # 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 \ -- cgit