From 6da8daf171dd04e93f0fc0f04cb3feb858187680 Mon Sep 17 00:00:00 2001 From: Benjamin Otte Date: Wed, 19 May 2004 16:10:22 +0000 Subject: [PATCH] configure.ac: remove -Wno-sign-compare Original commit message from CVS: * configure.ac: remove -Wno-sign-compare --- ChangeLog | 5 +++++ configure.ac | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 2b5ce2f9af..1fc47c1dfd 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-05-19 Benjamin Otte + + * configure.ac: + remove -Wno-sign-compare + 2004-05-19 Benjamin Otte * configure.ac: diff --git a/configure.ac b/configure.ac index 4b1a88b288..af048155d4 100644 --- a/configure.ac +++ b/configure.ac @@ -62,7 +62,7 @@ dnl decide on error flags AS_COMPILER_FLAG(-Wall, GST_WALL="yes", GST_WALL="no") if test "x$GST_WALL" = "xyes"; then - GST_ERROR="$GST_ERROR -Wall -Wno-sign-compare" + GST_ERROR="$GST_ERROR -Wall" if test "x$GST_CVS" = "xyes"; then AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",GST_ERROR="$GST_ERROR")