Commit f1e24432 authored by Olivier Crête's avatar Olivier Crête

configure: Make sure flag test really fails on unknown flag

clang on recent macOS seems to only emit a warning on unknown flags
which makes this test fail and then when using Werror, it makes the
compiler test fail too.
parent c54a329b
...@@ -108,7 +108,7 @@ AC_ARG_ENABLE(compile-warnings, ...@@ -108,7 +108,7 @@ AC_ARG_ENABLE(compile-warnings,
[enable_compile_warnings="error"])]) [enable_compile_warnings="error"])])
AC_DEFUN([NICE_ADD_FLAG], AC_DEFUN([NICE_ADD_FLAG],
AS_COMPILER_FLAG([$1], LIBNICE_CFLAGS="$LIBNICE_CFLAGS $1", []) AS_COMPILER_FLAG([-Werror $1], LIBNICE_CFLAGS="$LIBNICE_CFLAGS $1", [])
) )
NICE_ADD_FLAG([-fno-strict-aliasing]) NICE_ADD_FLAG([-fno-strict-aliasing])
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment