configure --without-ilbc done

ILBC support is not really functionnal so the false the flag BUILD_ILBC is nerver defined
This commit is contained in:
Emmanuel Milou
2008-03-14 16:38:47 -04:00
parent 33088f324d
commit 645487c319
5 changed files with 38 additions and 11 deletions

View File

@ -234,6 +234,14 @@ AS_IF([test "x$with_speex" != xno],
AC_DEFINE([HAVE_SPEEX], test "x$with_speex" = "xyes", [Define if you have libspeex])
AM_CONDITIONAL(BUILD_SPEEX, test "x$with_speex" = "xyes" )
dnl Check for ilbc support
AC_ARG_WITH([ilbc],
[AS_HELP_STRING([--without-ilbc],
[disable support for the ilbc codec])],
[],
[with_ilbc=no])
AM_CONDITIONAL(BUILD_ILBC, test "x$with_ilbc" = "xyes" )
dnl Check for IAX
AC_ARG_WITH([iax2],