mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-20 15:27:07 +00:00
work with speex 1.0, not 1.1
Original commit message from CVS: work with speex 1.0, not 1.1
This commit is contained in:
parent
bdc6434aa1
commit
ceeb839a46
2 changed files with 13 additions and 9 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
|
* configure.ac: fix speex detection to work with 1.0 but not 1.1
|
||||||
|
|
||||||
2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
2004-03-15 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||||
|
|
||||||
* configure.ac:
|
* configure.ac:
|
||||||
|
|
18
configure.ac
18
configure.ac
|
@ -1277,17 +1277,17 @@ GST_CHECK_FEATURE(LIBPNG, [snapshot plug-in], snapshot, [
|
||||||
AC_SUBST(LIBPNG_LIBS)
|
AC_SUBST(LIBPNG_LIBS)
|
||||||
])
|
])
|
||||||
|
|
||||||
dnl *** speex ***
|
dnl *** speex 1.0 only, not 1.1 ***
|
||||||
|
dnl speex_jitter.h is 1.1 only
|
||||||
translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
|
translit(dnm, m, l) AM_CONDITIONAL(USE_SPEEX, true)
|
||||||
GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
|
GST_CHECK_FEATURE(SPEEX, [speex plug-in], speex, [
|
||||||
PKG_CHECK_MODULES(SPEEX, speex >= 1.0 speex < 1.1, [
|
GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, [
|
||||||
HAVE_SPEEX="yes"
|
AC_CHECK_HEADER(speex_jitter.h, HAVE_SPEEX="no", [
|
||||||
AC_SUBST(SPEEX_CFLAGS)
|
HAVE_SPEEX="yes"
|
||||||
AC_SUBST(SPEEX_LIBS)
|
SPEEX_LIBS="-lspeex"
|
||||||
], [
|
AC_SUBST(SPEEX_CFLAGS)
|
||||||
GST_CHECK_LIBHEADER(SPEEX, speex, speex_bits_init, , speex.h, HAVE_SPEEX="yes" SPEEX_LIBS="-lspeex")
|
AC_SUBST(SPEEX_LIBS)
|
||||||
AC_SUBST(SPEEX_CFLAGS)
|
])
|
||||||
AC_SUBST(SPEEX_LIBS)
|
|
||||||
])
|
])
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue