We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b901060 commit 09b7385Copy full SHA for 09b7385
libvisual/configure.ac
@@ -520,6 +520,14 @@ OPT_CFLAGS="-mwindows"
520
fi
521
AC_SUBST(OPT_CFLAGS)
522
523
+AS_IF([test "x${CI}" = xtrue], [
524
+ CFLAGS="${CFLAGS} -Werror"
525
+ CFLAGS="${CFLAGS} -Wno-error=maybe-uninitialized" # TODO: drop line after fixing!
526
+ CFLAGS="${CFLAGS} -Wno-error=missing-prototypes" # TODO: drop line after fixing!
527
+ CFLAGS="${CFLAGS} -Wno-error=uninitialized" # TODO: drop line after fixing!
528
+ CFLAGS="${CFLAGS} -Wno-error=unused-function" # TODO: drop line after fixing!
529
+])
530
+
531
AC_SUBST(CFLAGS, "${CFLAGS} ${DEBUG_CFLAGS} ${OPT_CFLAGS}")
532
533
libs_dynamic_loader="-ldl"
0 commit comments