discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=6769296d5afb25371924aee4d17e5b659415cf9a
commit 6769296d5afb25371924aee4d17e5b659415cf9a Author: Mike Blumenkrantz <zm...@osg.samsung.com> Date: Mon Dec 19 10:58:11 2016 -0500 fix auto-enabling of compiler warnings on non-release builds --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index df69b29..bb30fed 100644 --- a/configure.ac +++ b/configure.ac @@ -1032,12 +1032,12 @@ AC_SUBST([MOUNT]) AC_SUBST([UMOUNT]) AC_SUBST([EJECT]) -m4_ifndef([v_rel], +m4_ifdef([v_rev], [ - EFL_COMPILER_FLAG([-Wshadow]) EFL_COMPILER_FLAG([-Wall]) - EFL_COMPILER_FLAG([-Wpointer-arith]) EFL_COMPILER_FLAG([-W]) + EFL_COMPILER_FLAG([-Wpointer-arith]) + EFL_COMPILER_FLAG([-Wshadow]) EFL_COMPILER_FLAG([-Wno-missing-field-initializers]) EFL_COMPILER_FLAG([-Wfloat-equal]) EFL_COMPILER_FLAG([-Wuninitialized]) --