version bump. Fix test on -Werror, so it doesn't slip into a release (oops!).

Original commit message from CVS:
version bump.  Fix test on -Werror, so it doesn't slip into a release
(oops!).
This commit is contained in:
David Schleef 2003-08-30 07:08:26 +00:00
parent 7eee6930e0
commit 9ada64497e

View file

@ -3,7 +3,7 @@ AC_CANONICAL_TARGET([])
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too
AS_VERSION(gstreamer, GST_VERSION, 0, 6, 3, 0, GST_CVS="no", GST_CVS="yes")
AS_VERSION(gstreamer, GST_VERSION, 0, 6, 3, 1, GST_CVS="no", GST_CVS="yes")
dnl AM_MAINTAINER_MODE only provides the option to configure to enable it
AM_MAINTAINER_MODE
@ -37,7 +37,9 @@ AM_PROG_AS
AS="${CC}"
AS_COMPILER_FLAG(-Wall,GST_ERROR="$GST_ERROR -Wall",)
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",)
if test "x$GST_CVS" = xyes ; then
AS_COMPILER_FLAG(-Werror,GST_ERROR="$GST_ERROR -Werror",)
fi
dnl We disable static building for development, for time savings