summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStéphane Loeuillet <gstreamer@leroutier.net>2004-09-12 13:35:52 +0000
committerStéphane Loeuillet <gstreamer@leroutier.net>2004-09-12 13:35:52 +0000
commit2e89acbceae146cb364e577a6b4f3d31cd4f5291 (patch)
treeb31b2e17967adb70843c9fd44de4107caa2dd8d6
parent978f5dbaee4d3d4702bac5b2e4a248c61bcffb59 (diff)
downloadgst-plugins-bad-2e89acbceae146cb364e577a6b4f3d31cd4f5291.tar.gz
gst-plugins-bad-2e89acbceae146cb364e577a6b4f3d31cd4f5291.tar.bz2
gst-plugins-bad-2e89acbceae146cb364e577a6b4f3d31cd4f5291.zip
configure.ac: change speex detection as 1.1.6 now uses .pc/pkg-config and they changed their headers location.
Original commit message from CVS: * configure.ac : change speex detection as 1.1.6 now uses .pc/pkg-config and they changed their headers location.
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac38
2 files changed, 29 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 4f9f0912..e10e6662 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,10 @@
+2004-09-12 Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
+
+ * configure.ac : change speex detection as 1.1.6 now uses
+ .pc/pkg-config and they changed their headers location.
+
2004-09-09 Arwed v. Merkatz <v.merkatz@gmx.net>
+
* gst/matroska/matroska-mux.h:
* gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
(gst_matroska_mux_start), (gst_matroska_mux_finish),
diff --git a/configure.ac b/configure.ac
index 6f10f531..220e081a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1505,28 +1505,36 @@ GST_CHECK_FEATURE(LIBPNG, [snapshot plug-in], snapshot, [
AC_SUBST(LIBPNG_LIBS)
])
-dnl *** speex 1.0.x or >= 1.1.5 (1.1.4 and earlier were not API/ABI compatible ***
-dnl speex_jitter.h is 1.1 only
+dnl *** speex 1.0.x or >= 1.1.5 ***
+dnl 1.1.4 and earlier were not API/ABI compatible with 1.0
+dnl 1.1.6 is the first to use a .pc/pkg-config file ***
+dnl speex_jitter.h is 1.1.x only
translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
- GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, [
- AC_CHECK_HEADER(speex_jitter.h, [
- dnl speex 1.1.x :
- GST_CHECK_LIBHEADER(SPEEX, speex, speex_encode_int, , speex.h, [
- dnl speex 1.1.5 or + :
+ PKG_CHECK_MODULES(SPEEX, speex >= 1.1.6, [
+ HAVE_SPEEX="yes"
+ AC_SUBST(SPEEX_CFLAGS)
+ AC_SUBST(SPEEX_LIBS)
+ ], [
+ GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, [
+ AC_CHECK_HEADER(speex_jitter.h, [
+ dnl speex 1.1.x :
+ GST_CHECK_LIBHEADER(SPEEX, speex, speex_encode_int, , speex.h, [
+ dnl speex 1.1.5 or + :
+ HAVE_SPEEX="yes"
+ SPEEX_LIBS="-lspeex"
+ AC_SUBST(SPEEX_CFLAGS)
+ AC_SUBST(SPEEX_LIBS)
+ ],[
+ HAVE_SPEEX="no"
+ ])
+ ], [
+ dnl speex 1.0.x :
HAVE_SPEEX="yes"
SPEEX_LIBS="-lspeex"
AC_SUBST(SPEEX_CFLAGS)
AC_SUBST(SPEEX_LIBS)
- ],[
- HAVE_SPEEX="no"
])
- ], [
- dnl speex 1.0.x :
- HAVE_SPEEX="yes"
- SPEEX_LIBS="-lspeex"
- AC_SUBST(SPEEX_CFLAGS)
- AC_SUBST(SPEEX_LIBS)
])
])
])