aboutsummaryrefslogtreecommitdiffstats
path: root/1.4.23-rc4/autoconf/ast_c_compile_check.m4
diff options
context:
space:
mode:
Diffstat (limited to '1.4.23-rc4/autoconf/ast_c_compile_check.m4')
-rw-r--r--1.4.23-rc4/autoconf/ast_c_compile_check.m431
1 files changed, 0 insertions, 31 deletions
diff --git a/1.4.23-rc4/autoconf/ast_c_compile_check.m4 b/1.4.23-rc4/autoconf/ast_c_compile_check.m4
deleted file mode 100644
index 929557bd4..000000000
--- a/1.4.23-rc4/autoconf/ast_c_compile_check.m4
+++ /dev/null
@@ -1,31 +0,0 @@
-# AST_C_COMPILE_CHECK can be used for testing for various items in header files
-
-# 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) ]
- )
- CPPFLAGS="${saved_cppflags}"
- fi
-])