From 32342a6428a78acd6120a0f061d1ea2df3543285 Mon Sep 17 00:00:00 2001 From: Christophe CURIS Date: Sat, 16 Nov 2013 20:14:26 +0100 Subject: [PATCH] configure: Replaced deprecated construct with recommended new check The macro 'AC_ISC_POSIX' is now said to be deprecated, so we use the new recommended check instead as we make light use of the corresponding function. Signed-off-by: Christophe CURIS --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index fe40789d..2ddec307 100644 --- a/configure.ac +++ b/configure.ac @@ -67,7 +67,6 @@ dnl AC_CANONICAL_HOST -- already done by AC_PROG_LIBTOOL dnl Checks for programs. dnl =================== -AC_ISC_POSIX AC_PROG_CC WM_PROG_CC_C11 AC_PROG_LN_S @@ -247,6 +246,7 @@ AC_FUNC_MEMCMP AC_FUNC_VPRINTF AC_CHECK_FUNCS(gethostname select poll strcasecmp strncasecmp \ setsid mallinfo mkstemp sysconf) +AC_SEARCH_LIBS([strerror], [cposix]) dnl Check for strlcat/strlcpy dnl =========================