Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksey Lim <alsroot@member.fsf.org>2010-04-11 09:41:46 (GMT)
committer Aleksey Lim <alsroot@member.fsf.org>2010-04-11 09:41:46 (GMT)
commita974780e5deca0254e8a63b2fb54cad0a14b059a (patch)
treee41c355155a3ddc4ac6b572045d351b6a0ca9a08
parentcf3e952576646998a90d84e84125e4d209db3ccb (diff)
Bump v0.3.4v0.3.4
-rw-r--r--NEWS15
-rw-r--r--configure.ac10
2 files changed, 17 insertions, 8 deletions
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