mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Merged revisions 132704 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r132704 | kpfleming | 2008-07-22 15:49:41 -0500 (Tue, 22 Jul 2008) | 2 lines 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/trunk@132705 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -128,11 +128,15 @@ AC_DEFUN([AST_C_DEFINE_CHECK],
|
||||
|
||||
# Check if a given expression will compile using a certain header.
|
||||
|
||||
# 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],
|
||||
[
|
||||
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}"
|
||||
if test "x${$1_DIR}" != "x"; then
|
||||
$1_INCLUDE="-I${$1_DIR}/include"
|
||||
|
Reference in New Issue
Block a user