diff options
author | Thomas Vander Stichele <thomas@apestaart.org> | 2004-04-15 15:16:31 +0000 |
---|---|---|
committer | Thomas Vander Stichele <thomas@apestaart.org> | 2004-04-15 15:16:31 +0000 |
commit | bd3a4e4da6f9138cf06eb94dbb78775d1c3f95d0 (patch) | |
tree | 3c34ed1e43b8139822e255191a8e0096398e4dec | |
parent | a6cfacb4bfdd0f60c72ea217912c2a5d4eac5de2 (diff) | |
download | gst-plugins-bad-bd3a4e4da6f9138cf06eb94dbb78775d1c3f95d0.tar.gz gst-plugins-bad-bd3a4e4da6f9138cf06eb94dbb78775d1c3f95d0.tar.bz2 gst-plugins-bad-bd3a4e4da6f9138cf06eb94dbb78775d1c3f95d0.zip |
releasing
Original commit message from CVS:
releasing
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 7 |
2 files changed, 10 insertions, 3 deletions
@@ -1,3 +1,9 @@ +=== release 0.8.1 === + +2004-04-15 Thomas Vander Stichele <thomas at apestaart dot org> + + * configure.ac: releasing 0.8.1, "Comforting Sounds" + 2004-04-14 Ronald Bultje <rbultje@ronald.bitfreak.net> * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps): diff --git a/configure.ac b/configure.ac index 66d5a679..e1292bea 100644 --- a/configure.ac +++ b/configure.ac @@ -12,7 +12,7 @@ AM_MAINTAINER_MODE 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(gst-plugins, GST_PLUGINS_VERSION, 0, 8, 0, 2, GST_CVS="no", GST_CVS="yes") +AS_VERSION(gst-plugins, GST_PLUGINS_VERSION, 0, 8, 1, 0, GST_CVS="no", GST_CVS="yes") AM_INIT_AUTOMAKE($PACKAGE,$VERSION) @@ -188,7 +188,8 @@ GST_CHECK_FEATURE(GCONF, [GConf libraries], , [ ]) dnl check for gstreamer; uninstalled is selected preferentially -- see pkg-config(1) -PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR.$GST_PLUGINS_VERSION_MICRO, +GST_REQ=0.8.0 +PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= $GST_REQ, HAVE_GST="yes", HAVE_GST="no") if test "x$HAVE_GST" = "xno"; then @@ -202,7 +203,7 @@ fi AC_SUBST(GST_TOOLS_DIR) dnl check for gstreamer-control; uninstalled is selected preferentially -PKG_CHECK_MODULES(GST_CONTROL, gstreamer-control-$GST_MAJORMINOR >= $GST_PLUGINS_VERSION_MAJOR.$GST_PLUGINS_VERSION_MINOR.$GST_PLUGINS_VERSION_MICRO, +PKG_CHECK_MODULES(GST_CONTROL, gstreamer-control-$GST_MAJORMINOR >= $GST_REQ, HAVE_GST_CONTROL="yes", HAVE_GST_CONTROL="no") if test "x$HAVE_GST_CONTROL" = "xno"; then |