aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-27 16:14:57 +0000
committertilghman <tilghman@f38db490-d61c-443f-a65b-d21fe96a405b>2009-08-27 16:14:57 +0000
commit78a9222af02d1f3a18a8bb856b0ead507e2edb2e (patch)
tree2a574626f4e1bfebcbffdc4cd0080b395275bb82
parent44f8e74bbddac2b2b9a644c0d6ba2ca449d7f8d0 (diff)
Merged revisions 214360 via svnmerge from
https://origsvn.digium.com/svn/asterisk/trunk ................ r214360 | tilghman | 2009-08-27 11:12:03 -0500 (Thu, 27 Aug 2009) | 10 lines Merged revisions 214357 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r214357 | tilghman | 2009-08-27 11:03:50 -0500 (Thu, 27 Aug 2009) | 3 lines Make autoheader descriptions render correctly in our autoconfig.h file. (Figured out while working with issue #14906) ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.0@214361 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--autoconf/ast_ext_lib.m419
-rwxr-xr-xconfigure1086
-rw-r--r--include/asterisk/autoconfig.h.in364
3 files changed, 1088 insertions, 381 deletions
diff --git a/autoconf/ast_ext_lib.m4 b/autoconf/ast_ext_lib.m4
index 57d83a5d1..711690097 100644
--- a/autoconf/ast_ext_lib.m4
+++ b/autoconf/ast_ext_lib.m4
@@ -26,6 +26,7 @@ AC_DEFUN([AST_EXT_LIB_SETUP],
esac
])
PBX_$1=0
+ AH_TEMPLATE(m4_bpatsubst([[HAVE_$1]], [(.*)]), [Define to 1 if you have the $2 library.])
AC_SUBST([$1_LIB])
AC_SUBST([$1_INCLUDE])
AC_SUBST([$1_DIR])
@@ -70,7 +71,7 @@ if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${$1_INCLUDE}"
- AC_CHECK_HEADER([$4], [$1_HEADER_FOUND=1], [$1_HEADER_FOUND=0])
+ AC_CHECK_HEADER([$4], [$1_HEADER_FOUND=1], [$1_HEADER_FOUND=0])
CPPFLAGS="${saved_cppflags}"
fi
if test "x${$1_HEADER_FOUND}" = "x0" ; then
@@ -81,9 +82,19 @@ if test "x${PBX_$1}" != "x1" -a "${USE_$1}" != "no"; then
$1_LIB=""
fi
PBX_$1=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
- AC_DEFINE_UNQUOTED([HAVE_$1], 1, [Define this to indicate the ${$1_DESCRIP} library])
- AC_DEFINE_UNQUOTED([HAVE_$1_VERSION], [$7], [Define to indicate the ${$1_DESCRIP} library version])
+ if test "x${$1_OPTION}" = "x"; then
+ dnl Ensure that we have an autoheader, when AST_EXT_LIB_SETUP was
+ dnl not called. Note that we cannot use shell substitution in the
+ dnl description, because the shell is never invoked when rendering
+ dnl the autoheader. Only m4 substitutions will expand correctly.
+ AC_DEFINE_UNQUOTED([HAVE_$1], 1, [Define to 1 to indicate $1 functionality.])
+ AC_DEFINE_UNQUOTED([HAVE_$1_VERSION], [$7], [Define to indicate the $1 library version])
+ else
+ cat >>confdefs.h <<_ACEOF
+[@%:@define] HAVE_$1 1
+[@%:@define] HAVE_$1_VERSION $7
+_ACEOF
+ fi
fi
fi
fi
diff --git a/configure b/configure
index ba881484a..fad067feb 100755
--- a/configure
+++ b/configure
@@ -1,5 +1,5 @@
#! /bin/sh
-# From configure.ac Revision: 201093 .
+# From configure.ac Revision: 214153 .
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for asterisk 1.6.
#
@@ -7983,6 +7983,8 @@ fi
+
+
# BKTR is used for backtrace support on platforms that do not
# have it natively.
@@ -8014,6 +8016,8 @@ fi
+
+
CAP_DESCRIP="POSIX 1.e capabilities"
CAP_OPTION="cap"
@@ -8042,6 +8046,8 @@ fi
+
+
CURL_DESCRIP="cURL"
CURL_OPTION="curl"
@@ -8070,6 +8076,8 @@ fi
+
+
CURSES_DESCRIP="curses"
CURSES_OPTION="curses"
@@ -8098,6 +8106,8 @@ fi
+
+
CRYPTO_DESCRIP="OpenSSL Cryptography support"
CRYPTO_OPTION="crypto"
@@ -8126,6 +8136,8 @@ fi
+
+
DAHDI_DESCRIP="DAHDI"
DAHDI_OPTION="dahdi"
@@ -8154,6 +8166,8 @@ fi
+
+
FFMPEG_DESCRIP="Ffmpeg and avcodec library"
FFMPEG_OPTION="avcodec"
@@ -8182,6 +8196,8 @@ fi
+
+
GSM_DESCRIP="External GSM library"
GSM_OPTION="gsm"
@@ -8210,6 +8226,8 @@ fi
+
+
GTK_DESCRIP="gtk libraries"
GTK_OPTION="gtk"
@@ -8238,6 +8256,8 @@ fi
+
+
GTK2_DESCRIP="gtk2 libraries"
GTK2_OPTION="gtk2"
@@ -8266,6 +8286,8 @@ fi
+
+
GMIME_DESCRIP="GMime library"
GMIME_OPTION="gmime"
@@ -8294,6 +8316,8 @@ fi
+
+
ICONV_DESCRIP="Iconv Library"
ICONV_OPTION="iconv"
@@ -8322,6 +8346,8 @@ fi
+
+
IKSEMEL_DESCRIP="Iksemel Jabber Library"
IKSEMEL_OPTION="iksemel"
@@ -8350,6 +8376,8 @@ fi
+
+
IMAP_TK_DESCRIP="UW IMAP Toolkit"
IMAP_TK_OPTION="imap"
@@ -8378,6 +8406,8 @@ fi
+
+
ISDNNET_DESCRIP="ISDN4Linux Library"
ISDNNET_OPTION="isdnnet"
@@ -8406,6 +8436,8 @@ fi
+
+
JACK_DESCRIP="Jack Audio Connection Kit"
JACK_OPTION="jack"
@@ -8434,6 +8466,8 @@ fi
+
+
LDAP_DESCRIP="OpenLDAP"
LDAP_OPTION="ldap"
@@ -8462,6 +8496,8 @@ fi
+
+
LTDL_DESCRIP="libtool"
LTDL_OPTION="ltdl"
@@ -8490,6 +8526,8 @@ fi
+
+
LUA_DESCRIP="Lua"
LUA_OPTION="lua"
@@ -8518,6 +8556,8 @@ fi
+
+
MISDN_DESCRIP="mISDN User Library"
MISDN_OPTION="misdn"
@@ -8546,6 +8586,8 @@ fi
+
+
NBS_DESCRIP="Network Broadcast Sound"
NBS_OPTION="nbs"
@@ -8574,6 +8616,8 @@ fi
+
+
NCURSES_DESCRIP="ncurses"
NCURSES_OPTION="ncurses"
@@ -8602,6 +8646,8 @@ fi
+
+
NETSNMP_DESCRIP="Net-SNMP"
NETSNMP_OPTION="netsnmp"
@@ -8630,6 +8676,8 @@ fi
+
+
NEWT_DESCRIP="newt"
NEWT_OPTION="newt"
@@ -8658,6 +8706,8 @@ fi
+
+
UNIXODBC_DESCRIP="unixODBC"
UNIXODBC_OPTION="odbc"
@@ -8686,6 +8736,8 @@ fi
+
+
OGG_DESCRIP="OGG"
OGG_OPTION="ogg"
@@ -8714,6 +8766,8 @@ fi
+
+
OSPTK_DESCRIP="OSP Toolkit"
OSPTK_OPTION="osptk"
@@ -8742,6 +8796,8 @@ fi
+
+
OSS_DESCRIP="Open Sound System"
OSS_OPTION="oss"
@@ -8770,6 +8826,8 @@ fi
+
+
PGSQL_DESCRIP="PostgreSQL"
PGSQL_OPTION="postgres"
@@ -8798,6 +8856,8 @@ fi
+
+
POPT_DESCRIP="popt"
POPT_OPTION="popt"
@@ -8826,6 +8886,8 @@ fi
+
+
PORTAUDIO_DESCRIP="PortAudio"
PORTAUDIO_OPTION="portaudio"
@@ -8854,6 +8916,8 @@ fi
+
+
PRI_DESCRIP="ISDN PRI"
PRI_OPTION="pri"
@@ -8882,6 +8946,8 @@ fi
+
+
RESAMPLE_DESCRIP="LIBRESAMPLE"
RESAMPLE_OPTION="resample"
@@ -8910,6 +8976,8 @@ fi
+
+
SPANDSP_DESCRIP="SPANDSP"
SPANDSP_OPTION="spandsp"
@@ -8938,6 +9006,8 @@ fi
+
+
SS7_DESCRIP="ISDN SS7"
SS7_OPTION="ss7"
@@ -8966,6 +9036,8 @@ fi
+
+
PWLIB_DESCRIP="PWlib"
PWLIB_OPTION="pwlib"
@@ -8994,6 +9066,8 @@ fi
+
+
OPENH323_DESCRIP="OpenH323"
OPENH323_OPTION="h323"
@@ -9022,6 +9096,8 @@ fi
+
+
RADIUS_DESCRIP="Radius Client"
RADIUS_OPTION="radius"
@@ -9050,6 +9126,8 @@ fi
+
+
SDL_DESCRIP="Sdl"
SDL_OPTION="sdl"
@@ -9078,6 +9156,8 @@ fi
+
+
SDL_IMAGE_DESCRIP="Sdl Image library"
SDL_IMAGE_OPTION="SDL_image"
@@ -9106,6 +9186,8 @@ fi
+
+
SPEEX_DESCRIP="Speex"
SPEEX_OPTION="speex"
@@ -9134,6 +9216,8 @@ fi
+
+
SPEEX_PREPROCESS_DESCRIP="Speex preprocess routines"
SPEEX_PREPROCESS_OPTION="speex"
@@ -9162,6 +9246,8 @@ fi
+
+
SPEEXDSP_DESCRIP="Speexdsp"
SPEEXDSP_OPTION="speexdsp"
@@ -9190,6 +9276,8 @@ fi
+
+
SQLITE_DESCRIP="SQLite"
SQLITE_OPTION="sqlite"
@@ -9218,6 +9306,8 @@ fi
+
+
SQLITE3_DESCRIP="SQLite"
SQLITE3_OPTION="sqlite3"
@@ -9246,6 +9336,8 @@ fi
+
+
SUPPSERV_DESCRIP="mISDN Supplemental Services"
SUPPSERV_OPTION="suppserv"
@@ -9274,6 +9366,8 @@ fi
+
+
OPENSSL_DESCRIP="OpenSSL Secure Sockets Layer support"
OPENSSL_OPTION="ssl"
@@ -9302,6 +9396,8 @@ fi
+
+
FREETDS_DESCRIP="FreeTDS"
FREETDS_OPTION="tds"
@@ -9330,6 +9426,8 @@ fi
+
+
TERMCAP_DESCRIP="Termcap"
TERMCAP_OPTION="termcap"
@@ -9358,6 +9456,8 @@ fi
+
+
TINFO_DESCRIP="Term Info"
TINFO_OPTION="tinfo"
@@ -9386,6 +9486,8 @@ fi
+
+
TONEZONE_DESCRIP="tonezone"
TONEZONE_OPTION="tonezone"
@@ -9414,6 +9516,8 @@ fi
+
+
USB_DESCRIP="usb"
USB_OPTION="usb"
@@ -9442,6 +9546,8 @@ fi
+
+
VORBIS_DESCRIP="Vorbis"
VORBIS_OPTION="vorbis"
@@ -9470,6 +9576,8 @@ fi
+
+
VPB_DESCRIP="Voicetronix API"
VPB_OPTION="vpb"
@@ -9498,6 +9606,8 @@ fi
+
+
X11_DESCRIP="X11 support"
X11_OPTION="x11"
@@ -9526,6 +9636,8 @@ fi
+
+
ZLIB_DESCRIP="zlib"
ZLIB_OPTION="z"
@@ -9554,6 +9666,8 @@ fi
+
+
# check for basic system features and functionality before
# checking for package libraries
@@ -19086,7 +19200,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ALSA_INCLUDE}"
- if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
+ if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for alsa/asoundlib.h" >&5
echo $ECHO_N "checking for alsa/asoundlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_alsa_asoundlib_h+set}" = set; then
@@ -19233,7 +19347,7 @@ fi
ALSA_LIB=""
fi
PBX_ALSA=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ALSA_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ALSA 1
@@ -19244,6 +19358,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ALSA_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ALSA 1
+#define HAVE_ALSA_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -19348,7 +19468,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${CURSES_INCLUDE}"
- if test "${ac_cv_header_curses_h+set}" = set; then
+ if test "${ac_cv_header_curses_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for curses.h" >&5
echo $ECHO_N "checking for curses.h... $ECHO_C" >&6; }
if test "${ac_cv_header_curses_h+set}" = set; then
@@ -19495,7 +19615,7 @@ fi
CURSES_LIB=""
fi
PBX_CURSES=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${CURSES_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_CURSES 1
@@ -19506,6 +19626,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_CURSES_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_CURSES 1
+#define HAVE_CURSES_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -19611,7 +19737,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${CAP_INCLUDE}"
- if test "${ac_cv_header_sys_capability_h+set}" = set; then
+ if test "${ac_cv_header_sys_capability_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for sys/capability.h" >&5
echo $ECHO_N "checking for sys/capability.h... $ECHO_C" >&6; }
if test "${ac_cv_header_sys_capability_h+set}" = set; then
@@ -19758,7 +19884,7 @@ fi
CAP_LIB=""
fi
PBX_CAP=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${CAP_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_CAP 1
@@ -19769,6 +19895,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_CAP_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_CAP 1
+#define HAVE_CAP_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -19952,7 +20084,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${EXP2L_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -20099,7 +20231,7 @@ fi
EXP2L_LIB=""
fi
PBX_EXP2L=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${EXP2L_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_EXP2L 1
@@ -20110,6 +20242,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_EXP2L_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_EXP2L 1
+#define HAVE_EXP2L_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -20213,7 +20351,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LOG2L_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -20360,7 +20498,7 @@ fi
LOG2L_LIB=""
fi
PBX_LOG2L=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LOG2L_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG2L 1
@@ -20371,6 +20509,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LOG2L_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOG2L 1
+#define HAVE_LOG2L_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -20474,7 +20618,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${EXP10L_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -20621,7 +20765,7 @@ fi
EXP10L_LIB=""
fi
PBX_EXP10L=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${EXP10L_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_EXP10L 1
@@ -20632,6 +20776,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_EXP10L_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_EXP10L 1
+#define HAVE_EXP10L_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -20735,7 +20885,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LOG10L_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -20882,7 +21032,7 @@ fi
LOG10L_LIB=""
fi
PBX_LOG10L=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LOG10L_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L 1
@@ -20893,6 +21043,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10L_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOG10L 1
+#define HAVE_LOG10L_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -20996,7 +21152,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SINL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -21143,7 +21299,7 @@ fi
SINL_LIB=""
fi
PBX_SINL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SINL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SINL 1
@@ -21154,6 +21310,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SINL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SINL 1
+#define HAVE_SINL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -21257,7 +21419,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${COSL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -21404,7 +21566,7 @@ fi
COSL_LIB=""
fi
PBX_COSL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${COSL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_COSL 1
@@ -21415,6 +21577,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_COSL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_COSL 1
+#define HAVE_COSL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -21518,7 +21686,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TANL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -21665,7 +21833,7 @@ fi
TANL_LIB=""
fi
PBX_TANL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TANL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TANL 1
@@ -21676,6 +21844,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TANL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TANL 1
+#define HAVE_TANL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -21779,7 +21953,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ASINL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -21926,7 +22100,7 @@ fi
ASINL_LIB=""
fi
PBX_ASINL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ASINL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ASINL 1
@@ -21937,6 +22111,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ASINL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ASINL 1
+#define HAVE_ASINL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -22040,7 +22220,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ACOSL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -22187,7 +22367,7 @@ fi
ACOSL_LIB=""
fi
PBX_ACOSL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ACOSL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ACOSL 1
@@ -22198,6 +22378,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ACOSL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ACOSL 1
+#define HAVE_ACOSL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -22301,7 +22487,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ATANL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -22448,7 +22634,7 @@ fi
ATANL_LIB=""
fi
PBX_ATANL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ATANL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ATANL 1
@@ -22459,6 +22645,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ATANL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ATANL 1
+#define HAVE_ATANL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -22562,7 +22754,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ATAN2L_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -22709,7 +22901,7 @@ fi
ATAN2L_LIB=""
fi
PBX_ATAN2L=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ATAN2L_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L 1
@@ -22720,6 +22912,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2L_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ATAN2L 1
+#define HAVE_ATAN2L_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -22823,7 +23021,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${POWL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -22970,7 +23168,7 @@ fi
POWL_LIB=""
fi
PBX_POWL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${POWL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_POWL 1
@@ -22981,6 +23179,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_POWL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_POWL 1
+#define HAVE_POWL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -23084,7 +23288,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SQRTL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -23231,7 +23435,7 @@ fi
SQRTL_LIB=""
fi
PBX_SQRTL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SQRTL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL 1
@@ -23242,6 +23446,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SQRTL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SQRTL 1
+#define HAVE_SQRTL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -23345,7 +23555,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${RINTL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -23492,7 +23702,7 @@ fi
RINTL_LIB=""
fi
PBX_RINTL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${RINTL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_RINTL 1
@@ -23503,6 +23713,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_RINTL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_RINTL 1
+#define HAVE_RINTL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -23606,7 +23822,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${EXPL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -23753,7 +23969,7 @@ fi
EXPL_LIB=""
fi
PBX_EXPL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${EXPL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL 1
@@ -23764,6 +23980,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_EXPL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_EXPL 1
+#define HAVE_EXPL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -23867,7 +24089,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LOGL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -24014,7 +24236,7 @@ fi
LOGL_LIB=""
fi
PBX_LOGL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LOGL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL 1
@@ -24025,6 +24247,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LOGL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOGL 1
+#define HAVE_LOGL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -24128,7 +24356,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${REMAINDERL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -24275,7 +24503,7 @@ fi
REMAINDERL_LIB=""
fi
PBX_REMAINDERL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${REMAINDERL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_REMAINDERL 1
@@ -24286,6 +24514,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_REMAINDERL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_REMAINDERL 1
+#define HAVE_REMAINDERL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -24389,7 +24623,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${FMODL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -24536,7 +24770,7 @@ fi
FMODL_LIB=""
fi
PBX_FMODL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${FMODL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL 1
@@ -24547,6 +24781,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_FMODL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_FMODL 1
+#define HAVE_FMODL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -24650,7 +24890,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ROUNDL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -24797,7 +25037,7 @@ fi
ROUNDL_LIB=""
fi
PBX_ROUNDL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ROUNDL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ROUNDL 1
@@ -24808,6 +25048,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ROUNDL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ROUNDL 1
+#define HAVE_ROUNDL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -24911,7 +25157,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TRUNCL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -25058,7 +25304,7 @@ fi
TRUNCL_LIB=""
fi
PBX_TRUNCL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TRUNCL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TRUNCL 1
@@ -25069,6 +25315,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TRUNCL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TRUNCL 1
+#define HAVE_TRUNCL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -25172,7 +25424,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${STRTOLD_INCLUDE}"
- if test "${ac_cv_header_stdlib_h+set}" = set; then
+ if test "${ac_cv_header_stdlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for stdlib.h" >&5
echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_stdlib_h+set}" = set; then
@@ -25319,7 +25571,7 @@ fi
STRTOLD_LIB=""
fi
PBX_STRTOLD=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${STRTOLD_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD 1
@@ -25330,6 +25582,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOLD_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_STRTOLD 1
+#define HAVE_STRTOLD_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -25433,7 +25691,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${FLOORL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -25580,7 +25838,7 @@ fi
FLOORL_LIB=""
fi
PBX_FLOORL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${FLOORL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_FLOORL 1
@@ -25591,6 +25849,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_FLOORL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_FLOORL 1
+#define HAVE_FLOORL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -25694,7 +25958,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${CEILL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -25841,7 +26105,7 @@ fi
CEILL_LIB=""
fi
PBX_CEILL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${CEILL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_CEILL 1
@@ -25852,6 +26116,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_CEILL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_CEILL 1
+#define HAVE_CEILL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -25955,7 +26225,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${EXP2_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -26102,7 +26372,7 @@ fi
EXP2_LIB=""
fi
PBX_EXP2=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${EXP2_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_EXP2 1
@@ -26113,6 +26383,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_EXP2_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_EXP2 1
+#define HAVE_EXP2_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -26216,7 +26492,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LOG2_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -26363,7 +26639,7 @@ fi
LOG2_LIB=""
fi
PBX_LOG2=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LOG2_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG2 1
@@ -26374,6 +26650,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LOG2_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOG2 1
+#define HAVE_LOG2_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -26477,7 +26759,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${EXP10_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -26624,7 +26906,7 @@ fi
EXP10_LIB=""
fi
PBX_EXP10=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${EXP10_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_EXP10 1
@@ -26635,6 +26917,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_EXP10_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_EXP10 1
+#define HAVE_EXP10_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -26738,7 +27026,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LOG10_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -26885,7 +27173,7 @@ fi
LOG10_LIB=""
fi
PBX_LOG10=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LOG10_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10 1
@@ -26896,6 +27184,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LOG10_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOG10 1
+#define HAVE_LOG10_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -26999,7 +27293,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SIN_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -27146,7 +27440,7 @@ fi
SIN_LIB=""
fi
PBX_SIN=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SIN_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SIN 1
@@ -27157,6 +27451,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SIN_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SIN 1
+#define HAVE_SIN_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -27260,7 +27560,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${COS_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -27407,7 +27707,7 @@ fi
COS_LIB=""
fi
PBX_COS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${COS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_COS 1
@@ -27418,6 +27718,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_COS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_COS 1
+#define HAVE_COS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -27521,7 +27827,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TAN_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -27668,7 +27974,7 @@ fi
TAN_LIB=""
fi
PBX_TAN=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TAN_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TAN 1
@@ -27679,6 +27985,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TAN_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TAN 1
+#define HAVE_TAN_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -27782,7 +28094,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ASIN_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -27929,7 +28241,7 @@ fi
ASIN_LIB=""
fi
PBX_ASIN=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ASIN_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ASIN 1
@@ -27940,6 +28252,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ASIN_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ASIN 1
+#define HAVE_ASIN_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -28043,7 +28361,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ACOS_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -28190,7 +28508,7 @@ fi
ACOS_LIB=""
fi
PBX_ACOS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ACOS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ACOS 1
@@ -28201,6 +28519,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ACOS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ACOS 1
+#define HAVE_ACOS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -28304,7 +28628,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ATAN_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -28451,7 +28775,7 @@ fi
ATAN_LIB=""
fi
PBX_ATAN=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ATAN_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN 1
@@ -28462,6 +28786,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ATAN 1
+#define HAVE_ATAN_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -28565,7 +28895,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ATAN2_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -28712,7 +29042,7 @@ fi
ATAN2_LIB=""
fi
PBX_ATAN2=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ATAN2_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2 1
@@ -28723,6 +29053,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ATAN2_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ATAN2 1
+#define HAVE_ATAN2_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -28826,7 +29162,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${POW_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -28973,7 +29309,7 @@ fi
POW_LIB=""
fi
PBX_POW=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${POW_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_POW 1
@@ -28984,6 +29320,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_POW_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_POW 1
+#define HAVE_POW_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -29087,7 +29429,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SQRT_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -29234,7 +29576,7 @@ fi
SQRT_LIB=""
fi
PBX_SQRT=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SQRT_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SQRT 1
@@ -29245,6 +29587,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SQRT_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SQRT 1
+#define HAVE_SQRT_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -29348,7 +29696,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${RINT_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -29495,7 +29843,7 @@ fi
RINT_LIB=""
fi
PBX_RINT=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${RINT_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_RINT 1
@@ -29506,6 +29854,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_RINT_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_RINT 1
+#define HAVE_RINT_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -29609,7 +29963,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${EXP_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -29756,7 +30110,7 @@ fi
EXP_LIB=""
fi
PBX_EXP=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${EXP_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_EXP 1
@@ -29767,6 +30121,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_EXP_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_EXP 1
+#define HAVE_EXP_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -29870,7 +30230,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LOG_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -30017,7 +30377,7 @@ fi
LOG_LIB=""
fi
PBX_LOG=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LOG_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LOG 1
@@ -30028,6 +30388,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LOG_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LOG 1
+#define HAVE_LOG_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -30131,7 +30497,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${REMAINDER_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -30278,7 +30644,7 @@ fi
REMAINDER_LIB=""
fi
PBX_REMAINDER=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${REMAINDER_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_REMAINDER 1
@@ -30289,6 +30655,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_REMAINDER_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_REMAINDER 1
+#define HAVE_REMAINDER_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -30392,7 +30764,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${FMOD_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -30539,7 +30911,7 @@ fi
FMOD_LIB=""
fi
PBX_FMOD=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${FMOD_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_FMOD 1
@@ -30550,6 +30922,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_FMOD_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_FMOD 1
+#define HAVE_FMOD_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -30653,7 +31031,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ROUND_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -30800,7 +31178,7 @@ fi
ROUND_LIB=""
fi
PBX_ROUND=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ROUND_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ROUND 1
@@ -30811,6 +31189,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ROUND_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ROUND 1
+#define HAVE_ROUND_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -30914,7 +31298,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TRUNC_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -31061,7 +31445,7 @@ fi
TRUNC_LIB=""
fi
PBX_TRUNC=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TRUNC_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TRUNC 1
@@ -31072,6 +31456,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TRUNC_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TRUNC 1
+#define HAVE_TRUNC_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -31175,7 +31565,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${STRTOD_INCLUDE}"
- if test "${ac_cv_header_stdlib_h+set}" = set; then
+ if test "${ac_cv_header_stdlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for stdlib.h" >&5
echo $ECHO_N "checking for stdlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_stdlib_h+set}" = set; then
@@ -31322,7 +31712,7 @@ fi
STRTOD_LIB=""
fi
PBX_STRTOD=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${STRTOD_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOD 1
@@ -31333,6 +31723,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_STRTOD_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_STRTOD 1
+#define HAVE_STRTOD_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -31436,7 +31832,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${FLOOR_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -31583,7 +31979,7 @@ fi
FLOOR_LIB=""
fi
PBX_FLOOR=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${FLOOR_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_FLOOR 1
@@ -31594,6 +31990,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_FLOOR_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_FLOOR 1
+#define HAVE_FLOOR_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -31697,7 +32099,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${CEIL_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -31844,7 +32246,7 @@ fi
CEIL_LIB=""
fi
PBX_CEIL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${CEIL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_CEIL 1
@@ -31855,6 +32257,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_CEIL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_CEIL 1
+#define HAVE_CEIL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -32734,7 +33142,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ICONV_INCLUDE}"
- if test "${ac_cv_header_iconv_h+set}" = set; then
+ if test "${ac_cv_header_iconv_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for iconv.h" >&5
echo $ECHO_N "checking for iconv.h... $ECHO_C" >&6; }
if test "${ac_cv_header_iconv_h+set}" = set; then
@@ -32881,7 +33289,7 @@ fi
ICONV_LIB=""
fi
PBX_ICONV=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ICONV_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ICONV 1
@@ -32892,6 +33300,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ICONV_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ICONV 1
+#define HAVE_ICONV_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -32996,7 +33410,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ICONV_INCLUDE}"
- if test "${ac_cv_header_iconv_h+set}" = set; then
+ if test "${ac_cv_header_iconv_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for iconv.h" >&5
echo $ECHO_N "checking for iconv.h... $ECHO_C" >&6; }
if test "${ac_cv_header_iconv_h+set}" = set; then
@@ -33143,7 +33557,7 @@ fi
ICONV_LIB=""
fi
PBX_ICONV=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ICONV_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ICONV 1
@@ -33154,6 +33568,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ICONV_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ICONV 1
+#define HAVE_ICONV_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -33258,7 +33678,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${IKSEMEL_INCLUDE}"
- if test "${ac_cv_header_iksemel_h+set}" = set; then
+ if test "${ac_cv_header_iksemel_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for iksemel.h" >&5
echo $ECHO_N "checking for iksemel.h... $ECHO_C" >&6; }
if test "${ac_cv_header_iksemel_h+set}" = set; then
@@ -33405,7 +33825,7 @@ fi
IKSEMEL_LIB=""
fi
PBX_IKSEMEL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${IKSEMEL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_IKSEMEL 1
@@ -33416,6 +33836,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_IKSEMEL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_IKSEMEL 1
+#define HAVE_IKSEMEL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -34352,7 +34778,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${JACK_INCLUDE}"
- if test "${ac_cv_header_jack_jack_h+set}" = set; then
+ if test "${ac_cv_header_jack_jack_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for jack/jack.h" >&5
echo $ECHO_N "checking for jack/jack.h... $ECHO_C" >&6; }
if test "${ac_cv_header_jack_jack_h+set}" = set; then
@@ -34499,7 +34925,7 @@ fi
JACK_LIB=""
fi
PBX_JACK=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${JACK_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_JACK 1
@@ -34510,6 +34936,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_JACK_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_JACK 1
+#define HAVE_JACK_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -34615,7 +35047,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LTDL_INCLUDE}"
- if test "${ac_cv_header_ltdl_h+set}" = set; then
+ if test "${ac_cv_header_ltdl_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for ltdl.h" >&5
echo $ECHO_N "checking for ltdl.h... $ECHO_C" >&6; }
if test "${ac_cv_header_ltdl_h+set}" = set; then
@@ -34762,7 +35194,7 @@ fi
LTDL_LIB=""
fi
PBX_LTDL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LTDL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LTDL 1
@@ -34773,6 +35205,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LTDL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LTDL 1
+#define HAVE_LTDL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -34877,7 +35315,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LDAP_INCLUDE}"
- if test "${ac_cv_header_ldap_h+set}" = set; then
+ if test "${ac_cv_header_ldap_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for ldap.h" >&5
echo $ECHO_N "checking for ldap.h... $ECHO_C" >&6; }
if test "${ac_cv_header_ldap_h+set}" = set; then
@@ -35024,7 +35462,7 @@ fi
LDAP_LIB=""
fi
PBX_LDAP=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LDAP_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LDAP 1
@@ -35035,6 +35473,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LDAP_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LDAP 1
+#define HAVE_LDAP_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -35139,7 +35583,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${MISDN_INCLUDE}"
- if test "${ac_cv_header_mISDNuser_mISDNlib_h+set}" = set; then
+ if test "${ac_cv_header_mISDNuser_mISDNlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for mISDNuser/mISDNlib.h" >&5
echo $ECHO_N "checking for mISDNuser/mISDNlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_mISDNuser_mISDNlib_h+set}" = set; then
@@ -35286,7 +35730,7 @@ fi
MISDN_LIB=""
fi
PBX_MISDN=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${MISDN_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_MISDN 1
@@ -35297,6 +35741,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_MISDN_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_MISDN 1
+#define HAVE_MISDN_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -35402,7 +35852,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ISDNNET_INCLUDE}"
- if test "${ac_cv_header_mISDNuser_isdn_net_h+set}" = set; then
+ if test "${ac_cv_header_mISDNuser_isdn_net_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for mISDNuser/isdn_net.h" >&5
echo $ECHO_N "checking for mISDNuser/isdn_net.h... $ECHO_C" >&6; }
if test "${ac_cv_header_mISDNuser_isdn_net_h+set}" = set; then
@@ -35549,7 +35999,7 @@ fi
ISDNNET_LIB=""
fi
PBX_ISDNNET=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ISDNNET_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ISDNNET 1
@@ -35560,6 +36010,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ISDNNET_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ISDNNET 1
+#define HAVE_ISDNNET_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -35663,7 +36119,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SUPPSERV_INCLUDE}"
- if test "${ac_cv_header_mISDNuser_suppserv_h+set}" = set; then
+ if test "${ac_cv_header_mISDNuser_suppserv_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for mISDNuser/suppserv.h" >&5
echo $ECHO_N "checking for mISDNuser/suppserv.h... $ECHO_C" >&6; }
if test "${ac_cv_header_mISDNuser_suppserv_h+set}" = set; then
@@ -35810,7 +36266,7 @@ fi
SUPPSERV_LIB=""
fi
PBX_SUPPSERV=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SUPPSERV_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SUPPSERV 1
@@ -35821,6 +36277,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SUPPSERV_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SUPPSERV 1
+#define HAVE_SUPPSERV_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -36217,7 +36679,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${NBS_INCLUDE}"
- if test "${ac_cv_header_nbs_h+set}" = set; then
+ if test "${ac_cv_header_nbs_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for nbs.h" >&5
echo $ECHO_N "checking for nbs.h... $ECHO_C" >&6; }
if test "${ac_cv_header_nbs_h+set}" = set; then
@@ -36364,7 +36826,7 @@ fi
NBS_LIB=""
fi
PBX_NBS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${NBS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_NBS 1
@@ -36375,6 +36837,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_NBS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_NBS 1
+#define HAVE_NBS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -36479,7 +36947,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${NCURSES_INCLUDE}"
- if test "${ac_cv_header_curses_h+set}" = set; then
+ if test "${ac_cv_header_curses_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for curses.h" >&5
echo $ECHO_N "checking for curses.h... $ECHO_C" >&6; }
if test "${ac_cv_header_curses_h+set}" = set; then
@@ -36626,7 +37094,7 @@ fi
NCURSES_LIB=""
fi
PBX_NCURSES=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${NCURSES_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_NCURSES 1
@@ -36637,6 +37105,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_NCURSES_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_NCURSES 1
+#define HAVE_NCURSES_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -36924,7 +37398,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${NEWT_INCLUDE}"
- if test "${ac_cv_header_newt_h+set}" = set; then
+ if test "${ac_cv_header_newt_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for newt.h" >&5
echo $ECHO_N "checking for newt.h... $ECHO_C" >&6; }
if test "${ac_cv_header_newt_h+set}" = set; then
@@ -37071,7 +37545,7 @@ fi
NEWT_LIB=""
fi
PBX_NEWT=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${NEWT_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_NEWT 1
@@ -37082,6 +37556,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_NEWT_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_NEWT 1
+#define HAVE_NEWT_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -37186,7 +37666,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${UNIXODBC_INCLUDE}"
- if test "${ac_cv_header_sql_h+set}" = set; then
+ if test "${ac_cv_header_sql_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for sql.h" >&5
echo $ECHO_N "checking for sql.h... $ECHO_C" >&6; }
if test "${ac_cv_header_sql_h+set}" = set; then
@@ -37333,7 +37813,7 @@ fi
UNIXODBC_LIB=""
fi
PBX_UNIXODBC=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${UNIXODBC_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_UNIXODBC 1
@@ -37344,6 +37824,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_UNIXODBC_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_UNIXODBC 1
+#define HAVE_UNIXODBC_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -37448,7 +37934,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${OGG_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -37595,7 +38081,7 @@ fi
OGG_LIB=""
fi
PBX_OGG=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${OGG_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_OGG 1
@@ -37606,6 +38092,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_OGG_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_OGG 1
+#define HAVE_OGG_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -37711,7 +38203,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${BKTR_INCLUDE}"
- if test "${ac_cv_header_execinfo_h+set}" = set; then
+ if test "${ac_cv_header_execinfo_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for execinfo.h" >&5
echo $ECHO_N "checking for execinfo.h... $ECHO_C" >&6; }
if test "${ac_cv_header_execinfo_h+set}" = set; then
@@ -37858,7 +38350,7 @@ fi
BKTR_LIB=""
fi
PBX_BKTR=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${BKTR_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_BKTR 1
@@ -37869,6 +38361,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_BKTR_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_BKTR 1
+#define HAVE_BKTR_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -37973,7 +38471,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${BKTR_INCLUDE}"
- if test "${ac_cv_header_execinfo_h+set}" = set; then
+ if test "${ac_cv_header_execinfo_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for execinfo.h" >&5
echo $ECHO_N "checking for execinfo.h... $ECHO_C" >&6; }
if test "${ac_cv_header_execinfo_h+set}" = set; then
@@ -38120,7 +38618,7 @@ fi
BKTR_LIB=""
fi
PBX_BKTR=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${BKTR_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_BKTR 1
@@ -38131,6 +38629,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_BKTR_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_BKTR 1
+#define HAVE_BKTR_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -38236,7 +38740,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${OSS_INCLUDE}"
- if test "${ac_cv_header_linux_soundcard_h+set}" = set; then
+ if test "${ac_cv_header_linux_soundcard_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for linux/soundcard.h" >&5
echo $ECHO_N "checking for linux/soundcard.h... $ECHO_C" >&6; }
if test "${ac_cv_header_linux_soundcard_h+set}" = set; then
@@ -38383,7 +38887,7 @@ fi
OSS_LIB=""
fi
PBX_OSS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${OSS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_OSS 1
@@ -38394,6 +38898,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_OSS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_OSS 1
+#define HAVE_OSS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -38497,7 +39007,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${OSS_INCLUDE}"
- if test "${ac_cv_header_sys_soundcard_h+set}" = set; then
+ if test "${ac_cv_header_sys_soundcard_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for sys/soundcard.h" >&5
echo $ECHO_N "checking for sys/soundcard.h... $ECHO_C" >&6; }
if test "${ac_cv_header_sys_soundcard_h+set}" = set; then
@@ -38644,7 +39154,7 @@ fi
OSS_LIB=""
fi
PBX_OSS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${OSS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_OSS 1
@@ -38655,6 +39165,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_OSS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_OSS 1
+#define HAVE_OSS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -38758,7 +39274,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${OSS_INCLUDE}"
- if test "${ac_cv_header_soundcard_h+set}" = set; then
+ if test "${ac_cv_header_soundcard_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for soundcard.h" >&5
echo $ECHO_N "checking for soundcard.h... $ECHO_C" >&6; }
if test "${ac_cv_header_soundcard_h+set}" = set; then
@@ -38905,7 +39421,7 @@ fi
OSS_LIB=""
fi
PBX_OSS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${OSS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_OSS 1
@@ -38916,6 +39432,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_OSS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_OSS 1
+#define HAVE_OSS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -39348,7 +39870,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${POPT_INCLUDE}"
- if test "${ac_cv_header_popt_h+set}" = set; then
+ if test "${ac_cv_header_popt_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for popt.h" >&5
echo $ECHO_N "checking for popt.h... $ECHO_C" >&6; }
if test "${ac_cv_header_popt_h+set}" = set; then
@@ -39495,7 +40017,7 @@ fi
POPT_LIB=""
fi
PBX_POPT=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${POPT_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_POPT 1
@@ -39506,6 +40028,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_POPT_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_POPT 1
+#define HAVE_POPT_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -39610,7 +40138,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${PORTAUDIO_INCLUDE}"
- if test "${ac_cv_header_portaudio_h+set}" = set; then
+ if test "${ac_cv_header_portaudio_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for portaudio.h" >&5
echo $ECHO_N "checking for portaudio.h... $ECHO_C" >&6; }
if test "${ac_cv_header_portaudio_h+set}" = set; then
@@ -39757,7 +40285,7 @@ fi
PORTAUDIO_LIB=""
fi
PBX_PORTAUDIO=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${PORTAUDIO_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_PORTAUDIO 1
@@ -39768,6 +40296,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_PORTAUDIO_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_PORTAUDIO 1
+#define HAVE_PORTAUDIO_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -39872,7 +40406,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${PRI_INCLUDE}"
- if test "${ac_cv_header_libpri_h+set}" = set; then
+ if test "${ac_cv_header_libpri_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for libpri.h" >&5
echo $ECHO_N "checking for libpri.h... $ECHO_C" >&6; }
if test "${ac_cv_header_libpri_h+set}" = set; then
@@ -40019,7 +40553,7 @@ fi
PRI_LIB=""
fi
PBX_PRI=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${PRI_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_PRI 1
@@ -40030,6 +40564,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_PRI_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_PRI 1
+#define HAVE_PRI_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -40134,7 +40674,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${PRI_INBANDDISCONNECT_INCLUDE}"
- if test "${ac_cv_header_libpri_h+set}" = set; then
+ if test "${ac_cv_header_libpri_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for libpri.h" >&5
echo $ECHO_N "checking for libpri.h... $ECHO_C" >&6; }
if test "${ac_cv_header_libpri_h+set}" = set; then
@@ -40281,7 +40821,7 @@ fi
PRI_INBANDDISCONNECT_LIB=""
fi
PBX_PRI_INBANDDISCONNECT=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${PRI_INBANDDISCONNECT_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_PRI_INBANDDISCONNECT 1
@@ -40292,6 +40832,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_PRI_INBANDDISCONNECT_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_PRI_INBANDDISCONNECT 1
+#define HAVE_PRI_INBANDDISCONNECT_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -40396,7 +40942,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${RESAMPLE_INCLUDE}"
- if test "${ac_cv_header_libresample_h+set}" = set; then
+ if test "${ac_cv_header_libresample_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for libresample.h" >&5
echo $ECHO_N "checking for libresample.h... $ECHO_C" >&6; }
if test "${ac_cv_header_libresample_h+set}" = set; then
@@ -40543,7 +41089,7 @@ fi
RESAMPLE_LIB=""
fi
PBX_RESAMPLE=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${RESAMPLE_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_RESAMPLE 1
@@ -40554,6 +41100,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_RESAMPLE_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_RESAMPLE 1
+#define HAVE_RESAMPLE_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -40750,7 +41302,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SPANDSP_INCLUDE}"
- if test "${ac_cv_header_spandsp_h+set}" = set; then
+ if test "${ac_cv_header_spandsp_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for spandsp.h" >&5
echo $ECHO_N "checking for spandsp.h... $ECHO_C" >&6; }
if test "${ac_cv_header_spandsp_h+set}" = set; then
@@ -40897,7 +41449,7 @@ fi
SPANDSP_LIB=""
fi
PBX_SPANDSP=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SPANDSP_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SPANDSP 1
@@ -40908,6 +41460,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SPANDSP_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SPANDSP 1
+#define HAVE_SPANDSP_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -41069,7 +41627,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SS7_INCLUDE}"
- if test "${ac_cv_header_libss7_h+set}" = set; then
+ if test "${ac_cv_header_libss7_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for libss7.h" >&5
echo $ECHO_N "checking for libss7.h... $ECHO_C" >&6; }
if test "${ac_cv_header_libss7_h+set}" = set; then
@@ -41216,7 +41774,7 @@ fi
SS7_LIB=""
fi
PBX_SS7=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SS7_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SS7 1
@@ -41227,6 +41785,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SS7_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SS7 1
+#define HAVE_SS7_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -43186,7 +43750,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LUA_INCLUDE}"
- if test "${ac_cv_header_lua5_1_lua_h+set}" = set; then
+ if test "${ac_cv_header_lua5_1_lua_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for lua5.1/lua.h" >&5
echo $ECHO_N "checking for lua5.1/lua.h... $ECHO_C" >&6; }
if test "${ac_cv_header_lua5_1_lua_h+set}" = set; then
@@ -43333,7 +43897,7 @@ fi
LUA_LIB=""
fi
PBX_LUA=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LUA_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LUA 1
@@ -43344,6 +43908,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LUA_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LUA 1
+#define HAVE_LUA_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -43448,7 +44018,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${LUA_INCLUDE}"
- if test "${ac_cv_header_lua_h+set}" = set; then
+ if test "${ac_cv_header_lua_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for lua.h" >&5
echo $ECHO_N "checking for lua.h... $ECHO_C" >&6; }
if test "${ac_cv_header_lua_h+set}" = set; then
@@ -43595,7 +44165,7 @@ fi
LUA_LIB=""
fi
PBX_LUA=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${LUA_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_LUA 1
@@ -43606,6 +44176,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_LUA_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_LUA 1
+#define HAVE_LUA_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -43710,7 +44286,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${RADIUS_INCLUDE}"
- if test "${ac_cv_header_radiusclient_ng_h+set}" = set; then
+ if test "${ac_cv_header_radiusclient_ng_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for radiusclient-ng.h" >&5
echo $ECHO_N "checking for radiusclient-ng.h... $ECHO_C" >&6; }
if test "${ac_cv_header_radiusclient_ng_h+set}" = set; then
@@ -43857,7 +44433,7 @@ fi
RADIUS_LIB=""
fi
PBX_RADIUS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${RADIUS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_RADIUS 1
@@ -43868,6 +44444,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_RADIUS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_RADIUS 1
+#define HAVE_RADIUS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -43972,7 +44554,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SPEEX_INCLUDE}"
- if test "${ac_cv_header_speex_speex_h+set}" = set; then
+ if test "${ac_cv_header_speex_speex_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for speex/speex.h" >&5
echo $ECHO_N "checking for speex/speex.h... $ECHO_C" >&6; }
if test "${ac_cv_header_speex_speex_h+set}" = set; then
@@ -44119,7 +44701,7 @@ fi
SPEEX_LIB=""
fi
PBX_SPEEX=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SPEEX_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SPEEX 1
@@ -44130,6 +44712,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SPEEX_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SPEEX 1
+#define HAVE_SPEEX_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -44235,7 +44823,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SPEEX_PREPROCESS_INCLUDE}"
- if test "${ac_cv_header_speex_speex_h+set}" = set; then
+ if test "${ac_cv_header_speex_speex_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for speex/speex.h" >&5
echo $ECHO_N "checking for speex/speex.h... $ECHO_C" >&6; }
if test "${ac_cv_header_speex_speex_h+set}" = set; then
@@ -44382,7 +44970,7 @@ fi
SPEEX_PREPROCESS_LIB=""
fi
PBX_SPEEX_PREPROCESS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SPEEX_PREPROCESS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SPEEX_PREPROCESS 1
@@ -44393,6 +44981,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SPEEX_PREPROCESS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SPEEX_PREPROCESS 1
+#define HAVE_SPEEX_PREPROCESS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -44500,7 +45094,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SPEEXDSP_INCLUDE}"
- if test "${ac_cv_header_speex_speex_h+set}" = set; then
+ if test "${ac_cv_header_speex_speex_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for speex/speex.h" >&5
echo $ECHO_N "checking for speex/speex.h... $ECHO_C" >&6; }
if test "${ac_cv_header_speex_speex_h+set}" = set; then
@@ -44647,7 +45241,7 @@ fi
SPEEXDSP_LIB=""
fi
PBX_SPEEXDSP=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SPEEXDSP_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SPEEXDSP 1
@@ -44658,6 +45252,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SPEEXDSP_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SPEEXDSP 1
+#define HAVE_SPEEXDSP_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -44767,7 +45367,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SQLITE_INCLUDE}"
- if test "${ac_cv_header_sqlite_h+set}" = set; then
+ if test "${ac_cv_header_sqlite_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for sqlite.h" >&5
echo $ECHO_N "checking for sqlite.h... $ECHO_C" >&6; }
if test "${ac_cv_header_sqlite_h+set}" = set; then
@@ -44914,7 +45514,7 @@ fi
SQLITE_LIB=""
fi
PBX_SQLITE=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SQLITE_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SQLITE 1
@@ -44925,6 +45525,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SQLITE_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SQLITE 1
+#define HAVE_SQLITE_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -45029,7 +45635,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SQLITE3_INCLUDE}"
- if test "${ac_cv_header_sqlite3_h+set}" = set; then
+ if test "${ac_cv_header_sqlite3_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for sqlite3.h" >&5
echo $ECHO_N "checking for sqlite3.h... $ECHO_C" >&6; }
if test "${ac_cv_header_sqlite3_h+set}" = set; then
@@ -45176,7 +45782,7 @@ fi
SQLITE3_LIB=""
fi
PBX_SQLITE3=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SQLITE3_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SQLITE3 1
@@ -45187,6 +45793,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SQLITE3_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SQLITE3 1
+#define HAVE_SQLITE3_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -45291,7 +45903,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${CRYPTO_INCLUDE}"
- if test "${ac_cv_header_openssl_aes_h+set}" = set; then
+ if test "${ac_cv_header_openssl_aes_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for openssl/aes.h" >&5
echo $ECHO_N "checking for openssl/aes.h... $ECHO_C" >&6; }
if test "${ac_cv_header_openssl_aes_h+set}" = set; then
@@ -45438,7 +46050,7 @@ fi
CRYPTO_LIB=""
fi
PBX_CRYPTO=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${CRYPTO_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_CRYPTO 1
@@ -45449,6 +46061,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_CRYPTO_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_CRYPTO 1
+#define HAVE_CRYPTO_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -45555,7 +46173,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${OPENSSL_INCLUDE}"
- if test "${ac_cv_header_openssl_ssl_h+set}" = set; then
+ if test "${ac_cv_header_openssl_ssl_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for openssl/ssl.h" >&5
echo $ECHO_N "checking for openssl/ssl.h... $ECHO_C" >&6; }
if test "${ac_cv_header_openssl_ssl_h+set}" = set; then
@@ -45702,7 +46320,7 @@ fi
OPENSSL_LIB=""
fi
PBX_OPENSSL=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${OPENSSL_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_OPENSSL 1
@@ -45713,6 +46331,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_OPENSSL_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_OPENSSL 1
+#define HAVE_OPENSSL_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -45820,7 +46444,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${OSPTK_INCLUDE}"
- if test "${ac_cv_header_osp_osp_h+set}" = set; then
+ if test "${ac_cv_header_osp_osp_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for osp/osp.h" >&5
echo $ECHO_N "checking for osp/osp.h... $ECHO_C" >&6; }
if test "${ac_cv_header_osp_osp_h+set}" = set; then
@@ -45967,7 +46591,7 @@ fi
OSPTK_LIB=""
fi
PBX_OSPTK=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${OSPTK_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_OSPTK 1
@@ -45978,6 +46602,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_OSPTK_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_OSPTK 1
+#define HAVE_OSPTK_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -46334,7 +46964,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${FREETDS_INCLUDE}"
- if test "${ac_cv_header_sybdb_h+set}" = set; then
+ if test "${ac_cv_header_sybdb_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for sybdb.h" >&5
echo $ECHO_N "checking for sybdb.h... $ECHO_C" >&6; }
if test "${ac_cv_header_sybdb_h+set}" = set; then
@@ -46481,7 +47111,7 @@ fi
FREETDS_LIB=""
fi
PBX_FREETDS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${FREETDS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_FREETDS 1
@@ -46492,6 +47122,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_FREETDS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_FREETDS 1
+#define HAVE_FREETDS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -46596,7 +47232,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TERMCAP_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -46743,7 +47379,7 @@ fi
TERMCAP_LIB=""
fi
PBX_TERMCAP=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TERMCAP_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TERMCAP 1
@@ -46754,6 +47390,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TERMCAP_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TERMCAP 1
+#define HAVE_TERMCAP_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -46858,7 +47500,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TINFO_INCLUDE}"
- if test "${ac_cv_header_+set}" = set; then
+ if test "${ac_cv_header_+set}" = set; then
{ echo "$as_me:$LINENO: checking for " >&5
echo $ECHO_N "checking for ... $ECHO_C" >&6; }
if test "${ac_cv_header_+set}" = set; then
@@ -47005,7 +47647,7 @@ fi
TINFO_LIB=""
fi
PBX_TINFO=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TINFO_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TINFO 1
@@ -47016,6 +47658,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TINFO_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TINFO 1
+#define HAVE_TINFO_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -47192,7 +47840,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${TONEZONE_INCLUDE}"
- if test "${ac_cv_header_dahdi_tonezone_h+set}" = set; then
+ if test "${ac_cv_header_dahdi_tonezone_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for dahdi/tonezone.h" >&5
echo $ECHO_N "checking for dahdi/tonezone.h... $ECHO_C" >&6; }
if test "${ac_cv_header_dahdi_tonezone_h+set}" = set; then
@@ -47339,7 +47987,7 @@ fi
TONEZONE_LIB=""
fi
PBX_TONEZONE=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${TONEZONE_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_TONEZONE 1
@@ -47350,6 +47998,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_TONEZONE_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_TONEZONE 1
+#define HAVE_TONEZONE_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -47454,7 +48108,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${USB_INCLUDE}"
- if test "${ac_cv_header_usb_h+set}" = set; then
+ if test "${ac_cv_header_usb_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for usb.h" >&5
echo $ECHO_N "checking for usb.h... $ECHO_C" >&6; }
if test "${ac_cv_header_usb_h+set}" = set; then
@@ -47601,7 +48255,7 @@ fi
USB_LIB=""
fi
PBX_USB=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${USB_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_USB 1
@@ -47612,6 +48266,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_USB_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_USB 1
+#define HAVE_USB_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -47716,7 +48376,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${VORBIS_INCLUDE}"
- if test "${ac_cv_header_vorbis_codec_h+set}" = set; then
+ if test "${ac_cv_header_vorbis_codec_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for vorbis/codec.h" >&5
echo $ECHO_N "checking for vorbis/codec.h... $ECHO_C" >&6; }
if test "${ac_cv_header_vorbis_codec_h+set}" = set; then
@@ -47863,7 +48523,7 @@ fi
VORBIS_LIB=""
fi
PBX_VORBIS=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${VORBIS_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_VORBIS 1
@@ -47874,6 +48534,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_VORBIS_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_VORBIS 1
+#define HAVE_VORBIS_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -48076,7 +48742,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${ZLIB_INCLUDE}"
- if test "${ac_cv_header_zlib_h+set}" = set; then
+ if test "${ac_cv_header_zlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for zlib.h" >&5
echo $ECHO_N "checking for zlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_zlib_h+set}" = set; then
@@ -48223,7 +48889,7 @@ fi
ZLIB_LIB=""
fi
PBX_ZLIB=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${ZLIB_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_ZLIB 1
@@ -48234,6 +48900,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_ZLIB_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_ZLIB 1
+#define HAVE_ZLIB_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -48869,7 +49541,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${SDL_IMAGE_INCLUDE}"
- if test "${ac_cv_header_SDL_image_h+set}" = set; then
+ if test "${ac_cv_header_SDL_image_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for SDL_image.h" >&5
echo $ECHO_N "checking for SDL_image.h... $ECHO_C" >&6; }
if test "${ac_cv_header_SDL_image_h+set}" = set; then
@@ -49016,7 +49688,7 @@ fi
SDL_IMAGE_LIB=""
fi
PBX_SDL_IMAGE=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${SDL_IMAGE_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_SDL_IMAGE 1
@@ -49027,6 +49699,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_SDL_IMAGE_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_SDL_IMAGE 1
+#define HAVE_SDL_IMAGE_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -49130,7 +49808,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${FFMPEG_INCLUDE}"
- if test "${ac_cv_header_ffmpeg_avcodec_h+set}" = set; then
+ if test "${ac_cv_header_ffmpeg_avcodec_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for ffmpeg/avcodec.h" >&5
echo $ECHO_N "checking for ffmpeg/avcodec.h... $ECHO_C" >&6; }
if test "${ac_cv_header_ffmpeg_avcodec_h+set}" = set; then
@@ -49277,7 +49955,7 @@ fi
FFMPEG_LIB=""
fi
PBX_FFMPEG=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${FFMPEG_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_FFMPEG 1
@@ -49288,6 +49966,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_FFMPEG_VERSION
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_FFMPEG 1
+#define HAVE_FFMPEG_VERSION
+_ACEOF
+ fi
fi
fi
fi
@@ -49534,7 +50218,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${X11_INCLUDE}"
- if test "${ac_cv_header_X11_Xlib_h+set}" = set; then
+ if test "${ac_cv_header_X11_Xlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for X11/Xlib.h" >&5
echo $ECHO_N "checking for X11/Xlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_X11_Xlib_h+set}" = set; then
@@ -49681,7 +50365,7 @@ fi
X11_LIB=""
fi
PBX_X11=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${X11_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_X11 1
@@ -49692,6 +50376,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_X11_VERSION standard_path
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_X11 1
+#define HAVE_X11_VERSION standard_path
+_ACEOF
+ fi
fi
fi
fi
@@ -49795,7 +50485,7 @@ fi
else # check for the header
saved_cppflags="${CPPFLAGS}"
CPPFLAGS="${CPPFLAGS} ${X11_INCLUDE}"
- if test "${ac_cv_header_X11_Xlib_h+set}" = set; then
+ if test "${ac_cv_header_X11_Xlib_h+set}" = set; then
{ echo "$as_me:$LINENO: checking for X11/Xlib.h" >&5
echo $ECHO_N "checking for X11/Xlib.h... $ECHO_C" >&6; }
if test "${ac_cv_header_X11_Xlib_h+set}" = set; then
@@ -49942,7 +50632,7 @@ fi
X11_LIB=""
fi
PBX_X11=1
- # XXX don't know how to evaluate the description (third argument) in AC_DEFINE_UNQUOTED
+ if test "x${X11_OPTION}" = "x"; then
cat >>confdefs.h <<_ACEOF
#define HAVE_X11 1
@@ -49953,6 +50643,12 @@ cat >>confdefs.h <<_ACEOF
#define HAVE_X11_VERSION X11R6
_ACEOF
+ else
+ cat >>confdefs.h <<_ACEOF
+#define HAVE_X11 1
+#define HAVE_X11_VERSION X11R6
+_ACEOF
+ fi
fi
fi
fi
diff --git a/include/asterisk/autoconfig.h.in b/include/asterisk/autoconfig.h.in
index ab5a1d62f..4e3064fb7 100644
--- a/include/asterisk/autoconfig.h.in
+++ b/include/asterisk/autoconfig.h.in
@@ -21,16 +21,16 @@
/* Define to 1 if using `alloca.c'. */
#undef C_ALLOCA
-/* Define this to indicate the ${ACOS_DESCRIP} library */
+/* Define to 1 to indicate ACOS functionality. */
#undef HAVE_ACOS
-/* Define this to indicate the ${ACOSL_DESCRIP} library */
+/* Define to 1 to indicate ACOSL functionality. */
#undef HAVE_ACOSL
-/* Define to indicate the ${ACOSL_DESCRIP} library version */
+/* Define to indicate the ACOSL library version */
#undef HAVE_ACOSL_VERSION
-/* Define to indicate the ${ACOS_DESCRIP} library version */
+/* Define to indicate the ACOS library version */
#undef HAVE_ACOS_VERSION
/* Define to 1 if you have `alloca', as a function or macro. */
@@ -40,10 +40,10 @@
*/
#undef HAVE_ALLOCA_H
-/* Define this to indicate the ${ALSA_DESCRIP} library */
+/* Define to 1 to indicate ALSA functionality. */
#undef HAVE_ALSA
-/* Define to indicate the ${ALSA_DESCRIP} library version */
+/* Define to indicate the ALSA library version */
#undef HAVE_ALSA_VERSION
/* Define to 1 if you have the <arpa/inet.h> header file. */
@@ -52,43 +52,43 @@
/* Define to 1 if you have the <arpa/nameser.h> header file. */
#undef HAVE_ARPA_NAMESER_H
-/* Define this to indicate the ${ASIN_DESCRIP} library */
+/* Define to 1 to indicate ASIN functionality. */
#undef HAVE_ASIN
-/* Define this to indicate the ${ASINL_DESCRIP} library */
+/* Define to 1 to indicate ASINL functionality. */
#undef HAVE_ASINL
-/* Define to indicate the ${ASINL_DESCRIP} library version */
+/* Define to indicate the ASINL library version */
#undef HAVE_ASINL_VERSION
-/* Define to indicate the ${ASIN_DESCRIP} library version */
+/* Define to indicate the ASIN library version */
#undef HAVE_ASIN_VERSION
/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF
-/* Define this to indicate the ${ATAN_DESCRIP} library */
+/* Define to 1 to indicate ATAN functionality. */
#undef HAVE_ATAN
-/* Define this to indicate the ${ATAN2_DESCRIP} library */
+/* Define to 1 to indicate ATAN2 functionality. */
#undef HAVE_ATAN2
-/* Define this to indicate the ${ATAN2L_DESCRIP} library */
+/* Define to 1 to indicate ATAN2L functionality. */
#undef HAVE_ATAN2L
-/* Define to indicate the ${ATAN2L_DESCRIP} library version */
+/* Define to indicate the ATAN2L library version */
#undef HAVE_ATAN2L_VERSION
-/* Define to indicate the ${ATAN2_DESCRIP} library version */
+/* Define to indicate the ATAN2 library version */
#undef HAVE_ATAN2_VERSION
-/* Define this to indicate the ${ATANL_DESCRIP} library */
+/* Define to 1 to indicate ATANL functionality. */
#undef HAVE_ATANL
-/* Define to indicate the ${ATANL_DESCRIP} library version */
+/* Define to indicate the ATANL library version */
#undef HAVE_ATANL_VERSION
-/* Define to indicate the ${ATAN_DESCRIP} library version */
+/* Define to indicate the ATAN library version */
#undef HAVE_ATAN_VERSION
/* Define to 1 if you have the `atexit' function. */
@@ -116,61 +116,61 @@
/* Define to 1 if your GCC C compiler supports the 'weak' attribute. */
#undef HAVE_ATTRIBUTE_weak
-/* Define this to indicate the ${BKTR_DESCRIP} library */
+/* Define to 1 to indicate BKTR functionality. */
#undef HAVE_BKTR
-/* Define to indicate the ${BKTR_DESCRIP} library version */
+/* Define to indicate the BKTR library version */
#undef HAVE_BKTR_VERSION
/* Define to 1 if byteswap.h macros are available. */
#undef HAVE_BYTESWAP_H
-/* Define this to indicate the ${CAP_DESCRIP} library */
+/* Define to 1 to indicate CAP functionality. */
#undef HAVE_CAP
-/* Define to indicate the ${CAP_DESCRIP} library version */
+/* Define to indicate the CAP library version */
#undef HAVE_CAP_VERSION
-/* Define this to indicate the ${CEIL_DESCRIP} library */
+/* Define to 1 to indicate CEIL functionality. */
#undef HAVE_CEIL
-/* Define this to indicate the ${CEILL_DESCRIP} library */
+/* Define to 1 to indicate CEILL functionality. */
#undef HAVE_CEILL
-/* Define to indicate the ${CEILL_DESCRIP} library version */
+/* Define to indicate the CEILL library version */
#undef HAVE_CEILL_VERSION
-/* Define to indicate the ${CEIL_DESCRIP} library version */
+/* Define to indicate the CEIL library version */
#undef HAVE_CEIL_VERSION
/* Define to 1 if your system has a working `chown' function. */
#undef HAVE_CHOWN
-/* Define this to indicate the ${COS_DESCRIP} library */
+/* Define to 1 to indicate COS functionality. */
#undef HAVE_COS
-/* Define this to indicate the ${COSL_DESCRIP} library */
+/* Define to 1 to indicate COSL functionality. */
#undef HAVE_COSL
-/* Define to indicate the ${COSL_DESCRIP} library version */
+/* Define to indicate the COSL library version */
#undef HAVE_COSL_VERSION
-/* Define to indicate the ${COS_DESCRIP} library version */
+/* Define to indicate the COS library version */
#undef HAVE_COS_VERSION
-/* Define this to indicate the ${CRYPTO_DESCRIP} library */
+/* Define to 1 to indicate CRYPTO functionality. */
#undef HAVE_CRYPTO
-/* Define to indicate the ${CRYPTO_DESCRIP} library version */
+/* Define to indicate the CRYPTO library version */
#undef HAVE_CRYPTO_VERSION
/* Define if your system has the curl libraries. */
#undef HAVE_CURL
-/* Define this to indicate the ${CURSES_DESCRIP} library */
+/* Define to 1 to indicate CURSES functionality. */
#undef HAVE_CURSES
-/* Define to indicate the ${CURSES_DESCRIP} library version */
+/* Define to indicate the CURSES library version */
#undef HAVE_CURSES_VERSION
/* Define if your system has the DAHDI headers. */
@@ -201,73 +201,73 @@
/* Define to 1 if you have the `euidaccess' function. */
#undef HAVE_EUIDACCESS
-/* Define this to indicate the ${EXP_DESCRIP} library */
+/* Define to 1 to indicate EXP functionality. */
#undef HAVE_EXP
-/* Define this to indicate the ${EXP10_DESCRIP} library */
+/* Define to 1 to indicate EXP10 functionality. */
#undef HAVE_EXP10
-/* Define this to indicate the ${EXP10L_DESCRIP} library */
+/* Define to 1 to indicate EXP10L functionality. */
#undef HAVE_EXP10L
-/* Define to indicate the ${EXP10L_DESCRIP} library version */
+/* Define to indicate the EXP10L library version */
#undef HAVE_EXP10L_VERSION
-/* Define to indicate the ${EXP10_DESCRIP} library version */
+/* Define to indicate the EXP10 library version */
#undef HAVE_EXP10_VERSION
-/* Define this to indicate the ${EXP2_DESCRIP} library */
+/* Define to 1 to indicate EXP2 functionality. */
#undef HAVE_EXP2
-/* Define this to indicate the ${EXP2L_DESCRIP} library */
+/* Define to 1 to indicate EXP2L functionality. */
#undef HAVE_EXP2L
-/* Define to indicate the ${EXP2L_DESCRIP} library version */
+/* Define to indicate the EXP2L library version */
#undef HAVE_EXP2L_VERSION
-/* Define to indicate the ${EXP2_DESCRIP} library version */
+/* Define to indicate the EXP2 library version */
#undef HAVE_EXP2_VERSION
-/* Define this to indicate the ${EXPL_DESCRIP} library */
+/* Define to 1 to indicate EXPL functionality. */
#undef HAVE_EXPL
-/* Define to indicate the ${EXPL_DESCRIP} library version */
+/* Define to indicate the EXPL library version */
#undef HAVE_EXPL_VERSION
-/* Define to indicate the ${EXP_DESCRIP} library version */
+/* Define to indicate the EXP library version */
#undef HAVE_EXP_VERSION
/* Define to 1 if you have the <fcntl.h> header file. */
#undef HAVE_FCNTL_H
-/* Define this to indicate the ${FFMPEG_DESCRIP} library */
+/* Define to 1 to indicate FFMPEG functionality. */
#undef HAVE_FFMPEG
-/* Define to indicate the ${FFMPEG_DESCRIP} library version */
+/* Define to indicate the FFMPEG library version */
#undef HAVE_FFMPEG_VERSION
-/* Define this to indicate the ${FLOOR_DESCRIP} library */
+/* Define to 1 to indicate FLOOR functionality. */
#undef HAVE_FLOOR
-/* Define this to indicate the ${FLOORL_DESCRIP} library */
+/* Define to 1 to indicate FLOORL functionality. */
#undef HAVE_FLOORL
-/* Define to indicate the ${FLOORL_DESCRIP} library version */
+/* Define to indicate the FLOORL library version */
#undef HAVE_FLOORL_VERSION
-/* Define to indicate the ${FLOOR_DESCRIP} library version */
+/* Define to indicate the FLOOR library version */
#undef HAVE_FLOOR_VERSION
-/* Define this to indicate the ${FMOD_DESCRIP} library */
+/* Define to 1 to indicate FMOD functionality. */
#undef HAVE_FMOD
-/* Define this to indicate the ${FMODL_DESCRIP} library */
+/* Define to 1 to indicate FMODL functionality. */
#undef HAVE_FMODL
-/* Define to indicate the ${FMODL_DESCRIP} library version */
+/* Define to indicate the FMODL library version */
#undef HAVE_FMODL_VERSION
-/* Define to indicate the ${FMOD_DESCRIP} library version */
+/* Define to indicate the FMOD library version */
#undef HAVE_FMOD_VERSION
/* Define to 1 if you have the `fopencookie' function. */
@@ -276,10 +276,10 @@
/* Define to 1 if you have the `fork' function. */
#undef HAVE_FORK
-/* Define this to indicate the ${FREETDS_DESCRIP} library */
+/* Define to 1 to indicate FREETDS functionality. */
#undef HAVE_FREETDS
-/* Define to indicate the ${FREETDS_DESCRIP} library version */
+/* Define to indicate the FREETDS library version */
#undef HAVE_FREETDS_VERSION
/* Define to 1 if fseeko (and presumably ftello) exists and is declared. */
@@ -357,16 +357,16 @@
/* Define if your system has the GTK2 libraries. */
#undef HAVE_GTK2
-/* Define this to indicate the ${ICONV_DESCRIP} library */
+/* Define to 1 to indicate ICONV functionality. */
#undef HAVE_ICONV
-/* Define to indicate the ${ICONV_DESCRIP} library version */
+/* Define to indicate the ICONV library version */
#undef HAVE_ICONV_VERSION
-/* Define this to indicate the ${IKSEMEL_DESCRIP} library */
+/* Define to 1 to indicate IKSEMEL functionality. */
#undef HAVE_IKSEMEL
-/* Define to indicate the ${IKSEMEL_DESCRIP} library version */
+/* Define to indicate the IKSEMEL library version */
#undef HAVE_IKSEMEL_VERSION
/* Define if your system has the UW IMAP Toolkit c-client library. */
@@ -394,22 +394,22 @@
/* Define to 1 if you have the `isascii' function. */
#undef HAVE_ISASCII
-/* Define this to indicate the ${ISDNNET_DESCRIP} library */
+/* Define to 1 to indicate ISDNNET functionality. */
#undef HAVE_ISDNNET
-/* Define to indicate the ${ISDNNET_DESCRIP} library version */
+/* Define to indicate the ISDNNET library version */
#undef HAVE_ISDNNET_VERSION
-/* Define this to indicate the ${JACK_DESCRIP} library */
+/* Define to 1 to indicate JACK functionality. */
#undef HAVE_JACK
-/* Define to indicate the ${JACK_DESCRIP} library version */
+/* Define to indicate the JACK library version */
#undef HAVE_JACK_VERSION
-/* Define this to indicate the ${LDAP_DESCRIP} library */
+/* Define to 1 to indicate LDAP functionality. */
#undef HAVE_LDAP
-/* Define to indicate the ${LDAP_DESCRIP} library version */
+/* Define to indicate the LDAP library version */
#undef HAVE_LDAP_VERSION
/* Define to 1 if you have the <libintl.h> header file. */
@@ -427,52 +427,52 @@
/* Define to 1 if you have the `localtime_r' function. */
#undef HAVE_LOCALTIME_R
-/* Define this to indicate the ${LOG_DESCRIP} library */
+/* Define to 1 to indicate LOG functionality. */
#undef HAVE_LOG
-/* Define this to indicate the ${LOG10_DESCRIP} library */
+/* Define to 1 to indicate LOG10 functionality. */
#undef HAVE_LOG10
-/* Define this to indicate the ${LOG10L_DESCRIP} library */
+/* Define to 1 to indicate LOG10L functionality. */
#undef HAVE_LOG10L
-/* Define to indicate the ${LOG10L_DESCRIP} library version */
+/* Define to indicate the LOG10L library version */
#undef HAVE_LOG10L_VERSION
-/* Define to indicate the ${LOG10_DESCRIP} library version */
+/* Define to indicate the LOG10 library version */
#undef HAVE_LOG10_VERSION
-/* Define this to indicate the ${LOG2_DESCRIP} library */
+/* Define to 1 to indicate LOG2 functionality. */
#undef HAVE_LOG2
-/* Define this to indicate the ${LOG2L_DESCRIP} library */
+/* Define to 1 to indicate LOG2L functionality. */
#undef HAVE_LOG2L
-/* Define to indicate the ${LOG2L_DESCRIP} library version */
+/* Define to indicate the LOG2L library version */
#undef HAVE_LOG2L_VERSION
-/* Define to indicate the ${LOG2_DESCRIP} library version */
+/* Define to indicate the LOG2 library version */
#undef HAVE_LOG2_VERSION
-/* Define this to indicate the ${LOGL_DESCRIP} library */
+/* Define to 1 to indicate LOGL functionality. */
#undef HAVE_LOGL
-/* Define to indicate the ${LOGL_DESCRIP} library version */
+/* Define to indicate the LOGL library version */
#undef HAVE_LOGL_VERSION
-/* Define to indicate the ${LOG_DESCRIP} library version */
+/* Define to indicate the LOG library version */
#undef HAVE_LOG_VERSION
-/* Define this to indicate the ${LTDL_DESCRIP} library */
+/* Define to 1 to indicate LTDL functionality. */
#undef HAVE_LTDL
-/* Define to indicate the ${LTDL_DESCRIP} library version */
+/* Define to indicate the LTDL library version */
#undef HAVE_LTDL_VERSION
-/* Define this to indicate the ${LUA_DESCRIP} library */
+/* Define to 1 to indicate LUA functionality. */
#undef HAVE_LUA
-/* Define to indicate the ${LUA_DESCRIP} library version */
+/* Define to indicate the LUA library version */
#undef HAVE_LUA_VERSION
/* Define to 1 if you have the <malloc.h> header file. */
@@ -490,7 +490,7 @@
/* Define to 1 if you have the `memset' function. */
#undef HAVE_MEMSET
-/* Define this to indicate the ${MISDN_DESCRIP} library */
+/* Define to 1 to indicate MISDN functionality. */
#undef HAVE_MISDN
/* Define if your system has the MISDN_FAC_ERROR headers. */
@@ -505,7 +505,7 @@
/* Define MISDN_FAC_RESULT headers version */
#undef HAVE_MISDN_FAC_RESULT_VERSION
-/* Define to indicate the ${MISDN_DESCRIP} library version */
+/* Define to indicate the MISDN library version */
#undef HAVE_MISDN_VERSION
/* Define to 1 if you have the `mkdir' function. */
@@ -517,16 +517,16 @@
/* Define to 1 if you have the `munmap' function. */
#undef HAVE_MUNMAP
-/* Define this to indicate the ${NBS_DESCRIP} library */
+/* Define to 1 to indicate NBS functionality. */
#undef HAVE_NBS
-/* Define to indicate the ${NBS_DESCRIP} library version */
+/* Define to indicate the NBS library version */
#undef HAVE_NBS_VERSION
-/* Define this to indicate the ${NCURSES_DESCRIP} library */
+/* Define to 1 to indicate NCURSES functionality. */
#undef HAVE_NCURSES
-/* Define to indicate the ${NCURSES_DESCRIP} library version */
+/* Define to indicate the NCURSES library version */
#undef HAVE_NCURSES_VERSION
/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR'. */
@@ -541,37 +541,37 @@
/* Define if your system has the NETSNMP libraries. */
#undef HAVE_NETSNMP
-/* Define this to indicate the ${NEWT_DESCRIP} library */
+/* Define to 1 to indicate NEWT functionality. */
#undef HAVE_NEWT
-/* Define to indicate the ${NEWT_DESCRIP} library version */
+/* Define to indicate the NEWT library version */
#undef HAVE_NEWT_VERSION
-/* Define this to indicate the ${OGG_DESCRIP} library */
+/* Define to 1 to indicate OGG functionality. */
#undef HAVE_OGG
-/* Define to indicate the ${OGG_DESCRIP} library version */
+/* Define to indicate the OGG library version */
#undef HAVE_OGG_VERSION
/* Define if your system has the OpenH323 libraries. */
#undef HAVE_OPENH323
-/* Define this to indicate the ${OPENSSL_DESCRIP} library */
+/* Define to 1 to indicate OPENSSL functionality. */
#undef HAVE_OPENSSL
-/* Define to indicate the ${OPENSSL_DESCRIP} library version */
+/* Define to indicate the OPENSSL library version */
#undef HAVE_OPENSSL_VERSION
-/* Define this to indicate the ${OSPTK_DESCRIP} library */
+/* Define to 1 to indicate OSPTK functionality. */
#undef HAVE_OSPTK
-/* Define to indicate the ${OSPTK_DESCRIP} library version */
+/* Define to indicate the OSPTK library version */
#undef HAVE_OSPTK_VERSION
-/* Define this to indicate the ${OSS_DESCRIP} library */
+/* Define to 1 to indicate OSS functionality. */
#undef HAVE_OSS
-/* Define to indicate the ${OSS_DESCRIP} library version */
+/* Define to indicate the OSS library version */
#undef HAVE_OSS_VERSION
/* Define to 1 if OSX atomic operations are supported. */
@@ -583,40 +583,40 @@
/* Define to 1 if your system defines IP_PKTINFO. */
#undef HAVE_PKTINFO
-/* Define this to indicate the ${POPT_DESCRIP} library */
+/* Define to 1 to indicate POPT functionality. */
#undef HAVE_POPT
-/* Define to indicate the ${POPT_DESCRIP} library version */
+/* Define to indicate the POPT library version */
#undef HAVE_POPT_VERSION
-/* Define this to indicate the ${PORTAUDIO_DESCRIP} library */
+/* Define to 1 to indicate PORTAUDIO functionality. */
#undef HAVE_PORTAUDIO
-/* Define to indicate the ${PORTAUDIO_DESCRIP} library version */
+/* Define to indicate the PORTAUDIO library version */
#undef HAVE_PORTAUDIO_VERSION
-/* Define this to indicate the ${POW_DESCRIP} library */
+/* Define to 1 to indicate POW functionality. */
#undef HAVE_POW
-/* Define this to indicate the ${POWL_DESCRIP} library */
+/* Define to 1 to indicate POWL functionality. */
#undef HAVE_POWL
-/* Define to indicate the ${POWL_DESCRIP} library version */
+/* Define to indicate the POWL library version */
#undef HAVE_POWL_VERSION
-/* Define to indicate the ${POW_DESCRIP} library version */
+/* Define to indicate the POW library version */
#undef HAVE_POW_VERSION
-/* Define this to indicate the ${PRI_DESCRIP} library */
+/* Define to 1 to indicate PRI functionality. */
#undef HAVE_PRI
-/* Define this to indicate the ${PRI_INBANDDISCONNECT_DESCRIP} library */
+/* Define to 1 to indicate PRI_INBANDDISCONNECT functionality. */
#undef HAVE_PRI_INBANDDISCONNECT
-/* Define to indicate the ${PRI_INBANDDISCONNECT_DESCRIP} library version */
+/* Define to indicate the PRI_INBANDDISCONNECT library version */
#undef HAVE_PRI_INBANDDISCONNECT_VERSION
-/* Define to indicate the ${PRI_DESCRIP} library version */
+/* Define to indicate the PRI library version */
#undef HAVE_PRI_VERSION
/* Define if you have POSIX threads libraries and header files. */
@@ -655,31 +655,31 @@
/* Define if your system has the PWLib libraries. */
#undef HAVE_PWLIB
-/* Define this to indicate the ${RADIUS_DESCRIP} library */
+/* Define to 1 to indicate RADIUS functionality. */
#undef HAVE_RADIUS
-/* Define to indicate the ${RADIUS_DESCRIP} library version */
+/* Define to indicate the RADIUS library version */
#undef HAVE_RADIUS_VERSION
/* Define to 1 if you have the `regcomp' function. */
#undef HAVE_REGCOMP
-/* Define this to indicate the ${REMAINDER_DESCRIP} library */
+/* Define to 1 to indicate REMAINDER functionality. */
#undef HAVE_REMAINDER
-/* Define this to indicate the ${REMAINDERL_DESCRIP} library */
+/* Define to 1 to indicate REMAINDERL functionality. */
#undef HAVE_REMAINDERL
-/* Define to indicate the ${REMAINDERL_DESCRIP} library version */
+/* Define to indicate the REMAINDERL library version */
#undef HAVE_REMAINDERL_VERSION
-/* Define to indicate the ${REMAINDER_DESCRIP} library version */
+/* Define to indicate the REMAINDER library version */
#undef HAVE_REMAINDER_VERSION
-/* Define this to indicate the ${RESAMPLE_DESCRIP} library */
+/* Define to 1 to indicate RESAMPLE functionality. */
#undef HAVE_RESAMPLE
-/* Define to indicate the ${RESAMPLE_DESCRIP} library version */
+/* Define to indicate the RESAMPLE library version */
#undef HAVE_RESAMPLE_VERSION
/* Define to 1 if your system has the ndestroy resolver function. */
@@ -691,28 +691,28 @@
/* Define to 1 if you have the `re_comp' function. */
#undef HAVE_RE_COMP
-/* Define this to indicate the ${RINT_DESCRIP} library */
+/* Define to 1 to indicate RINT functionality. */
#undef HAVE_RINT
-/* Define this to indicate the ${RINTL_DESCRIP} library */
+/* Define to 1 to indicate RINTL functionality. */
#undef HAVE_RINTL
-/* Define to indicate the ${RINTL_DESCRIP} library version */
+/* Define to indicate the RINTL library version */
#undef HAVE_RINTL_VERSION
-/* Define to indicate the ${RINT_DESCRIP} library version */
+/* Define to indicate the RINT library version */
#undef HAVE_RINT_VERSION
-/* Define this to indicate the ${ROUND_DESCRIP} library */
+/* Define to 1 to indicate ROUND functionality. */
#undef HAVE_ROUND
-/* Define this to indicate the ${ROUNDL_DESCRIP} library */
+/* Define to 1 to indicate ROUNDL functionality. */
#undef HAVE_ROUNDL
-/* Define to indicate the ${ROUNDL_DESCRIP} library version */
+/* Define to indicate the ROUNDL library version */
#undef HAVE_ROUNDL_VERSION
-/* Define to indicate the ${ROUND_DESCRIP} library version */
+/* Define to indicate the ROUND library version */
#undef HAVE_ROUND_VERSION
/* Define to 1 if your system has /sbin/launchd. */
@@ -721,10 +721,10 @@
/* Define if your system has the SDL libraries. */
#undef HAVE_SDL
-/* Define this to indicate the ${SDL_IMAGE_DESCRIP} library */
+/* Define to 1 to indicate SDL_IMAGE functionality. */
#undef HAVE_SDL_IMAGE
-/* Define to indicate the ${SDL_IMAGE_DESCRIP} library version */
+/* Define to indicate the SDL_IMAGE library version */
#undef HAVE_SDL_IMAGE_VERSION
/* Define to 1 if you have the `select' function. */
@@ -733,16 +733,16 @@
/* Define to 1 if you have the `setenv' function. */
#undef HAVE_SETENV
-/* Define this to indicate the ${SIN_DESCRIP} library */
+/* Define to 1 to indicate SIN functionality. */
#undef HAVE_SIN
-/* Define this to indicate the ${SINL_DESCRIP} library */
+/* Define to 1 to indicate SINL functionality. */
#undef HAVE_SINL
-/* Define to indicate the ${SINL_DESCRIP} library version */
+/* Define to indicate the SINL library version */
#undef HAVE_SINL_VERSION
-/* Define to indicate the ${SIN_DESCRIP} library version */
+/* Define to indicate the SIN library version */
#undef HAVE_SIN_VERSION
/* Define to 1 if you have the `socket' function. */
@@ -751,61 +751,61 @@
/* Define to 1 if your system has soxmix application. */
#undef HAVE_SOXMIX
-/* Define this to indicate the ${SPANDSP_DESCRIP} library */
+/* Define to 1 to indicate SPANDSP functionality. */
#undef HAVE_SPANDSP
/* Define to 1 if spandsp/expose.h is available. */
#undef HAVE_SPANDSP_EXPOSE_H
-/* Define to indicate the ${SPANDSP_DESCRIP} library version */
+/* Define to indicate the SPANDSP library version */
#undef HAVE_SPANDSP_VERSION
-/* Define this to indicate the ${SPEEX_DESCRIP} library */
+/* Define to 1 to indicate SPEEX functionality. */
#undef HAVE_SPEEX
-/* Define this to indicate the ${SPEEXDSP_DESCRIP} library */
+/* Define to 1 to indicate SPEEXDSP functionality. */
#undef HAVE_SPEEXDSP
-/* Define to indicate the ${SPEEXDSP_DESCRIP} library version */
+/* Define to indicate the SPEEXDSP library version */
#undef HAVE_SPEEXDSP_VERSION
-/* Define this to indicate the ${SPEEX_PREPROCESS_DESCRIP} library */
+/* Define to 1 to indicate SPEEX_PREPROCESS functionality. */
#undef HAVE_SPEEX_PREPROCESS
-/* Define to indicate the ${SPEEX_PREPROCESS_DESCRIP} library version */
+/* Define to indicate the SPEEX_PREPROCESS library version */
#undef HAVE_SPEEX_PREPROCESS_VERSION
-/* Define to indicate the ${SPEEX_DESCRIP} library version */
+/* Define to indicate the SPEEX library version */
#undef HAVE_SPEEX_VERSION
-/* Define this to indicate the ${SQLITE_DESCRIP} library */
+/* Define to 1 to indicate SQLITE functionality. */
#undef HAVE_SQLITE
-/* Define this to indicate the ${SQLITE3_DESCRIP} library */
+/* Define to 1 to indicate SQLITE3 functionality. */
#undef HAVE_SQLITE3
-/* Define to indicate the ${SQLITE3_DESCRIP} library version */
+/* Define to indicate the SQLITE3 library version */
#undef HAVE_SQLITE3_VERSION
-/* Define to indicate the ${SQLITE_DESCRIP} library version */
+/* Define to indicate the SQLITE library version */
#undef HAVE_SQLITE_VERSION
-/* Define this to indicate the ${SQRT_DESCRIP} library */
+/* Define to 1 to indicate SQRT functionality. */
#undef HAVE_SQRT
-/* Define this to indicate the ${SQRTL_DESCRIP} library */
+/* Define to 1 to indicate SQRTL functionality. */
#undef HAVE_SQRTL
-/* Define to indicate the ${SQRTL_DESCRIP} library version */
+/* Define to indicate the SQRTL library version */
#undef HAVE_SQRTL_VERSION
-/* Define to indicate the ${SQRT_DESCRIP} library version */
+/* Define to indicate the SQRT library version */
#undef HAVE_SQRT_VERSION
-/* Define this to indicate the ${SS7_DESCRIP} library */
+/* Define to 1 to indicate SS7 functionality. */
#undef HAVE_SS7
-/* Define to indicate the ${SS7_DESCRIP} library version */
+/* Define to indicate the SS7 library version */
#undef HAVE_SS7_VERSION
/* Define to 1 if `stat' has the bug that it succeeds when given the
@@ -882,19 +882,19 @@
/* Define to 1 if you have the `strstr' function. */
#undef HAVE_STRSTR
-/* Define this to indicate the ${STRTOD_DESCRIP} library */
+/* Define to 1 to indicate STRTOD functionality. */
#undef HAVE_STRTOD
-/* Define to indicate the ${STRTOD_DESCRIP} library version */
+/* Define to indicate the STRTOD library version */
#undef HAVE_STRTOD_VERSION
/* Define to 1 if you have the `strtol' function. */
#undef HAVE_STRTOL
-/* Define this to indicate the ${STRTOLD_DESCRIP} library */
+/* Define to 1 to indicate STRTOLD functionality. */
#undef HAVE_STRTOLD
-/* Define to indicate the ${STRTOLD_DESCRIP} library version */
+/* Define to indicate the STRTOLD library version */
#undef HAVE_STRTOLD_VERSION
/* Define to 1 if you have the `strtoq' function. */
@@ -903,10 +903,10 @@
/* Define to 1 if `st_blksize' is member of `struct stat'. */
#undef HAVE_STRUCT_STAT_ST_BLKSIZE
-/* Define this to indicate the ${SUPPSERV_DESCRIP} library */
+/* Define to 1 to indicate SUPPSERV functionality. */
#undef HAVE_SUPPSERV
-/* Define to indicate the ${SUPPSERV_DESCRIP} library version */
+/* Define to indicate the SUPPSERV library version */
#undef HAVE_SUPPSERV_VERSION
/* Define to 1 if your system has sysinfo support */
@@ -960,22 +960,22 @@
/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
#undef HAVE_SYS_WAIT_H
-/* Define this to indicate the ${TAN_DESCRIP} library */
+/* Define to 1 to indicate TAN functionality. */
#undef HAVE_TAN
-/* Define this to indicate the ${TANL_DESCRIP} library */
+/* Define to 1 to indicate TANL functionality. */
#undef HAVE_TANL
-/* Define to indicate the ${TANL_DESCRIP} library version */
+/* Define to indicate the TANL library version */
#undef HAVE_TANL_VERSION
-/* Define to indicate the ${TAN_DESCRIP} library version */
+/* Define to indicate the TAN library version */
#undef HAVE_TAN_VERSION
-/* Define this to indicate the ${TERMCAP_DESCRIP} library */
+/* Define to 1 to indicate TERMCAP functionality. */
#undef HAVE_TERMCAP
-/* Define to indicate the ${TERMCAP_DESCRIP} library version */
+/* Define to indicate the TERMCAP library version */
#undef HAVE_TERMCAP_VERSION
/* Define to 1 if you have the <termios.h> header file. */
@@ -984,46 +984,46 @@
/* Define to 1 if your system defines timersub. */
#undef HAVE_TIMERSUB
-/* Define this to indicate the ${TINFO_DESCRIP} library */
+/* Define to 1 to indicate TINFO functionality. */
#undef HAVE_TINFO
-/* Define to indicate the ${TINFO_DESCRIP} library version */
+/* Define to indicate the TINFO library version */
#undef HAVE_TINFO_VERSION
-/* Define this to indicate the ${TONEZONE_DESCRIP} library */
+/* Define to 1 to indicate TONEZONE functionality. */
#undef HAVE_TONEZONE
-/* Define to indicate the ${TONEZONE_DESCRIP} library version */
+/* Define to indicate the TONEZONE library version */
#undef HAVE_TONEZONE_VERSION
-/* Define this to indicate the ${TRUNC_DESCRIP} library */
+/* Define to 1 to indicate TRUNC functionality. */
#undef HAVE_TRUNC
-/* Define this to indicate the ${TRUNCL_DESCRIP} library */
+/* Define to 1 to indicate TRUNCL functionality. */
#undef HAVE_TRUNCL
-/* Define to indicate the ${TRUNCL_DESCRIP} library version */
+/* Define to indicate the TRUNCL library version */
#undef HAVE_TRUNCL_VERSION
-/* Define to indicate the ${TRUNC_DESCRIP} library version */
+/* Define to indicate the TRUNC library version */
#undef HAVE_TRUNC_VERSION
/* Define to 1 if you have the <unistd.h> header file. */
#undef HAVE_UNISTD_H
-/* Define this to indicate the ${UNIXODBC_DESCRIP} library */
+/* Define to 1 to indicate UNIXODBC functionality. */
#undef HAVE_UNIXODBC
-/* Define to indicate the ${UNIXODBC_DESCRIP} library version */
+/* Define to indicate the UNIXODBC library version */
#undef HAVE_UNIXODBC_VERSION
/* Define to 1 if you have the `unsetenv' function. */
#undef HAVE_UNSETENV
-/* Define this to indicate the ${USB_DESCRIP} library */
+/* Define to 1 to indicate USB functionality. */
#undef HAVE_USB
-/* Define to indicate the ${USB_DESCRIP} library version */
+/* Define to indicate the USB library version */
#undef HAVE_USB_VERSION
/* Define to 1 if you have the `utime' function. */
@@ -1047,10 +1047,10 @@
/* Define to 1 if your system has linux/videodev.h. */
#undef HAVE_VIDEODEV_H
-/* Define this to indicate the ${VORBIS_DESCRIP} library */
+/* Define to 1 to indicate VORBIS functionality. */
#undef HAVE_VORBIS
-/* Define to indicate the ${VORBIS_DESCRIP} library version */
+/* Define to indicate the VORBIS library version */
#undef HAVE_VORBIS_VERSION
/* Define if your system has the VoiceTronix API libraries. */
@@ -1071,16 +1071,16 @@
/* Define to 1 if `vfork' works. */
#undef HAVE_WORKING_VFORK
-/* Define this to indicate the ${X11_DESCRIP} library */
+/* Define to 1 to indicate X11 functionality. */
#undef HAVE_X11
-/* Define to indicate the ${X11_DESCRIP} library version */
+/* Define to indicate the X11 library version */
#undef HAVE_X11_VERSION
-/* Define this to indicate the ${ZLIB_DESCRIP} library */
+/* Define to 1 to indicate ZLIB functionality. */
#undef HAVE_ZLIB
-/* Define to indicate the ${ZLIB_DESCRIP} library version */
+/* Define to indicate the ZLIB library version */
#undef HAVE_ZLIB_VERSION
/* Define to 1 if the system has the type `_Bool'. */