mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-13 16:21:01 +00:00
make AST_C_COMPILE_CHECK able to print a 'pretty' description of what it is doing
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@132704 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -148,11 +148,15 @@ AC_DEFUN([AST_C_DEFINE_CHECK],
|
|||||||
|
|
||||||
# AST_C_COMPILE_CHECK can be used for testing for various items in header files
|
# AST_C_COMPILE_CHECK can be used for testing for various items in header files
|
||||||
|
|
||||||
# AST_C_COMPILE_CHECK([package], [expression], [header file], [version])
|
# AST_C_COMPILE_CHECK([package], [expression], [header file], [version], [description])
|
||||||
AC_DEFUN([AST_C_COMPILE_CHECK],
|
AC_DEFUN([AST_C_COMPILE_CHECK],
|
||||||
[
|
[
|
||||||
if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
|
if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
|
||||||
AC_MSG_CHECKING([if "$2" compiles using $3])
|
if test "x$5" != "x"; then
|
||||||
|
AC_MSG_CHECKING([for $5])
|
||||||
|
else
|
||||||
|
AC_MSG_CHECKING([if "$2" compiles using $3])
|
||||||
|
fi
|
||||||
saved_cppflags="${CPPFLAGS}"
|
saved_cppflags="${CPPFLAGS}"
|
||||||
if test "x${$1_DIR}" != "x"; then
|
if test "x${$1_DIR}" != "x"; then
|
||||||
$1_INCLUDE="-I${$1_DIR}/include"
|
$1_INCLUDE="-I${$1_DIR}/include"
|
||||||
|
9
configure
vendored
9
configure
vendored
@@ -1,5 +1,5 @@
|
|||||||
#! /bin/sh
|
#! /bin/sh
|
||||||
# From configure.ac Revision: 130039 .
|
# From configure.ac Revision: 132641 .
|
||||||
# Guess values for system-dependent variables and create Makefiles.
|
# Guess values for system-dependent variables and create Makefiles.
|
||||||
# Generated by GNU Autoconf 2.61 for asterisk 1.4.
|
# Generated by GNU Autoconf 2.61 for asterisk 1.4.
|
||||||
#
|
#
|
||||||
@@ -17229,8 +17229,13 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
if test "x${PBX_GETIFADDRS}" != "x1" -a "${USE_GETIFADDRS}" != "no"; then
|
if test "x${PBX_GETIFADDRS}" != "x1" -a "${USE_GETIFADDRS}" != "no"; then
|
||||||
{ echo "$as_me:$LINENO: checking if \"struct ifaddrs *p; getifaddrs(&p)\" compiles using ifaddrs.h" >&5
|
if test "xgetifaddrs() support" != "x"; then
|
||||||
|
{ echo "$as_me:$LINENO: checking for getifaddrs() support" >&5
|
||||||
|
echo $ECHO_N "checking for getifaddrs() support... $ECHO_C" >&6; }
|
||||||
|
else
|
||||||
|
{ echo "$as_me:$LINENO: checking if \"struct ifaddrs *p; getifaddrs(&p)\" compiles using ifaddrs.h" >&5
|
||||||
echo $ECHO_N "checking if \"struct ifaddrs *p; getifaddrs(&p)\" compiles using ifaddrs.h... $ECHO_C" >&6; }
|
echo $ECHO_N "checking if \"struct ifaddrs *p; getifaddrs(&p)\" compiles using ifaddrs.h... $ECHO_C" >&6; }
|
||||||
|
fi
|
||||||
saved_cppflags="${CPPFLAGS}"
|
saved_cppflags="${CPPFLAGS}"
|
||||||
if test "x${GETIFADDRS_DIR}" != "x"; then
|
if test "x${GETIFADDRS_DIR}" != "x"; then
|
||||||
GETIFADDRS_INCLUDE="-I${GETIFADDRS_DIR}/include"
|
GETIFADDRS_INCLUDE="-I${GETIFADDRS_DIR}/include"
|
||||||
|
@@ -444,7 +444,7 @@ if test "${USE_DAHDI}" != "no" ; then
|
|||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h])
|
AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h], , [getifaddrs() support])
|
||||||
|
|
||||||
GSM_INTERNAL="yes"
|
GSM_INTERNAL="yes"
|
||||||
AC_SUBST(GSM_INTERNAL)
|
AC_SUBST(GSM_INTERNAL)
|
||||||
|
Reference in New Issue
Block a user