From a974780e5deca0254e8a63b2fb54cad0a14b059a Mon Sep 17 00:00:00 2001 From: Aleksey Lim Date: Sun, 11 Apr 2010 09:41:46 +0000 Subject: Bump v0.3.4 --- diff --git a/NEWS b/NEWS index ed6dbec..c39e768 100644 --- a/NEWS +++ b/NEWS @@ -1,25 +1,30 @@ -0.3.3 +v0.3.4 2010-04-11 +~~~~~~~~~~~~~~~~~ +* Add '-no-undefined' LDFLAGS (Yaakov Selkowitz) +* Export the only symbol that plugins must export (Yaakov Selkowitz) +0.3.3 +~~~~~ * Support utf-8 source strings #816 0.3.1 - +~~~~~ * Build against gstreamer-0.10.12 * Setup GST_BUFFER_TIMESTAMP to generate sound properly in gstreamer-0.10.22 0.3 - +~~~ * Remove gio dependency * Support gstreamer-0.10.14 * A bit more workaround code to catch misplaced marks 0.2 - +~~~ * Add mark events * Use speech-dispatcher's format for properties * Add word notification events * Setup CAPS and do not use WAV header 0.1 - +~~~ * Initial implementation diff --git a/configure.ac b/configure.ac index 14059ac..fa720ff 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([gst-plugins-espeak], [0.3.3]) +AC_INIT([gst-plugins-espeak], [0.3.4]) AC_CONFIG_MACRO_DIR([m4]) AC_CONFIG_SRCDIR([configure.ac]) AM_INIT_AUTOMAKE([foreign dist-bzip2 no-dist-gzip]) @@ -12,8 +12,12 @@ AC_PROG_LIBTOOL GST_MAJORMINOR=0.10 -PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR >= 0.10.16) -PKG_CHECK_MODULES(GST_AUDIO, gstreamer-audio-$GST_MAJORMINOR) +PKG_CHECK_MODULES(GST, gstreamer-$GST_MAJORMINOR) +PKG_CHECK_MODULES(GST_AUDIO, gstreamer-audio-$GST_MAJORMINOR, have_audio=yes, have_audio=no) +if test "x$have_audio" = "xno"; then + AC_CHECK_LIB(gstbase-$GST_MAJORMINOR, gst_base_src_get_type,, AC_MSG_ERROR()) + AC_CHECK_LIB(gstaudio-$GST_MAJORMINOR, gst_base_audio_src_get_type,, AC_MSG_ERROR()) +fi dnl Check for 0sugar support if test "${ESPEAK_PREFIX}"; then -- cgit v0.9.1