From 943f46156f8246aa15ae4e72e33d69db32f9fefb Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Wed, 7 Sep 2011 12:14:16 +0000 Subject: [PATCH] disable warnings about strict aliasing; gcc does broken warnings here in conjunction with libev --- citadel/configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/configure.ac b/citadel/configure.ac index c0f325b75..7943c3bf9 100644 --- a/citadel/configure.ac +++ b/citadel/configure.ac @@ -367,7 +367,7 @@ if test "$GCC" = yes; then CFLAGS="$CFLAGS -Wall -Wcast-qual -Wcast-align -Wno-char-subscripts $PTHREAD_DEFS" ;; *) - CFLAGS="$CFLAGS -Wall -Wcast-qual -Wcast-align -Wstrict-prototypes $PTHREAD_DEFS" + CFLAGS="$CFLAGS -Wall -Wcast-qual -Wcast-align -Wstrict-prototypes -Wno-strict-aliasing $PTHREAD_DEFS" ;; esac fi -- 2.30.2