diff options
author | Flavio Oliveira <flavio.oliveira@indt.org.br> | 2005-09-02 20:21:17 +0000 |
---|---|---|
committer | Flavio Oliveira <flavio.oliveira@indt.org.br> | 2005-09-02 20:21:17 +0000 |
commit | 36634356e6bf464a8689657fe532265ea6870555 (patch) | |
tree | 6cbebcf971b256550bac4bbfea5e0b9884405047 /configure.ac | |
parent | 741afd1f75ed86d96e2f1f1a7d19eb34340ff676 (diff) | |
download | gst-plugins-bad-36634356e6bf464a8689657fe532265ea6870555.tar.gz gst-plugins-bad-36634356e6bf464a8689657fe532265ea6870555.tar.bz2 gst-plugins-bad-36634356e6bf464a8689657fe532265ea6870555.zip |
Ported GSM Encoder to GStreamer 0.9
Original commit message from CVS:
Ported GSM Encoder to GStreamer 0.9
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index 8c0e9fa7..19d95513 100644 --- a/configure.ac +++ b/configure.ac @@ -363,6 +363,19 @@ return 0; AC_SUBST(FAAD_LIBS) ]) +dnl *** gsm *** +translit(dnm, m, l) AM_CONDITIONAL(USE_GSM, true) +GST_CHECK_FEATURE(GSM, [GSM library], gsmenc gsmdec, [ + GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm.h, GSM_LIBS="-lgsm") + if test $HAVE_GSM != "yes"; then + GST_CHECK_LIBHEADER(GSM, gsm, gsm_create, , gsm/gsm.h, GSM_LIBS="-lgsm") + if test $HAVE_GSM = "yes"; then + AC_DEFINE(GSM_HEADER_IN_SUBDIR, 1, [Define if GSM header in gsm/ subdir]) + fi + fi + AC_SUBST(GSM_LIBS) +]) + dnl also add builddir include for enumtypes and marshal GST_CFLAGS="-I\$(top_srcdir)/gst-libs -I\$(top_builddir)/gst-libs $GST_CFLAGS $GST_ERROR" @@ -424,6 +437,7 @@ sys/Makefile ext/Makefile ext/faac/Makefile ext/faad/Makefile +ext/gsm/Makefile common/Makefile common/m4/Makefile m4/Makefile |