Description: add to C{,XX}FLAGS at the end This has to be a patch as configure appends to whatever it’s passed, unconditionally. Author: mirabilos Forwarded: not-needed --- a/configure.ac +++ b/configure.ac @@ -486,6 +486,11 @@ if eval "test x$GCC = xyes"; then CXXFLAGS="$CXXFLAGS -Wall -W -Wno-unused-parameter -fno-rtti -fno-exceptions" fi +# not going to be fixed in Dillo 3.0 but not relevant there either +# revisit this when switching to the new upstream though +CFLAGS="$CFLAGS -Wno-implicit-fallthrough" +CXXFLAGS="$CXXFLAGS -Wno-implicit-fallthrough" + AC_SUBST(LIBJPEG_LIBS) AC_SUBST(LIBJPEG_LDFLAGS) AC_SUBST(LIBJPEG_CPPFLAGS)