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}/asterisk'])dnl
51 AC_SUBST([astmandir], ['${mandir}'])dnl
52 AC_SUBST([astvarlibdir], ['${localstatedir}/lib/asterisk'])dnl
53 AC_SUBST([astdatadir], ['${astvarlibdir}'])dnl
54 AC_SUBST([astdbdir], ['${astvarlibdir}'])dnl
55 AC_SUBST([astkeydir], ['${astvarlibdir}'])dnl
56 AC_SUBST([astspooldir], ['${localstatedir}/spool/asterisk'])dnl
57 AC_SUBST([astlogdir], ['${localstatedir}/log/asterisk'])dnl
58 AC_SUBST([astvarrundir], ['${localstatedir}/run/asterisk'])dnl
62 if test ${prefix} = 'NONE'; then
63 astvarlibdir='${prefix}/share/asterisk'
64 astdbdir='${localstatedir}/db/asterisk'
68 if test ${prefix} = 'NONE'; then
69 astvarrundir='/Library/Application Support/Asterisk/Run'
76 ac_default_prefix=/usr/local
77 CPPFLAGS=-I/usr/local/include
78 LDFLAGS=-L/usr/local/lib
81 ac_default_prefix=/usr/local
82 if test ${prefix} = '/usr/local' || test ${prefix} = 'NONE'; then
83 if test ${sysconfdir} = '${prefix}/etc'; then
84 astetcdir=/etc/asterisk
86 if test ${mandir} = '${prefix}/man'; then
87 astmandir=/usr/share/man
90 CPPFLAGS=-I/usr/local/include
91 LDFLAGS=-L/usr/local/lib
94 ac_default_prefix=/usr/local
95 if test ${prefix} = 'NONE'; then
96 astlibdir='/Library/Application Support/Asterisk/Modules'
97 astvarlibdir='/Library/Application Support/Asterisk'
98 astlogdir=/Library/Logs/Asterisk
99 astvarrundir='/Library/Application Support/Asterisk/Run'
101 AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.])
102 AC_DEFINE([_DARWIN_UNLIMITED_SELECT], 1, [Define to 1 if running on Darwin.])
105 if test ${prefix} = 'NONE'; then
106 astetcdir=/var/etc/asterisk
107 astsbindir=/opt/asterisk/sbin
108 astlibdir=/opt/asterisk/lib
109 astheaderdir=/opt/asterisk/include
110 astmandir=/opt/asterisk/man
111 astvarlibdir=/var/opt/asterisk
112 astspooldir=/var/spool/asterisk
113 astlogdir=/var/log/asterisk
114 astvarrundir=/var/run/asterisk
118 ac_default_prefix=/usr
119 if test ${prefix} = '/usr' || test ${prefix} = 'NONE'; then
120 if test ${sysconfdir} = '${prefix}/etc'; then
123 if test ${mandir} = '${prefix}/man'; then
124 mandir=/usr/share/man
130 if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
131 if test ${localstatedir} = '${prefix}/var'; then
136 BUILD_PLATFORM=${build}
137 BUILD_CPU=${build_cpu}
138 BUILD_VENDOR=${build_vendor}
141 AC_SUBST(BUILD_PLATFORM)
143 AC_SUBST(BUILD_VENDOR)
146 HOST_PLATFORM=${host}
148 HOST_VENDOR=${host_vendor}
151 AC_SUBST(HOST_PLATFORM)
153 AC_SUBST(HOST_VENDOR)
191 AC_SUBST(PBX_WINARCH)
194 AC_PATH_TOOL([UNAME], [uname], No)
195 if test ! x"${UNAME}" = xNo; then
196 PBX_OSREV=$(${UNAME} -r)
201 #ifndef ASTERISK_AUTOCONFIG_H
202 #define ASTERISK_AUTOCONFIG_H
204 #include "asterisk/buildopts.h"
212 # cross-compile checks
213 if test "${cross_compiling}" = "yes";
215 AC_CHECK_TOOL(CC, gcc, :)
216 AC_CHECK_TOOL(CXX, g++, :)
217 AC_CHECK_TOOL(LD, ld, :)
218 AC_CHECK_TOOL(RANLIB, ranlib, :)
221 # Checks for programs.
225 # This macro is just copied into our local acinclude.m4 from libtool.m4 so that
226 # the developers regenerating the configure script don't have to install libtool.
227 AST_PROG_LD # note, does not work on FreeBSD
235 AC_CHECK_TOOLS([STRIP], [strip gstrip], :)
236 AC_CHECK_TOOLS([AR], [ar gar], :)
237 AC_CHECK_TOOLS([SHA1SUM], [sha1sum], $ac_aux_dir/build_tools/sha1sum-sh)
238 AC_CHECK_TOOLS([OPENSSL], [openssl], :)
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], [:])
275 AC_CACHE_CHECK([for bison that supports parse-param], [ac_cv_path_BISON2], [
276 if test "x$BISON" != "x:" ; then
277 # Create a temporary directory $tmp in $TMPDIR (default /tmp).
278 # Use mktemp if possible; otherwise fall back on mkdir,
279 # with $RANDOM to make collisions less likely.
283 (umask 077 && mktemp -d "$TMPDIR/fooXXXXXX") 2>/dev/null
285 test -n "$tmp" && test -d "$tmp"
287 tmp=$TMPDIR/foo$$-$RANDOM
288 (umask 077 && mkdir "$tmp")
290 cat >$tmp/test.y <<__EOL__
291 %parse-param {struct parse_io *parseio}
293 file : { \$\$ = parseio->pval = 1; }
297 ${BISON} -o ${tmp}/test.tab.c ${tmp}/test.y >/dev/null 2>&1
298 if test -e "${tmp}/test.tab.c"; then
299 ac_cv_path_BISON2=${BISON}
304 if test "x${ac_cv_path_BISON2}" = "x" ; then
311 if test "x${FLEX}" = "x:" ; then
318 AC_CHECK_TOOL([SOXMIX], [soxmix], [:])
319 if test "${SOXMIX}" != ":" ; then
320 AC_DEFINE([HAVE_SOXMIX], 1, [Define to 1 if your system has soxmix application.])
323 AC_CHECK_PROGS([MD5], [md5 md5sum gmd5sum digest])
325 if test "${MD5}" = "digest" ; then
333 AC_ARG_ENABLE([dev-mode],
334 [AS_HELP_STRING([--enable-dev-mode],
335 [Turn on developer mode])],
336 [case "${enableval}" in
337 y|ye|yes) AST_DEVMODE=yes ;;
338 n|no) AST_DEVMODE=no ;;
343 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode) ;;
345 AC_SUBST(NOISY_BUILD)
346 AC_SUBST(AST_DEVMODE)
349 AC_ARG_ENABLE([coverage],
350 [AS_HELP_STRING([--enable-coverage],
351 [Turn on code coverage tracking (for gcov)])],
352 [case "${enableval}" in
353 y|ye|yes) AST_CODE_COVERAGE=yes ;;
354 n|no) AST_CODE_COVERAGE=no ;;
355 *) AC_MSG_ERROR(bad value ${enableval} for --enable-coverage) ;;
357 AC_SUBST(AST_CODE_COVERAGE)
359 # AST_EXT_LIB_SETUP is used to tell configure to handle variables for
361 # $1 is the prefix for the variables in makeopts and autoconfig.h
362 # $2 is the short comment, $4 is the long comment
363 # $3 is the name used in --with- or --without- flags for configure.
365 # Package option names should be in alphabetical order
366 # by the --with option name (the third field),
367 # to make things easier for the users.
369 AST_EXT_LIB_SETUP([ALSA], [Advanced Linux Sound Architecture], [asound])
370 AST_EXT_LIB_SETUP([BFD], [Debug symbol decoding], [bfd])
372 # BKTR is used for backtrace support on platforms that do not
374 AST_EXT_LIB_SETUP([BKTR], [Stack Backtrace], [execinfo])
375 AST_EXT_LIB_SETUP([BLUETOOTH], [Bluetooth], [bluetooth])
376 AST_EXT_LIB_SETUP([CAP], [POSIX 1.e capabilities], [cap])
377 AST_EXT_LIB_SETUP([CURSES], [curses], [curses])
378 AST_EXT_LIB_SETUP([CRYPTO], [OpenSSL Cryptography], [crypto])
379 AST_EXT_LIB_SETUP([DAHDI], [DAHDI], [dahdi])
380 AST_EXT_LIB_SETUP([FFMPEG], [Ffmpeg and avcodec], [avcodec])
381 AST_EXT_LIB_SETUP([GSM], [External GSM], [gsm], [, use 'internal' GSM otherwise])
382 AST_EXT_LIB_SETUP([GTK2], [gtk2], [gtk2])
383 AST_EXT_LIB_SETUP([GMIME], [GMime], [gmime])
384 AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
385 AST_EXT_LIB_SETUP([HOARD], [Hoard Memory Allocator], [hoard])
386 AST_EXT_LIB_SETUP([ICAL], [iCal], [ical])
387 AST_EXT_LIB_SETUP([ICONV], [Iconv], [iconv])
388 AST_EXT_LIB_SETUP([IKSEMEL], [Iksemel Jabber], [iksemel])
389 AST_EXT_LIB_SETUP([IMAP_TK], [UW IMAP Toolkit], [imap])
390 AST_EXT_LIB_SETUP([INOTIFY], [inotify support], [inotify])
391 AST_EXT_LIB_SETUP([IODBC], [iODBC], [iodbc])
392 AST_EXT_LIB_SETUP([ISDNNET], [ISDN4Linux], [isdnnet])
393 AST_EXT_LIB_SETUP([JACK], [Jack Audio Connection Kit], [jack])
394 AST_EXT_LIB_SETUP([KQUEUE], [kqueue support], [kqueue])
395 AST_EXT_LIB_SETUP([LDAP], [OpenLDAP], [ldap])
396 AST_LIBCURL_CHECK_CONFIG([], [7.10.1])
397 AST_EXT_LIB_SETUP([LIBXML2], [LibXML2], [libxml2])
398 AST_EXT_LIB_SETUP([LTDL], [libtool], [ltdl])
399 AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
400 AST_EXT_LIB_SETUP([MISDN], [mISDN user], [misdn])
401 AST_EXT_LIB_SETUP([MYSQLCLIENT], [MySQL client], [mysqlclient])
402 AST_EXT_LIB_SETUP([NBS], [Network Broadcast Sound], [nbs])
403 AST_EXT_LIB_SETUP([NCURSES], [ncurses], [ncurses])
404 AST_EXT_LIB_SETUP([NEON], [neon], [neon])
405 AST_EXT_LIB_SETUP([NEON29], [neon29], [neon29])
406 AST_EXT_LIB_SETUP([NETSNMP], [Net-SNMP], [netsnmp])
407 AST_EXT_LIB_SETUP([NEWT], [newt], [newt])
408 AST_EXT_LIB_SETUP([OGG], [OGG], [ogg])
409 AST_EXT_LIB_SETUP([OPENAIS], [OpenAIS], [openais])
410 AST_EXT_LIB_SETUP([OPENR2], [MFR2], [openr2])
411 AST_EXT_LIB_SETUP([OSPTK], [OSP Toolkit], [osptk])
412 AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
413 AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
414 AST_EXT_LIB_SETUP([POPT], [popt], [popt])
415 AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
416 AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
417 AST_EXT_LIB_SETUP_OPTIONAL([PRI_L2_PERSISTENCE], [ISDN Layer 2 persistence option], [PRI], [pri])
418 AST_EXT_LIB_SETUP_OPTIONAL([PRI_DATETIME_SEND], [ISDN PRI Date/time ie send policy], [PRI], [pri])
419 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI_V2], [ISDN PRI Message Waiting Indication (Fixed)], [PRI], [pri])
420 AST_EXT_LIB_SETUP_OPTIONAL([PRI_DISPLAY_TEXT], [ISDN PRI user display text IE contents during call], [PRI], [pri])
421 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI], [ISDN PRI Message Waiting Indication], [PRI], [pri])
422 AST_EXT_LIB_SETUP_OPTIONAL([PRI_MCID], [ISDN PRI Malicious Call ID], [PRI], [pri])
423 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_WAITING], [ISDN PRI call waiting supplementary service], [PRI], [pri])
424 AST_EXT_LIB_SETUP_OPTIONAL([PRI_AOC_EVENTS], [ISDN PRI advice of charge supplementary service events], [PRI], [pri])
425 AST_EXT_LIB_SETUP_OPTIONAL([PRI_TRANSFER], [ISDN PRI call transfer supplementary service], [PRI], [pri])
426 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CCSS], [ISDN PRI call completion supplementary service], [PRI], [pri])
427 AST_EXT_LIB_SETUP_OPTIONAL([PRI_HANGUP_FIX], [ISDN PRI hangup fix], [PRI], [pri])
428 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SUBADDR], [ISDN PRI subaddressing], [PRI], [pri])
429 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_HOLD], [ISDN PRI call hold], [PRI], [pri])
430 AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_REROUTING], [ISDN PRI call rerouting and call deflection], [PRI], [pri])
431 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SETUP_KEYPAD], [ISDN PRI keypad facility in SETUP], [PRI], [pri])
432 # ------------------------------------v
433 # TODO: The code can be changed to always include these features now.
434 # These features will always be present if pri_connected_line_update is available.
435 AST_EXT_LIB_SETUP_OPTIONAL([PRI_INBANDDISCONNECT], [ISDN PRI set_inbanddisconnect], [PRI], [pri])
436 AST_EXT_LIB_SETUP_OPTIONAL([PRI_PROG_W_CAUSE], [ISDN progress with cause], [PRI], [pri])
437 AST_EXT_LIB_SETUP_OPTIONAL([PRI_SERVICE_MESSAGES], [ISDN service messages], [PRI], [pri])
438 AST_EXT_LIB_SETUP_OPTIONAL([PRI_REVERSE_CHARGE], [ISDN reverse charge], [PRI], [pri])
439 # ------------------------------------^
440 AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
441 AST_EXT_LIB_SETUP([RADIUS], [Radius Client], [radius])
442 AST_EXT_LIB_SETUP([RESAMPLE], [LIBRESAMPLE], [resample])
443 AST_EXT_LIB_SETUP([SDL], [Sdl], [sdl])
444 AST_EXT_LIB_SETUP([SDL_IMAGE], [Sdl Image], [SDL_image])
445 AST_OPTION_ONLY([sounds-cache], [SOUNDS_CACHE_DIR], [cached sound tarfiles], [])
446 AST_EXT_LIB_SETUP([SPANDSP], [SPANDSP], [spandsp])
447 AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
448 AST_EXT_LIB_SETUP([SPEEX], [Speex], [speex])
449 AST_EXT_LIB_SETUP([SPEEX_PREPROCESS], [Speex preprocess routines], [speex])
450 AST_EXT_LIB_SETUP([SPEEXDSP], [SpeexDSP], [speexdsp])
451 AST_EXT_LIB_SETUP_DEPENDENT([SPEEX_PREPROCESS], [speex_preprocess_ctl], [], [speex])
452 AST_EXT_LIB_SETUP([SQLITE], [SQLite], [sqlite])
453 AST_EXT_LIB_SETUP([SQLITE3], [SQLite], [sqlite3])
454 AST_EXT_LIB_SETUP([SRTP], [Secure RTP], [srtp])
455 AST_EXT_LIB_SETUP([OPENSSL], [OpenSSL Secure Sockets Layer], [ssl])
456 AST_EXT_LIB_SETUP([SUPPSERV], [mISDN Supplemental Services], [suppserv])
457 AST_EXT_LIB_SETUP([FREETDS], [FreeTDS], [tds])
458 AST_EXT_LIB_SETUP([TERMCAP], [Termcap], [termcap])
459 AST_EXT_LIB_SETUP([TIMERFD], [timerfd], [timerfd])
460 AST_EXT_LIB_SETUP([TINFO], [Term Info], [tinfo])
461 AST_EXT_LIB_SETUP([TONEZONE], [tonezone], [tonezone])
462 AST_EXT_LIB_SETUP([UNIXODBC], [unixODBC], [unixodbc])
463 AST_EXT_LIB_SETUP([USB], [usb], [usb])
464 AST_EXT_LIB_SETUP([VORBIS], [Vorbis], [vorbis])
465 AST_EXT_LIB_SETUP([VPB], [Voicetronix API], [vpb])
466 AST_EXT_LIB_SETUP([X11], [X11], [x11])
467 AST_EXT_LIB_SETUP([ZLIB], [zlib compression], [z])
469 # check for basic system features and functionality before
470 # checking for package libraries
476 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])
478 # Any one of these 4 packages support a mandatory requirement, so we want to check on them as early as possible.
479 AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
480 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
481 AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
482 AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
485 if test "x$TERMCAP_LIB" != "x" ; then
486 EDITLINE_LIB="$TERMCAP_LIB"
487 elif test "x$TINFO_LIB" != "x" ; then
488 EDITLINE_LIB="$TINFO_LIB"
489 elif test "x$CURSES_LIB" != "x" ; then
490 EDITLINE_LIB="$CURSES_LIB"
491 elif test "x$NCURSES_LIB" != "x" ; then
492 EDITLINE_LIB="$NCURSES_LIB"
494 AC_MSG_ERROR([*** termcap support not found (on modern systems, this typically means the ncurses development package is missing)])
496 AC_SUBST(EDITLINE_LIB)
498 # Another mandatory item (unless it's explicitly disabled)
499 AC_ARG_ENABLE([xmldoc],
500 [AS_HELP_STRING([--disable-xmldoc],
501 [Explicity disable XML documentation])],
502 [case "${enableval}" in
503 y|ye|yes) disable_xmldoc=no ;;
504 n|no) disable_xmldoc=yes ;;
505 *) AC_MSG_ERROR(bad value ${enableval} for --disable-xmldoc) ;;
506 esac], [disable_xmldoc=no])
508 if test "${disable_xmldoc}" != "yes"; then
509 AST_EXT_TOOL_CHECK([LIBXML2], [xml2-config], , ,
510 [#include <libxml/tree.h>
511 #include <libxml/parser.h>],
512 [LIBXML_TEST_VERSION])
513 if test "${PBX_LIBXML2}" != 1; then
514 AC_MSG_NOTICE(*** XML documentation will not be available because the 'libxml2' development package is missing.)
515 AC_MSG_NOTICE(*** Please run the 'configure' script with the '--disable-xmldoc' parameter option)
516 AC_MSG_NOTICE(*** or install the 'libxml2' development package.)
521 # some embedded systems omit internationalization (locale) support
522 AC_CHECK_HEADERS([xlocale.h])
524 AC_CHECK_HEADERS([winsock.h winsock2.h])
526 AC_CHECK_HEADER([sys/poll.h],
528 AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.]))
532 # Checks for typedefs, structures, and compiler characteristics.
537 AC_TYPE_LONG_DOUBLE_WIDER
542 AC_CHECK_MEMBERS([struct stat.st_blksize])
543 AC_CHECK_MEMBERS([struct ucred.uid, struct ucred.cr_uid], [], [], [#include <sys/socket.h>])
544 AC_CHECK_MEMBERS([struct ifreq.ifr_ifru.ifru_hwaddr], [], [], [#include <net/if.h>])
548 AC_CHECK_TYPES([ptrdiff_t])
550 # Checks for library functions.
552 AC_FUNC_CLOSEDIR_VOID
553 AC_FUNC_ERROR_AT_LINE
556 AC_PROG_GCC_TRADITIONAL
557 # XXX: these are commented out until we determine whether it matters if our malloc()
558 # acts exactly like glibc's or not
563 AC_FUNC_SELECT_ARGTYPES
564 AC_FUNC_SETVBUF_REVERSED
573 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])
575 # NOTE: we use AC_CHECK_LIB to get -lm into the arguments for later checks,
576 # so that AC_CHECK_FUNCS can detect functions in that library.
577 AC_CHECK_LIB([m], [sqrt])
578 # BSD might not have exp2, and/or log2
579 AC_CHECK_FUNCS([exp2 log2 exp10 log10 sin cos tan asin acos atan atan2 pow rint exp log remainder fmod round trunc floor ceil])
581 # Certain architectures don't really have long double, even though
582 # AC_CHECK_FUNCS would otherwise find the following functions.
583 if test "x${ac_cv_type_long_double_wider}" = "xyes" ; then
584 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])
587 AC_MSG_CHECKING(for LLONG_MAX in limits.h)
589 AC_LANG_PROGRAM([#include <limits.h>],
590 [long long foo = LLONG_MAX]),
592 AC_DEFINE([HAVE_LLONG_MAX], 1, [Define to 1 if limits.h includes a LLONG_MAX definition.]),
596 AC_MSG_CHECKING(for timersub in time.h)
598 AC_LANG_PROGRAM([#include <sys/time.h>],
599 [struct timeval *a; timersub(a, a, a);]),
601 AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
605 AC_MSG_CHECKING(for a version of GNU ld that supports the --dynamic-list flag)
606 old_LDFLAGS=${LDFLAGS}
607 cat >conftest.dynamics <<_ACEOF
612 LDFLAGS="${LDFLAGS} -Wl,--dynamic-list,conftest.dynamics"
615 AC_LANG_PROGRAM([], []),
620 AC_SUBST(PBX_DYNAMIC_LIST)
621 LDFLAGS=${old_LDFLAGS}
622 rm -f conftest.dynamics
624 AC_CHECK_HEADER([sys/poll.h],
626 AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
629 AC_ARG_ENABLE([internal-poll],
630 [AS_HELP_STRING([--enable-internal-poll],
631 [Use Asterisk's poll implementation])],
632 [case "${enableval}" in
633 y|ye|yes) HAS_POLL="";;
634 n|no) HAS_POLL="${HAS_POLL}" ;;
635 *) AC_MSG_ERROR(bad value ${enableval} for --enable-internal-poll) ;;
641 # https support (in main/http.c) uses funopen on BSD systems,
642 # fopencookie on linux
643 AC_CHECK_FUNCS([funopen fopencookie])
645 AC_CHECK_FUNCS([inet_aton])
647 # check if we have IP_PKTINFO constant defined
648 AC_MSG_CHECKING(for IP_PKTINFO)
650 AC_LANG_PROGRAM([#include <netinet/in.h>],
651 [int pi = IP_PKTINFO;]),
653 AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
657 # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
658 AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
660 AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
662 AC_LANG_PROGRAM([#include <stdlib.h>
664 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);]),
666 AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
670 AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
672 AC_LANG_PROGRAM([#include <stdlib.h>
674 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);]),
676 AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
680 AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
682 AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
684 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);]),
686 AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
690 AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
692 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);]),
694 AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
698 if test "${cross_compiling}" = "no";
700 AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
703 AC_MSG_CHECKING(for locale_t in locale.h)
705 AC_LANG_PROGRAM([#include <locale.h>], [locale_t lt = NULL]),
707 AC_DEFINE([HAVE_LOCALE_T_IN_LOCALE_H], 1, [Define to 1 if your system defines the locale_t type in locale.h]),
709 AC_MSG_CHECKING(for locale_t in xlocale.h)
711 AC_LANG_PROGRAM([#include <xlocale.h>], [locale_t lt = NULL]),
713 AC_DEFINE([HAVE_LOCALE_T_IN_XLOCALE_H], 1, [Define to 1 if your system defines the locale_t type in xlocale.h]),
718 AC_MSG_CHECKING(for O_EVTONLY in fcntl.h)
720 AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_EVTONLY;]),
722 AC_DEFINE([HAVE_O_EVTONLY], 1, [Define to 1 if your system defines the file flag O_EVTONLY in fcntl.h]),
726 AC_MSG_CHECKING(for O_SYMLINK in fcntl.h)
728 AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_SYMLINK;]),
730 AC_DEFINE([HAVE_O_SYMLINK], 1, [Define to 1 if your system defines the file flag O_SYMLINK in fcntl.h]),
734 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
736 AC_MSG_CHECKING(for PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h)
738 AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_RWLOCK_PREFER_WRITER_NP;]),
740 AC_DEFINE([HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP], 1, [Define to 1 if your system defines PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h]),
744 AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE_NP in pthread.h)
746 AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_MUTEX_RECURSIVE_NP;]),
748 AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1, [Define to 1 if your system defines PTHREAD_MUTEX_RECURSIVE_NP in pthread.h]),
752 AC_MSG_CHECKING(for pthread_rwlock_timedwrlock() in pthread.h)
754 save_CFLAGS="$CFLAGS"
755 LIBS="$PTHREAD_LIBS $LIBS"
756 CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
759 [#include <pthread.h>
761 [pthread_rwlock_t foo; struct timespec bar; pthread_rwlock_timedwrlock(&foo, &bar)])
764 ac_cv_pthread_rwlock_timedwrlock="yes"
767 ac_cv_pthread_rwlock_timedwrlock="no"
771 CFLAGS="$save_CFLAGS"
772 if test "${ac_cv_pthread_rwlock_timedwrlock}" = "yes"; then
773 AC_DEFINE([HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK], 1, [Define if your system has pthread_rwlock_timedwrlock()])
776 AC_MSG_CHECKING(if PTHREAD_ONCE_INIT needs braces)
777 saved_CFLAGS="${CFLAGS}"
778 CFLAGS="${CFLAGS} -Werror -Wmissing-braces"
781 [#include <pthread.h>
783 [pthread_once_t once = PTHREAD_ONCE_INIT; pthread_once(&once, empty);])
786 ac_cv_pthread_once_needsbraces="no"
789 ac_cv_pthread_once_needsbraces="yes"
792 CFLAGS="${saved_CFLAGS}"
793 if test "${ac_cv_pthread_once_needsbraces}" = "yes"; then
794 AC_DEFINE([PTHREAD_ONCE_INIT_NEEDS_BRACES], 1, [Define if your system needs braces around PTHREAD_ONCE_INIT])
797 AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
799 # Can we compare a mutex to its initial value?
800 # Generally yes on OpenBSD/FreeBSD and no on Mac OS X.
801 AC_MSG_CHECKING(whether we can compare a mutex to its initial value)
803 AC_LANG_PROGRAM([#include <pthread.h>], [pthread_mutex_t lock;
804 if ((lock) != ((pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER)) {
809 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.]),
813 #if test "${cross_compiling}" = "no";
815 #AC_MSG_CHECKING(for working epoll support)
817 #AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
823 #AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
828 # for FreeBSD thr_self
829 AC_CHECK_HEADERS([sys/thr.h])
831 AC_MSG_CHECKING(for compiler atomic operations)
833 AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);]),
835 AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
839 # glibc, AFAIK, is the only C library that makes printing a NULL to a string safe.
840 AC_MSG_CHECKING([if your system printf is NULL-safe.])
842 AC_LANG_PROGRAM([#include <stdio.h>],
843 [printf("%s", NULL)]),
844 AC_DEFINE([HAVE_NULLSAFE_PRINTF], 1, [Define to 1 if your C library can safely print NULL to string formats.])
847 # It's unlikely an embedded system will have this.
848 AC_MSG_RESULT(unknown)
851 AC_MSG_CHECKING(if we can increase the maximum select-able file descriptor)
855 #include <sys/select.h>
856 #include <sys/time.h>
857 #include <sys/resource.h>
861 #include <sys/types.h>
862 #include <sys/stat.h>
866 struct rlimit rlim = { FD_SETSIZE * 2, FD_SETSIZE * 2 };
868 struct timeval tv = { 0, };
869 struct ast_fdset { long fds_bits[[1024]]; } fds = { { 0, } };
870 if (setrlimit(RLIMIT_NOFILE, &rlim)) { exit(1); }
871 if ((fd0 = open("/dev/null", O_RDONLY)) < 0) { exit(1); }
872 if (dup2(fd0, (fd1 = FD_SETSIZE + 1)) < 0) { exit(1); }
873 FD_SET(fd0, (fd_set *) &fds);
874 FD_SET(fd1, (fd_set *) &fds);
875 if (select(FD_SETSIZE + 2, (fd_set *) &fds, NULL, NULL, &tv) < 0) { exit(1); }
878 AC_DEFINE([HAVE_VARIABLE_FDSET], 1, [Define to 1 if your system can support larger than default select bitmasks.]),
880 AC_MSG_RESULT(cross-compile)
883 if test "${ac_cv_have_variable_fdset}x" = "0x"; then
887 #include <sys/types.h>
889 ], [if (getuid() != 0) { exit(1); }]),
890 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.]))
893 AST_GCC_ATTRIBUTE(pure)
894 AST_GCC_ATTRIBUTE(malloc)
895 AST_GCC_ATTRIBUTE(const)
896 AST_GCC_ATTRIBUTE(unused)
897 AST_GCC_ATTRIBUTE(always_inline)
898 AST_GCC_ATTRIBUTE(deprecated)
899 AST_GCC_ATTRIBUTE(sentinel)
900 AST_GCC_ATTRIBUTE(warn_unused_result)
902 # Support weak symbols on a platform specific basis. The Mac OS X
903 # (Darwin) support must be isolated from the other platforms because
904 # it has caused other platforms to fail.
908 # Allow weak symbol support on Darwin platforms only because there
909 # is active community support for it.
910 # However, Darwin seems to break weak symbols for each new version.
912 AST_GCC_ATTRIBUTE(weak_import, [], [], PBX_WEAKREF)
914 # Several other platforms including Linux have GCC versions that
915 # define the weak attribute. However, this attribute is only
916 # setup for use in the code by Darwin.
917 AST_GCC_ATTRIBUTE(weak, [], [], PBX_WEAKREF)
920 # Primarily support weak symbols on Linux platforms.
922 AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
925 # Allow weak symbols on other platforms. However, any problems
926 # with this feature on other platforms must be fixed by the
929 AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
933 AC_MSG_CHECKING(for -ffunction-sections support)
934 saved_CFLAGS="${CFLAGS}"
935 CFLAGS="${CFLAGS} -ffunction-sections"
937 AC_LANG_PROGRAM([], [int x = 1;]),
939 [saved_LDFLAGS="${LDFLAGS}"]
940 [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
941 AC_MSG_CHECKING(for --gc-sections support)
943 AC_LANG_PROGRAM([], [int x = 1;]),
945 [GC_CFLAGS="-ffunction-sections"]
946 [[GC_LDFLAGS="-Wl,--gc-sections"]],
949 [LDFLAGS="${saved_LDFLAGS}"],
952 CFLAGS="${saved_CFLAGS}"
956 AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
957 if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
959 AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
962 AST_DECLARATION_AFTER_STATEMENT=
964 AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
966 AC_MSG_CHECKING(for _FORTIFY_SOURCE support)
967 if $(${CC} -D_FORTIFY_SOURCE=2 -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
969 AST_FORTIFY_SOURCE=-D_FORTIFY_SOURCE=2
974 AC_SUBST(AST_FORTIFY_SOURCE)
976 AC_MSG_CHECKING(for -fno-strict-overflow)
977 if $(${CC} -O2 -fno-strict-overflow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
979 AST_NO_STRICT_OVERFLOW=-fno-strict-overflow
982 AST_NO_STRICT_OVERFLOW=
984 AC_SUBST(AST_NO_STRICT_OVERFLOW)
986 AC_MSG_CHECKING(for -Wshadow)
987 if $(${CC} -Wshadow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
989 AST_SHADOW_WARNINGS=-Wshadow
994 AC_SUBST(AST_SHADOW_WARNINGS)
996 AC_MSG_CHECKING(for -march=native)
997 if $(${CC} -march=native -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
999 AST_MARCH_NATIVE="-march=native"
1004 AC_SUBST(AST_MARCH_NATIVE)
1006 AC_MSG_CHECKING(for sysinfo)
1008 AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
1009 [struct sysinfo sys_info; int uptime = sys_info.uptime]),
1011 AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
1015 AC_SEARCH_LIBS(res_9_ninit, resolv)
1016 AC_MSG_CHECKING(for res_ninit)
1019 #ifdef HAVE_SYS_SOCKET_H
1020 #include <sys/socket.h>
1022 #ifdef HAVE_NETINET_IN_H
1023 #include <netinet/in.h>
1025 #ifdef HAVE_ARPA_NAMESER_H
1026 #include <arpa/nameser.h>
1028 #include <resolv.h>],
1029 [int foo = res_ninit(NULL);]),
1031 AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
1032 AC_SEARCH_LIBS(res_9_ndestroy, resolv)
1033 AC_MSG_CHECKING(for res_ndestroy)
1036 #ifdef HAVE_SYS_SOCKET_H
1037 #include <sys/socket.h>
1039 #ifdef HAVE_NETINET_IN_H
1040 #include <netinet/in.h>
1042 #ifdef HAVE_ARPA_NAMESER_H
1043 #include <arpa/nameser.h>
1045 #include <resolv.h>],
1046 [res_ndestroy(NULL);]),
1048 AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
1051 AC_SEARCH_LIBS(res_9_close, resolv)
1052 AC_MSG_CHECKING(for res_close)
1055 #ifdef HAVE_SYS_SOCKET_H
1056 #include <sys/socket.h>
1058 #ifdef HAVE_NETINET_IN_H
1059 #include <netinet/in.h>
1061 #ifdef HAVE_ARPA_NAMESER_H
1062 #include <arpa/nameser.h>
1064 #include <resolv.h>],
1067 AC_DEFINE([HAVE_RES_CLOSE], 1, [Define to 1 if your system has the close resolver function.]),
1073 AST_C_DEFINE_CHECK([GLOB_NOMAGIC], [GLOB_NOMAGIC], [glob.h])
1075 AST_C_DEFINE_CHECK([GLOB_BRACE], [GLOB_BRACE], [glob.h])
1077 AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
1079 AC_CHECK_HEADER([libkern/OSAtomic.h],
1080 [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
1082 AC_CHECK_SIZEOF([int])
1083 AC_CHECK_SIZEOF([long])
1084 AC_CHECK_SIZEOF([long long])
1085 AC_CHECK_SIZEOF([char *])
1086 AC_CHECK_SIZEOF(long)
1087 AC_CHECK_SIZEOF(long long)
1088 AC_COMPUTE_INT([ac_cv_sizeof_fd_set_fds_bits], [sizeof(foo.fds_bits[[0]])], [$ac_includes_default
1090 # This doesn't actually work; what it does is to use the variable set in the
1091 # previous test as a cached value to set the right output variables.
1092 AC_CHECK_SIZEOF(fd_set.fds_bits)
1094 # Set a type compatible with the previous. We cannot just use a generic type
1095 # for these bits, because on big-endian systems, the bits won't match up
1096 # correctly if the size is wrong.
1097 if test $ac_cv_sizeof_int = $ac_cv_sizeof_fd_set_fds_bits; then
1098 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [int], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1099 else if test $ac_cv_sizeof_long = $ac_cv_sizeof_fd_set_fds_bits; then
1100 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1101 else if test $ac_cv_sizeof_long_long = $ac_cv_sizeof_fd_set_fds_bits; then
1102 AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
1105 AC_MSG_CHECKING(for dladdr in dlfcn.h)
1110 AC_LANG_PROGRAM([#define _GNU_SOURCE 1
1111 #include <dlfcn.h>],
1112 [dladdr((void *)0, (void *)0)]
1116 AC_SUBST([PBX_DLADDR])
1117 AC_DEFINE([HAVE_DLADDR], 1, [Define to 1 if your system has the dladdr() GNU extension]),
1122 # PKGCONFIG is used in later tests
1123 AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
1126 # do the package library checks now
1128 AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
1130 AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_openr], [bfd.h])
1132 if test "x${OSARCH}" = "xlinux-gnu" ; then
1133 AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
1136 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_RESET_COUNTERS], [dahdi/user.h], [230])
1137 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_DEFAULT_MTU_MRU], [dahdi/user.h], [220])
1138 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_CODE], [dahdi/user.h], [200])
1140 AST_C_DEFINE_CHECK([DAHDI_HALF_FULL], [DAHDI_POLICY_HALF_FULL], [dahdi/user.h])
1142 AST_C_COMPILE_CHECK([DAHDI_LINEREVERSE_VMWI], [struct dahdi_vmwi_info booger], [dahdi/user.h], , [enhanced dahdi vmwi support])
1144 AST_C_COMPILE_CHECK([DAHDI_ECHOCANCEL_FAX_MODE], [int foo = DAHDI_ECHOCANCEL_FAX_MODE], [dahdi/user.h])
1146 AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h], , [getifaddrs() support])
1147 AST_C_COMPILE_CHECK([TIMERFD], [timerfd_create(0,0); timerfd_settime(0,0,NULL,NULL);], [sys/timerfd.h], , [timerfd support])
1150 AC_SUBST(GSM_INTERNAL)
1152 if test "${USE_GSM}" != "no"; then
1153 if test "${GSM_DIR}" = "internal"; then
1155 elif test "${GSM_DIR}" != ""; then
1158 if test "${GSM_SYSTEM}" = "yes"; then
1160 if test "x${GSM_DIR}" != "x"; then
1161 if test -d ${GSM_DIR}/lib; then
1162 gsmlibdir="-L${GSM_DIR}/lib"
1164 gsmlibdir="-L${GSM_DIR}"
1167 AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
1168 [Define to indicate the GSM library]), [], ${gsmlibdir})
1169 if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
1170 if test "x${GSM_DIR}" != "x" ; then
1171 AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
1172 AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
1174 AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
1175 AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
1177 if test "${GSM_HEADER_FOUND}" = "0" ; then
1178 if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
1179 if test "x${GSM_MANDATORY}" = "xyes" ; then
1180 AC_MSG_NOTICE([***])
1181 AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
1182 AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
1183 AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
1189 if test "${GSM_HEADER_FOUND}" = "1" ; then
1190 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
1193 if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
1194 AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
1198 if test "${GSM_OK}" = "1" ; then
1200 if test "x${GSM_DIR}" != "x"; then
1201 GSM_LIB="${gsmlibdir} ${GSM_LIB}"
1202 GSM_INCLUDE="-I${GSM_DIR}/include"
1209 if test "${GSM_INTERNAL}" = "yes"; then
1211 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
1215 AST_EXT_LIB_CHECK([ICONV], [iconv], [iconv_open], [iconv.h])
1216 # GNU libiconv #define's iconv_open to libiconv_open, so we need to search for that symbol
1217 AST_EXT_LIB_CHECK([ICONV], [iconv], [libiconv_open], [iconv.h])
1218 # Some versions of Linux package iconv in glibc
1219 AST_EXT_LIB_CHECK([ICONV], [c], [iconv_close], [iconv.h])
1221 # If ical.h is NOT in the libical directory, then it is of a version insufficient for us.
1222 AST_EXT_LIB_CHECK([ICAL], [ical], [icaltimezone_get_utc_timezone], [libical/ical.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
1224 AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
1226 if test "${USE_IMAP_TK}" != "no"; then
1227 saved_cppflags="${CPPFLAGS}"
1228 saved_libs="${LIBS}"
1229 switch_to_system_on_failure="no"
1230 if test "${IMAP_TK_DIR}" = ""; then
1231 IMAP_TK_DIR=`pwd`"/../imap-2004g"
1232 switch_to_system_on_failure="yes"
1234 if test "${IMAP_TK_DIR}" != "system"; then
1235 AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
1236 if test -f "${IMAP_TK_DIR}/c-client/LDFLAGS"; then
1237 imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
1239 imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
1240 imap_include="-I${IMAP_TK_DIR}/c-client"
1241 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1242 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1245 [#include "c-client.h"
1246 void mm_searched (MAILSTREAM *stream,unsigned long number)
1249 void mm_exists (MAILSTREAM *stream,unsigned long number)
1252 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1255 void mm_flags (MAILSTREAM *stream,unsigned long number)
1258 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1261 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1264 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1267 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1270 void mm_log (char *string,long errflg)
1273 void mm_dlog (char *string)
1276 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1279 void mm_critical (MAILSTREAM *stream)
1282 void mm_nocritical (MAILSTREAM *stream)
1285 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1288 void mm_fatal (char *string)
1292 MAILSTREAM *foo = mail_open(NULL, "", 0);
1295 [ac_cv_imap_tk="yes"],
1296 [ac_cv_imap_tk="no"]
1298 if test "${ac_cv_imap_tk}" = "yes"; then
1301 [#include "c-client.h"
1302 void mm_searched (MAILSTREAM *stream,unsigned long number)
1305 void mm_exists (MAILSTREAM *stream,unsigned long number)
1308 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1311 void mm_flags (MAILSTREAM *stream,unsigned long number)
1314 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1317 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1320 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1323 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1326 void mm_log (char *string,long errflg)
1329 void mm_dlog (char *string)
1332 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1335 void mm_critical (MAILSTREAM *stream)
1338 void mm_nocritical (MAILSTREAM *stream)
1341 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1344 void mm_fatal (char *string)
1348 long check = mail_expunge_full(NULL, "", 0);
1351 [ac_cv_imap_tk2006="yes"],
1352 [ac_cv_imap_tk2006="no"]
1355 CPPFLAGS="${saved_cppflags}"
1356 LIBS="${saved_libs}"
1357 if test "${ac_cv_imap_tk}" = "no"; then
1359 if test "${switch_to_system_on_failure}" = "yes"; then
1360 IMAP_TK_DIR="system"
1361 else #This means they specified a directory. Search for a package installation there too
1362 AC_MSG_CHECKING([for system c-client library...])
1363 CPPFLAGS="${saved_cppflags}"
1364 LIBS="${saved_libs}"
1365 imap_include="-I${IMAP_TK_DIR}/include"
1366 imap_ldflags="-L${IMAP_TK_DIR}/lib"
1367 imap_libs="-lc-client"
1368 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1369 LIBS="${LIBS} ${imap_libs} ${imap_ldflags}"
1372 [#include "c-client.h"
1373 void mm_searched (MAILSTREAM *stream,unsigned long number)
1376 void mm_exists (MAILSTREAM *stream,unsigned long number)
1379 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1382 void mm_flags (MAILSTREAM *stream,unsigned long number)
1385 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1388 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1391 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1394 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1397 void mm_log (char *string,long errflg)
1400 void mm_dlog (char *string)
1403 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1406 void mm_critical (MAILSTREAM *stream)
1409 void mm_nocritical (MAILSTREAM *stream)
1412 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1415 void mm_fatal (char *string)
1419 MAILSTREAM *foo = mail_open(NULL, "", 0);
1422 [ac_cv_imap_tk="yes"],
1423 [ac_cv_imap_tk="no"]
1425 if test "${ac_cv_imap_tk}" = "yes"; then
1428 [#include "c-client.h"
1429 void mm_searched (MAILSTREAM *stream,unsigned long number)
1432 void mm_exists (MAILSTREAM *stream,unsigned long number)
1435 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1438 void mm_flags (MAILSTREAM *stream,unsigned long number)
1441 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1444 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1447 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1450 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1453 void mm_log (char *string,long errflg)
1456 void mm_dlog (char *string)
1459 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1462 void mm_critical (MAILSTREAM *stream)
1465 void mm_nocritical (MAILSTREAM *stream)
1468 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1471 void mm_fatal (char *string)
1475 long check = mail_expunge_full(NULL, "", 0);
1478 [ac_cv_imap_tk2006="yes"],
1479 [ac_cv_imap_tk2006="no"]
1485 if test "${IMAP_TK_DIR}" = "system"; then
1486 #We will enter here if user specified "system" or if any of above checks failed
1487 AC_MSG_CHECKING([for system c-client library...])
1488 CPPFLAGS="${saved_cppflags}"
1489 LIBS="${saved_libs}"
1491 imap_libs="-lc-client"
1492 imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
1493 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1494 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1498 #include <imap/c-client.h>
1499 void mm_searched (MAILSTREAM *stream,unsigned long number)
1502 void mm_exists (MAILSTREAM *stream,unsigned long number)
1505 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1508 void mm_flags (MAILSTREAM *stream,unsigned long number)
1511 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1514 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1517 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1520 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1523 void mm_log (char *string,long errflg)
1526 void mm_dlog (char *string)
1529 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1532 void mm_critical (MAILSTREAM *stream)
1535 void mm_nocritical (MAILSTREAM *stream)
1538 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1541 void mm_fatal (char *string)
1545 MAILSTREAM *foo = mail_open(NULL, "", 0);
1548 [ac_cv_imap_tk="yes"],
1549 [ac_cv_imap_tk="no"]
1551 if test "${ac_cv_imap_tk}" = "yes"; then
1555 #include <imap/c-client.h>
1556 void mm_searched (MAILSTREAM *stream,unsigned long number)
1559 void mm_exists (MAILSTREAM *stream,unsigned long number)
1562 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1565 void mm_flags (MAILSTREAM *stream,unsigned long number)
1568 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1571 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1574 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1577 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1580 void mm_log (char *string,long errflg)
1583 void mm_dlog (char *string)
1586 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1589 void mm_critical (MAILSTREAM *stream)
1592 void mm_nocritical (MAILSTREAM *stream)
1595 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1598 void mm_fatal (char *string)
1602 long check = mail_expunge_full(NULL, "", 0);
1605 [ac_cv_imap_tk2006="yes"],
1606 [ac_cv_imap_tk2006="no"]
1608 else #looking in imap directory didn't work, try c-client
1610 imap_libs="-lc-client"
1611 imap_include="-DUSE_SYSTEM_CCLIENT"
1612 CPPFLAGS="${saved_cppflags}"
1613 LIBS="${saved_libs}"
1614 CPPFLAGS="${CPPFLAGS} ${imap_include}"
1615 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1619 #include <c-client/c-client.h>
1620 void mm_searched (MAILSTREAM *stream,unsigned long number)
1623 void mm_exists (MAILSTREAM *stream,unsigned long number)
1626 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1629 void mm_flags (MAILSTREAM *stream,unsigned long number)
1632 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1635 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1638 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1641 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1644 void mm_log (char *string,long errflg)
1647 void mm_dlog (char *string)
1650 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1653 void mm_critical (MAILSTREAM *stream)
1656 void mm_nocritical (MAILSTREAM *stream)
1659 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1662 void mm_fatal (char *string)
1666 MAILSTREAM *foo = mail_open(NULL, "", 0);
1669 [ac_cv_imap_tk="yes"],
1670 [ac_cv_imap_tk="no"]
1672 if test "${ac_cv_imap_tk}" = "yes"; then
1676 #include <c-client/c-client.h>
1677 void mm_searched (MAILSTREAM *stream,unsigned long number)
1680 void mm_exists (MAILSTREAM *stream,unsigned long number)
1683 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1686 void mm_flags (MAILSTREAM *stream,unsigned long number)
1689 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1692 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1695 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1698 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1701 void mm_log (char *string,long errflg)
1704 void mm_dlog (char *string)
1707 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1710 void mm_critical (MAILSTREAM *stream)
1713 void mm_nocritical (MAILSTREAM *stream)
1716 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1719 void mm_fatal (char *string)
1723 long check = mail_expunge_full(NULL, "", 0);
1726 [ac_cv_imap_tk2006="yes"],
1727 [ac_cv_imap_tk2006="no"]
1732 if test "${ac_cv_imap_tk}" = "yes"; then
1734 IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
1735 IMAP_TK_INCLUDE="${imap_include}"
1737 AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
1738 if test "${ac_cv_imap_tk2006}" = "yes"; then
1739 AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
1744 CPPFLAGS="${saved_cppflags}"
1745 LIBS="${saved_libs}"
1748 AST_EXT_LIB_CHECK([IODBC], [iodbc], [SQLConnect], [sql.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
1750 AST_EXT_LIB_CHECK([INOTIFY], [c], [inotify_init], [sys/inotify.h])
1752 AST_EXT_LIB_CHECK([JACK], [jack], [jack_activate], [jack/jack.h])
1754 # BSD (and OS X) equivalent of inotify
1755 AST_EXT_LIB_CHECK([KQUEUE], [c], [kqueue], [sys/event.h])
1757 # 64-bit version of kevent (from kqueue) on OS X
1758 AC_CHECK_FUNCS([kevent64])
1760 # Needed by unixodbc
1761 AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
1763 AST_EXT_LIB_CHECK([LDAP], [ldap], [ldap_initialize], [ldap.h])
1765 AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
1767 if test "${PBX_MISDN}" = 1; then
1768 AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
1769 AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
1770 AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
1771 AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
1772 AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
1773 AC_CHECK_MEMBER([Q931_info_t.redirect_dn], [], [PBX_MISDN=0], [#include <mISDNuser/mISDNlib.h>])
1776 AST_EXT_TOOL_CHECK([MYSQLCLIENT], [mysql_config])
1778 AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
1780 AST_EXT_TOOL_CHECK([NEON], [neon-config])
1782 AST_EXT_TOOL_CHECK([NEON29], [neon-config], , [--libs],
1783 [#include <ne_auth.h>],
1784 [#ifndef NE_AUTH_NTLM
1785 #error Need libneon >= 0.29.0
1788 AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp-config], , [--agent-libs],
1789 [#include <net-snmp/net-snmp-config.h>
1790 #include <net-snmp/net-snmp-includes.h>
1791 #include <net-snmp/agent/net-snmp-agent-includes.h>],
1792 [int callback = snmp_register_callback(0, 0, NULL, NULL)])
1794 AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
1796 AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
1798 AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
1800 # Non-glibc platforms require libexecinfo for backtrace support
1801 AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h])
1802 # Linux, however, has backtrace directly in glibc
1803 AST_EXT_LIB_CHECK([BKTR], [c], [backtrace], [execinfo.h])
1805 AST_EXT_LIB_CHECK([BLUETOOTH], [bluetooth], [ba2str], [bluetooth/bluetooth.h])
1807 # possible places for oss definitions
1808 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
1809 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
1810 AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
1813 if test "${USE_PGSQL}" != "no"; then
1814 if test "x${PGSQL_DIR}" != "x"; then
1815 AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
1816 if test x"${PG_CONFIG}" = xNo; then
1817 AC_MSG_NOTICE([***])
1818 AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
1819 AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
1820 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1821 AC_MSG_NOTICE([*** including --without-postgres])
1825 AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
1828 if test "${PG_CONFIG}" != No; then
1829 PGSQL_libdir=`${PG_CONFIG} --libdir`
1830 PGSQL_includedir=`${PG_CONFIG} --includedir`
1831 if test "x$?" != "x0" ; then
1832 if test -n "${PGSQL_MANDATORY}" ; then
1833 AC_MSG_NOTICE([***])
1834 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1835 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1836 AC_MSG_NOTICE([*** including --without-postgres])
1840 AC_CHECK_LIB([pq], [PQescapeStringConn], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
1841 [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
1843 AC_MSG_CHECKING(for pg_encoding_to_char within Postgres headers)
1844 old_CFLAGS=${CFLAGS}
1845 CFLAGS="${CFLAGS} -I${PGSQL_includedir} -Werror"
1846 old_LDFLAGS=${LDFLAGS}
1847 LDFLAGS="${LDFLAGS} -L${PGSQL_libdir} -lpq -lz"
1848 AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <libpq-fe.h>],
1849 [const char *foo = pg_encoding_to_char(1)])],
1851 AC_DEFINE_UNQUOTED([HAVE_PGSQL_pg_encoding_to_char], 1, [Define to indicate presence of the pg_encoding_to_char API.])],
1852 [AC_MSG_RESULT(no)])
1853 CFLAGS=${old_CFLAGS}
1854 LDFLAGS=${old_LDFLAGS}
1856 if test "${ac_cv_lib_pq_PQescapeStringConn}" = "yes"; then
1857 PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
1858 PGSQL_INCLUDE="-I${PGSQL_includedir}"
1860 elif test -n "${PGSQL_MANDATORY}";
1862 AC_MSG_NOTICE([***])
1863 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1864 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1865 AC_MSG_NOTICE([*** including --without-postgres])
1871 AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
1873 AST_EXT_LIB_CHECK([PORTAUDIO], [portaudio], [Pa_GetDeviceCount], [portaudio.h])
1875 AST_EXT_LIB_CHECK([PRI], [pri], [pri_connected_line_update], [libpri.h])
1876 AST_EXT_LIB_CHECK([PRI_L2_PERSISTENCE], [pri], [pri_persistent_layer2_option], [libpri.h])
1877 AST_EXT_LIB_CHECK([PRI_DATETIME_SEND], [pri], [pri_date_time_send_option], [libpri.h])
1878 AST_EXT_LIB_CHECK([PRI_MWI_V2], [pri], [pri_mwi_indicate_v2], [libpri.h])
1879 AST_EXT_LIB_CHECK([PRI_DISPLAY_TEXT], [pri], [pri_display_text], [libpri.h])
1880 AST_EXT_LIB_CHECK([PRI_MWI], [pri], [pri_mwi_indicate], [libpri.h])
1881 AST_EXT_LIB_CHECK([PRI_MCID], [pri], [pri_mcid_enable], [libpri.h])
1882 AST_EXT_LIB_CHECK([PRI_CALL_WAITING], [pri], [pri_connect_ack_enable], [libpri.h])
1883 AST_EXT_LIB_CHECK([PRI_AOC_EVENTS], [pri], [pri_aoc_events_enable], [libpri.h])
1884 AST_EXT_LIB_CHECK([PRI_TRANSFER], [pri], [pri_transfer_enable], [libpri.h])
1885 AST_EXT_LIB_CHECK([PRI_CCSS], [pri], [pri_cc_enable], [libpri.h])
1886 AST_EXT_LIB_CHECK([PRI_HANGUP_FIX], [pri], [pri_hangup_fix_enable], [libpri.h])
1887 AST_EXT_LIB_CHECK([PRI_SUBADDR], [pri], [pri_sr_set_called_subaddress], [libpri.h])
1888 AST_EXT_LIB_CHECK([PRI_CALL_HOLD], [pri], [pri_hold_enable], [libpri.h])
1889 AST_EXT_LIB_CHECK([PRI_CALL_REROUTING], [pri], [pri_reroute_enable], [libpri.h])
1890 AST_EXT_LIB_CHECK([PRI_SETUP_KEYPAD], [pri], [pri_sr_set_keypad_digits], [libpri.h])
1892 # ------------------------------------v
1893 # TODO: The code can be changed to always include these features now.
1894 # These features will always be present if pri_connected_line_update is available.
1895 AST_EXT_LIB_CHECK([PRI_PROG_W_CAUSE], [pri], [pri_progress_with_cause], [libpri.h])
1896 AST_EXT_LIB_CHECK([PRI_INBANDDISCONNECT], [pri], [pri_set_inbanddisconnect], [libpri.h])
1897 AST_EXT_LIB_CHECK([PRI_SERVICE_MESSAGES], [pri], [pri_maintenance_service], [libpri.h])
1898 AST_EXT_LIB_CHECK([PRI_REVERSE_CHARGE], [pri], [pri_sr_set_reversecharge], [libpri.h])
1899 # ------------------------------------^
1901 AST_EXT_LIB_CHECK([RESAMPLE], [resample], [resample_open], [libresample.h], [-lm])
1903 AST_C_COMPILE_CHECK([SPANDSP], [
1904 #if SPANDSP_RELEASE_DATE < 20080516
1905 #error "spandsp 0.0.5 or greater is required"
1907 ], [spandsp/version.h], , [minimum version of SpanDSP])
1909 if test "x${PBX_SPANDSP}" = "x1" ; then
1910 # We found the correct version in the header, now let's make sure it links
1911 # properly, and that libtiff is available
1913 AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [span_set_message_handler], [spandsp.h], [-ltiff])
1916 if test "x${PBX_SPANDSP}" = "x1" ; then
1917 # We also need t38_terminal_init()
1919 AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [t38_terminal_init], [spandsp.h], [-ltiff])
1922 AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_pollflags], [libss7.h])
1924 AST_EXT_LIB_CHECK([OPENR2], [openr2], [openr2_chan_new], [openr2.h])
1926 if test "${USE_PWLIB}" != "no"; then
1927 if test -n "${PWLIB_DIR}"; then
1928 PWLIBDIR="${PWLIB_DIR}"
1931 AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2], [P[[WT]]LIB_VERSION])
1933 if test "${HAS_PWLIB:-unset}" != "unset"; then
1934 AST_CHECK_PWLIB_PLATFORM()
1936 PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
1938 AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
1939 [Define if your system has the PWLib libraries.],
1940 [#include "ptlib.h"],
1941 [int q = (int) PTime::IsDaylightSavings();])
1945 if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
1946 if test -n "${OPENH323_DIR}"; then
1947 OPENH323DIR="${OPENH323_DIR}"
1949 AST_CHECK_OPENH323()
1950 AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3], [], [1], [19], [0])
1951 AST_CHECK_OPENH323_BUILD()
1952 PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
1953 AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
1954 [Define if your system has the OpenH323 libraries.],
1957 #include "h323ep.h"],
1958 [H323EndPoint ep = H323EndPoint();],
1959 [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
1962 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h], [-lm])
1963 if test "x${PBX_LUA}" = "x1" ; then
1964 if test x"${LUA_DIR}" = x; then
1965 LUA_INCLUDE="${LUA_INCLUDE} -I/usr/include/lua5.1"
1967 LUA_INCLUDE="${LUA_INCLUDE} -I${LUA_DIR}/lua5.1"
1971 # Some distributions (like SuSE) remove the 5.1 suffix.
1972 AST_EXT_LIB_CHECK([LUA], [lua], [luaL_register], [lua.h], [-lm])
1974 AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
1976 # This is a bit complex... in reality, Asterisk's AIS support is dependent on finding
1977 # *any* implementation of AIS, not just OpenAIS. However, the configure script needs
1978 # to know the specifics of each possible implementation, and then represent the one
1979 # that was found as 'AIS'.
1983 # OpenAIS installs its libraries into /usr/lib/openais by default, so check there
1985 AST_EXT_LIB_CHECK([OPENAIS], [SaClm], [saClmInitialize], [openais/saClm.h], [-L/usr/lib/openais -L/usr/lib64/openais])
1987 if test "${PBX_OPENAIS}" = 1; then
1989 if test -n "${OPENAIS_DIR}"; then
1990 AIS_INCLUDE="${OPENAIS_INCLUDE}/openais"
1991 AIS_LIB="-lSaEvt ${OPENAIS_LIB}"
1993 AIS_INCLUDE="-I/usr/include/openais"
1994 AIS_LIB="-lSaClm -lSaEvt -L/usr/lib/openais -L/usr/lib64/openais"
1999 AC_SUBST(AIS_INCLUDE)
2002 AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
2004 # See if the main speex library contains the preprocess functions
2005 AST_EXT_LIB_CHECK([SPEEX_PREPROCESS], [speex], [speex_preprocess_ctl], [speex/speex.h], [-lm])
2006 if test "${PBX_SPEEX_PREPROCESS}" = 1; then
2007 PBX_SPEEX_PREPROCESS=1
2010 AST_EXT_LIB_CHECK([SPEEXDSP], [speexdsp], [speex_preprocess_ctl], [speex/speex.h], [-lm])
2011 if test "${PBX_SPEEXDSP}" = 1; then
2012 PBX_SPEEX_PREPROCESS=1
2015 AC_SUBST(PBX_SPEEX_PREPROCESS)
2017 AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
2019 AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
2021 if test "${PBX_SQLITE3}" != 1; then
2022 AC_MSG_WARN(*** Asterisk now uses SQLite3 for the internal Asterisk database.)
2023 AC_MSG_WARN(*** Please install the SQLite3 development package.)
2027 AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
2029 if test "$PBX_CRYPTO" = "1";
2031 AST_EXT_LIB_CHECK([OPENSSL], [ssl], [SSL_connect], [openssl/ssl.h], [-lcrypto])
2034 if test "$PBX_OPENSSL" = "1";
2036 AST_CHECK_OSPTK([4], [0], [0])
2039 AST_EXT_LIB_CHECK([SRTP], [srtp], [srtp_init], [srtp/srtp.h])
2041 if test "$PBX_SRTP" = "1";
2043 saved_libs="${LIBS}"
2044 saved_ldflags="${LDFLAGS}"
2045 saved_cflags="${CFLAGS}"
2046 LIBS="${LIBS} ${SRTP_LIB}"
2047 LDFLAGS="${LDFLAGS} -shared -fPIC"
2048 CFLAGS="${CFLAGS} ${SRTP_INCLUDE}"
2049 AC_MSG_CHECKING(for the ability of -lsrtp to be linked in a shared object)
2053 [#include <srtp/srtp.h>],
2057 [ AC_MSG_RESULT(yes) ],
2061 AC_MSG_WARN(*** libsrtp could not be linked as a shared object.)
2062 AC_MSG_WARN(*** Try compiling libsrtp manually. Configure libsrtp)
2063 AC_MSG_WARN(*** with ./configure CFLAGS=-fPIC --prefix=/usr)
2064 AC_MSG_WARN(*** replacing /usr with the prefix of your choice.)
2065 AC_MSG_WARN(*** After re-installing libsrtp, re-run the Asterisk)
2066 AC_MSG_WARN(*** configure script.)
2068 AC_MSG_WARN(*** If you do not need SRTP support re-run configure)
2069 AC_MSG_WARN(*** with the --without-srtp option.)
2073 LIBS="${saved_libs}"
2074 LDFLAGS="${saved_ldflags}"
2075 CFLAGS="${saved_cflags}"
2078 AST_EXT_TOOL_CHECK([GMIME], [gmime-config], [], [], [#include <gmime/gmime.h>], [gboolean q = g_mime_check_version(0,0,0);])
2079 if test "x${PBX_GMIME}" = "x0" -a "${PKGCONFIG}" != "No"; then
2080 # Later versions of GMime use pkg-config
2081 for ver in 2.0 2.2 2.4; do
2082 if ! ${PKGCONFIG} --exists gmime-$ver; then
2085 # If we got here, we have this version:
2086 GMIME_INCLUDE=$(${PKGCONFIG} gmime-$ver --cflags 2>/dev/null)
2087 GMIME_LIB=$(${PKGCONFIG} gmime-$ver --libs)
2089 AC_DEFINE([HAVE_GMIME], 1, [Define if your system has the GMIME libraries.])
2094 AST_EXT_LIB_CHECK([HOARD], [hoard], [malloc], [])
2096 AST_EXT_LIB_CHECK([FREETDS], [sybdb], [dbinit], [sybdb.h])
2098 AC_CHECK_LIB([tonezone], [tone_zone_find_by_num], tonezone_does_not_need_lm=yes, tonezone_does_not_need_lm=no)
2100 if test "${tonezone_does_not_need_lm}" = "no" ; then
2101 tonezone_extra="-lm"
2104 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [dahdi/tonezone.h], [${tonezone_extra} ${DAHDI_INCLUDE}])
2106 AST_EXT_LIB_CHECK([USB], [usb], [usb_init], [usb.h], [])
2108 if test "${OSARCH}" = "OpenBSD";
2110 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -logg])
2112 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc])
2117 if test "${USE_VPB}" != "no"; then
2118 AC_MSG_CHECKING(for vpb_open in -lvpb)
2119 saved_libs="${LIBS}"
2120 saved_cppflags="${CPPFLAGS}"
2121 if test "x${VPB_DIR}" != "x"; then
2122 if test -d ${VPB_DIR}/lib; then
2123 vpblibdir=${VPB_DIR}/lib
2125 vpblibdir=${VPB_DIR}
2127 LIBS="${LIBS} -L${vpblibdir}"
2128 CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
2130 LIBS="${PTHREAD_LIBS} ${LIBS} -lvpb"
2131 CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS}"
2135 [#include <vpbapi.h>],
2136 [int q = vpb_open(0,0);])
2138 [ AC_MSG_RESULT(yes)
2139 ac_cv_lib_vpb_vpb_open="yes"
2142 ac_cv_lib_vpb_vpb_open="no"
2145 LIBS="${saved_libs}"
2146 CPPFLAGS="${saved_cppflags}"
2147 if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
2149 if test "${VPB_DIR}" != ""; then
2150 VPB_LIB="-L${vpblibdir} ${VPB_LIB}"
2151 VPB_INCLUDE="-I${VPB_DIR}/include"
2154 AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
2160 AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
2162 if test "x${PBX_UNIXODBC}" = "x1" -o "x${PBX_IODBC}" = "x1"; then
2163 # Does ODBC support wide characters?
2164 AC_MSG_CHECKING(whether ODBC has support for Unicode types)
2168 #include <sqlext.h>],
2169 [int foo = SQL_WCHAR]),
2171 AC_DEFINE([HAVE_ODBC_WCHAR], [1], [Define to 1 if your ODBC library has wide (Unicode) types.]),
2176 AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
2179 AC_CHECK_HEADER([linux/compiler.h],
2180 [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
2182 AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
2183 #include <linux/version.h>
2184 #ifdef HAVE_LINUX_COMPILER_H
2185 #include <linux/compiler.h>
2188 AC_SUBST(PBX_IXJUSER)
2190 # Used in res/res_pktccops
2191 AST_C_DEFINE_CHECK([MSG_NOSIGNAL], [MSG_NOSIGNAL], [sys/socket.h])
2192 AST_C_DEFINE_CHECK([SO_NOSIGPIPE], [SO_NOSIGPIPE], [sys/socket.h])
2194 AST_EXT_TOOL_CHECK([SDL], [sdl-config])
2195 AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL_image.h], [${SDL_LIB}], [${SDL_INCLUDE}])
2196 AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [${PTHREAD_LIBS} -lz -lm], [${PTHREAD_CFLAGS}])
2198 # possible places for video4linux version 1
2199 AC_CHECK_HEADER([linux/videodev.h],
2200 [AC_DEFINE_UNQUOTED([HAVE_VIDEODEV_H], 1, [Define to 1 if your system has linux/videodev.h.])])
2202 # possible places for X11
2203 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],,, [standard_path])
2204 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],, [-I/usr/X11R6/include], [X11R6])
2207 if test "${cross_compiling}" = "no";
2209 AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
2212 AC_SUBST(PBX_LAUNCHD)
2215 if test "${PKGCONFIG}" != "No"; then
2216 GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
2217 GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
2219 AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
2222 AC_SUBST(GTK2_INCLUDE)
2225 # build a GENERIC_ODBC result based on the presence of either UnixODBC (preferred)
2230 if test "${PBX_UNIXODBC}" = 1; then
2232 GENERIC_ODBC_LIB="${UNIXODBC_LIB}"
2233 GENERIC_ODBC_INCLUDE="${UNIXODBC_INCLUDE}"
2234 elif test "${PBX_IODBC}" = 1; then
2236 GENERIC_ODBC_LIB="${IODBC_LIB}"
2237 GENERIC_ODBC_INCLUDE="${IODBC_INCLUDE}"
2240 AC_SUBST([GENERIC_ODBC_LIB])
2241 AC_SUBST([GENERIC_ODBC_INCLUDE])
2242 AC_SUBST([PBX_GENERIC_ODBC])
2246 if test "${ac_cv_header_syslog_h}" = "yes"; then
2248 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTH], [LOG_AUTH], [syslog.h])
2249 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTHPRIV], [LOG_AUTHPRIV], [syslog.h])
2250 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_CRON], [LOG_CRON], [syslog.h])
2251 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_DAEMON], [LOG_DAEMON], [syslog.h])
2252 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_FTP], [LOG_FTP], [syslog.h])
2253 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_KERN], [LOG_KERN], [syslog.h])
2254 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_LPR], [LOG_LPR], [syslog.h])
2255 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_MAIL], [LOG_MAIL], [syslog.h])
2256 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_NEWS], [LOG_NEWS], [syslog.h])
2257 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_SYSLOG], [LOG_SYSLOG], [syslog.h])
2258 AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_UUCP], [LOG_UUCP], [syslog.h])
2262 AC_SUBST([PBX_SYSLOG])
2264 if test -f makeopts; then
2265 ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak
2267 touch makeopts.acbak
2270 AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
2273 if test -f build_tools/menuselect-deps; then
2274 # extract old values of all PBX_ variables from menuselect-deps
2275 # and preserve them so that menuselect can determine whether
2276 # any previously-met dependencies are no longer met and warn
2277 # the user appropriately
2278 while IFS="=:" read var val old_val; do
2279 eval "PBX_${var}=\${PBX_${var}}:${val}"
2280 done < build_tools/menuselect-deps
2285 ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2
2286 if test "x${ac_cv_path_CMP}" = "x:"; then
2287 ( cd `pwd`/menuselect && ./configure )
2288 else if ${ac_cv_path_CMP} -s makeopts.acbak makeopts.acbak2; then : ; else
2289 ( cd `pwd`/menuselect && ./configure )
2292 rm makeopts.acbak makeopts.acbak2
2295 if test "x${silent}" != "xyes" ; then
2297 echo " .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=.. "
2298 echo " .\$7\$7.. .7\$\$7:. "
2299 echo " .\$\$:. ,\$7.7 "
2300 echo " .\$7. 7\$\$\$\$ .\$\$77 "
2301 echo " ..\$\$. \$\$\$\$\$ .\$\$\$7 "
2302 echo " ..7\$ .?. \$\$\$\$\$ .?. 7\$\$\$."
2303 echo " \$.\$. .\$\$\$7. \$\$\$\$7 .7\$\$\$. .\$\$\$."
2304 echo " .777. .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7. \$\$\$,"
2305 echo " \$\$\$~ .7\$\$\$\$\$\$\$\$\$\$\$\$\$7. .\$\$\$."
2306 echo ".\$\$7 .7\$\$\$\$\$\$\$7: ?\$\$\$."
2307 echo "\$\$\$ ?7\$\$\$\$\$\$\$\$\$\$I .\$\$\$7 "
2308 echo "\$\$\$ .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$ :\$\$\$. "
2309 echo "\$\$\$ \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$ .\$\$\$. "
2310 echo "\$\$\$ \$\$\$ 7\$\$\$7 .\$\$\$ .\$\$\$. "
2311 echo "\$\$\$\$ \$\$\$\$7 .\$\$\$. "
2312 echo "7\$\$\$7 7\$\$\$\$ 7\$\$\$ "
2313 echo " \$\$\$\$\$ \$\$\$ "
2314 echo " \$\$\$\$7. \$\$ (TM) "
2315 echo " \$\$\$\$\$\$\$. .7\$\$\$\$\$\$ \$\$ "
2316 echo " \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$ "
2317 echo " \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$. "
2321 AC_MSG_NOTICE(Package configured for: )
2322 AC_MSG_NOTICE( OS type : $host_os)
2323 AC_MSG_NOTICE( Host CPU : $host_cpu)
2324 AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :)
2325 AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :)
2326 if test "${cross_compiling}" = "yes"; then
2327 AC_MSG_NOTICE( Cross Compilation = YES)