diff options
author | Benjamin Otte <otte@gnome.org> | 2004-05-19 16:10:22 +0000 |
---|---|---|
committer | Benjamin Otte <otte@gnome.org> | 2004-05-19 16:10:22 +0000 |
commit | 0dba7b66f562f10fe95aaefba759e50e242f7a10 (patch) | |
tree | 8fb680122e0788b1df8bb5850c33c0c466c36888 | |
parent | 036634a6280c6c6229f8772681a724b9dc210e6d (diff) | |
download | gst-plugins-bad-0dba7b66f562f10fe95aaefba759e50e242f7a10.tar.gz gst-plugins-bad-0dba7b66f562f10fe95aaefba759e50e242f7a10.tar.bz2 gst-plugins-bad-0dba7b66f562f10fe95aaefba759e50e242f7a10.zip |
configure.ac: remove -Wno-sign-compare
Original commit message from CVS:
* configure.ac:
remove -Wno-sign-compare
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -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") |