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 ;;
348 AST_DEVMODE_STRICT=yes
350 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode) ;;
352 AC_SUBST(NOISY_BUILD)
353 AC_SUBST(AST_DEVMODE)
354 AC_SUBST(AST_DEVMODE_STRICT)
357 AC_ARG_ENABLE([coverage],
358 [AS_HELP_STRING([--enable-coverage],
359 [Turn on code coverage tracking (for gcov)])],
360 [case "${enableval}" in
361 y|ye|yes) AST_CODE_COVERAGE=yes ;;
362 n|no) AST_CODE_COVERAGE=no ;;
363 *) AC_MSG_ERROR(bad value ${enableval} for --enable-coverage) ;;
365 AC_SUBST(AST_CODE_COVERAGE)
367 # AST_EXT_LIB_SETUP is used to tell configure to handle variables for
369 # $1 is the prefix for the variables in makeopts and autoconfig.h
370 # $2 is the short comment, $4 is the long comment
371 # $3 is the name used in --with- or --without- flags for configure.
373 # Package option names should be in alphabetical order
374 # by the --with option name (the third field),
375 # to make things easier for the users.
377 AST_EXT_LIB_SETUP([ALSA], [Advanced Linux Sound Architecture], [asound])
378 AST_EXT_LIB_SETUP([BFD], [Debug symbol decoding], [bfd])
380 # BKTR is used for backtrace support on platforms that do not
382 AST_EXT_LIB_SETUP([BKTR], [Stack Backtrace], [execinfo])
383 AST_EXT_LIB_SETUP([BLUETOOTH], [Bluetooth], [bluetooth])
384 AST_EXT_LIB_SETUP([CAP], [POSIX 1.e capabilities], [cap])
385 AST_EXT_LIB_SETUP([COROSYNC], [Corosync], [cpg])
386 AST_EXT_LIB_SETUP([CURSES], [curses], [curses])
387 AST_EXT_LIB_SETUP([CRYPTO], [OpenSSL Cryptography], [crypto])
388 AST_EXT_LIB_SETUP([DAHDI], [DAHDI], [dahdi])
389 AST_EXT_LIB_SETUP([FFMPEG], [Ffmpeg and avcodec], [avcodec])
390 AST_EXT_LIB_SETUP([GSM], [External GSM], [gsm], [, use 'internal' GSM otherwise])
391 AST_EXT_LIB_SETUP([GTK2], [gtk2], [gtk2])
392 AST_EXT_LIB_SETUP([GMIME], [GMime], [gmime])
393 AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
394 AST_EXT_LIB_SETUP([HOARD], [Hoard Memory Allocator], [hoard])
395 AST_EXT_LIB_SETUP([ICAL], [iCal], [ical])
396 AST_EXT_LIB_SETUP([ICONV], [Iconv], [iconv])
397 AST_EXT_LIB_SETUP([IKSEMEL], [Iksemel Jabber], [iksemel])
398 AST_EXT_LIB_SETUP([IMAP_TK], [UW IMAP Toolkit], [imap])
399 AST_EXT_LIB_SETUP([INOTIFY], [inotify support], [inotify])
400 AST_EXT_LIB_SETUP([IODBC], [iODBC], [iodbc])
401 AST_EXT_LIB_SETUP([ISDNNET], [ISDN4Linux], [isdnnet])
402 AST_EXT_LIB_SETUP([JACK], [Jack Audio Connection Kit], [jack])
403 AST_EXT_LIB_SETUP([KQUEUE], [kqueue support], [kqueue])
404 AST_EXT_LIB_SETUP([LDAP], [OpenLDAP], [ldap])
405 AST_LIBCURL_CHECK_CONFIG([], [7.10.1])
406 AST_EXT_LIB_SETUP([LIBXML2], [LibXML2], [libxml2])
407 AST_EXT_LIB_SETUP([LTDL], [libtool], [ltdl])
408 AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
409 AST_EXT_LIB_SETUP([MISDN], [mISDN user], [misdn])
410 AST_EXT_LIB_SETUP([MYSQLCLIENT], [MySQL client], [mysqlclient])
411 AST_EXT_LIB_SETUP([NBS], [Network Broadcast Sound], [nbs])
412 AST_EXT_LIB_SETUP([NCURSES], [ncurses], [ncurses])
413 AST_EXT_LIB_SETUP([NEON], [neon], [neon])
414 AST_EXT_LIB_SETUP([NEON29], [neon29], [neon29])
415 AST_EXT_LIB_SETUP([NETSNMP], [Net-SNMP], [netsnmp])
416 AST_EXT_LIB_SETUP([NEWT], [newt], [newt])
417 AST_EXT_LIB_SETUP([OGG], [OGG], [ogg])
418 AST_EXT_LIB_SETUP([OPENR2], [MFR2], [openr2])
419 AST_EXT_LIB_SETUP([OSPTK], [OSP Toolkit], [osptk])
420 AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
421 AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
422 AST_EXT_LIB_SETUP([POPT], [popt], [popt])
423 AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
424 AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
425 AST_EXT_LIB_SETUP_OPTIONAL([PRI_L2_PERSISTENCE], [ISDN Layer 2 persistence option], [PRI], [pri])
426 AST_EXT_LIB_SETUP_OPTIONAL([PRI_DATETIME_SEND], [ISDN PRI Date/time ie send policy], [PRI], [pri])
427 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI_V2], [ISDN PRI Message Waiting Indication (Fixed)], [PRI], [pri])
428 AST_EXT_LIB_SETUP_OPTIONAL([PRI_DISPLAY_TEXT], [ISDN PRI user display text IE contents during call], [PRI], [pri])
429 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI], [ISDN PRI Message Waiting Indication], [PRI], [pri])
430 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MCID], [ISDN PRI Malicious Call ID], [PRI], [pri])
431 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_WAITING], [ISDN PRI call waiting supplementary service], [PRI], [pri])
432 AST_EXT_LIB_SETUP_OPTIONAL([PRI_AOC_EVENTS], [ISDN PRI advice of charge supplementary service events], [PRI], [pri])
433 AST_EXT_LIB_SETUP_OPTIONAL([PRI_TRANSFER], [ISDN PRI call transfer supplementary service], [PRI], [pri])
434 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CCSS], [ISDN PRI call completion supplementary service], [PRI], [pri])
435 AST_EXT_LIB_SETUP_OPTIONAL([PRI_HANGUP_FIX], [ISDN PRI hangup fix], [PRI], [pri])
436 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SUBADDR], [ISDN PRI subaddressing], [PRI], [pri])
437 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_HOLD], [ISDN PRI call hold], [PRI], [pri])
438 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_REROUTING], [ISDN PRI call rerouting and call deflection], [PRI], [pri])
439 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SETUP_KEYPAD], [ISDN PRI keypad facility in SETUP], [PRI], [pri])
440 # ------------------------------------v
441 # TODO: The code can be changed to always include these features now.
442 # These features will always be present if pri_connected_line_update is available.
443 AST_EXT_LIB_SETUP_OPTIONAL([PRI_INBANDDISCONNECT], [ISDN PRI set_inbanddisconnect], [PRI], [pri])
444 AST_EXT_LIB_SETUP_OPTIONAL([PRI_PROG_W_CAUSE], [ISDN progress with cause], [PRI], [pri])
445 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SERVICE_MESSAGES], [ISDN service messages], [PRI], [pri])
446 AST_EXT_LIB_SETUP_OPTIONAL([PRI_REVERSE_CHARGE], [ISDN reverse charge], [PRI], [pri])
447 # ------------------------------------^
448 AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
449 AST_EXT_LIB_SETUP([RADIUS], [Radius Client], [radius])
450 AST_EXT_LIB_SETUP([RESAMPLE], [LIBRESAMPLE], [resample])
451 AST_EXT_LIB_SETUP([SDL], [Sdl], [sdl])
452 AST_EXT_LIB_SETUP([SDL_IMAGE], [Sdl Image], [SDL_image])
453 AST_OPTION_ONLY([sounds-cache], [SOUNDS_CACHE_DIR], [cached sound tarfiles], [])
454 AST_EXT_LIB_SETUP([SPANDSP], [SPANDSP], [spandsp])
455 AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
456 AST_EXT_LIB_SETUP([SPEEX], [Speex], [speex])
457 AST_EXT_LIB_SETUP([SPEEX_PREPROCESS], [Speex preprocess routines], [speex])
458 AST_EXT_LIB_SETUP([SPEEXDSP], [SpeexDSP], [speexdsp])
459 AST_EXT_LIB_SETUP_DEPENDENT([SPEEX_PREPROCESS], [speex_preprocess_ctl], [], [speex])
460 AST_EXT_LIB_SETUP([SQLITE], [SQLite], [sqlite])
461 AST_EXT_LIB_SETUP([SQLITE3], [SQLite], [sqlite3])
462 AST_EXT_LIB_SETUP([SRTP], [Secure RTP], [srtp])
463 AST_EXT_LIB_SETUP([OPENSSL], [OpenSSL Secure Sockets Layer], [ssl])
464 AST_EXT_LIB_SETUP([SUPPSERV], [mISDN Supplemental Services], [suppserv])
465 AST_EXT_LIB_SETUP([FREETDS], [FreeTDS], [tds])
466 AST_EXT_LIB_SETUP([TERMCAP], [Termcap], [termcap])
467 AST_EXT_LIB_SETUP([TIMERFD], [timerfd], [timerfd])
468 AST_EXT_LIB_SETUP([TINFO], [Term Info], [tinfo])
469 AST_EXT_LIB_SETUP([TONEZONE], [tonezone], [tonezone])
470 AST_EXT_LIB_SETUP([UNIXODBC], [unixODBC], [unixodbc])
471 AST_EXT_LIB_SETUP([VORBIS], [Vorbis], [vorbis])
472 AST_EXT_LIB_SETUP([VPB], [Voicetronix API], [vpb])
473 AST_EXT_LIB_SETUP([X11], [X11], [x11])
474 AST_EXT_LIB_SETUP([ZLIB], [zlib compression], [z])
476 # check for basic system features and functionality before
477 # checking for package libraries
483 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])
485 # Any one of these 4 packages support a mandatory requirement, so we want to check on them as early as possible.
486 AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
487 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
488 AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
489 AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
492 if test "x$TERMCAP_LIB" != "x" ; then
493 EDITLINE_LIB="$TERMCAP_LIB"
494 elif test "x$TINFO_LIB" != "x" ; then
495 EDITLINE_LIB="$TINFO_LIB"
496 elif test "x$CURSES_LIB" != "x" ; then
497 EDITLINE_LIB="$CURSES_LIB"
498 elif test "x$NCURSES_LIB" != "x" ; then
499 EDITLINE_LIB="$NCURSES_LIB"
501 AC_MSG_ERROR([*** termcap support not found (on modern systems, this typically means the ncurses development package is missing)])
503 AC_SUBST(EDITLINE_LIB)
505 # Another mandatory item (unless it's explicitly disabled)
506 AC_ARG_ENABLE([xmldoc],
507 [AS_HELP_STRING([--disable-xmldoc],
508 [Explicitly disable XML documentation])],
509 [case "${enableval}" in
510 y|ye|yes) disable_xmldoc=no ;;
511 n|no) disable_xmldoc=yes ;;
512 *) AC_MSG_ERROR(bad value ${enableval} for --disable-xmldoc) ;;
513 esac], [disable_xmldoc=no])
515 if test "${disable_xmldoc}" != "yes"; then
516 AST_EXT_TOOL_CHECK([LIBXML2], [xml2-config], , ,
517 [#include <libxml/tree.h>
518 #include <libxml/parser.h>],
519 [LIBXML_TEST_VERSION])
520 if test "${PBX_LIBXML2}" != 1; then
521 AC_MSG_NOTICE(*** XML documentation will not be available because the 'libxml2' development package is missing.)
522 AC_MSG_NOTICE(*** Please run the 'configure' script with the '--disable-xmldoc' parameter option)
523 AC_MSG_NOTICE(*** or install the 'libxml2' development package.)
528 # some embedded systems omit internationalization (locale) support
529 AC_CHECK_HEADERS([xlocale.h])
531 AC_CHECK_HEADERS([winsock.h winsock2.h])
533 AC_CHECK_HEADER([sys/poll.h],
535 AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.]))
539 # Checks for typedefs, structures, and compiler characteristics.
544 AC_TYPE_LONG_DOUBLE_WIDER
549 AC_CHECK_MEMBERS([struct stat.st_blksize])
550 AC_CHECK_MEMBERS([struct ucred.uid, struct ucred.cr_uid, struct sockpeercred.uid], [], [], [#include <sys/types.h>
551 #include <sys/socket.h> ])
552 AC_CHECK_MEMBERS([struct ifreq.ifr_ifru.ifru_hwaddr], [], [], [#include <net/if.h>])
556 AC_CHECK_TYPES([ptrdiff_t])
558 # Checks for library functions.
560 AC_FUNC_CLOSEDIR_VOID
561 AC_FUNC_ERROR_AT_LINE
564 AC_PROG_GCC_TRADITIONAL
565 # XXX: these are commented out until we determine whether it matters if our malloc()
566 # acts exactly like glibc's or not
571 AC_FUNC_SELECT_ARGTYPES
572 AC_FUNC_SETVBUF_REVERSED
581 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])
583 # NOTE: we use AC_CHECK_LIB to get -lm into the arguments for later checks,
584 # so that AC_CHECK_FUNCS can detect functions in that library.
585 AC_CHECK_LIB([m], [sqrt])
586 # BSD might not have exp2, and/or log2
587 AC_CHECK_FUNCS([exp2 log2 exp10 log10 sin cos tan asin acos atan atan2 pow rint exp log remainder fmod round trunc floor ceil])
589 # Certain architectures don't really have long double, even though
590 # AC_CHECK_FUNCS would otherwise find the following functions.
591 if test "x${ac_cv_type_long_double_wider}" = "xyes" ; then
592 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])
595 AC_MSG_CHECKING(for LLONG_MAX in limits.h)
597 [AC_LANG_PROGRAM([#include <limits.h>],
598 [long long foo = LLONG_MAX])],
600 AC_DEFINE([HAVE_LLONG_MAX], 1, [Define to 1 if limits.h includes a LLONG_MAX definition.]),
604 AC_MSG_CHECKING(for timersub in time.h)
606 [AC_LANG_PROGRAM([#include <sys/time.h>],
607 [struct timeval *a; timersub(a, a, a);])],
609 AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
613 AC_MSG_CHECKING(for a version of GNU ld that supports the --dynamic-list flag)
614 old_LDFLAGS=${LDFLAGS}
615 cat >conftest.dynamics <<_ACEOF
620 LDFLAGS="${LDFLAGS} -Wl,--dynamic-list,conftest.dynamics"
623 [AC_LANG_PROGRAM([], [])],
628 AC_SUBST(PBX_DYNAMIC_LIST)
629 LDFLAGS=${old_LDFLAGS}
630 rm -f conftest.dynamics
632 AC_CHECK_HEADER([sys/poll.h],
634 AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
637 AC_ARG_ENABLE([internal-poll],
638 [AS_HELP_STRING([--enable-internal-poll],
639 [Use Asterisk's poll implementation])],
640 [case "${enableval}" in
641 y|ye|yes) HAS_POLL="";;
642 n|no) HAS_POLL="${HAS_POLL}" ;;
643 *) AC_MSG_ERROR(bad value ${enableval} for --enable-internal-poll) ;;
647 AC_ARG_ENABLE([asteriskssl],
648 [AS_HELP_STRING([--disable-asteriskssl],
649 [Disable Asterisk's SSL wrapper library])],
650 [case "${enableval}" in
651 y|ye|yes) AST_ASTERISKSSL=yes ;;
652 n|no) AST_ASTERISKSSL=no ;;
653 *) AC_MSG_ERROR(bad value ${enableval} for --disable-asteriskssl) ;;
654 esac], [AST_ASTERISKSSL=yes])
655 AC_SUBST(AST_ASTERISKSSL)
657 # https support (in main/http.c) uses funopen on BSD systems,
658 # fopencookie on linux
659 AC_CHECK_FUNCS([funopen fopencookie])
661 AC_CHECK_FUNCS([inet_aton])
663 # check if we have IP_PKTINFO constant defined
664 AC_MSG_CHECKING(for IP_PKTINFO)
666 [AC_LANG_PROGRAM([#include <netinet/in.h>],
667 [int pi = IP_PKTINFO;])],
669 AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
673 # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
674 AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
676 AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
678 [AC_LANG_PROGRAM([#include <stdlib.h>
680 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);])],
682 AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
686 AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
688 [AC_LANG_PROGRAM([#include <stdlib.h>
690 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);])],
692 AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
696 AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
698 AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
700 [AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);])],
702 AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
706 AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
708 [AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);])],
710 AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
714 if test "${cross_compiling}" = "no";
716 AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
719 AC_MSG_CHECKING(for locale_t in locale.h)
721 [AC_LANG_PROGRAM([#include <locale.h>], [locale_t lt = NULL])],
723 AC_DEFINE([HAVE_LOCALE_T_IN_LOCALE_H], 1, [Define to 1 if your system defines the locale_t type in locale.h]),
725 AC_MSG_CHECKING(for locale_t in xlocale.h)
727 [AC_LANG_PROGRAM([#include <xlocale.h>], [locale_t lt = NULL])],
729 AC_DEFINE([HAVE_LOCALE_T_IN_XLOCALE_H], 1, [Define to 1 if your system defines the locale_t type in xlocale.h]),
734 AC_MSG_CHECKING(for O_EVTONLY in fcntl.h)
736 [AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_EVTONLY;])],
738 AC_DEFINE([HAVE_O_EVTONLY], 1, [Define to 1 if your system defines the file flag O_EVTONLY in fcntl.h]),
742 AC_MSG_CHECKING(for O_SYMLINK in fcntl.h)
744 [AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_SYMLINK;])],
746 AC_DEFINE([HAVE_O_SYMLINK], 1, [Define to 1 if your system defines the file flag O_SYMLINK in fcntl.h]),
750 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
752 AC_MSG_CHECKING(for PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h)
754 [AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_RWLOCK_PREFER_WRITER_NP;])],
756 AC_DEFINE([HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP], 1, [Define to 1 if your system defines PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h]),
760 AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE_NP in pthread.h)
762 [AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_MUTEX_RECURSIVE_NP;])],
764 AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1, [Define to 1 if your system defines PTHREAD_MUTEX_RECURSIVE_NP in pthread.h]),
768 AC_MSG_CHECKING(for pthread_rwlock_timedwrlock() in pthread.h)
770 save_CFLAGS="$CFLAGS"
771 LIBS="$PTHREAD_LIBS $LIBS"
772 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
775 [#include <pthread.h>
777 [pthread_rwlock_t foo; struct timespec bar; pthread_rwlock_timedwrlock(&foo, &bar)])
780 ac_cv_pthread_rwlock_timedwrlock="yes"
783 ac_cv_pthread_rwlock_timedwrlock="no"
787 CFLAGS="$save_CFLAGS"
788 if test "${ac_cv_pthread_rwlock_timedwrlock}" = "yes"; then
789 AC_DEFINE([HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK], 1, [Define if your system has pthread_rwlock_timedwrlock()])
792 AC_MSG_CHECKING(if PTHREAD_ONCE_INIT needs braces)
793 saved_CFLAGS="${CFLAGS}"
794 CFLAGS="${CFLAGS} -Werror -Wmissing-braces"
797 [#include <pthread.h>
799 [pthread_once_t once = PTHREAD_ONCE_INIT; pthread_once(&once, empty);])
802 ac_cv_pthread_once_needsbraces="no"
805 ac_cv_pthread_once_needsbraces="yes"
808 CFLAGS="${saved_CFLAGS}"
809 if test "${ac_cv_pthread_once_needsbraces}" = "yes"; then
810 AC_DEFINE([PTHREAD_ONCE_INIT_NEEDS_BRACES], 1, [Define if your system needs braces around PTHREAD_ONCE_INIT])
813 AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
815 # Can we compare a mutex to its initial value?
816 # Generally yes on OpenBSD/FreeBSD and no on Mac OS X.
817 AC_MSG_CHECKING(whether we can compare a mutex to its initial value)
819 [AC_LANG_PROGRAM([#include <pthread.h>], [pthread_mutex_t lock;
820 if ((lock) != ((pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER)) {
825 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.]),
829 #if test "${cross_compiling}" = "no";
831 #AC_MSG_CHECKING(for working epoll support)
833 #AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
839 #AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
844 # for FreeBSD thr_self
845 AC_CHECK_HEADERS([sys/thr.h])
847 AC_MSG_CHECKING(for compiler atomic operations)
849 [AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);])],
851 AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
855 # glibc, AFAIK, is the only C library that makes printing a NULL to a string safe.
856 AC_MSG_CHECKING([if your system printf is NULL-safe.])
858 [AC_LANG_PROGRAM([#include <stdio.h>],
859 [printf("%s", NULL)])],
860 AC_DEFINE([HAVE_NULLSAFE_PRINTF], 1, [Define to 1 if your C library can safely print NULL to string formats.])
863 # It's unlikely an embedded system will have this.
864 AC_MSG_RESULT(unknown)
867 AC_MSG_CHECKING(if we can increase the maximum select-able file descriptor)
871 #include <sys/select.h>
872 #include <sys/time.h>
873 #include <sys/resource.h>
877 #include <sys/types.h>
878 #include <sys/stat.h>
882 struct rlimit rlim = { FD_SETSIZE * 2, FD_SETSIZE * 2 };
884 struct timeval tv = { 0, };
885 struct ast_fdset { long fds_bits[[1024]]; } fds = { { 0, } };
886 if (setrlimit(RLIMIT_NOFILE, &rlim)) { exit(1); }
887 if ((fd0 = open("/dev/null", O_RDONLY)) < 0) { exit(1); }
888 if (dup2(fd0, (fd1 = FD_SETSIZE + 1)) < 0) { exit(1); }
889 FD_SET(fd0, (fd_set *) &fds);
890 FD_SET(fd1, (fd_set *) &fds);
891 if (select(FD_SETSIZE + 2, (fd_set *) &fds, NULL, NULL, &tv) < 0) { exit(1); }
894 AC_DEFINE([HAVE_VARIABLE_FDSET], 1, [Define to 1 if your system can support larger than default select bitmasks.]),
896 AC_MSG_RESULT(cross-compile)
899 if test "${ac_cv_have_variable_fdset}x" = "0x"; then
903 #include <sys/types.h>
905 ], [if (getuid() != 0) { exit(1); }])],
906 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.]))
909 AST_GCC_ATTRIBUTE(pure)
910 AST_GCC_ATTRIBUTE(malloc)
911 AST_GCC_ATTRIBUTE(const)
912 AST_GCC_ATTRIBUTE(unused)
913 AST_GCC_ATTRIBUTE(always_inline)
914 AST_GCC_ATTRIBUTE(deprecated)
915 AST_GCC_ATTRIBUTE(sentinel)
916 AST_GCC_ATTRIBUTE(warn_unused_result)
918 # Support weak symbols on a platform specific basis. The Mac OS X
919 # (Darwin) support must be isolated from the other platforms because
920 # it has caused other platforms to fail.
924 # Allow weak symbol support on Darwin platforms only because there
925 # is active community support for it.
926 # However, Darwin seems to break weak symbols for each new version.
928 AST_GCC_ATTRIBUTE(weak_import, [], [], PBX_WEAKREF)
930 # Several other platforms including Linux have GCC versions that
931 # define the weak attribute. However, this attribute is only
932 # setup for use in the code by Darwin.
933 AST_GCC_ATTRIBUTE(weak, [], [], PBX_WEAKREF)
936 # Primarily support weak symbols on Linux platforms.
938 AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
941 # Allow weak symbols on other platforms. However, any problems
942 # with this feature on other platforms must be fixed by the
945 AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
949 AC_MSG_CHECKING(for -ffunction-sections support)
950 saved_CFLAGS="${CFLAGS}"
951 CFLAGS="${CFLAGS} -ffunction-sections"
953 [AC_LANG_PROGRAM([], [int x = 1;])],
955 [saved_LDFLAGS="${LDFLAGS}"]
956 [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
957 AC_MSG_CHECKING(for --gc-sections support)
959 [AC_LANG_PROGRAM([], [int x = 1;])],
961 [GC_CFLAGS="-ffunction-sections"]
962 [[GC_LDFLAGS="-Wl,--gc-sections"]],
965 [LDFLAGS="${saved_LDFLAGS}"],
968 CFLAGS="${saved_CFLAGS}"
972 AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
973 if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
975 AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
978 AST_DECLARATION_AFTER_STATEMENT=
980 AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
982 AC_MSG_CHECKING(for _FORTIFY_SOURCE support)
983 if $(${CC} -D_FORTIFY_SOURCE=2 -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
985 AST_FORTIFY_SOURCE=-D_FORTIFY_SOURCE=2
990 AC_SUBST(AST_FORTIFY_SOURCE)
992 AC_MSG_CHECKING(for -fno-strict-overflow)
993 if $(${CC} -O2 -fno-strict-overflow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
995 AST_NO_STRICT_OVERFLOW=-fno-strict-overflow
998 AST_NO_STRICT_OVERFLOW=
1000 AC_SUBST(AST_NO_STRICT_OVERFLOW)
1002 AC_MSG_CHECKING(for -Wshadow)
1003 if $(${CC} -Wshadow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
1005 AST_SHADOW_WARNINGS=-Wshadow
1008 AST_SHADOW_WARNINGS=
1010 AC_SUBST(AST_SHADOW_WARNINGS)
1012 AC_MSG_CHECKING(for -march=native)
1013 if $(${CC} -march=native -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
1015 AST_MARCH_NATIVE="-march=native"
1020 AC_SUBST(AST_MARCH_NATIVE)
1022 AC_MSG_CHECKING(for sysinfo)
1024 [AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
1025 [struct sysinfo sys_info; int uptime = sys_info.uptime])],
1027 AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
1031 AC_SEARCH_LIBS(res_9_ninit, resolv)
1032 AC_MSG_CHECKING(for res_ninit)
1035 #ifdef HAVE_SYS_SOCKET_H
1036 #include <sys/socket.h>
1038 #ifdef HAVE_NETINET_IN_H
1039 #include <netinet/in.h>
1041 #ifdef HAVE_ARPA_NAMESER_H
1042 #include <arpa/nameser.h>
1044 #include <resolv.h>],
1045 [int foo = res_ninit(NULL);])],
1047 AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
1048 AC_SEARCH_LIBS(res_9_ndestroy, resolv)
1049 AC_MSG_CHECKING(for res_ndestroy)
1052 #ifdef HAVE_SYS_SOCKET_H
1053 #include <sys/socket.h>
1055 #ifdef HAVE_NETINET_IN_H
1056 #include <netinet/in.h>
1058 #ifdef HAVE_ARPA_NAMESER_H
1059 #include <arpa/nameser.h>
1061 #include <resolv.h>],
1062 [res_ndestroy(NULL);])],
1064 AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
1067 AC_SEARCH_LIBS(res_9_close, resolv)
1068 AC_MSG_CHECKING(for res_close)
1071 #ifdef HAVE_SYS_SOCKET_H
1072 #include <sys/socket.h>
1074 #ifdef HAVE_NETINET_IN_H
1075 #include <netinet/in.h>
1077 #ifdef HAVE_ARPA_NAMESER_H
1078 #include <arpa/nameser.h>
1080 #include <resolv.h>],
1083 AC_DEFINE([HAVE_RES_CLOSE], 1, [Define to 1 if your system has the close resolver function.]),
1089 AST_C_DEFINE_CHECK([GLOB_NOMAGIC], [GLOB_NOMAGIC], [glob.h])
1091 AST_C_DEFINE_CHECK([GLOB_BRACE], [GLOB_BRACE], [glob.h])
1093 AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
1095 AC_CHECK_HEADER([libkern/OSAtomic.h],
1096 [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
1098 AC_CHECK_SIZEOF([int])
1099 AC_CHECK_SIZEOF([long])
1100 AC_CHECK_SIZEOF([long long])
1101 AC_CHECK_SIZEOF([char *])
1102 AC_CHECK_SIZEOF(long)
1103 AC_CHECK_SIZEOF(long long)
1104 AC_COMPUTE_INT([ac_cv_sizeof_fd_set_fds_bits], [sizeof(foo.fds_bits[[0]])], [$ac_includes_default
1106 # This doesn't actually work; what it does is to use the variable set in the
1107 # previous test as a cached value to set the right output variables.
1108 AC_CHECK_SIZEOF(fd_set.fds_bits)
1110 # Set a type compatible with the previous. We cannot just use a generic type
1111 # for these bits, because on big-endian systems, the bits won't match up
1112 # correctly if the size is wrong.
1113 if test $ac_cv_sizeof_int = $ac_cv_sizeof_fd_set_fds_bits; then
1114 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [int], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1115 else if test $ac_cv_sizeof_long = $ac_cv_sizeof_fd_set_fds_bits; then
1116 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1117 else if test $ac_cv_sizeof_long_long = $ac_cv_sizeof_fd_set_fds_bits; then
1118 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1121 AC_MSG_CHECKING(for dladdr in dlfcn.h)
1126 [AC_LANG_PROGRAM([#define _GNU_SOURCE 1
1127 #include <dlfcn.h>],
1128 [dladdr((void *)0, (void *)0)]
1132 AC_SUBST([PBX_DLADDR])
1133 AC_DEFINE([HAVE_DLADDR], 1, [Define to 1 if your system has the dladdr() GNU extension]),
1138 # PKGCONFIG is used in later tests
1139 AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
1142 # do the package library checks now
1144 AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
1146 AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_openr], [bfd.h])
1148 if test "x${OSARCH}" = "xlinux-gnu" ; then
1149 AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
1152 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_RESET_COUNTERS], [dahdi/user.h], [230])
1153 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_DEFAULT_MTU_MRU], [dahdi/user.h], [220])
1154 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_CODE], [dahdi/user.h], [200])
1156 AST_C_DEFINE_CHECK([DAHDI_HALF_FULL], [DAHDI_POLICY_HALF_FULL], [dahdi/user.h])
1158 AST_C_COMPILE_CHECK([DAHDI_LINEREVERSE_VMWI], [struct dahdi_vmwi_info booger], [dahdi/user.h], , [enhanced dahdi vmwi support])
1160 AST_C_COMPILE_CHECK([DAHDI_ECHOCANCEL_FAX_MODE], [int foo = DAHDI_ECHOCANCEL_FAX_MODE], [dahdi/user.h])
1162 AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h], , [getifaddrs() support])
1163 AST_C_COMPILE_CHECK([TIMERFD], [timerfd_create(0,0); timerfd_settime(0,0,NULL,NULL);], [sys/timerfd.h], , [timerfd support])
1166 AC_SUBST(GSM_INTERNAL)
1168 if test "${USE_GSM}" != "no"; then
1169 if test "${GSM_DIR}" = "internal"; then
1171 elif test "${GSM_DIR}" != ""; then
1174 if test "${GSM_SYSTEM}" = "yes"; then
1176 if test "x${GSM_DIR}" != "x"; then
1177 if test -d ${GSM_DIR}/lib; then
1178 gsmlibdir="-L${GSM_DIR}/lib"
1180 gsmlibdir="-L${GSM_DIR}"
1183 AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
1184 [Define to indicate the GSM library]), [], ${gsmlibdir})
1185 if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
1186 if test "x${GSM_DIR}" != "x" ; then
1187 AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
1188 AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
1190 AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
1191 AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
1193 if test "${GSM_HEADER_FOUND}" = "0" ; then
1194 if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
1195 if test "x${GSM_MANDATORY}" = "xyes" ; then
1196 AC_MSG_NOTICE([***])
1197 AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
1198 AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
1199 AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
1205 if test "${GSM_HEADER_FOUND}" = "1" ; then
1206 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
1209 if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
1210 AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
1214 if test "${GSM_OK}" = "1" ; then
1216 if test "x${GSM_DIR}" != "x"; then
1217 GSM_LIB="${gsmlibdir} ${GSM_LIB}"
1218 GSM_INCLUDE="-I${GSM_DIR}/include"
1225 if test "${GSM_INTERNAL}" = "yes"; then
1227 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
1231 AST_EXT_LIB_CHECK([ICONV], [iconv], [iconv_open], [iconv.h])
1232 # GNU libiconv #define's iconv_open to libiconv_open, so we need to search for that symbol
1233 AST_EXT_LIB_CHECK([ICONV], [iconv], [libiconv_open], [iconv.h])
1234 # Some versions of Linux package iconv in glibc
1235 AST_EXT_LIB_CHECK([ICONV], [c], [iconv_close], [iconv.h])
1237 # If ical.h is NOT in the libical directory, then it is of a version insufficient for us.
1238 AST_EXT_LIB_CHECK([ICAL], [ical], [icaltimezone_get_utc_timezone], [libical/ical.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
1240 AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
1242 if test "${USE_IMAP_TK}" != "no"; then
1243 saved_cppflags="${CPPFLAGS}"
1244 saved_libs="${LIBS}"
1245 switch_to_system_on_failure="no"
1246 if test "${IMAP_TK_DIR}" = ""; then
1247 IMAP_TK_DIR=`pwd`"/../imap-2004g"
1248 switch_to_system_on_failure="yes"
1250 if test "${IMAP_TK_DIR}" != "system"; then
1251 AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
1252 if test -f "${IMAP_TK_DIR}/c-client/LDFLAGS"; then
1253 imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
1255 imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
1256 imap_include="-I${IMAP_TK_DIR}/c-client"
1257 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1258 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1261 [#include "c-client.h"
1262 void mm_searched (MAILSTREAM *stream,unsigned long number)
1265 void mm_exists (MAILSTREAM *stream,unsigned long number)
1268 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1271 void mm_flags (MAILSTREAM *stream,unsigned long number)
1274 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1277 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1280 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1283 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1286 void mm_log (char *string,long errflg)
1289 void mm_dlog (char *string)
1292 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1295 void mm_critical (MAILSTREAM *stream)
1298 void mm_nocritical (MAILSTREAM *stream)
1301 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1304 void mm_fatal (char *string)
1308 MAILSTREAM *foo = mail_open(NULL, "", 0);
1311 [ac_cv_imap_tk="yes"],
1312 [ac_cv_imap_tk="no"]
1314 if test "${ac_cv_imap_tk}" = "yes"; then
1317 [#include "c-client.h"
1318 void mm_searched (MAILSTREAM *stream,unsigned long number)
1321 void mm_exists (MAILSTREAM *stream,unsigned long number)
1324 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1327 void mm_flags (MAILSTREAM *stream,unsigned long number)
1330 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1333 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1336 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1339 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1342 void mm_log (char *string,long errflg)
1345 void mm_dlog (char *string)
1348 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1351 void mm_critical (MAILSTREAM *stream)
1354 void mm_nocritical (MAILSTREAM *stream)
1357 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1360 void mm_fatal (char *string)
1364 long check = mail_expunge_full(NULL, "", 0);
1367 [ac_cv_imap_tk2006="yes"],
1368 [ac_cv_imap_tk2006="no"]
1371 CPPFLAGS="${saved_cppflags}"
1372 LIBS="${saved_libs}"
1373 if test "${ac_cv_imap_tk}" = "no"; then
1375 if test "${switch_to_system_on_failure}" = "yes"; then
1376 IMAP_TK_DIR="system"
1377 else #This means they specified a directory. Search for a package installation there too
1378 AC_MSG_CHECKING([for system c-client library...])
1379 CPPFLAGS="${saved_cppflags}"
1380 LIBS="${saved_libs}"
1381 imap_include="-I${IMAP_TK_DIR}/include"
1382 imap_ldflags="-L${IMAP_TK_DIR}/lib"
1383 imap_libs="-lc-client"
1384 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1385 LIBS="${LIBS} ${imap_libs} ${imap_ldflags}"
1388 [#include "c-client.h"
1389 void mm_searched (MAILSTREAM *stream,unsigned long number)
1392 void mm_exists (MAILSTREAM *stream,unsigned long number)
1395 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1398 void mm_flags (MAILSTREAM *stream,unsigned long number)
1401 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1404 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1407 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1410 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1413 void mm_log (char *string,long errflg)
1416 void mm_dlog (char *string)
1419 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1422 void mm_critical (MAILSTREAM *stream)
1425 void mm_nocritical (MAILSTREAM *stream)
1428 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1431 void mm_fatal (char *string)
1435 MAILSTREAM *foo = mail_open(NULL, "", 0);
1438 [ac_cv_imap_tk="yes"],
1439 [ac_cv_imap_tk="no"]
1441 if test "${ac_cv_imap_tk}" = "yes"; then
1444 [#include "c-client.h"
1445 void mm_searched (MAILSTREAM *stream,unsigned long number)
1448 void mm_exists (MAILSTREAM *stream,unsigned long number)
1451 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1454 void mm_flags (MAILSTREAM *stream,unsigned long number)
1457 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1460 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1463 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1466 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1469 void mm_log (char *string,long errflg)
1472 void mm_dlog (char *string)
1475 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1478 void mm_critical (MAILSTREAM *stream)
1481 void mm_nocritical (MAILSTREAM *stream)
1484 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1487 void mm_fatal (char *string)
1491 long check = mail_expunge_full(NULL, "", 0);
1494 [ac_cv_imap_tk2006="yes"],
1495 [ac_cv_imap_tk2006="no"]
1501 if test "${IMAP_TK_DIR}" = "system"; then
1502 #We will enter here if user specified "system" or if any of above checks failed
1503 AC_MSG_CHECKING([for system c-client library...])
1504 CPPFLAGS="${saved_cppflags}"
1505 LIBS="${saved_libs}"
1507 imap_libs="-lc-client"
1508 imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
1509 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1510 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1514 #include <imap/c-client.h>
1515 void mm_searched (MAILSTREAM *stream,unsigned long number)
1518 void mm_exists (MAILSTREAM *stream,unsigned long number)
1521 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1524 void mm_flags (MAILSTREAM *stream,unsigned long number)
1527 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1530 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1533 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1536 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1539 void mm_log (char *string,long errflg)
1542 void mm_dlog (char *string)
1545 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1548 void mm_critical (MAILSTREAM *stream)
1551 void mm_nocritical (MAILSTREAM *stream)
1554 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1557 void mm_fatal (char *string)
1561 MAILSTREAM *foo = mail_open(NULL, "", 0);
1564 [ac_cv_imap_tk="yes"],
1565 [ac_cv_imap_tk="no"]
1567 if test "${ac_cv_imap_tk}" = "yes"; then
1571 #include <imap/c-client.h>
1572 void mm_searched (MAILSTREAM *stream,unsigned long number)
1575 void mm_exists (MAILSTREAM *stream,unsigned long number)
1578 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1581 void mm_flags (MAILSTREAM *stream,unsigned long number)
1584 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1587 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1590 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1593 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1596 void mm_log (char *string,long errflg)
1599 void mm_dlog (char *string)
1602 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1605 void mm_critical (MAILSTREAM *stream)
1608 void mm_nocritical (MAILSTREAM *stream)
1611 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1614 void mm_fatal (char *string)
1618 long check = mail_expunge_full(NULL, "", 0);
1621 [ac_cv_imap_tk2006="yes"],
1622 [ac_cv_imap_tk2006="no"]
1624 else #looking in imap directory didn't work, try c-client
1626 imap_libs="-lc-client"
1627 imap_include="-DUSE_SYSTEM_CCLIENT"
1628 CPPFLAGS="${saved_cppflags}"
1629 LIBS="${saved_libs}"
1630 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1631 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1635 #include <c-client/c-client.h>
1636 void mm_searched (MAILSTREAM *stream,unsigned long number)
1639 void mm_exists (MAILSTREAM *stream,unsigned long number)
1642 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1645 void mm_flags (MAILSTREAM *stream,unsigned long number)
1648 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1651 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1654 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1657 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1660 void mm_log (char *string,long errflg)
1663 void mm_dlog (char *string)
1666 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1669 void mm_critical (MAILSTREAM *stream)
1672 void mm_nocritical (MAILSTREAM *stream)
1675 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1678 void mm_fatal (char *string)
1682 MAILSTREAM *foo = mail_open(NULL, "", 0);
1685 [ac_cv_imap_tk="yes"],
1686 [ac_cv_imap_tk="no"]
1688 if test "${ac_cv_imap_tk}" = "yes"; then
1692 #include <c-client/c-client.h>
1693 void mm_searched (MAILSTREAM *stream,unsigned long number)
1696 void mm_exists (MAILSTREAM *stream,unsigned long number)
1699 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1702 void mm_flags (MAILSTREAM *stream,unsigned long number)
1705 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1708 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1711 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1714 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1717 void mm_log (char *string,long errflg)
1720 void mm_dlog (char *string)
1723 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1726 void mm_critical (MAILSTREAM *stream)
1729 void mm_nocritical (MAILSTREAM *stream)
1732 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1735 void mm_fatal (char *string)
1739 long check = mail_expunge_full(NULL, "", 0);
1742 [ac_cv_imap_tk2006="yes"],
1743 [ac_cv_imap_tk2006="no"]
1748 if test "${ac_cv_imap_tk}" = "yes"; then
1750 IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
1751 IMAP_TK_INCLUDE="${imap_include}"
1753 AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
1754 if test "${ac_cv_imap_tk2006}" = "yes"; then
1755 AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
1760 CPPFLAGS="${saved_cppflags}"
1761 LIBS="${saved_libs}"
1764 AST_EXT_LIB_CHECK([IODBC], [iodbc], [SQLConnect], [sql.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
1766 AST_EXT_LIB_CHECK([INOTIFY], [c], [inotify_init], [sys/inotify.h])
1768 AST_EXT_LIB_CHECK([JACK], [jack], [jack_activate], [jack/jack.h])
1770 # BSD (and OS X) equivalent of inotify
1771 AST_EXT_LIB_CHECK([KQUEUE], [c], [kqueue], [sys/event.h])
1773 # 64-bit version of kevent (from kqueue) on OS X
1774 AC_CHECK_FUNCS([kevent64])
1776 # Needed by unixodbc
1777 AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
1779 AST_EXT_LIB_CHECK([LDAP], [ldap], [ldap_initialize], [ldap.h])
1781 AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
1783 if test "${PBX_MISDN}" = 1; then
1784 AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
1785 AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
1786 AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
1787 AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
1788 AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
1789 AC_CHECK_MEMBER([Q931_info_t.redirect_dn], [], [PBX_MISDN=0], [#include <mISDNuser/mISDNlib.h>])
1792 AST_EXT_TOOL_CHECK([MYSQLCLIENT], [mysql_config])
1794 AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
1796 AST_EXT_TOOL_CHECK([NEON], [neon-config])
1798 AST_EXT_TOOL_CHECK([NEON29], [neon-config], , [--libs],
1799 [#include <ne_auth.h>],
1800 [#ifndef NE_AUTH_NTLM
1801 #error Need libneon >= 0.29.0
1804 AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp-config], , [--agent-libs],
1805 [#include <net-snmp/net-snmp-config.h>
1806 #include <net-snmp/net-snmp-includes.h>
1807 #include <net-snmp/agent/net-snmp-agent-includes.h>],
1808 [int callback = snmp_register_callback(0, 0, NULL, NULL)])
1810 AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
1812 AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
1814 AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
1816 # Non-glibc platforms require libexecinfo for backtrace support
1817 AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h])
1818 # Linux, however, has backtrace directly in glibc
1819 AST_EXT_LIB_CHECK([BKTR], [c], [backtrace], [execinfo.h])
1821 AST_EXT_LIB_CHECK([BLUETOOTH], [bluetooth], [ba2str], [bluetooth/bluetooth.h])
1823 # possible places for oss definitions
1824 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
1825 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
1826 AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
1829 if test "${USE_PGSQL}" != "no"; then
1830 if test "x${PGSQL_DIR}" != "x"; then
1831 AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
1832 if test x"${PG_CONFIG}" = xNo; then
1833 AC_MSG_NOTICE([***])
1834 AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
1835 AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
1836 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1837 AC_MSG_NOTICE([*** including --without-postgres])
1841 AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
1844 if test "${PG_CONFIG}" != No; then
1845 PGSQL_libdir=`${PG_CONFIG} --libdir`
1846 PGSQL_includedir=`${PG_CONFIG} --includedir`
1847 if test "x$?" != "x0" ; then
1848 if test -n "${PGSQL_MANDATORY}" ; then
1849 AC_MSG_NOTICE([***])
1850 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1851 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1852 AC_MSG_NOTICE([*** including --without-postgres])
1856 AC_CHECK_LIB([pq], [PQescapeStringConn], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
1857 [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
1859 AC_MSG_CHECKING(for pg_encoding_to_char within Postgres headers)
1860 old_CFLAGS=${CFLAGS}
1861 CFLAGS="${CFLAGS} -I${PGSQL_includedir} -Werror"
1862 old_LDFLAGS=${LDFLAGS}
1863 LDFLAGS="${LDFLAGS} -L${PGSQL_libdir} -lpq -lz"
1864 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <libpq-fe.h>],
1865 [const char *foo = pg_encoding_to_char(1)])],
1867 AC_DEFINE_UNQUOTED([HAVE_PGSQL_pg_encoding_to_char], 1, [Define to indicate presence of the pg_encoding_to_char API.])],
1868 [AC_MSG_RESULT(no)])
1869 CFLAGS=${old_CFLAGS}
1870 LDFLAGS=${old_LDFLAGS}
1872 if test "${ac_cv_lib_pq_PQescapeStringConn}" = "yes"; then
1873 PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
1874 PGSQL_INCLUDE="-I${PGSQL_includedir}"
1876 elif test -n "${PGSQL_MANDATORY}";
1878 AC_MSG_NOTICE([***])
1879 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1880 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1881 AC_MSG_NOTICE([*** including --without-postgres])
1887 AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
1889 AST_EXT_LIB_CHECK([PORTAUDIO], [portaudio], [Pa_GetDeviceCount], [portaudio.h])
1891 AST_EXT_LIB_CHECK([PRI], [pri], [pri_connected_line_update], [libpri.h])
1892 AST_EXT_LIB_CHECK([PRI_L2_PERSISTENCE], [pri], [pri_persistent_layer2_option], [libpri.h])
1893 AST_EXT_LIB_CHECK([PRI_DATETIME_SEND], [pri], [pri_date_time_send_option], [libpri.h])
1894 AST_EXT_LIB_CHECK([PRI_MWI_V2], [pri], [pri_mwi_indicate_v2], [libpri.h])
1895 AST_EXT_LIB_CHECK([PRI_DISPLAY_TEXT], [pri], [pri_display_text], [libpri.h])
1896 AST_EXT_LIB_CHECK([PRI_MWI], [pri], [pri_mwi_indicate], [libpri.h])
1897 AST_EXT_LIB_CHECK([PRI_MCID], [pri], [pri_mcid_enable], [libpri.h])
1898 AST_EXT_LIB_CHECK([PRI_CALL_WAITING], [pri], [pri_connect_ack_enable], [libpri.h])
1899 AST_EXT_LIB_CHECK([PRI_AOC_EVENTS], [pri], [pri_aoc_events_enable], [libpri.h])
1900 AST_EXT_LIB_CHECK([PRI_TRANSFER], [pri], [pri_transfer_enable], [libpri.h])
1901 AST_EXT_LIB_CHECK([PRI_CCSS], [pri], [pri_cc_enable], [libpri.h])
1902 AST_EXT_LIB_CHECK([PRI_HANGUP_FIX], [pri], [pri_hangup_fix_enable], [libpri.h])
1903 AST_EXT_LIB_CHECK([PRI_SUBADDR], [pri], [pri_sr_set_called_subaddress], [libpri.h])
1904 AST_EXT_LIB_CHECK([PRI_CALL_HOLD], [pri], [pri_hold_enable], [libpri.h])
1905 AST_EXT_LIB_CHECK([PRI_CALL_REROUTING], [pri], [pri_reroute_enable], [libpri.h])
1906 AST_EXT_LIB_CHECK([PRI_SETUP_KEYPAD], [pri], [pri_sr_set_keypad_digits], [libpri.h])
1908 # ------------------------------------v
1909 # TODO: The code can be changed to always include these features now.
1910 # These features will always be present if pri_connected_line_update is available.
1911 AST_EXT_LIB_CHECK([PRI_PROG_W_CAUSE], [pri], [pri_progress_with_cause], [libpri.h])
1912 AST_EXT_LIB_CHECK([PRI_INBANDDISCONNECT], [pri], [pri_set_inbanddisconnect], [libpri.h])
1913 AST_EXT_LIB_CHECK([PRI_SERVICE_MESSAGES], [pri], [pri_maintenance_service], [libpri.h])
1914 AST_EXT_LIB_CHECK([PRI_REVERSE_CHARGE], [pri], [pri_sr_set_reversecharge], [libpri.h])
1915 # ------------------------------------^
1917 AST_EXT_LIB_CHECK([RESAMPLE], [resample], [resample_open], [libresample.h], [-lm])
1919 AST_C_COMPILE_CHECK([SPANDSP], [
1920 #if SPANDSP_RELEASE_DATE < 20080516
1921 #error "spandsp 0.0.5 or greater is required"
1923 ], [spandsp/version.h], , [minimum version of SpanDSP])
1925 if test "x${PBX_SPANDSP}" = "x1" ; then
1926 # We found the correct version in the header, now let's make sure it links
1927 # properly, and that libtiff is available
1929 AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [span_set_message_handler], [spandsp.h], [-ltiff])
1932 if test "x${PBX_SPANDSP}" = "x1" ; then
1933 # We also need t38_terminal_init()
1935 AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [t38_terminal_init], [spandsp.h], [-ltiff])
1938 AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_pollflags], [libss7.h])
1940 AST_EXT_LIB_CHECK([OPENR2], [openr2], [openr2_chan_new], [openr2.h])
1942 if test "${USE_PWLIB}" != "no"; then
1943 if test -n "${PWLIB_DIR}"; then
1944 PWLIBDIR="${PWLIB_DIR}"
1947 AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2], [P[[WT]]LIB_VERSION])
1949 if test "${HAS_PWLIB:-unset}" != "unset"; then
1950 AST_CHECK_PWLIB_PLATFORM()
1952 PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
1954 AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
1955 [Define if your system has the PWLib libraries.],
1956 [#include "ptlib.h"],
1957 [int q = (int) PTime::IsDaylightSavings();])
1961 if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
1962 if test -n "${OPENH323_DIR}"; then
1963 OPENH323DIR="${OPENH323_DIR}"
1965 AST_CHECK_OPENH323()
1966 AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3], [], [1], [19], [0])
1967 AST_CHECK_OPENH323_BUILD()
1968 PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
1969 AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
1970 [Define if your system has the OpenH323 libraries.],
1973 #include "h323ep.h"],
1974 [H323EndPoint ep = H323EndPoint();],
1975 [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
1978 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h], [-lm])
1979 if test "x${PBX_LUA}" = "x1" ; then
1980 if test x"${LUA_DIR}" = x; then
1981 LUA_INCLUDE="${LUA_INCLUDE} -I/usr/include/lua5.1"
1983 LUA_INCLUDE="${LUA_INCLUDE} -I${LUA_DIR}/lua5.1"
1987 # Some distributions (like SuSE) remove the 5.1 suffix.
1988 AST_EXT_LIB_CHECK([LUA], [lua], [luaL_register], [lua.h], [-lm])
1990 AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
1992 AST_EXT_LIB_CHECK([COROSYNC], [cpg], [cpg_join], [corosync/cpg.h], [-lcfg])
1994 AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
1996 # See if the main speex library contains the preprocess functions
1997 AST_EXT_LIB_CHECK([SPEEX_PREPROCESS], [speex], [speex_preprocess_ctl], [speex/speex.h], [-lm])
1998 if test "${PBX_SPEEX_PREPROCESS}" = 1; then
1999 PBX_SPEEX_PREPROCESS=1
2002 AST_EXT_LIB_CHECK([SPEEXDSP], [speexdsp], [speex_preprocess_ctl], [speex/speex.h], [-lm])
2003 if test "${PBX_SPEEXDSP}" = 1; then
2004 PBX_SPEEX_PREPROCESS=1
2007 AC_SUBST(PBX_SPEEX_PREPROCESS)
2009 AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
2011 AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
2013 if test "${PBX_SQLITE3}" != 1; then
2014 AC_MSG_WARN(*** Asterisk now uses SQLite3 for the internal Asterisk database.)
2015 AC_MSG_WARN(*** Please install the SQLite3 development package.)
2019 AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
2021 if test "$PBX_CRYPTO" = "1";
2023 AST_EXT_LIB_CHECK([OPENSSL], [ssl], [SSL_connect], [openssl/ssl.h], [-lcrypto])
2026 if test "$PBX_OPENSSL" = "1";
2028 AST_CHECK_OSPTK([4], [0], [0])
2031 AST_EXT_LIB_CHECK([SRTP], [srtp], [srtp_init], [srtp/srtp.h])
2033 if test "$PBX_SRTP" = "1";
2035 saved_libs="${LIBS}"
2036 saved_ldflags="${LDFLAGS}"
2037 saved_cflags="${CFLAGS}"
2038 LIBS="${LIBS} ${SRTP_LIB}"
2039 LDFLAGS="${LDFLAGS} -shared -fPIC"
2040 CFLAGS="${CFLAGS} ${SRTP_INCLUDE}"
2041 AC_MSG_CHECKING(for the ability of -lsrtp to be linked in a shared object)
2045 [#include <srtp/srtp.h>],
2049 [ AC_MSG_RESULT(yes) ],
2053 AC_MSG_WARN(*** libsrtp could not be linked as a shared object.)
2054 AC_MSG_WARN(*** Try compiling libsrtp manually. Configure libsrtp)
2055 AC_MSG_WARN(*** with ./configure CFLAGS=-fPIC --prefix=/usr)
2056 AC_MSG_WARN(*** replacing /usr with the prefix of your choice.)
2057 AC_MSG_WARN(*** After re-installing libsrtp, re-run the Asterisk)
2058 AC_MSG_WARN(*** configure script.)
2060 AC_MSG_WARN(*** If you do not need SRTP support re-run configure)
2061 AC_MSG_WARN(*** with the --without-srtp option.)
2065 LIBS="${saved_libs}"
2066 LDFLAGS="${saved_ldflags}"
2067 CFLAGS="${saved_cflags}"
2070 AST_EXT_TOOL_CHECK([GMIME], [gmime-config], [], [], [#include <gmime/gmime.h>], [gboolean q = g_mime_check_version(0,0,0);])
2071 if test "x${PBX_GMIME}" = "x0" -a "${PKGCONFIG}" != "No"; then
2072 # Later versions of GMime use pkg-config
2073 for ver in 2.0 2.2 2.4 2.6; do
2074 if ! ${PKGCONFIG} --exists gmime-$ver; then
2077 # If we got here, we have this version:
2078 GMIME_INCLUDE=$(${PKGCONFIG} gmime-$ver --cflags 2>/dev/null)
2079 GMIME_LIB=$(${PKGCONFIG} gmime-$ver --libs)
2081 AC_DEFINE([HAVE_GMIME], 1, [Define if your system has the GMIME libraries.])
2086 AST_EXT_LIB_CHECK([HOARD], [hoard], [malloc], [])
2088 AST_EXT_LIB_CHECK([FREETDS], [sybdb], [dbinit], [sybdb.h])
2090 AC_CHECK_LIB([tonezone], [tone_zone_find_by_num], tonezone_does_not_need_lm=yes, tonezone_does_not_need_lm=no)
2092 if test "${tonezone_does_not_need_lm}" = "no" ; then
2093 tonezone_extra="-lm"
2096 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [dahdi/tonezone.h], [${tonezone_extra} ${DAHDI_INCLUDE}])
2098 if test "${OSARCH}" = "OpenBSD";
2100 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -lvorbisfile -logg])
2102 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -lvorbisfile])
2104 AST_C_DECLARE_CHECK([VORBIS_OPEN_CALLBACKS], [OV_CALLBACKS_NOCLOSE], [vorbis/vorbisfile.h])
2108 if test "${USE_VPB}" != "no"; then
2109 AC_MSG_CHECKING(for vpb_open in -lvpb)
2110 saved_libs="${LIBS}"
2111 saved_cppflags="${CPPFLAGS}"
2112 if test "x${VPB_DIR}" != "x"; then
2113 if test -d ${VPB_DIR}/lib; then
2114 vpblibdir=${VPB_DIR}/lib
2116 vpblibdir=${VPB_DIR}
2118 LIBS="${LIBS} -L${vpblibdir}"
2119 CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
2121 LIBS="${PTHREAD_LIBS} ${LIBS} -lvpb"
2122 CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS}"
2126 [#include <vpbapi.h>],
2127 [int q = vpb_open(0,0);])
2129 [ AC_MSG_RESULT(yes)
2130 ac_cv_lib_vpb_vpb_open="yes"
2133 ac_cv_lib_vpb_vpb_open="no"
2136 LIBS="${saved_libs}"
2137 CPPFLAGS="${saved_cppflags}"
2138 if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
2140 if test "${VPB_DIR}" != ""; then
2141 VPB_LIB="-L${vpblibdir} ${VPB_LIB}"
2142 VPB_INCLUDE="-I${VPB_DIR}/include"
2145 AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
2151 AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
2153 if test "x${PBX_UNIXODBC}" = "x1" -o "x${PBX_IODBC}" = "x1"; then
2154 # Does ODBC support wide characters?
2155 AC_MSG_CHECKING(whether ODBC has support for Unicode types)
2159 #include <sqlext.h>],
2160 [int foo = SQL_WCHAR])],
2162 AC_DEFINE([HAVE_ODBC_WCHAR], [1], [Define to 1 if your ODBC library has wide (Unicode) types.]),
2167 AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
2170 AC_CHECK_HEADER([linux/compiler.h],
2171 [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
2173 AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
2174 #include <linux/version.h>
2175 #ifdef HAVE_LINUX_COMPILER_H
2176 #include <linux/compiler.h>
2179 AC_SUBST(PBX_IXJUSER)
2181 # Used in res/res_pktccops
2182 AST_C_DEFINE_CHECK([MSG_NOSIGNAL], [MSG_NOSIGNAL], [sys/socket.h])
2183 AST_C_DEFINE_CHECK([SO_NOSIGPIPE], [SO_NOSIGPIPE], [sys/socket.h])
2185 AST_EXT_TOOL_CHECK([SDL], [sdl-config])
2186 AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL_image.h], [${SDL_LIB}], [${SDL_INCLUDE}])
2187 AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [${PTHREAD_LIBS} -lz -lm], [${PTHREAD_CFLAGS}])
2189 # possible places for video4linux version 1
2190 AC_CHECK_HEADER([linux/videodev.h],
2191 [AC_DEFINE_UNQUOTED([HAVE_VIDEODEV_H], 1, [Define to 1 if your system has linux/videodev.h.])])
2193 # possible places for X11
2194 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],,, [standard_path])
2195 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],, [-I/usr/X11R6/include], [X11R6])
2198 if test "${cross_compiling}" = "no";
2200 AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
2203 AC_SUBST(PBX_LAUNCHD)
2206 if test "${PKGCONFIG}" != "No"; then
2207 GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
2208 GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
2210 AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
2213 AC_SUBST(GTK2_INCLUDE)
2216 # build a GENERIC_ODBC result based on the presence of either UnixODBC (preferred)
2221 if test "${PBX_UNIXODBC}" = 1; then
2223 GENERIC_ODBC_LIB="${UNIXODBC_LIB}"
2224 GENERIC_ODBC_INCLUDE="${UNIXODBC_INCLUDE}"
2225 elif test "${PBX_IODBC}" = 1; then
2227 GENERIC_ODBC_LIB="${IODBC_LIB}"
2228 GENERIC_ODBC_INCLUDE="${IODBC_INCLUDE}"
2231 AC_SUBST([GENERIC_ODBC_LIB])
2232 AC_SUBST([GENERIC_ODBC_INCLUDE])
2233 AC_SUBST([PBX_GENERIC_ODBC])
2237 if test "${ac_cv_header_syslog_h}" = "yes"; then
2239 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTH], [LOG_AUTH], [syslog.h])
2240 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTHPRIV], [LOG_AUTHPRIV], [syslog.h])
2241 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_CRON], [LOG_CRON], [syslog.h])
2242 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_DAEMON], [LOG_DAEMON], [syslog.h])
2243 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_FTP], [LOG_FTP], [syslog.h])
2244 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_KERN], [LOG_KERN], [syslog.h])
2245 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_LPR], [LOG_LPR], [syslog.h])
2246 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_MAIL], [LOG_MAIL], [syslog.h])
2247 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_NEWS], [LOG_NEWS], [syslog.h])
2248 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_SYSLOG], [LOG_SYSLOG], [syslog.h])
2249 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_UUCP], [LOG_UUCP], [syslog.h])
2253 AC_SUBST([PBX_SYSLOG])
2255 if test -f makeopts; then
2256 ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak
2258 touch makeopts.acbak
2261 AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
2264 if test -f build_tools/menuselect-deps; then
2265 # extract old values of all PBX_ variables from menuselect-deps
2266 # and preserve them so that menuselect can determine whether
2267 # any previously-met dependencies are no longer met and warn
2268 # the user appropriately
2269 while IFS="=:" read var val old_val; do
2270 eval "PBX_${var}=\${PBX_${var}}:${val}"
2271 done < build_tools/menuselect-deps
2276 ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2
2277 if test "x${ac_cv_path_CMP}" = "x:"; then
2278 ( cd `pwd`/menuselect && ./configure )
2279 else if ${ac_cv_path_CMP} -s makeopts.acbak makeopts.acbak2; then : ; else
2280 ( cd `pwd`/menuselect && ./configure )
2283 rm makeopts.acbak makeopts.acbak2
2286 if test "x${silent}" != "xyes" ; then
2288 echo " .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=.. "
2289 echo " .\$7\$7.. .7\$\$7:. "
2290 echo " .\$\$:. ,\$7.7 "
2291 echo " .\$7. 7\$\$\$\$ .\$\$77 "
2292 echo " ..\$\$. \$\$\$\$\$ .\$\$\$7 "
2293 echo " ..7\$ .?. \$\$\$\$\$ .?. 7\$\$\$."
2294 echo " \$.\$. .\$\$\$7. \$\$\$\$7 .7\$\$\$. .\$\$\$."
2295 echo " .777. .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7. \$\$\$,"
2296 echo " \$\$\$~ .7\$\$\$\$\$\$\$\$\$\$\$\$\$7. .\$\$\$."
2297 echo ".\$\$7 .7\$\$\$\$\$\$\$7: ?\$\$\$."
2298 echo "\$\$\$ ?7\$\$\$\$\$\$\$\$\$\$I .\$\$\$7 "
2299 echo "\$\$\$ .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$ :\$\$\$. "
2300 echo "\$\$\$ \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$ .\$\$\$. "
2301 echo "\$\$\$ \$\$\$ 7\$\$\$7 .\$\$\$ .\$\$\$. "
2302 echo "\$\$\$\$ \$\$\$\$7 .\$\$\$. "
2303 echo "7\$\$\$7 7\$\$\$\$ 7\$\$\$ "
2304 echo " \$\$\$\$\$ \$\$\$ "
2305 echo " \$\$\$\$7. \$\$ (TM) "
2306 echo " \$\$\$\$\$\$\$. .7\$\$\$\$\$\$ \$\$ "
2307 echo " \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$ "
2308 echo " \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$. "
2312 AC_MSG_NOTICE(Package configured for: )
2313 AC_MSG_NOTICE( OS type : $host_os)
2314 AC_MSG_NOTICE( Host CPU : $host_cpu)
2315 AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :)
2316 AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :)
2317 if test "${cross_compiling}" = "yes"; then
2318 AC_MSG_NOTICE( Cross Compilation = YES)