mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 11:58:40 +00:00
https://origsvn.digium.com/svn/asterisk/trunk ........ r156127 | mmichelson | 2008-11-12 09:33:11 -0600 (Wed, 12 Nov 2008) | 5 lines Add a couple of AC_SUBST calls to the AST_C_COMPILE_CHECK macro. These missing calls were discovered when working on timerfd support in a separate branch. ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.6.1@156128 65c4cc65-6c06-0410-ace0-fbb531ad65f3
34 lines
930 B
Plaintext
34 lines
930 B
Plaintext
# Check if a given expression will compile using a certain header.
|
|
|
|
# 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
|
|
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"
|
|
fi
|
|
CPPFLAGS="${CPPFLAGS} ${$1_INCLUDE}"
|
|
|
|
AC_COMPILE_IFELSE(
|
|
[ AC_LANG_PROGRAM( [#include <$3>],
|
|
[ $2; ]
|
|
)],
|
|
[ AC_MSG_RESULT(yes)
|
|
PBX_$1=1
|
|
AC_DEFINE([HAVE_$1], 1, [Define if your system has the $1 headers.])
|
|
AC_DEFINE([HAVE_$1_VERSION], $4, [Define $1 headers version])
|
|
],
|
|
[ AC_MSG_RESULT(no) ]
|
|
)
|
|
AC_SUBST(PBX_$1)
|
|
AC_SUBST($1_INCLUDE)
|
|
CPPFLAGS="${saved_cppflags}"
|
|
fi
|
|
])
|