discomfitor pushed a commit to branch master. http://git.enlightenment.org/core/enlightenment.git/commit/?id=6f1e58b922183f2573e611b544e5173741bf8a18
commit 6f1e58b922183f2573e611b544e5173741bf8a18 Author: Mike Blumenkrantz <[email protected]> Date: Sun Sep 7 22:57:18 2014 -0400 add more warning flags to non-release builds apparently we are developers who like to compare doubles incorrectly. this ends now. --- configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 952085f..78bb466 100644 --- a/configure.ac +++ b/configure.ac @@ -1018,7 +1018,11 @@ m4_ifdef([v_mic], EFL_COMPILER_FLAG([-Wpointer-arith]) EFL_COMPILER_FLAG([-W]) EFL_COMPILER_FLAG([-Wno-missing-field-initializers]) - EFL_COMPILER_FLAG([-Wmaybe-uninitialized]) + EFL_COMPILER_FLAG([-Wfloat-equal]) + EFL_COMPILER_FLAG([-Wuninitialized]) + EFL_COMPILER_FLAG([-Wundef]) + EFL_COMPILER_FLAG([-Wcast-align]) + EFL_COMPILER_FLAG([-Wformat=2]) ]) SUID_CFLAGS=-fPIE --
