mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-17 15:29:05 +00:00
Set up detection of IP_PKTINFO in autoconf for chan_unistim
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@88973 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -83,10 +83,6 @@ ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
|
|||||||
#include "asterisk/abstract_jb.h"
|
#include "asterisk/abstract_jb.h"
|
||||||
#include "asterisk/event.h"
|
#include "asterisk/event.h"
|
||||||
|
|
||||||
/*! IP_PKTINFO is not portable. It's used to retrieve our IP.
|
|
||||||
Comment the next line if your running *BSD */
|
|
||||||
#define HAVE_PKTINFO 1
|
|
||||||
|
|
||||||
/*! Beware, G729 and G723 are not supported by asterisk, except with the proper licence */
|
/*! Beware, G729 and G723 are not supported by asterisk, except with the proper licence */
|
||||||
#define CAPABILITY AST_FORMAT_ALAW | AST_FORMAT_ULAW /* | AST_FORMAT_G729A | AST_FORMAT_G723_1 */
|
#define CAPABILITY AST_FORMAT_ALAW | AST_FORMAT_ULAW /* | AST_FORMAT_G729A | AST_FORMAT_G723_1 */
|
||||||
|
|
||||||
|
|||||||
55
configure
vendored
55
configure
vendored
@@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.ac Revision: 88184 .
|
# From configure.ac Revision: 88250 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.61.
|
# Generated by GNU Autoconf 2.61.
|
||||||
#
|
#
|
||||||
@@ -15046,6 +15046,59 @@ fi
|
|||||||
done
|
done
|
||||||
|
|
||||||
|
|
||||||
|
# check if we have IP_PKTINFO constant defined
|
||||||
|
cat >conftest.$ac_ext <<_ACEOF
|
||||||
|
/* confdefs.h. */
|
||||||
|
_ACEOF
|
||||||
|
cat confdefs.h >>conftest.$ac_ext
|
||||||
|
cat >>conftest.$ac_ext <<_ACEOF
|
||||||
|
/* end confdefs.h. */
|
||||||
|
#include <netinet/in.h>
|
||||||
|
int
|
||||||
|
main ()
|
||||||
|
{
|
||||||
|
int pi = IP_PKTINFO;
|
||||||
|
;
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
_ACEOF
|
||||||
|
rm -f conftest.$ac_objext conftest$ac_exeext
|
||||||
|
if { (ac_try="$ac_link"
|
||||||
|
case "(($ac_try" in
|
||||||
|
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
|
||||||
|
*) ac_try_echo=$ac_try;;
|
||||||
|
esac
|
||||||
|
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
|
||||||
|
(eval "$ac_link") 2>conftest.er1
|
||||||
|
ac_status=$?
|
||||||
|
grep -v '^ *+' conftest.er1 >conftest.err
|
||||||
|
rm -f conftest.er1
|
||||||
|
cat conftest.err >&5
|
||||||
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
||||||
|
(exit $ac_status); } && {
|
||||||
|
test -z "$ac_c_werror_flag" ||
|
||||||
|
test ! -s conftest.err
|
||||||
|
} && test -s conftest$ac_exeext &&
|
||||||
|
$as_test_x conftest$ac_exeext; then
|
||||||
|
{ echo "$as_me:$LINENO: result: yes" >&5
|
||||||
|
echo "${ECHO_T}yes" >&6; }
|
||||||
|
|
||||||
|
cat >>confdefs.h <<\_ACEOF
|
||||||
|
#define HAVE_PKTINFO 1
|
||||||
|
_ACEOF
|
||||||
|
|
||||||
|
else
|
||||||
|
echo "$as_me: failed program was:" >&5
|
||||||
|
sed 's/^/| /' conftest.$ac_ext >&5
|
||||||
|
|
||||||
|
{ echo "$as_me:$LINENO: result: no" >&5
|
||||||
|
echo "${ECHO_T}no" >&6; }
|
||||||
|
|
||||||
|
fi
|
||||||
|
|
||||||
|
rm -f core conftest.err conftest.$ac_objext conftest_ipa8_conftest.oo \
|
||||||
|
conftest$ac_exeext conftest.$ac_ext
|
||||||
|
|
||||||
# some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
|
# some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
|
||||||
{ echo "$as_me:$LINENO: checking for library containing gethostbyname_r" >&5
|
{ echo "$as_me:$LINENO: checking for library containing gethostbyname_r" >&5
|
||||||
echo $ECHO_N "checking for library containing gethostbyname_r... $ECHO_C" >&6; }
|
echo $ECHO_N "checking for library containing gethostbyname_r... $ECHO_C" >&6; }
|
||||||
|
|||||||
@@ -284,6 +284,15 @@ AC_CHECK_FUNCS([asprintf atexit bzero dup2 endpwent ftruncate getcwd gethostbyna
|
|||||||
# fopencookie on linux
|
# fopencookie on linux
|
||||||
AC_CHECK_FUNCS([funopen fopencookie])
|
AC_CHECK_FUNCS([funopen fopencookie])
|
||||||
|
|
||||||
|
# check if we have IP_PKTINFO constant defined
|
||||||
|
AC_LINK_IFELSE(
|
||||||
|
AC_LANG_PROGRAM([#include <netinet/in.h>],
|
||||||
|
[int pi = IP_PKTINFO;]),
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
|
||||||
|
AC_MSG_RESULT(no)
|
||||||
|
)
|
||||||
|
|
||||||
# some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
|
# some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
|
||||||
AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
|
AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
|
||||||
|
|
||||||
|
|||||||
@@ -520,6 +520,9 @@
|
|||||||
/* Define to indicate the PostgreSQL library */
|
/* Define to indicate the PostgreSQL library */
|
||||||
#undef HAVE_PGSQL
|
#undef HAVE_PGSQL
|
||||||
|
|
||||||
|
/* Define to 1 if your system defines IP_PKTINFO. */
|
||||||
|
#undef HAVE_PKTINFO
|
||||||
|
|
||||||
/* Define this to indicate the ${POPT_DESCRIP} library */
|
/* Define this to indicate the ${POPT_DESCRIP} library */
|
||||||
#undef HAVE_POPT
|
#undef HAVE_POPT
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user