mirror of
https://gitlab.linphone.org/BC/public/linphone-iphone.git
synced 2026-01-18 11:38:08 +00:00
52 lines
1.3 KiB
Text
52 lines
1.3 KiB
Text
dnl -*- autoconf -*-
|
|
AC_DEFUN([LP_CHECK_OSIP2],[
|
|
|
|
AC_ARG_WITH( osip,
|
|
[ --with-osip Set prefix where osip can be found (ex:/usr or /usr/local)[default=/usr] ],
|
|
[ osip_prefix=${withval}],[ osip_prefix=/usr ])
|
|
|
|
|
|
osip_pkgconfig=true
|
|
osip_pkgconfig_file=libosip2
|
|
|
|
PKG_CHECK_MODULES(OSIP, $osip_pkgconfig_file >= 3.3.0, ,osip_pkgconfig=false)
|
|
|
|
if test $osip_pkgconfig = false; then
|
|
|
|
if test "$osip_prefix" != "/usr" ; then
|
|
OSIP_CFLAGS="-I${osip_prefix}/include"
|
|
fi
|
|
|
|
dnl check osip2 headers
|
|
CPPFLAGS_save=$CPPFLAGS
|
|
CPPFLAGS=$OSIP_CFLAGS
|
|
AC_CHECK_HEADER([osip2/osip.h], ,AC_MSG_ERROR([Could not find osip2 headers !]))
|
|
CPPFLAGS=$CPPFLAGS_save
|
|
|
|
dnl check for osip2 libs
|
|
if test "$osip_prefix" != "/usr" ; then
|
|
OSIP_LIBS="-L$osip_prefix/lib"
|
|
fi
|
|
OSIP_LIBS="$OSIP_LIBS -losipparser2"
|
|
LDFLAGS_save=$LDFLAGS
|
|
LDFLAGS=$OSIP_LIBS
|
|
LIBS_save=$LIBS
|
|
case "$target_os" in
|
|
*mingw*)
|
|
osip_aux_libs=
|
|
;;
|
|
*)
|
|
osip_aux_libs=-lpthread
|
|
;;
|
|
esac
|
|
OSIP_LIBS="$OSIP_LIBS $osip_aux_libs"
|
|
AC_CHECK_LIB(osip2,osip_init, , AC_MSG_ERROR([Could not find osip2 library !]),[-losipparser2 $osip_aux_libs ])
|
|
AC_CHECK_LIB(osipparser2,osip_message_init, , AC_MSG_ERROR([Could not find osipparser2 library !]),[$osip_aux_libs])
|
|
LDFLAGS=$LDFLAGS_save
|
|
LIBS=$LIBS_save
|
|
fi
|
|
|
|
AC_SUBST(OSIP_CFLAGS)
|
|
AC_SUBST(OSIP_LIBS)
|
|
|
|
])
|