summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--configure.ac2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 2b5ce2f9..1fc47c1d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,11 @@
2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
* configure.ac:
+ remove -Wno-sign-compare
+
+2004-05-19 Benjamin Otte <in7y118@public.uni-hamburg.de>
+
+ * configure.ac:
remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
if you want to work against glib 2.2 and 2.4
diff --git a/configure.ac b/configure.ac
index 4b1a88b2..af048155 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")