1 # Process this file with autoconf to produce a configure script.
3 # Make sure we use autoconf 2.60 to generate the "configure" script,
4 # in case we want to commit it. Other than that, version 2.59 is
5 # perfectly fine for our purposes, so people who want to modify
6 # this file just have to remember to set the AC_PREREQ argument
7 # to something that suits their needs.
11 AC_INIT([asterisk], [trunk], [https://issues.asterisk.org])
13 # cross-compile macros
17 # check existence of the package
18 AC_CONFIG_SRCDIR([main/asterisk.c])
20 AC_CONFIG_AUX_DIR(`pwd`)
22 AC_COPYRIGHT("Asterisk")
23 AC_REVISION($Revision$)
25 # preserve any CFLAGS or LDFLAGS that may be set
26 # NOTE: This must be done before calling any macros that end up
27 # calling AC_PROG_CC or the like, since they will set a default
28 # set of CFLAGS ("-g -O2") if the user did not supply any, and
29 # we don't want those default flags to be carried over into the
30 # rest of the build system since we have other means of controlling
31 # debugging symbol generation and optimization.
32 CONFIG_CFLAGS="${CFLAGS}"
33 CONFIG_LDFLAGS="${LDFLAGS}"
34 AC_SUBST(CONFIG_CFLAGS)
35 AC_SUBST(CONFIG_LDFLAGS)
37 # specify output header file
38 AC_CONFIG_HEADER(include/asterisk/autoconfig.h)
40 # Note: AC_PROG_CC *must* be specified before AC_USE_SYSTEM_EXTENSIONS or any
41 # other macro that uses the C compiler, or the default order will be used.
44 AC_USE_SYSTEM_EXTENSIONS dnl note- does not work on FreeBSD
46 # System default paths
47 AC_SUBST([astsbindir], ['${sbindir}'])dnl
48 AC_SUBST([astetcdir], ['${sysconfdir}/asterisk'])dnl
49 AC_SUBST([astheaderdir], ['${includedir}/asterisk'])dnl
50 AC_SUBST([astlibdir], ['${libdir}'])dnl
51 AC_SUBST([astmoddir], ['${libdir}/asterisk/modules'])dnl
52 AC_SUBST([astmandir], ['${mandir}'])dnl
53 AC_SUBST([astvarlibdir], ['${localstatedir}/lib/asterisk'])dnl
54 AC_SUBST([astdatadir], ['${astvarlibdir}'])dnl
55 AC_SUBST([astdbdir], ['${astvarlibdir}'])dnl
56 AC_SUBST([astkeydir], ['${astvarlibdir}'])dnl
57 AC_SUBST([astspooldir], ['${localstatedir}/spool/asterisk'])dnl
58 AC_SUBST([astlogdir], ['${localstatedir}/log/asterisk'])dnl
59 AC_SUBST([astvarrundir], ['${localstatedir}/run/asterisk'])dnl
63 if test ${prefix} = 'NONE'; then
64 astvarlibdir='${prefix}/share/asterisk'
65 astdbdir='${localstatedir}/db/asterisk'
69 if test ${prefix} = 'NONE'; then
70 astvarrundir='/Library/Application Support/Asterisk/Run'
77 ac_default_prefix=/usr/local
78 CPPFLAGS=-I/usr/local/include
79 LDFLAGS=-L/usr/local/lib
82 ac_default_prefix=/usr/local
83 if test ${prefix} = '/usr/local' || test ${prefix} = 'NONE'; then
84 if test ${sysconfdir} = '${prefix}/etc'; then
85 astetcdir=/etc/asterisk
87 if test ${mandir} = '${prefix}/man'; then
88 astmandir=/usr/share/man
91 CPPFLAGS=-I/usr/local/include
92 LDFLAGS=-L/usr/local/lib
95 ac_default_prefix=/usr/local
96 if test ${prefix} = 'NONE'; then
97 astmoddir='/Library/Application Support/Asterisk/Modules'
98 astvarlibdir='/Library/Application Support/Asterisk'
99 astlogdir=/Library/Logs/Asterisk
100 astvarrundir='/Library/Application Support/Asterisk/Run'
102 AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.])
103 AC_DEFINE([_DARWIN_UNLIMITED_SELECT], 1, [Define to 1 if running on Darwin.])
106 if test ${prefix} = 'NONE'; then
107 astetcdir=/var/etc/asterisk
108 astsbindir=/opt/asterisk/sbin
109 astlibdir=/opt/asterisk/lib
110 astmoddir=/opt/asterisk/lib/modules
111 astheaderdir=/opt/asterisk/include
112 astmandir=/opt/asterisk/man
113 astvarlibdir=/var/opt/asterisk
114 astspooldir=/var/spool/asterisk
115 astlogdir=/var/log/asterisk
116 astvarrundir=/var/run/asterisk
120 ac_default_prefix=/usr
121 if test ${prefix} = '/usr' || test ${prefix} = 'NONE'; then
122 if test ${sysconfdir} = '${prefix}/etc'; then
125 if test ${mandir} = '${prefix}/man'; then
126 mandir=/usr/share/man
132 if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
133 if test ${localstatedir} = '${prefix}/var'; then
138 BUILD_PLATFORM=${build}
139 BUILD_CPU=${build_cpu}
140 BUILD_VENDOR=${build_vendor}
143 AC_SUBST(BUILD_PLATFORM)
145 AC_SUBST(BUILD_VENDOR)
148 HOST_PLATFORM=${host}
150 HOST_VENDOR=${host_vendor}
153 AC_SUBST(HOST_PLATFORM)
155 AC_SUBST(HOST_VENDOR)
193 AC_SUBST(PBX_WINARCH)
196 AC_PATH_TOOL([UNAME], [uname], No)
197 if test ! x"${UNAME}" = xNo; then
198 PBX_OSREV=$(${UNAME} -r)
203 #ifndef ASTERISK_AUTOCONFIG_H
204 #define ASTERISK_AUTOCONFIG_H
206 #include "asterisk/buildopts.h"
214 # cross-compile checks
215 if test "${cross_compiling}" = "yes";
217 AC_CHECK_TOOL(CC, gcc, :)
218 AC_CHECK_TOOL(CXX, g++, :)
219 AC_CHECK_TOOL(LD, ld, :)
220 AC_CHECK_TOOL(RANLIB, ranlib, :)
223 # Checks for programs.
227 # This macro is just copied into our local acinclude.m4 from libtool.m4 so that
228 # the developers regenerating the configure script don't have to install libtool.
229 AST_PROG_LD # note, does not work on FreeBSD
237 AC_CHECK_TOOLS([STRIP], [strip gstrip], :)
238 AC_CHECK_TOOLS([AR], [ar gar], :)
241 if test "x$with_gnu_ld" = "xyes" ; then
246 AC_PATH_PROG([BISON], [bison], :)
247 AC_PATH_PROG([CMP], [cmp], :)
248 AC_PATH_PROG([FLEX], [flex], :)
249 AC_PATH_PROG([GREP], [grep], :)
250 AC_PATH_PROG([FIND], [find], :)
251 AC_PATH_PROG([COMPRESS], [compress], :)
252 AC_PATH_PROG([BASENAME], [basename], :)
253 AC_PATH_PROG([DIRNAME], [dirname], :)
254 AC_PATH_PROG([SHELL], [sh], :)
255 AC_PATH_PROG([LN], [ln], :)
256 AC_PATH_PROG([DOT], [dot], :)
257 AC_PATH_PROG([WGET], [wget], :)
258 AC_PATH_PROG([CURL], [curl], :)
259 AC_PATH_PROG([RUBBER], [rubber], :)
260 AC_PATH_PROG([CATDVI], [catdvi], :)
261 AC_PATH_PROG([KPATHSEA], [kpsewhich], :)
262 AC_PATH_PROG([XMLLINT], [xmllint], :)
263 AC_PATH_PROG([XMLSTARLET], [xmlstarlet], :)
264 if test "${WGET}" != ":" ; then
266 else if test "${CURL}" != ":" ; then
267 DOWNLOAD="${CURL} -O --progress-bar -w \"%{url_effective}\n\""
269 AC_PATH_PROG([FETCH], [fetch], [:])
274 AC_PATH_PROG([LDCONFIG], [ldconfig], :)
275 AC_PATH_PROG([SHA1SUM], [sha1sum], $ac_aux_dir/build_tools/sha1sum-sh)
276 AC_PATH_PROG([OPENSSL], [openssl], :)
278 AC_CACHE_CHECK([for bison that supports parse-param], [ac_cv_path_BISON2], [
279 if test "x$BISON" != "x:" ; then
280 # Create a temporary directory $tmp in $TMPDIR (default /tmp).
281 # Use mktemp if possible; otherwise fall back on mkdir,
282 # with $RANDOM to make collisions less likely.
286 (umask 077 && mktemp -d "$TMPDIR/fooXXXXXX") 2>/dev/null
288 test -n "$tmp" && test -d "$tmp"
290 tmp=$TMPDIR/foo$$-$RANDOM
291 (umask 077 && mkdir "$tmp")
293 cat >$tmp/test.y <<__EOL__
294 %parse-param {struct parse_io *parseio}
296 file : { \$\$ = parseio->pval = 1; }
300 ${BISON} -o ${tmp}/test.tab.c ${tmp}/test.y >/dev/null 2>&1
301 if test -e "${tmp}/test.tab.c"; then
302 ac_cv_path_BISON2=${BISON}
307 if test "x${ac_cv_path_BISON2}" = "x" ; then
314 if test "x${FLEX}" = "x:" ; then
321 AC_CHECK_TOOL([SOXMIX], [soxmix], [:])
322 if test "${SOXMIX}" != ":" ; then
323 AC_DEFINE([HAVE_SOXMIX], 1, [Define to 1 if your system has soxmix application.])
326 AC_CHECK_PROGS([MD5], [md5 md5sum gmd5sum digest])
328 if test "${MD5}" = "digest" ; then
336 AC_ARG_ENABLE([dev-mode],
337 [AS_HELP_STRING([--enable-dev-mode],
338 [Turn on developer mode])],
339 [case "${enableval}" in
340 y|ye|yes) AST_DEVMODE=yes ;;
341 n|no) AST_DEVMODE=no ;;
346 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode) ;;
348 AC_SUBST(NOISY_BUILD)
349 AC_SUBST(AST_DEVMODE)
352 AC_ARG_ENABLE([coverage],
353 [AS_HELP_STRING([--enable-coverage],
354 [Turn on code coverage tracking (for gcov)])],
355 [case "${enableval}" in
356 y|ye|yes) AST_CODE_COVERAGE=yes ;;
357 n|no) AST_CODE_COVERAGE=no ;;
358 *) AC_MSG_ERROR(bad value ${enableval} for --enable-coverage) ;;
360 AC_SUBST(AST_CODE_COVERAGE)
362 # AST_EXT_LIB_SETUP is used to tell configure to handle variables for
364 # $1 is the prefix for the variables in makeopts and autoconfig.h
365 # $2 is the short comment, $4 is the long comment
366 # $3 is the name used in --with- or --without- flags for configure.
368 # Package option names should be in alphabetical order
369 # by the --with option name (the third field),
370 # to make things easier for the users.
372 AST_EXT_LIB_SETUP([ALSA], [Advanced Linux Sound Architecture], [asound])
373 AST_EXT_LIB_SETUP([BFD], [Debug symbol decoding], [bfd])
375 # BKTR is used for backtrace support on platforms that do not
377 AST_EXT_LIB_SETUP([BKTR], [Stack Backtrace], [execinfo])
378 AST_EXT_LIB_SETUP([BLUETOOTH], [Bluetooth], [bluetooth])
379 AST_EXT_LIB_SETUP([CAP], [POSIX 1.e capabilities], [cap])
380 AST_EXT_LIB_SETUP([COROSYNC], [Corosync], [cpg])
381 AST_EXT_LIB_SETUP([CURSES], [curses], [curses])
382 AST_EXT_LIB_SETUP([CRYPTO], [OpenSSL Cryptography], [crypto])
383 AST_EXT_LIB_SETUP([DAHDI], [DAHDI], [dahdi])
384 AST_EXT_LIB_SETUP([FFMPEG], [Ffmpeg and avcodec], [avcodec])
385 AST_EXT_LIB_SETUP([GSM], [External GSM], [gsm], [, use 'internal' GSM otherwise])
386 AST_EXT_LIB_SETUP([GTK2], [gtk2], [gtk2])
387 AST_EXT_LIB_SETUP([GMIME], [GMime], [gmime])
388 AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
389 AST_EXT_LIB_SETUP([HOARD], [Hoard Memory Allocator], [hoard])
390 AST_EXT_LIB_SETUP([ICAL], [iCal], [ical])
391 AST_EXT_LIB_SETUP([ICONV], [Iconv], [iconv])
392 AST_EXT_LIB_SETUP([IKSEMEL], [Iksemel Jabber], [iksemel])
393 AST_EXT_LIB_SETUP([IMAP_TK], [UW IMAP Toolkit], [imap])
394 AST_EXT_LIB_SETUP([INOTIFY], [inotify support], [inotify])
395 AST_EXT_LIB_SETUP([IODBC], [iODBC], [iodbc])
396 AST_EXT_LIB_SETUP([ISDNNET], [ISDN4Linux], [isdnnet])
397 AST_EXT_LIB_SETUP([JACK], [Jack Audio Connection Kit], [jack])
398 AST_EXT_LIB_SETUP([KQUEUE], [kqueue support], [kqueue])
399 AST_EXT_LIB_SETUP([LDAP], [OpenLDAP], [ldap])
400 AST_LIBCURL_CHECK_CONFIG([], [7.10.1])
401 AST_EXT_LIB_SETUP([LIBXML2], [LibXML2], [libxml2])
402 AST_EXT_LIB_SETUP([LTDL], [libtool], [ltdl])
403 AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
404 AST_EXT_LIB_SETUP([MISDN], [mISDN user], [misdn])
405 AST_EXT_LIB_SETUP([MYSQLCLIENT], [MySQL client], [mysqlclient])
406 AST_EXT_LIB_SETUP([NBS], [Network Broadcast Sound], [nbs])
407 AST_EXT_LIB_SETUP([NCURSES], [ncurses], [ncurses])
408 AST_EXT_LIB_SETUP([NEON], [neon], [neon])
409 AST_EXT_LIB_SETUP([NEON29], [neon29], [neon29])
410 AST_EXT_LIB_SETUP([NETSNMP], [Net-SNMP], [netsnmp])
411 AST_EXT_LIB_SETUP([NEWT], [newt], [newt])
412 AST_EXT_LIB_SETUP([OGG], [OGG], [ogg])
413 AST_EXT_LIB_SETUP([OPENR2], [MFR2], [openr2])
414 AST_EXT_LIB_SETUP([OSPTK], [OSP Toolkit], [osptk])
415 AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
416 AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
417 AST_EXT_LIB_SETUP([POPT], [popt], [popt])
418 AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
419 AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
420 AST_EXT_LIB_SETUP_OPTIONAL([PRI_L2_PERSISTENCE], [ISDN Layer 2 persistence option], [PRI], [pri])
421 AST_EXT_LIB_SETUP_OPTIONAL([PRI_DATETIME_SEND], [ISDN PRI Date/time ie send policy], [PRI], [pri])
422 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI_V2], [ISDN PRI Message Waiting Indication (Fixed)], [PRI], [pri])
423 AST_EXT_LIB_SETUP_OPTIONAL([PRI_DISPLAY_TEXT], [ISDN PRI user display text IE contents during call], [PRI], [pri])
424 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI], [ISDN PRI Message Waiting Indication], [PRI], [pri])
425 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MCID], [ISDN PRI Malicious Call ID], [PRI], [pri])
426 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_WAITING], [ISDN PRI call waiting supplementary service], [PRI], [pri])
427 AST_EXT_LIB_SETUP_OPTIONAL([PRI_AOC_EVENTS], [ISDN PRI advice of charge supplementary service events], [PRI], [pri])
428 AST_EXT_LIB_SETUP_OPTIONAL([PRI_TRANSFER], [ISDN PRI call transfer supplementary service], [PRI], [pri])
429 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CCSS], [ISDN PRI call completion supplementary service], [PRI], [pri])
430 AST_EXT_LIB_SETUP_OPTIONAL([PRI_HANGUP_FIX], [ISDN PRI hangup fix], [PRI], [pri])
431 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SUBADDR], [ISDN PRI subaddressing], [PRI], [pri])
432 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_HOLD], [ISDN PRI call hold], [PRI], [pri])
433 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_REROUTING], [ISDN PRI call rerouting and call deflection], [PRI], [pri])
434 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SETUP_KEYPAD], [ISDN PRI keypad facility in SETUP], [PRI], [pri])
435 # ------------------------------------v
436 # TODO: The code can be changed to always include these features now.
437 # These features will always be present if pri_connected_line_update is available.
438 AST_EXT_LIB_SETUP_OPTIONAL([PRI_INBANDDISCONNECT], [ISDN PRI set_inbanddisconnect], [PRI], [pri])
439 AST_EXT_LIB_SETUP_OPTIONAL([PRI_PROG_W_CAUSE], [ISDN progress with cause], [PRI], [pri])
440 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SERVICE_MESSAGES], [ISDN service messages], [PRI], [pri])
441 AST_EXT_LIB_SETUP_OPTIONAL([PRI_REVERSE_CHARGE], [ISDN reverse charge], [PRI], [pri])
442 # ------------------------------------^
443 AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
444 AST_EXT_LIB_SETUP([RADIUS], [Radius Client], [radius])
445 AST_EXT_LIB_SETUP([RESAMPLE], [LIBRESAMPLE], [resample])
446 AST_EXT_LIB_SETUP([SDL], [Sdl], [sdl])
447 AST_EXT_LIB_SETUP([SDL_IMAGE], [Sdl Image], [SDL_image])
448 AST_OPTION_ONLY([sounds-cache], [SOUNDS_CACHE_DIR], [cached sound tarfiles], [])
449 AST_EXT_LIB_SETUP([SPANDSP], [SPANDSP], [spandsp])
450 AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
451 AST_EXT_LIB_SETUP([SPEEX], [Speex], [speex])
452 AST_EXT_LIB_SETUP([SPEEX_PREPROCESS], [Speex preprocess routines], [speex])
453 AST_EXT_LIB_SETUP([SPEEXDSP], [SpeexDSP], [speexdsp])
454 AST_EXT_LIB_SETUP_DEPENDENT([SPEEX_PREPROCESS], [speex_preprocess_ctl], [], [speex])
455 AST_EXT_LIB_SETUP([SQLITE], [SQLite], [sqlite])
456 AST_EXT_LIB_SETUP([SQLITE3], [SQLite], [sqlite3])
457 AST_EXT_LIB_SETUP([SRTP], [Secure RTP], [srtp])
458 AST_EXT_LIB_SETUP([OPENSSL], [OpenSSL Secure Sockets Layer], [ssl])
459 AST_EXT_LIB_SETUP([SUPPSERV], [mISDN Supplemental Services], [suppserv])
460 AST_EXT_LIB_SETUP([FREETDS], [FreeTDS], [tds])
461 AST_EXT_LIB_SETUP([TERMCAP], [Termcap], [termcap])
462 AST_EXT_LIB_SETUP([TIMERFD], [timerfd], [timerfd])
463 AST_EXT_LIB_SETUP([TINFO], [Term Info], [tinfo])
464 AST_EXT_LIB_SETUP([TONEZONE], [tonezone], [tonezone])
465 AST_EXT_LIB_SETUP([UNIXODBC], [unixODBC], [unixodbc])
466 AST_EXT_LIB_SETUP([USB], [usb], [usb])
467 AST_EXT_LIB_SETUP([VORBIS], [Vorbis], [vorbis])
468 AST_EXT_LIB_SETUP([VPB], [Voicetronix API], [vpb])
469 AST_EXT_LIB_SETUP([X11], [X11], [x11])
470 AST_EXT_LIB_SETUP([ZLIB], [zlib compression], [z])
472 # check for basic system features and functionality before
473 # checking for package libraries
479 AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h libintl.h limits.h locale.h malloc.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/event.h sys/file.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h syslog.h termios.h unistd.h utime.h arpa/nameser.h sys/io.h])
481 # Any one of these 4 packages support a mandatory requirement, so we want to check on them as early as possible.
482 AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
483 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
484 AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
485 AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
488 if test "x$TERMCAP_LIB" != "x" ; then
489 EDITLINE_LIB="$TERMCAP_LIB"
490 elif test "x$TINFO_LIB" != "x" ; then
491 EDITLINE_LIB="$TINFO_LIB"
492 elif test "x$CURSES_LIB" != "x" ; then
493 EDITLINE_LIB="$CURSES_LIB"
494 elif test "x$NCURSES_LIB" != "x" ; then
495 EDITLINE_LIB="$NCURSES_LIB"
497 AC_MSG_ERROR([*** termcap support not found (on modern systems, this typically means the ncurses development package is missing)])
499 AC_SUBST(EDITLINE_LIB)
501 # Another mandatory item (unless it's explicitly disabled)
502 AC_ARG_ENABLE([xmldoc],
503 [AS_HELP_STRING([--disable-xmldoc],
504 [Explicitly disable XML documentation])],
505 [case "${enableval}" in
506 y|ye|yes) disable_xmldoc=no ;;
507 n|no) disable_xmldoc=yes ;;
508 *) AC_MSG_ERROR(bad value ${enableval} for --disable-xmldoc) ;;
509 esac], [disable_xmldoc=no])
511 if test "${disable_xmldoc}" != "yes"; then
512 AST_EXT_TOOL_CHECK([LIBXML2], [xml2-config], , ,
513 [#include <libxml/tree.h>
514 #include <libxml/parser.h>],
515 [LIBXML_TEST_VERSION])
516 if test "${PBX_LIBXML2}" != 1; then
517 AC_MSG_NOTICE(*** XML documentation will not be available because the 'libxml2' development package is missing.)
518 AC_MSG_NOTICE(*** Please run the 'configure' script with the '--disable-xmldoc' parameter option)
519 AC_MSG_NOTICE(*** or install the 'libxml2' development package.)
524 # some embedded systems omit internationalization (locale) support
525 AC_CHECK_HEADERS([xlocale.h])
527 AC_CHECK_HEADERS([winsock.h winsock2.h])
529 AC_CHECK_HEADER([sys/poll.h],
531 AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.]))
535 # Checks for typedefs, structures, and compiler characteristics.
540 AC_TYPE_LONG_DOUBLE_WIDER
545 AC_CHECK_MEMBERS([struct stat.st_blksize])
546 AC_CHECK_MEMBERS([struct ucred.uid, struct ucred.cr_uid, struct sockpeercred.uid], [], [], [#include <sys/types.h>
547 #include <sys/socket.h> ])
548 AC_CHECK_MEMBERS([struct ifreq.ifr_ifru.ifru_hwaddr], [], [], [#include <net/if.h>])
552 AC_CHECK_TYPES([ptrdiff_t])
554 # Checks for library functions.
556 AC_FUNC_CLOSEDIR_VOID
557 AC_FUNC_ERROR_AT_LINE
560 AC_PROG_GCC_TRADITIONAL
561 # XXX: these are commented out until we determine whether it matters if our malloc()
562 # acts exactly like glibc's or not
567 AC_FUNC_SELECT_ARGTYPES
568 AC_FUNC_SETVBUF_REVERSED
577 AC_CHECK_FUNCS([asprintf atexit closefrom dup2 eaccess endpwent euidaccess ffsll ftruncate getcwd gethostbyname gethostname getloadavg gettimeofday glob htonll ioperm inet_ntoa isascii memchr memmove memset mkdir mkdtemp munmap ntohll newlocale ppoll putenv re_comp regcomp select setenv socket strcasecmp strcasestr strchr strcspn strdup strerror strlcat strlcpy strncasecmp strndup strnlen strrchr strsep strspn strstr strtod strtol strtold strtoq unsetenv utime vasprintf getpeereid sysctl swapctl])
579 # NOTE: we use AC_CHECK_LIB to get -lm into the arguments for later checks,
580 # so that AC_CHECK_FUNCS can detect functions in that library.
581 AC_CHECK_LIB([m], [sqrt])
582 # BSD might not have exp2, and/or log2
583 AC_CHECK_FUNCS([exp2 log2 exp10 log10 sin cos tan asin acos atan atan2 pow rint exp log remainder fmod round trunc floor ceil])
585 # Certain architectures don't really have long double, even though
586 # AC_CHECK_FUNCS would otherwise find the following functions.
587 if test "x${ac_cv_type_long_double_wider}" = "xyes" ; then
588 AC_CHECK_FUNCS([exp2l log2l exp10l log10l sinl cosl tanl asinl acosl atanl atan2l powl sqrtl rintl expl logl remainderl fmodl roundl truncl floorl ceill])
591 AC_MSG_CHECKING(for LLONG_MAX in limits.h)
593 [AC_LANG_PROGRAM([#include <limits.h>],
594 [long long foo = LLONG_MAX])],
596 AC_DEFINE([HAVE_LLONG_MAX], 1, [Define to 1 if limits.h includes a LLONG_MAX definition.]),
600 AC_MSG_CHECKING(for timersub in time.h)
602 [AC_LANG_PROGRAM([#include <sys/time.h>],
603 [struct timeval *a; timersub(a, a, a);])],
605 AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
609 AC_MSG_CHECKING(for a version of GNU ld that supports the --dynamic-list flag)
610 old_LDFLAGS=${LDFLAGS}
611 cat >conftest.dynamics <<_ACEOF
616 LDFLAGS="${LDFLAGS} -Wl,--dynamic-list,conftest.dynamics"
619 [AC_LANG_PROGRAM([], [])],
624 AC_SUBST(PBX_DYNAMIC_LIST)
625 LDFLAGS=${old_LDFLAGS}
626 rm -f conftest.dynamics
628 AC_CHECK_HEADER([sys/poll.h],
630 AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
633 AC_ARG_ENABLE([internal-poll],
634 [AS_HELP_STRING([--enable-internal-poll],
635 [Use Asterisk's poll implementation])],
636 [case "${enableval}" in
637 y|ye|yes) HAS_POLL="";;
638 n|no) HAS_POLL="${HAS_POLL}" ;;
639 *) AC_MSG_ERROR(bad value ${enableval} for --enable-internal-poll) ;;
643 AC_ARG_ENABLE([asteriskssl],
644 [AS_HELP_STRING([--disable-asteriskssl],
645 [Disable Asterisk's SSL wrapper library])],
646 [case "${enableval}" in
647 y|ye|yes) AST_ASTERISKSSL=yes ;;
648 n|no) AST_ASTERISKSSL=no ;;
649 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asteriskssl) ;;
650 esac], [AST_ASTERISKSSL=yes])
651 AC_SUBST(AST_ASTERISKSSL)
653 # https support (in main/http.c) uses funopen on BSD systems,
654 # fopencookie on linux
655 AC_CHECK_FUNCS([funopen fopencookie])
657 AC_CHECK_FUNCS([inet_aton])
659 # check if we have IP_PKTINFO constant defined
660 AC_MSG_CHECKING(for IP_PKTINFO)
662 [AC_LANG_PROGRAM([#include <netinet/in.h>],
663 [int pi = IP_PKTINFO;])],
665 AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
669 # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
670 AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
672 AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
674 [AC_LANG_PROGRAM([#include <stdlib.h>
676 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);])],
678 AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
682 AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
684 [AC_LANG_PROGRAM([#include <stdlib.h>
686 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);])],
688 AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
692 AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
694 AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
696 [AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);])],
698 AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
702 AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
704 [AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);])],
706 AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
710 if test "${cross_compiling}" = "no";
712 AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
715 AC_MSG_CHECKING(for locale_t in locale.h)
717 [AC_LANG_PROGRAM([#include <locale.h>], [locale_t lt = NULL])],
719 AC_DEFINE([HAVE_LOCALE_T_IN_LOCALE_H], 1, [Define to 1 if your system defines the locale_t type in locale.h]),
721 AC_MSG_CHECKING(for locale_t in xlocale.h)
723 [AC_LANG_PROGRAM([#include <xlocale.h>], [locale_t lt = NULL])],
725 AC_DEFINE([HAVE_LOCALE_T_IN_XLOCALE_H], 1, [Define to 1 if your system defines the locale_t type in xlocale.h]),
730 AC_MSG_CHECKING(for O_EVTONLY in fcntl.h)
732 [AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_EVTONLY;])],
734 AC_DEFINE([HAVE_O_EVTONLY], 1, [Define to 1 if your system defines the file flag O_EVTONLY in fcntl.h]),
738 AC_MSG_CHECKING(for O_SYMLINK in fcntl.h)
740 [AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_SYMLINK;])],
742 AC_DEFINE([HAVE_O_SYMLINK], 1, [Define to 1 if your system defines the file flag O_SYMLINK in fcntl.h]),
746 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
748 AC_MSG_CHECKING(for PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h)
750 [AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_RWLOCK_PREFER_WRITER_NP;])],
752 AC_DEFINE([HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP], 1, [Define to 1 if your system defines PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h]),
756 AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE_NP in pthread.h)
758 [AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_MUTEX_RECURSIVE_NP;])],
760 AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1, [Define to 1 if your system defines PTHREAD_MUTEX_RECURSIVE_NP in pthread.h]),
764 AC_MSG_CHECKING(for pthread_rwlock_timedwrlock() in pthread.h)
766 save_CFLAGS="$CFLAGS"
767 LIBS="$PTHREAD_LIBS $LIBS"
768 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
771 [#include <pthread.h>
773 [pthread_rwlock_t foo; struct timespec bar; pthread_rwlock_timedwrlock(&foo, &bar)])
776 ac_cv_pthread_rwlock_timedwrlock="yes"
779 ac_cv_pthread_rwlock_timedwrlock="no"
783 CFLAGS="$save_CFLAGS"
784 if test "${ac_cv_pthread_rwlock_timedwrlock}" = "yes"; then
785 AC_DEFINE([HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK], 1, [Define if your system has pthread_rwlock_timedwrlock()])
788 AC_MSG_CHECKING(if PTHREAD_ONCE_INIT needs braces)
789 saved_CFLAGS="${CFLAGS}"
790 CFLAGS="${CFLAGS} -Werror -Wmissing-braces"
793 [#include <pthread.h>
795 [pthread_once_t once = PTHREAD_ONCE_INIT; pthread_once(&once, empty);])
798 ac_cv_pthread_once_needsbraces="no"
801 ac_cv_pthread_once_needsbraces="yes"
804 CFLAGS="${saved_CFLAGS}"
805 if test "${ac_cv_pthread_once_needsbraces}" = "yes"; then
806 AC_DEFINE([PTHREAD_ONCE_INIT_NEEDS_BRACES], 1, [Define if your system needs braces around PTHREAD_ONCE_INIT])
809 AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
811 # Can we compare a mutex to its initial value?
812 # Generally yes on OpenBSD/FreeBSD and no on Mac OS X.
813 AC_MSG_CHECKING(whether we can compare a mutex to its initial value)
815 [AC_LANG_PROGRAM([#include <pthread.h>], [pthread_mutex_t lock;
816 if ((lock) != ((pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER)) {
821 AC_DEFINE([CAN_COMPARE_MUTEX_TO_INIT_VALUE], 1, [Define to 1 if your system's implementation of mutexes supports comparison of a mutex to its initializer.]),
825 #if test "${cross_compiling}" = "no";
827 #AC_MSG_CHECKING(for working epoll support)
829 #AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
835 #AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
840 # for FreeBSD thr_self
841 AC_CHECK_HEADERS([sys/thr.h])
843 AC_MSG_CHECKING(for compiler atomic operations)
845 [AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);])],
847 AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
851 # glibc, AFAIK, is the only C library that makes printing a NULL to a string safe.
852 AC_MSG_CHECKING([if your system printf is NULL-safe.])
854 [AC_LANG_PROGRAM([#include <stdio.h>],
855 [printf("%s", NULL)])],
856 AC_DEFINE([HAVE_NULLSAFE_PRINTF], 1, [Define to 1 if your C library can safely print NULL to string formats.])
859 # It's unlikely an embedded system will have this.
860 AC_MSG_RESULT(unknown)
863 AC_MSG_CHECKING(if we can increase the maximum select-able file descriptor)
867 #include <sys/select.h>
868 #include <sys/time.h>
869 #include <sys/resource.h>
873 #include <sys/types.h>
874 #include <sys/stat.h>
878 struct rlimit rlim = { FD_SETSIZE * 2, FD_SETSIZE * 2 };
880 struct timeval tv = { 0, };
881 struct ast_fdset { long fds_bits[[1024]]; } fds = { { 0, } };
882 if (setrlimit(RLIMIT_NOFILE, &rlim)) { exit(1); }
883 if ((fd0 = open("/dev/null", O_RDONLY)) < 0) { exit(1); }
884 if (dup2(fd0, (fd1 = FD_SETSIZE + 1)) < 0) { exit(1); }
885 FD_SET(fd0, (fd_set *) &fds);
886 FD_SET(fd1, (fd_set *) &fds);
887 if (select(FD_SETSIZE + 2, (fd_set *) &fds, NULL, NULL, &tv) < 0) { exit(1); }
890 AC_DEFINE([HAVE_VARIABLE_FDSET], 1, [Define to 1 if your system can support larger than default select bitmasks.]),
892 AC_MSG_RESULT(cross-compile)
895 if test "${ac_cv_have_variable_fdset}x" = "0x"; then
899 #include <sys/types.h>
901 ], [if (getuid() != 0) { exit(1); }])],
902 AC_DEFINE([CONFIGURE_RAN_AS_ROOT], 1, [Some configure tests will unexpectedly fail if configure is run by a non-root user. These may be able to be tested at runtime.]))
905 AST_GCC_ATTRIBUTE(pure)
906 AST_GCC_ATTRIBUTE(malloc)
907 AST_GCC_ATTRIBUTE(const)
908 AST_GCC_ATTRIBUTE(unused)
909 AST_GCC_ATTRIBUTE(always_inline)
910 AST_GCC_ATTRIBUTE(deprecated)
911 AST_GCC_ATTRIBUTE(sentinel)
912 AST_GCC_ATTRIBUTE(warn_unused_result)
914 # Support weak symbols on a platform specific basis. The Mac OS X
915 # (Darwin) support must be isolated from the other platforms because
916 # it has caused other platforms to fail.
920 # Allow weak symbol support on Darwin platforms only because there
921 # is active community support for it.
922 # However, Darwin seems to break weak symbols for each new version.
924 AST_GCC_ATTRIBUTE(weak_import, [], [], PBX_WEAKREF)
926 # Several other platforms including Linux have GCC versions that
927 # define the weak attribute. However, this attribute is only
928 # setup for use in the code by Darwin.
929 AST_GCC_ATTRIBUTE(weak, [], [], PBX_WEAKREF)
932 # Primarily support weak symbols on Linux platforms.
934 AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
937 # Allow weak symbols on other platforms. However, any problems
938 # with this feature on other platforms must be fixed by the
941 AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
945 AC_MSG_CHECKING(for -ffunction-sections support)
946 saved_CFLAGS="${CFLAGS}"
947 CFLAGS="${CFLAGS} -ffunction-sections"
949 [AC_LANG_PROGRAM([], [int x = 1;])],
951 [saved_LDFLAGS="${LDFLAGS}"]
952 [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
953 AC_MSG_CHECKING(for --gc-sections support)
955 [AC_LANG_PROGRAM([], [int x = 1;])],
957 [GC_CFLAGS="-ffunction-sections"]
958 [[GC_LDFLAGS="-Wl,--gc-sections"]],
961 [LDFLAGS="${saved_LDFLAGS}"],
964 CFLAGS="${saved_CFLAGS}"
968 AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
969 if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
971 AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
974 AST_DECLARATION_AFTER_STATEMENT=
976 AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
978 AC_MSG_CHECKING(for _FORTIFY_SOURCE support)
979 if $(${CC} -D_FORTIFY_SOURCE=2 -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
981 AST_FORTIFY_SOURCE=-D_FORTIFY_SOURCE=2
986 AC_SUBST(AST_FORTIFY_SOURCE)
988 AC_MSG_CHECKING(for -fno-strict-overflow)
989 if $(${CC} -O2 -fno-strict-overflow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
991 AST_NO_STRICT_OVERFLOW=-fno-strict-overflow
994 AST_NO_STRICT_OVERFLOW=
996 AC_SUBST(AST_NO_STRICT_OVERFLOW)
998 AC_MSG_CHECKING(for -Wshadow)
999 if $(${CC} -Wshadow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
1001 AST_SHADOW_WARNINGS=-Wshadow
1004 AST_SHADOW_WARNINGS=
1006 AC_SUBST(AST_SHADOW_WARNINGS)
1008 AC_MSG_CHECKING(for -march=native)
1009 if $(${CC} -march=native -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
1011 AST_MARCH_NATIVE="-march=native"
1016 AC_SUBST(AST_MARCH_NATIVE)
1018 AC_MSG_CHECKING(for sysinfo)
1020 [AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
1021 [struct sysinfo sys_info; int uptime = sys_info.uptime])],
1023 AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
1027 AC_SEARCH_LIBS(res_9_ninit, resolv)
1028 AC_MSG_CHECKING(for res_ninit)
1031 #ifdef HAVE_SYS_SOCKET_H
1032 #include <sys/socket.h>
1034 #ifdef HAVE_NETINET_IN_H
1035 #include <netinet/in.h>
1037 #ifdef HAVE_ARPA_NAMESER_H
1038 #include <arpa/nameser.h>
1040 #include <resolv.h>],
1041 [int foo = res_ninit(NULL);])],
1043 AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
1044 AC_SEARCH_LIBS(res_9_ndestroy, resolv)
1045 AC_MSG_CHECKING(for res_ndestroy)
1048 #ifdef HAVE_SYS_SOCKET_H
1049 #include <sys/socket.h>
1051 #ifdef HAVE_NETINET_IN_H
1052 #include <netinet/in.h>
1054 #ifdef HAVE_ARPA_NAMESER_H
1055 #include <arpa/nameser.h>
1057 #include <resolv.h>],
1058 [res_ndestroy(NULL);])],
1060 AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
1063 AC_SEARCH_LIBS(res_9_close, resolv)
1064 AC_MSG_CHECKING(for res_close)
1067 #ifdef HAVE_SYS_SOCKET_H
1068 #include <sys/socket.h>
1070 #ifdef HAVE_NETINET_IN_H
1071 #include <netinet/in.h>
1073 #ifdef HAVE_ARPA_NAMESER_H
1074 #include <arpa/nameser.h>
1076 #include <resolv.h>],
1079 AC_DEFINE([HAVE_RES_CLOSE], 1, [Define to 1 if your system has the close resolver function.]),
1085 AST_C_DEFINE_CHECK([GLOB_NOMAGIC], [GLOB_NOMAGIC], [glob.h])
1087 AST_C_DEFINE_CHECK([GLOB_BRACE], [GLOB_BRACE], [glob.h])
1089 AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
1091 AC_CHECK_HEADER([libkern/OSAtomic.h],
1092 [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
1094 AC_CHECK_SIZEOF([int])
1095 AC_CHECK_SIZEOF([long])
1096 AC_CHECK_SIZEOF([long long])
1097 AC_CHECK_SIZEOF([char *])
1098 AC_CHECK_SIZEOF(long)
1099 AC_CHECK_SIZEOF(long long)
1100 AC_COMPUTE_INT([ac_cv_sizeof_fd_set_fds_bits], [sizeof(foo.fds_bits[[0]])], [$ac_includes_default
1102 # This doesn't actually work; what it does is to use the variable set in the
1103 # previous test as a cached value to set the right output variables.
1104 AC_CHECK_SIZEOF(fd_set.fds_bits)
1106 # Set a type compatible with the previous. We cannot just use a generic type
1107 # for these bits, because on big-endian systems, the bits won't match up
1108 # correctly if the size is wrong.
1109 if test $ac_cv_sizeof_int = $ac_cv_sizeof_fd_set_fds_bits; then
1110 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [int], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1111 else if test $ac_cv_sizeof_long = $ac_cv_sizeof_fd_set_fds_bits; then
1112 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1113 else if test $ac_cv_sizeof_long_long = $ac_cv_sizeof_fd_set_fds_bits; then
1114 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1117 AC_MSG_CHECKING(for dladdr in dlfcn.h)
1122 [AC_LANG_PROGRAM([#define _GNU_SOURCE 1
1123 #include <dlfcn.h>],
1124 [dladdr((void *)0, (void *)0)]
1128 AC_SUBST([PBX_DLADDR])
1129 AC_DEFINE([HAVE_DLADDR], 1, [Define to 1 if your system has the dladdr() GNU extension]),
1134 # PKGCONFIG is used in later tests
1135 AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
1138 # do the package library checks now
1140 AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
1142 AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_openr], [bfd.h])
1144 if test "x${OSARCH}" = "xlinux-gnu" ; then
1145 AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
1148 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_RESET_COUNTERS], [dahdi/user.h], [230])
1149 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_DEFAULT_MTU_MRU], [dahdi/user.h], [220])
1150 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_CODE], [dahdi/user.h], [200])
1152 AST_C_DEFINE_CHECK([DAHDI_HALF_FULL], [DAHDI_POLICY_HALF_FULL], [dahdi/user.h])
1154 AST_C_COMPILE_CHECK([DAHDI_LINEREVERSE_VMWI], [struct dahdi_vmwi_info booger], [dahdi/user.h], , [enhanced dahdi vmwi support])
1156 AST_C_COMPILE_CHECK([DAHDI_ECHOCANCEL_FAX_MODE], [int foo = DAHDI_ECHOCANCEL_FAX_MODE], [dahdi/user.h])
1158 AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h], , [getifaddrs() support])
1159 AST_C_COMPILE_CHECK([TIMERFD], [timerfd_create(0,0); timerfd_settime(0,0,NULL,NULL);], [sys/timerfd.h], , [timerfd support])
1162 AC_SUBST(GSM_INTERNAL)
1164 if test "${USE_GSM}" != "no"; then
1165 if test "${GSM_DIR}" = "internal"; then
1167 elif test "${GSM_DIR}" != ""; then
1170 if test "${GSM_SYSTEM}" = "yes"; then
1172 if test "x${GSM_DIR}" != "x"; then
1173 if test -d ${GSM_DIR}/lib; then
1174 gsmlibdir="-L${GSM_DIR}/lib"
1176 gsmlibdir="-L${GSM_DIR}"
1179 AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
1180 [Define to indicate the GSM library]), [], ${gsmlibdir})
1181 if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
1182 if test "x${GSM_DIR}" != "x" ; then
1183 AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
1184 AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
1186 AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
1187 AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
1189 if test "${GSM_HEADER_FOUND}" = "0" ; then
1190 if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
1191 if test "x${GSM_MANDATORY}" = "xyes" ; then
1192 AC_MSG_NOTICE([***])
1193 AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
1194 AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
1195 AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
1201 if test "${GSM_HEADER_FOUND}" = "1" ; then
1202 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
1205 if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
1206 AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
1210 if test "${GSM_OK}" = "1" ; then
1212 if test "x${GSM_DIR}" != "x"; then
1213 GSM_LIB="${gsmlibdir} ${GSM_LIB}"
1214 GSM_INCLUDE="-I${GSM_DIR}/include"
1221 if test "${GSM_INTERNAL}" = "yes"; then
1223 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
1227 AST_EXT_LIB_CHECK([ICONV], [iconv], [iconv_open], [iconv.h])
1228 # GNU libiconv #define's iconv_open to libiconv_open, so we need to search for that symbol
1229 AST_EXT_LIB_CHECK([ICONV], [iconv], [libiconv_open], [iconv.h])
1230 # Some versions of Linux package iconv in glibc
1231 AST_EXT_LIB_CHECK([ICONV], [c], [iconv_close], [iconv.h])
1233 # If ical.h is NOT in the libical directory, then it is of a version insufficient for us.
1234 AST_EXT_LIB_CHECK([ICAL], [ical], [icaltimezone_get_utc_timezone], [libical/ical.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
1236 AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
1238 if test "${USE_IMAP_TK}" != "no"; then
1239 saved_cppflags="${CPPFLAGS}"
1240 saved_libs="${LIBS}"
1241 switch_to_system_on_failure="no"
1242 if test "${IMAP_TK_DIR}" = ""; then
1243 IMAP_TK_DIR=`pwd`"/../imap-2004g"
1244 switch_to_system_on_failure="yes"
1246 if test "${IMAP_TK_DIR}" != "system"; then
1247 AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
1248 if test -f "${IMAP_TK_DIR}/c-client/LDFLAGS"; then
1249 imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
1251 imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
1252 imap_include="-I${IMAP_TK_DIR}/c-client"
1253 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1254 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1257 [#include "c-client.h"
1258 void mm_searched (MAILSTREAM *stream,unsigned long number)
1261 void mm_exists (MAILSTREAM *stream,unsigned long number)
1264 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1267 void mm_flags (MAILSTREAM *stream,unsigned long number)
1270 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1273 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1276 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1279 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1282 void mm_log (char *string,long errflg)
1285 void mm_dlog (char *string)
1288 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1291 void mm_critical (MAILSTREAM *stream)
1294 void mm_nocritical (MAILSTREAM *stream)
1297 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1300 void mm_fatal (char *string)
1304 MAILSTREAM *foo = mail_open(NULL, "", 0);
1307 [ac_cv_imap_tk="yes"],
1308 [ac_cv_imap_tk="no"]
1310 if test "${ac_cv_imap_tk}" = "yes"; then
1313 [#include "c-client.h"
1314 void mm_searched (MAILSTREAM *stream,unsigned long number)
1317 void mm_exists (MAILSTREAM *stream,unsigned long number)
1320 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1323 void mm_flags (MAILSTREAM *stream,unsigned long number)
1326 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1329 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1332 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1335 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1338 void mm_log (char *string,long errflg)
1341 void mm_dlog (char *string)
1344 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1347 void mm_critical (MAILSTREAM *stream)
1350 void mm_nocritical (MAILSTREAM *stream)
1353 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1356 void mm_fatal (char *string)
1360 long check = mail_expunge_full(NULL, "", 0);
1363 [ac_cv_imap_tk2006="yes"],
1364 [ac_cv_imap_tk2006="no"]
1367 CPPFLAGS="${saved_cppflags}"
1368 LIBS="${saved_libs}"
1369 if test "${ac_cv_imap_tk}" = "no"; then
1371 if test "${switch_to_system_on_failure}" = "yes"; then
1372 IMAP_TK_DIR="system"
1373 else #This means they specified a directory. Search for a package installation there too
1374 AC_MSG_CHECKING([for system c-client library...])
1375 CPPFLAGS="${saved_cppflags}"
1376 LIBS="${saved_libs}"
1377 imap_include="-I${IMAP_TK_DIR}/include"
1378 imap_ldflags="-L${IMAP_TK_DIR}/lib"
1379 imap_libs="-lc-client"
1380 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1381 LIBS="${LIBS} ${imap_libs} ${imap_ldflags}"
1384 [#include "c-client.h"
1385 void mm_searched (MAILSTREAM *stream,unsigned long number)
1388 void mm_exists (MAILSTREAM *stream,unsigned long number)
1391 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1394 void mm_flags (MAILSTREAM *stream,unsigned long number)
1397 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1400 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1403 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1406 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1409 void mm_log (char *string,long errflg)
1412 void mm_dlog (char *string)
1415 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1418 void mm_critical (MAILSTREAM *stream)
1421 void mm_nocritical (MAILSTREAM *stream)
1424 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1427 void mm_fatal (char *string)
1431 MAILSTREAM *foo = mail_open(NULL, "", 0);
1434 [ac_cv_imap_tk="yes"],
1435 [ac_cv_imap_tk="no"]
1437 if test "${ac_cv_imap_tk}" = "yes"; then
1440 [#include "c-client.h"
1441 void mm_searched (MAILSTREAM *stream,unsigned long number)
1444 void mm_exists (MAILSTREAM *stream,unsigned long number)
1447 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1450 void mm_flags (MAILSTREAM *stream,unsigned long number)
1453 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1456 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1459 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1462 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1465 void mm_log (char *string,long errflg)
1468 void mm_dlog (char *string)
1471 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1474 void mm_critical (MAILSTREAM *stream)
1477 void mm_nocritical (MAILSTREAM *stream)
1480 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1483 void mm_fatal (char *string)
1487 long check = mail_expunge_full(NULL, "", 0);
1490 [ac_cv_imap_tk2006="yes"],
1491 [ac_cv_imap_tk2006="no"]
1497 if test "${IMAP_TK_DIR}" = "system"; then
1498 #We will enter here if user specified "system" or if any of above checks failed
1499 AC_MSG_CHECKING([for system c-client library...])
1500 CPPFLAGS="${saved_cppflags}"
1501 LIBS="${saved_libs}"
1503 imap_libs="-lc-client"
1504 imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
1505 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1506 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1510 #include <imap/c-client.h>
1511 void mm_searched (MAILSTREAM *stream,unsigned long number)
1514 void mm_exists (MAILSTREAM *stream,unsigned long number)
1517 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1520 void mm_flags (MAILSTREAM *stream,unsigned long number)
1523 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1526 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1529 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1532 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1535 void mm_log (char *string,long errflg)
1538 void mm_dlog (char *string)
1541 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1544 void mm_critical (MAILSTREAM *stream)
1547 void mm_nocritical (MAILSTREAM *stream)
1550 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1553 void mm_fatal (char *string)
1557 MAILSTREAM *foo = mail_open(NULL, "", 0);
1560 [ac_cv_imap_tk="yes"],
1561 [ac_cv_imap_tk="no"]
1563 if test "${ac_cv_imap_tk}" = "yes"; then
1567 #include <imap/c-client.h>
1568 void mm_searched (MAILSTREAM *stream,unsigned long number)
1571 void mm_exists (MAILSTREAM *stream,unsigned long number)
1574 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1577 void mm_flags (MAILSTREAM *stream,unsigned long number)
1580 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1583 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1586 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1589 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1592 void mm_log (char *string,long errflg)
1595 void mm_dlog (char *string)
1598 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1601 void mm_critical (MAILSTREAM *stream)
1604 void mm_nocritical (MAILSTREAM *stream)
1607 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1610 void mm_fatal (char *string)
1614 long check = mail_expunge_full(NULL, "", 0);
1617 [ac_cv_imap_tk2006="yes"],
1618 [ac_cv_imap_tk2006="no"]
1620 else #looking in imap directory didn't work, try c-client
1622 imap_libs="-lc-client"
1623 imap_include="-DUSE_SYSTEM_CCLIENT"
1624 CPPFLAGS="${saved_cppflags}"
1625 LIBS="${saved_libs}"
1626 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1627 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1631 #include <c-client/c-client.h>
1632 void mm_searched (MAILSTREAM *stream,unsigned long number)
1635 void mm_exists (MAILSTREAM *stream,unsigned long number)
1638 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1641 void mm_flags (MAILSTREAM *stream,unsigned long number)
1644 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1647 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1650 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1653 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1656 void mm_log (char *string,long errflg)
1659 void mm_dlog (char *string)
1662 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1665 void mm_critical (MAILSTREAM *stream)
1668 void mm_nocritical (MAILSTREAM *stream)
1671 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1674 void mm_fatal (char *string)
1678 MAILSTREAM *foo = mail_open(NULL, "", 0);
1681 [ac_cv_imap_tk="yes"],
1682 [ac_cv_imap_tk="no"]
1684 if test "${ac_cv_imap_tk}" = "yes"; then
1688 #include <c-client/c-client.h>
1689 void mm_searched (MAILSTREAM *stream,unsigned long number)
1692 void mm_exists (MAILSTREAM *stream,unsigned long number)
1695 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1698 void mm_flags (MAILSTREAM *stream,unsigned long number)
1701 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1704 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1707 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1710 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1713 void mm_log (char *string,long errflg)
1716 void mm_dlog (char *string)
1719 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1722 void mm_critical (MAILSTREAM *stream)
1725 void mm_nocritical (MAILSTREAM *stream)
1728 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1731 void mm_fatal (char *string)
1735 long check = mail_expunge_full(NULL, "", 0);
1738 [ac_cv_imap_tk2006="yes"],
1739 [ac_cv_imap_tk2006="no"]
1744 if test "${ac_cv_imap_tk}" = "yes"; then
1746 IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
1747 IMAP_TK_INCLUDE="${imap_include}"
1749 AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
1750 if test "${ac_cv_imap_tk2006}" = "yes"; then
1751 AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
1756 CPPFLAGS="${saved_cppflags}"
1757 LIBS="${saved_libs}"
1760 AST_EXT_LIB_CHECK([IODBC], [iodbc], [SQLConnect], [sql.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
1762 AST_EXT_LIB_CHECK([INOTIFY], [c], [inotify_init], [sys/inotify.h])
1764 AST_EXT_LIB_CHECK([JACK], [jack], [jack_activate], [jack/jack.h])
1766 # BSD (and OS X) equivalent of inotify
1767 AST_EXT_LIB_CHECK([KQUEUE], [c], [kqueue], [sys/event.h])
1769 # 64-bit version of kevent (from kqueue) on OS X
1770 AC_CHECK_FUNCS([kevent64])
1772 # Needed by unixodbc
1773 AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
1775 AST_EXT_LIB_CHECK([LDAP], [ldap], [ldap_initialize], [ldap.h])
1777 AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
1779 if test "${PBX_MISDN}" = 1; then
1780 AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
1781 AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
1782 AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
1783 AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
1784 AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
1785 AC_CHECK_MEMBER([Q931_info_t.redirect_dn], [], [PBX_MISDN=0], [#include <mISDNuser/mISDNlib.h>])
1788 AST_EXT_TOOL_CHECK([MYSQLCLIENT], [mysql_config])
1790 AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
1792 AST_EXT_TOOL_CHECK([NEON], [neon-config])
1794 AST_EXT_TOOL_CHECK([NEON29], [neon-config], , [--libs],
1795 [#include <ne_auth.h>],
1796 [#ifndef NE_AUTH_NTLM
1797 #error Need libneon >= 0.29.0
1800 AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp-config], , [--agent-libs],
1801 [#include <net-snmp/net-snmp-config.h>
1802 #include <net-snmp/net-snmp-includes.h>
1803 #include <net-snmp/agent/net-snmp-agent-includes.h>],
1804 [int callback = snmp_register_callback(0, 0, NULL, NULL)])
1806 AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
1808 AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
1810 AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
1812 # Non-glibc platforms require libexecinfo for backtrace support
1813 AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h])
1814 # Linux, however, has backtrace directly in glibc
1815 AST_EXT_LIB_CHECK([BKTR], [c], [backtrace], [execinfo.h])
1817 AST_EXT_LIB_CHECK([BLUETOOTH], [bluetooth], [ba2str], [bluetooth/bluetooth.h])
1819 # possible places for oss definitions
1820 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
1821 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
1822 AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
1825 if test "${USE_PGSQL}" != "no"; then
1826 if test "x${PGSQL_DIR}" != "x"; then
1827 AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
1828 if test x"${PG_CONFIG}" = xNo; then
1829 AC_MSG_NOTICE([***])
1830 AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
1831 AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
1832 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1833 AC_MSG_NOTICE([*** including --without-postgres])
1837 AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
1840 if test "${PG_CONFIG}" != No; then
1841 PGSQL_libdir=`${PG_CONFIG} --libdir`
1842 PGSQL_includedir=`${PG_CONFIG} --includedir`
1843 if test "x$?" != "x0" ; then
1844 if test -n "${PGSQL_MANDATORY}" ; then
1845 AC_MSG_NOTICE([***])
1846 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1847 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1848 AC_MSG_NOTICE([*** including --without-postgres])
1852 AC_CHECK_LIB([pq], [PQescapeStringConn], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
1853 [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
1855 AC_MSG_CHECKING(for pg_encoding_to_char within Postgres headers)
1856 old_CFLAGS=${CFLAGS}
1857 CFLAGS="${CFLAGS} -I${PGSQL_includedir} -Werror"
1858 old_LDFLAGS=${LDFLAGS}
1859 LDFLAGS="${LDFLAGS} -L${PGSQL_libdir} -lpq -lz"
1860 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <libpq-fe.h>],
1861 [const char *foo = pg_encoding_to_char(1)])],
1863 AC_DEFINE_UNQUOTED([HAVE_PGSQL_pg_encoding_to_char], 1, [Define to indicate presence of the pg_encoding_to_char API.])],
1864 [AC_MSG_RESULT(no)])
1865 CFLAGS=${old_CFLAGS}
1866 LDFLAGS=${old_LDFLAGS}
1868 if test "${ac_cv_lib_pq_PQescapeStringConn}" = "yes"; then
1869 PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
1870 PGSQL_INCLUDE="-I${PGSQL_includedir}"
1872 elif test -n "${PGSQL_MANDATORY}";
1874 AC_MSG_NOTICE([***])
1875 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1876 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1877 AC_MSG_NOTICE([*** including --without-postgres])
1883 AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
1885 AST_EXT_LIB_CHECK([PORTAUDIO], [portaudio], [Pa_GetDeviceCount], [portaudio.h])
1887 AST_EXT_LIB_CHECK([PRI], [pri], [pri_connected_line_update], [libpri.h])
1888 AST_EXT_LIB_CHECK([PRI_L2_PERSISTENCE], [pri], [pri_persistent_layer2_option], [libpri.h])
1889 AST_EXT_LIB_CHECK([PRI_DATETIME_SEND], [pri], [pri_date_time_send_option], [libpri.h])
1890 AST_EXT_LIB_CHECK([PRI_MWI_V2], [pri], [pri_mwi_indicate_v2], [libpri.h])
1891 AST_EXT_LIB_CHECK([PRI_DISPLAY_TEXT], [pri], [pri_display_text], [libpri.h])
1892 AST_EXT_LIB_CHECK([PRI_MWI], [pri], [pri_mwi_indicate], [libpri.h])
1893 AST_EXT_LIB_CHECK([PRI_MCID], [pri], [pri_mcid_enable], [libpri.h])
1894 AST_EXT_LIB_CHECK([PRI_CALL_WAITING], [pri], [pri_connect_ack_enable], [libpri.h])
1895 AST_EXT_LIB_CHECK([PRI_AOC_EVENTS], [pri], [pri_aoc_events_enable], [libpri.h])
1896 AST_EXT_LIB_CHECK([PRI_TRANSFER], [pri], [pri_transfer_enable], [libpri.h])
1897 AST_EXT_LIB_CHECK([PRI_CCSS], [pri], [pri_cc_enable], [libpri.h])
1898 AST_EXT_LIB_CHECK([PRI_HANGUP_FIX], [pri], [pri_hangup_fix_enable], [libpri.h])
1899 AST_EXT_LIB_CHECK([PRI_SUBADDR], [pri], [pri_sr_set_called_subaddress], [libpri.h])
1900 AST_EXT_LIB_CHECK([PRI_CALL_HOLD], [pri], [pri_hold_enable], [libpri.h])
1901 AST_EXT_LIB_CHECK([PRI_CALL_REROUTING], [pri], [pri_reroute_enable], [libpri.h])
1902 AST_EXT_LIB_CHECK([PRI_SETUP_KEYPAD], [pri], [pri_sr_set_keypad_digits], [libpri.h])
1904 # ------------------------------------v
1905 # TODO: The code can be changed to always include these features now.
1906 # These features will always be present if pri_connected_line_update is available.
1907 AST_EXT_LIB_CHECK([PRI_PROG_W_CAUSE], [pri], [pri_progress_with_cause], [libpri.h])
1908 AST_EXT_LIB_CHECK([PRI_INBANDDISCONNECT], [pri], [pri_set_inbanddisconnect], [libpri.h])
1909 AST_EXT_LIB_CHECK([PRI_SERVICE_MESSAGES], [pri], [pri_maintenance_service], [libpri.h])
1910 AST_EXT_LIB_CHECK([PRI_REVERSE_CHARGE], [pri], [pri_sr_set_reversecharge], [libpri.h])
1911 # ------------------------------------^
1913 AST_EXT_LIB_CHECK([RESAMPLE], [resample], [resample_open], [libresample.h], [-lm])
1915 AST_C_COMPILE_CHECK([SPANDSP], [
1916 #if SPANDSP_RELEASE_DATE < 20080516
1917 #error "spandsp 0.0.5 or greater is required"
1919 ], [spandsp/version.h], , [minimum version of SpanDSP])
1921 if test "x${PBX_SPANDSP}" = "x1" ; then
1922 # We found the correct version in the header, now let's make sure it links
1923 # properly, and that libtiff is available
1925 AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [span_set_message_handler], [spandsp.h], [-ltiff])
1928 if test "x${PBX_SPANDSP}" = "x1" ; then
1929 # We also need t38_terminal_init()
1931 AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [t38_terminal_init], [spandsp.h], [-ltiff])
1934 AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_pollflags], [libss7.h])
1936 AST_EXT_LIB_CHECK([OPENR2], [openr2], [openr2_chan_new], [openr2.h])
1938 if test "${USE_PWLIB}" != "no"; then
1939 if test -n "${PWLIB_DIR}"; then
1940 PWLIBDIR="${PWLIB_DIR}"
1943 AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2], [P[[WT]]LIB_VERSION])
1945 if test "${HAS_PWLIB:-unset}" != "unset"; then
1946 AST_CHECK_PWLIB_PLATFORM()
1948 PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
1950 AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
1951 [Define if your system has the PWLib libraries.],
1952 [#include "ptlib.h"],
1953 [int q = (int) PTime::IsDaylightSavings();])
1957 if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
1958 if test -n "${OPENH323_DIR}"; then
1959 OPENH323DIR="${OPENH323_DIR}"
1961 AST_CHECK_OPENH323()
1962 AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3], [], [1], [19], [0])
1963 AST_CHECK_OPENH323_BUILD()
1964 PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
1965 AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
1966 [Define if your system has the OpenH323 libraries.],
1969 #include "h323ep.h"],
1970 [H323EndPoint ep = H323EndPoint();],
1971 [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
1974 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h], [-lm])
1975 if test "x${PBX_LUA}" = "x1" ; then
1976 if test x"${LUA_DIR}" = x; then
1977 LUA_INCLUDE="${LUA_INCLUDE} -I/usr/include/lua5.1"
1979 LUA_INCLUDE="${LUA_INCLUDE} -I${LUA_DIR}/lua5.1"
1983 # Some distributions (like SuSE) remove the 5.1 suffix.
1984 AST_EXT_LIB_CHECK([LUA], [lua], [luaL_register], [lua.h], [-lm])
1986 AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
1988 AST_EXT_LIB_CHECK([COROSYNC], [cpg], [cpg_join], [corosync/cpg.h], [-lcfg])
1990 AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
1992 # See if the main speex library contains the preprocess functions
1993 AST_EXT_LIB_CHECK([SPEEX_PREPROCESS], [speex], [speex_preprocess_ctl], [speex/speex.h], [-lm])
1994 if test "${PBX_SPEEX_PREPROCESS}" = 1; then
1995 PBX_SPEEX_PREPROCESS=1
1998 AST_EXT_LIB_CHECK([SPEEXDSP], [speexdsp], [speex_preprocess_ctl], [speex/speex.h], [-lm])
1999 if test "${PBX_SPEEXDSP}" = 1; then
2000 PBX_SPEEX_PREPROCESS=1
2003 AC_SUBST(PBX_SPEEX_PREPROCESS)
2005 AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
2007 AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
2009 if test "${PBX_SQLITE3}" != 1; then
2010 AC_MSG_WARN(*** Asterisk now uses SQLite3 for the internal Asterisk database.)
2011 AC_MSG_WARN(*** Please install the SQLite3 development package.)
2015 AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
2017 if test "$PBX_CRYPTO" = "1";
2019 AST_EXT_LIB_CHECK([OPENSSL], [ssl], [SSL_connect], [openssl/ssl.h], [-lcrypto])
2022 if test "$PBX_OPENSSL" = "1";
2024 AST_CHECK_OSPTK([4], [0], [0])
2027 AST_EXT_LIB_CHECK([SRTP], [srtp], [srtp_init], [srtp/srtp.h])
2029 if test "$PBX_SRTP" = "1";
2031 saved_libs="${LIBS}"
2032 saved_ldflags="${LDFLAGS}"
2033 saved_cflags="${CFLAGS}"
2034 LIBS="${LIBS} ${SRTP_LIB}"
2035 LDFLAGS="${LDFLAGS} -shared -fPIC"
2036 CFLAGS="${CFLAGS} ${SRTP_INCLUDE}"
2037 AC_MSG_CHECKING(for the ability of -lsrtp to be linked in a shared object)
2041 [#include <srtp/srtp.h>],
2045 [ AC_MSG_RESULT(yes) ],
2049 AC_MSG_WARN(*** libsrtp could not be linked as a shared object.)
2050 AC_MSG_WARN(*** Try compiling libsrtp manually. Configure libsrtp)
2051 AC_MSG_WARN(*** with ./configure CFLAGS=-fPIC --prefix=/usr)
2052 AC_MSG_WARN(*** replacing /usr with the prefix of your choice.)
2053 AC_MSG_WARN(*** After re-installing libsrtp, re-run the Asterisk)
2054 AC_MSG_WARN(*** configure script.)
2056 AC_MSG_WARN(*** If you do not need SRTP support re-run configure)
2057 AC_MSG_WARN(*** with the --without-srtp option.)
2061 LIBS="${saved_libs}"
2062 LDFLAGS="${saved_ldflags}"
2063 CFLAGS="${saved_cflags}"
2066 AST_EXT_TOOL_CHECK([GMIME], [gmime-config], [], [], [#include <gmime/gmime.h>], [gboolean q = g_mime_check_version(0,0,0);])
2067 if test "x${PBX_GMIME}" = "x0" -a "${PKGCONFIG}" != "No"; then
2068 # Later versions of GMime use pkg-config
2069 for ver in 2.0 2.2 2.4; do
2070 if ! ${PKGCONFIG} --exists gmime-$ver; then
2073 # If we got here, we have this version:
2074 GMIME_INCLUDE=$(${PKGCONFIG} gmime-$ver --cflags 2>/dev/null)
2075 GMIME_LIB=$(${PKGCONFIG} gmime-$ver --libs)
2077 AC_DEFINE([HAVE_GMIME], 1, [Define if your system has the GMIME libraries.])
2082 AST_EXT_LIB_CHECK([HOARD], [hoard], [malloc], [])
2084 AST_EXT_LIB_CHECK([FREETDS], [sybdb], [dbinit], [sybdb.h])
2086 AC_CHECK_LIB([tonezone], [tone_zone_find_by_num], tonezone_does_not_need_lm=yes, tonezone_does_not_need_lm=no)
2088 if test "${tonezone_does_not_need_lm}" = "no" ; then
2089 tonezone_extra="-lm"
2092 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [dahdi/tonezone.h], [${tonezone_extra} ${DAHDI_INCLUDE}])
2094 AST_EXT_LIB_CHECK([USB], [usb], [usb_init], [usb.h], [])
2096 if test "${OSARCH}" = "OpenBSD";
2098 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -lvorbisfile -logg])
2100 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -lvorbisfile])
2102 AST_C_DECLARE_CHECK([VORBIS_OPEN_CALLBACKS], [OV_CALLBACKS_NOCLOSE], [vorbis/vorbisfile.h])
2106 if test "${USE_VPB}" != "no"; then
2107 AC_MSG_CHECKING(for vpb_open in -lvpb)
2108 saved_libs="${LIBS}"
2109 saved_cppflags="${CPPFLAGS}"
2110 if test "x${VPB_DIR}" != "x"; then
2111 if test -d ${VPB_DIR}/lib; then
2112 vpblibdir=${VPB_DIR}/lib
2114 vpblibdir=${VPB_DIR}
2116 LIBS="${LIBS} -L${vpblibdir}"
2117 CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
2119 LIBS="${PTHREAD_LIBS} ${LIBS} -lvpb"
2120 CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS}"
2124 [#include <vpbapi.h>],
2125 [int q = vpb_open(0,0);])
2127 [ AC_MSG_RESULT(yes)
2128 ac_cv_lib_vpb_vpb_open="yes"
2131 ac_cv_lib_vpb_vpb_open="no"
2134 LIBS="${saved_libs}"
2135 CPPFLAGS="${saved_cppflags}"
2136 if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
2138 if test "${VPB_DIR}" != ""; then
2139 VPB_LIB="-L${vpblibdir} ${VPB_LIB}"
2140 VPB_INCLUDE="-I${VPB_DIR}/include"
2143 AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
2149 AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
2151 if test "x${PBX_UNIXODBC}" = "x1" -o "x${PBX_IODBC}" = "x1"; then
2152 # Does ODBC support wide characters?
2153 AC_MSG_CHECKING(whether ODBC has support for Unicode types)
2157 #include <sqlext.h>],
2158 [int foo = SQL_WCHAR])],
2160 AC_DEFINE([HAVE_ODBC_WCHAR], [1], [Define to 1 if your ODBC library has wide (Unicode) types.]),
2165 AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
2168 AC_CHECK_HEADER([linux/compiler.h],
2169 [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
2171 AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
2172 #include <linux/version.h>
2173 #ifdef HAVE_LINUX_COMPILER_H
2174 #include <linux/compiler.h>
2177 AC_SUBST(PBX_IXJUSER)
2179 # Used in res/res_pktccops
2180 AST_C_DEFINE_CHECK([MSG_NOSIGNAL], [MSG_NOSIGNAL], [sys/socket.h])
2181 AST_C_DEFINE_CHECK([SO_NOSIGPIPE], [SO_NOSIGPIPE], [sys/socket.h])
2183 AST_EXT_TOOL_CHECK([SDL], [sdl-config])
2184 AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL_image.h], [${SDL_LIB}], [${SDL_INCLUDE}])
2185 AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [${PTHREAD_LIBS} -lz -lm], [${PTHREAD_CFLAGS}])
2187 # possible places for video4linux version 1
2188 AC_CHECK_HEADER([linux/videodev.h],
2189 [AC_DEFINE_UNQUOTED([HAVE_VIDEODEV_H], 1, [Define to 1 if your system has linux/videodev.h.])])
2191 # possible places for X11
2192 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],,, [standard_path])
2193 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],, [-I/usr/X11R6/include], [X11R6])
2196 if test "${cross_compiling}" = "no";
2198 AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
2201 AC_SUBST(PBX_LAUNCHD)
2204 if test "${PKGCONFIG}" != "No"; then
2205 GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
2206 GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
2208 AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
2211 AC_SUBST(GTK2_INCLUDE)
2214 # build a GENERIC_ODBC result based on the presence of either UnixODBC (preferred)
2219 if test "${PBX_UNIXODBC}" = 1; then
2221 GENERIC_ODBC_LIB="${UNIXODBC_LIB}"
2222 GENERIC_ODBC_INCLUDE="${UNIXODBC_INCLUDE}"
2223 elif test "${PBX_IODBC}" = 1; then
2225 GENERIC_ODBC_LIB="${IODBC_LIB}"
2226 GENERIC_ODBC_INCLUDE="${IODBC_INCLUDE}"
2229 AC_SUBST([GENERIC_ODBC_LIB])
2230 AC_SUBST([GENERIC_ODBC_INCLUDE])
2231 AC_SUBST([PBX_GENERIC_ODBC])
2235 if test "${ac_cv_header_syslog_h}" = "yes"; then
2237 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTH], [LOG_AUTH], [syslog.h])
2238 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTHPRIV], [LOG_AUTHPRIV], [syslog.h])
2239 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_CRON], [LOG_CRON], [syslog.h])
2240 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_DAEMON], [LOG_DAEMON], [syslog.h])
2241 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_FTP], [LOG_FTP], [syslog.h])
2242 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_KERN], [LOG_KERN], [syslog.h])
2243 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_LPR], [LOG_LPR], [syslog.h])
2244 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_MAIL], [LOG_MAIL], [syslog.h])
2245 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_NEWS], [LOG_NEWS], [syslog.h])
2246 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_SYSLOG], [LOG_SYSLOG], [syslog.h])
2247 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_UUCP], [LOG_UUCP], [syslog.h])
2251 AC_SUBST([PBX_SYSLOG])
2253 if test -f makeopts; then
2254 ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak
2256 touch makeopts.acbak
2259 AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
2262 if test -f build_tools/menuselect-deps; then
2263 # extract old values of all PBX_ variables from menuselect-deps
2264 # and preserve them so that menuselect can determine whether
2265 # any previously-met dependencies are no longer met and warn
2266 # the user appropriately
2267 while IFS="=:" read var val old_val; do
2268 eval "PBX_${var}=\${PBX_${var}}:${val}"
2269 done < build_tools/menuselect-deps
2274 ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2
2275 if test "x${ac_cv_path_CMP}" = "x:"; then
2276 ( cd `pwd`/menuselect && ./configure )
2277 else if ${ac_cv_path_CMP} -s makeopts.acbak makeopts.acbak2; then : ; else
2278 ( cd `pwd`/menuselect && ./configure )
2281 rm makeopts.acbak makeopts.acbak2
2284 if test "x${silent}" != "xyes" ; then
2286 echo " .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=.. "
2287 echo " .\$7\$7.. .7\$\$7:. "
2288 echo " .\$\$:. ,\$7.7 "
2289 echo " .\$7. 7\$\$\$\$ .\$\$77 "
2290 echo " ..\$\$. \$\$\$\$\$ .\$\$\$7 "
2291 echo " ..7\$ .?. \$\$\$\$\$ .?. 7\$\$\$."
2292 echo " \$.\$. .\$\$\$7. \$\$\$\$7 .7\$\$\$. .\$\$\$."
2293 echo " .777. .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7. \$\$\$,"
2294 echo " \$\$\$~ .7\$\$\$\$\$\$\$\$\$\$\$\$\$7. .\$\$\$."
2295 echo ".\$\$7 .7\$\$\$\$\$\$\$7: ?\$\$\$."
2296 echo "\$\$\$ ?7\$\$\$\$\$\$\$\$\$\$I .\$\$\$7 "
2297 echo "\$\$\$ .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$ :\$\$\$. "
2298 echo "\$\$\$ \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$ .\$\$\$. "
2299 echo "\$\$\$ \$\$\$ 7\$\$\$7 .\$\$\$ .\$\$\$. "
2300 echo "\$\$\$\$ \$\$\$\$7 .\$\$\$. "
2301 echo "7\$\$\$7 7\$\$\$\$ 7\$\$\$ "
2302 echo " \$\$\$\$\$ \$\$\$ "
2303 echo " \$\$\$\$7. \$\$ (TM) "
2304 echo " \$\$\$\$\$\$\$. .7\$\$\$\$\$\$ \$\$ "
2305 echo " \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$ "
2306 echo " \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$. "
2310 AC_MSG_NOTICE(Package configured for: )
2311 AC_MSG_NOTICE( OS type : $host_os)
2312 AC_MSG_NOTICE( Host CPU : $host_cpu)
2313 AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :)
2314 AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :)
2315 if test "${cross_compiling}" = "yes"; then
2316 AC_MSG_NOTICE( Cross Compilation = YES)