From 917a13217aef5f1e10f459e8d1e23c88997ba2a7 Mon Sep 17 00:00:00 2001 From: Aleksander Morgado Date: Mon, 10 Oct 2011 12:13:09 +0200 Subject: [PATCH] build: avoid using -Wfloat-equal compilation option In order to compile code generated by gdbus-codegen. --- m4/compiler_warnings.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/m4/compiler_warnings.m4 b/m4/compiler_warnings.m4 index 879f995d..0e36494a 100644 --- a/m4/compiler_warnings.m4 +++ b/m4/compiler_warnings.m4 @@ -9,7 +9,7 @@ if test "$GCC" = "yes" -a "$set_more_warnings" != "no"; then for option in -Wmissing-declarations -Wmissing-prototypes \ -Wdeclaration-after-statement -Wstrict-prototypes \ - -Wfloat-equal -Wno-unused-parameter -Wno-sign-compare \ + -Wno-unused-parameter -Wno-sign-compare \ -fno-strict-aliasing -Wno-deprecated-declarations; do SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $option"