Packaging of libiax2

Removal of libs/libiax2 from the git repo.
Use instead sflphone-iax2-dev from the sflphone repo.
Other debian package available: sflphone-iax2

To execute the program you only need sflphone-iax2; to compile it, you need the headers in sflphone-iax2-dev
This commit is contained in:
Emmanuel Milou
2008-05-01 15:44:11 -04:00
parent 204f962329
commit 88c20e2289
48 changed files with 46 additions and 14346 deletions

View File

@ -251,13 +251,13 @@ AC_ARG_WITH([iax2],
LIBIAX2=
AS_IF([test "x$with_iax2" != xno],
[AC_CHECK_HEADER([iax/iax.h], , AC_MSG_FAILURE([Unable to find the libiax2 headers (you may need to install the dev package). You may use --without-iax2 to compile without iax2 protocol support.]))]
[AC_CHECK_LIB([iax2], [iax_init],
[],
[AC_MSG_FAILURE(
[libiax2 link test failed. You may use --without-iax2 to compile without iax2 protocol support.])]
[libiax2 link test failed. You need the sflphone-iax2 package. You may use --without-iax2 to compile without iax2 protocol support.])]
)
]
[AC_CHECK_HEADER([iax2/iax.h], , AC_MSG_FAILURE([Unable to find the libiax2 headers. You may need to install sflphone-iax2-dev package. You may use --without-iax2 to compile without iax2 protocol support.]))]
)
AC_DEFINE([HAVE_IAX], test "x$with_iax2" = "xyes", [Define if you have libiax2])