From d065221fda703034619500581b3339b7f3fc7e80 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 10 Dec 2016 11:43:55 +0100 Subject: Improve 'no-undefined' check. --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 120944c..8befd1d 100644 --- a/configure.ac +++ b/configure.ac @@ -75,14 +75,14 @@ dnl Check for -Wl,--no-undefined or -Wl,-undefined,error support dnl =========================== TMP_CXXFLAGS="$CXXFLAGS" AC_MSG_CHECKING([whether CXX supports '-Wl,--no-undefined']) -CXXFLAGS=-Wl,--no-undefined +CXXFLAGS="-Wall -Werror -Wl,--no-undefined" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [ AC_MSG_RESULT([yes]) NO_UNDEFINED_PARAM=-Wl,--no-undefined ], [ AC_MSG_RESULT([no]) AC_MSG_CHECKING([whether CXX supports '-Wl,-undefined,error']) - CXXFLAGS=-Wl,-undefined,error + CXXFLAGS="-Wall -Werror -Wl,-undefined,error" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])], [AC_MSG_RESULT([yes]) NO_UNDEFINED_PARAM=-Wl,-undefined,error -- cgit v1.2.3