From 9a065c51cae5997052e5cfbb7e41f48bebef2167 Mon Sep 17 00:00:00 2001 From: Ruben Kerkhof Date: Tue, 19 Jun 2018 17:15:19 +0200 Subject: [PATCH] Reset LDFLAGS before testing for strtok_r They may contain all kinds of things that make the test fail. See #2823 for details --- configure.ac | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure.ac b/configure.ac index eab34322..7a14e01b 100644 --- a/configure.ac +++ b/configure.ac @@ -767,6 +767,8 @@ AC_FUNC_STRERROR_R SAVE_CFLAGS="$CFLAGS" CFLAGS="-Wall -Werror" +SAVE_LDFAGS="$LDFLAGS" +LDFLAGS="" AC_CACHE_CHECK([for strtok_r], [c_cv_have_strtok_r_default], @@ -839,6 +841,7 @@ if test "x$c_cv_have_strtok_r_default" = "xno"; then fi CFLAGS="$SAVE_CFLAGS" +LDFLAGS="$SAVE_LDFLAGS" if test "x$c_cv_have_strtok_r_reentrant" = "xyes"; then CFLAGS="$CFLAGS -D_REENTRANT=1" fi -- 2.11.0