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 m4_define([PBX_VERSION],
12 m4_bpatsubst(m4_esyscmd([build_tools/make_version .]),
13 [\([0-9.]*\)\(\w\|\W\)*],
15 AC_INIT(asterisk, PBX_VERSION, www.asterisk.org)
17 # cross-compile macros
21 # check existence of the package
22 AC_CONFIG_SRCDIR([main/asterisk.c])
24 # specify output header file
25 AC_CONFIG_HEADER(include/asterisk/autoconfig.h)
27 AC_COPYRIGHT("Asterisk")
28 AC_REVISION($Revision$)
31 AC_USE_SYSTEM_EXTENSIONS # note- does not work on FreeBSD
35 ac_default_prefix=/usr/local
36 CPPFLAGS=-I/usr/local/include
37 LDFLAGS=-L/usr/local/lib
41 ac_default_prefix=/usr
42 if test ${sysconfdir} = '${prefix}/etc'; then
45 if test ${mandir} = '${prefix}/man'; then
51 if test ${localstatedir} = '${prefix}/var'; then
55 BUILD_PLATFORM=${build}
56 BUILD_CPU=${build_cpu}
57 BUILD_VENDOR=${build_vendor}
60 AC_SUBST(BUILD_PLATFORM)
62 AC_SUBST(BUILD_VENDOR)
67 HOST_VENDOR=${host_vendor}
70 AC_SUBST(HOST_PLATFORM)
96 AC_PATH_TOOL([UNAME], [uname], No)
97 if test ! x"${UNAME}" = xNo; then
98 PBX_OSREV=$(${UNAME} -r)
103 #ifndef ASTERISK_AUTOCONFIG_H
104 #define ASTERISK_AUTOCONFIG_H
106 #include "asterisk/buildopts.h"
114 # cross-compile checks
115 if test "${cross_compiling}" = "yes";
117 AC_CHECK_TOOL(CC, gcc, :)
118 AC_CHECK_TOOL(CXX, g++, :)
119 AC_CHECK_TOOL(LD, ld, :)
120 AC_CHECK_TOOL(RANLIB, ranlib, :)
123 # Checks for programs.
128 # This macro is just copied into our local acinclude.m4 from libtool.m4 so that
129 # the developers regenerating the configure script don't have to install libtool.
130 AST_PROG_LD # note, does not work on FreeBSD
137 AC_PATH_TOOL([STRIP], [strip], :)
138 AC_PATH_TOOL([AR], [ar], :)
141 if test "x$with_gnu_ld" = "xyes" ; then
146 AC_PATH_PROG([GREP], [grep], :)
147 AC_PATH_PROG([FIND], [find], :)
148 AC_PATH_PROG([COMPRESS], [compress], :)
149 AC_PATH_PROG([BASENAME], [basename], :)
150 AC_PATH_PROG([ID], [id], :)
151 AC_PATH_PROG([DIRNAME], [dirname], :)
152 AC_PATH_PROG([SHELL], [sh], :)
153 AC_PATH_PROG([LN], [ln], :)
154 AC_PATH_PROG([DOT], [dot], :)
155 AC_PATH_PROG([WGET], [wget], :)
156 AC_PATH_PROG([RUBBER], [rubber], :)
157 if test "${WGET}" != ":" ; then
160 AC_PATH_PROG([FETCH], [fetch], [:])
169 AC_ARG_ENABLE(dev-mode,
170 [ --enable-dev-mode Turn on developer mode],
171 [case "${enableval}" in
172 y|ye|yes) AST_DEVMODE=yes ;;
173 n|no) AST_DEVMODE=no ;;
174 *) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode) ;;
176 AC_SUBST(AST_DEVMODE)
178 # package option names should be in alphabetical order
179 # by the --with option name, to make things easier for the users :-)
181 AST_EXT_LIB_SETUP([ALSA], [Advanced Linux Sound Architecture], [asound])
183 # BKTR is used for backtrace support on platforms that do not
185 AST_EXT_LIB_SETUP([BKTR], [Stack Backtrace support], [execinfo])
186 AST_EXT_LIB_SETUP([CAP], [POSIX 1.e capabilities], [cap])
187 AST_EXT_LIB_SETUP([CURL], [cURL], [curl])
188 AST_EXT_LIB_SETUP([CURSES], [curses], [curses])
189 AST_EXT_LIB_SETUP([CRYPTO], [OpenSSL Cryptography support], [crypto])
190 AST_EXT_LIB_SETUP([GSM], [GSM], [gsm], [, or 'internal'])
191 AST_EXT_LIB_SETUP([IKSEMEL], [Iksemel Jabber Library], [iksemel])
192 AST_EXT_LIB_SETUP([IMAP_TK], [UW IMAP Toolkit], [imap])
193 AST_EXT_LIB_SETUP([ISDNNET], [ISDN4Linux Library], [isdnnet])
194 AST_EXT_LIB_SETUP([KDE], [KDE], [kde])
195 AST_EXT_LIB_SETUP([LTDL], [libtool], [ltdl])
196 AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
197 AST_EXT_LIB_SETUP([MISDN], [mISDN User Library], [misdn])
198 AST_EXT_LIB_SETUP([NBS], [Network Broadcast Sound], [nbs])
199 AST_EXT_LIB_SETUP([NCURSES], [ncurses], [ncurses])
200 AST_EXT_LIB_SETUP([NETSNMP], [Net-SNMP], [netsnmp])
201 AST_EXT_LIB_SETUP([NEWT], [newt], [newt])
202 AST_EXT_LIB_SETUP([UNIXODBC], [unixODBC], [odbc])
203 AST_EXT_LIB_SETUP([OGG], [OGG], [ogg])
204 AST_EXT_LIB_SETUP([OSPTK], [OSP Toolkit], [osptk])
205 AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
206 AST_EXT_LIB_SETUP([POPT], [popt], [popt])
207 AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
208 AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
209 AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
210 AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
211 AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
212 AST_EXT_LIB_SETUP([QT], [Qt], [qt])
213 AST_EXT_LIB_SETUP([RADIUS], [Radius Client], [radius])
214 AST_EXT_LIB_SETUP([SPEEX], [Speex], [speex])
215 AST_EXT_LIB_SETUP([SQLITE], [SQLite], [sqlite])
216 AST_EXT_LIB_SETUP([SQLITE3], [SQLite], [sqlite3])
217 AST_EXT_LIB_SETUP([SUPPSERV], [mISDN Supplemental Services], [suppserv])
218 AST_EXT_LIB_SETUP([OPENSSL], [OpenSSL Secure Sockets Layer support], [ssl])
219 AST_EXT_LIB_SETUP([FREETDS], [FreeTDS], [tds])
220 AST_EXT_LIB_SETUP([TERMCAP], [Termcap], [termcap])
221 AST_EXT_LIB_SETUP([TINFO], [Term Info], [tinfo])
222 AST_EXT_LIB_SETUP([TONEZONE], [tonezone], [tonezone])
223 AST_EXT_LIB_SETUP([USB], [usb], [usb])
224 AST_EXT_LIB_SETUP([VORBIS], [Vorbis], [vorbis])
225 AST_EXT_LIB_SETUP([VPB], [Voicetronix API], [vpb])
226 AST_EXT_LIB_SETUP([ZLIB], [zlib], [z])
227 AST_EXT_LIB_SETUP([ZAPTEL], [Zaptel], [zaptel])
228 AST_EXT_LIB_SETUP([ZAPTEL_TRANSCODE], [Zaptel_transcode], [zaptel_transcode])
229 AST_EXT_LIB_SETUP([ZAPTEL_VLDTMF], [Zaptel_vldtmf], [zaptel_vldtmf])
231 AST_EXT_LIB_SETUP([SDL], [Sdl], [sdl])
232 AST_EXT_LIB_SETUP([SDL_IMAGE], [Sdl Image library], [SDL_image])
233 AST_EXT_LIB_SETUP([FFMPEG], [Ffmpeg and avcodec library], [avcodec])
235 # check for basic system features and functionality before
236 # checking for package libraries
242 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/file.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h syslog.h termios.h unistd.h utime.h])
244 AC_CHECK_HEADERS([winsock.h winsock2.h])
248 # Checks for typedefs, structures, and compiler characteristics.
257 AC_CHECK_MEMBERS([struct stat.st_blksize])
261 AC_CHECK_TYPES([ptrdiff_t])
263 # Checks for library functions.
265 AC_FUNC_CLOSEDIR_VOID
266 AC_FUNC_ERROR_AT_LINE
269 AC_PROG_GCC_TRADITIONAL
270 # XXX: these are commented out until we determine whether it matters if our malloc()
271 # acts exactly like glibc's or not
277 AC_FUNC_SELECT_ARGTYPES
278 AC_FUNC_SETVBUF_REVERSED
287 AC_CHECK_FUNCS([asprintf atexit bzero dup2 endpwent ftruncate getcwd gethostbyname gethostname getloadavg gettimeofday inet_ntoa isascii localtime_r memchr memmove memset mkdir munmap putenv re_comp regcomp select setenv socket strcasecmp strcasestr strchr strcspn strdup strerror strlcat strlcpy strncasecmp strndup strnlen strrchr strsep strspn strstr strtol strtoq unsetenv utime vasprintf])
289 AC_CHECK_FUNCS([glob])
291 AC_LANG_PROGRAM([#include <sys/time.h>],
292 [struct timeval *a; timersub(a, a, a);]),
294 AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
298 AC_CHECK_HEADER([sys/poll.h],
300 AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
304 # https support (in main/http.c) uses funopen on BSD systems,
305 # fopencookie on linux
306 AC_CHECK_FUNCS([funopen fopencookie])
308 AC_CHECK_FUNCS([inet_aton])
310 # check if we have IP_PKTINFO constant defined
312 AC_LANG_PROGRAM([#include <netinet/in.h>],
313 [int pi = IP_PKTINFO;]),
315 AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
319 # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
320 AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
322 AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
324 AC_LANG_PROGRAM([#include <stdlib.h>
326 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);]),
328 AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
332 AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
334 AC_LANG_PROGRAM([#include <stdlib.h>
336 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);]),
338 AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
342 AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
344 AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
346 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);]),
348 AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
352 AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
354 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);]),
356 AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
360 if test "${cross_compiling}" = "no";
362 AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
365 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
366 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_PREFER_WRITER_NP], [PTHREAD_RWLOCK_PREFER_WRITER_NP], [pthread.h])
367 AST_C_DEFINE_CHECK([PTHREAD_MUTEX_RECURSIVE_NP], [PTHREAD_MUTEX_RECURSIVE_NP], [pthread.h])
368 AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
370 if test "${cross_compiling}" = "no";
372 AC_MSG_CHECKING(for working epoll support)
374 AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
380 AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
385 AC_MSG_CHECKING(for compiler atomic operations)
387 AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);]),
389 AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
393 AST_GCC_ATTRIBUTE(pure)
394 AST_GCC_ATTRIBUTE(malloc)
395 AST_GCC_ATTRIBUTE(const)
396 AST_GCC_ATTRIBUTE(unused)
397 AST_GCC_ATTRIBUTE(always_inline)
398 AST_GCC_ATTRIBUTE(deprecated)
400 AC_MSG_CHECKING(for -ffunction-sections support)
401 saved_CFLAGS="${CFLAGS}"
402 CFLAGS="${CFLAGS} -ffunction-sections"
404 AC_LANG_PROGRAM([], [int x = 1;]),
406 [saved_LDFLAGS="${LDFLAGS}"]
407 [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
408 AC_MSG_CHECKING(for --gc-sections support)
410 AC_LANG_PROGRAM([], [int x = 1;]),
412 [GC_CFLAGS="-ffunction-sections"]
413 [[GC_LDFLAGS="-Wl,--gc-sections"]],
416 [LDFLAGS="${saved_LDFLAGS}"],
419 CFLAGS="${saved_CFLAGS}"
423 AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
424 if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
426 AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
429 AST_DECLARATION_AFTER_STATEMENT=
431 AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
434 AC_MSG_CHECKING(for sysinfo)
436 AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
437 [struct sysinfo sys_info; int uptime = sys_info.uptime]),
439 AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
443 AC_MSG_CHECKING(for res_ninit)
445 AC_LANG_PROGRAM([#include <resolv.h>],
446 [int foo = res_ninit(NULL);]),
448 AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
449 AC_MSG_CHECKING(for res_ndestroy)
451 AC_LANG_PROGRAM([#include <resolv.h>],
452 [int foo = res_ndestroy(NULL);]),
454 AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
460 AST_C_DEFINE_CHECK([RTLD_NOLOAD], [RTLD_NOLOAD], [dlfcn.h])
462 AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
464 AC_CHECK_HEADER([libkern/OSAtomic.h],
465 [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
469 # do the package library checks now
471 AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
473 AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
475 if test "x${host_os}" = "xlinux-gnu" ; then
476 AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
479 # BSD might not have exp2, and/or log2
480 AST_EXT_LIB_CHECK([EXP2L], [m], [exp2l])
481 AST_EXT_LIB_CHECK([LOG2L], [m], [log2l])
482 AST_EXT_LIB_CHECK([EXP10L], [m], [exp10l])
483 AST_EXT_LIB_CHECK([LOG10L], [m], [log10l])
484 AST_EXT_LIB_CHECK([SINL], [m], [sinl])
485 AST_EXT_LIB_CHECK([COSL], [m], [cosl])
486 AST_EXT_LIB_CHECK([TANL], [m], [tanl])
487 AST_EXT_LIB_CHECK([ASINL], [m], [asinl])
488 AST_EXT_LIB_CHECK([ACOSL], [m], [acosl])
489 AST_EXT_LIB_CHECK([ATANL], [m], [atanl])
490 AST_EXT_LIB_CHECK([ATAN2L], [m], [atan2l])
491 AST_EXT_LIB_CHECK([POWL], [m], [powl])
492 AST_EXT_LIB_CHECK([SQRTL], [m], [sqrtl])
493 AST_EXT_LIB_CHECK([RINTL], [m], [rintl])
494 AST_EXT_LIB_CHECK([EXPL], [m], [expl])
495 AST_EXT_LIB_CHECK([LOGL], [m], [logl])
496 AST_EXT_LIB_CHECK([REMAINDERL], [m], [remainderl])
497 AST_EXT_LIB_CHECK([FMODL], [m], [fmodl])
498 AST_EXT_LIB_CHECK([ROUNDL], [m], [roundl])
499 AST_EXT_LIB_CHECK([TRUNCL], [m], [truncl])
500 AST_EXT_LIB_CHECK([STRTOLD], [c], [strtold], [stdlib.h])
501 AST_EXT_LIB_CHECK([FLOORL], [m], [floorl])
502 AST_EXT_LIB_CHECK([CEILL], [m], [ceill])
503 AST_EXT_LIB_CHECK([EXP2], [m], [exp2])
504 AST_EXT_LIB_CHECK([LOG2], [m], [log2])
505 AST_EXT_LIB_CHECK([EXP10], [m], [exp10])
506 AST_EXT_LIB_CHECK([LOG10], [m], [log10])
507 AST_EXT_LIB_CHECK([SIN], [m], [sin])
508 AST_EXT_LIB_CHECK([COS], [m], [cos])
509 AST_EXT_LIB_CHECK([TAN], [m], [tan])
510 AST_EXT_LIB_CHECK([ASIN], [m], [asin])
511 AST_EXT_LIB_CHECK([ACOS], [m], [acos])
512 AST_EXT_LIB_CHECK([ATAN], [m], [atan])
513 AST_EXT_LIB_CHECK([ATAN2], [m], [atan2])
514 AST_EXT_LIB_CHECK([POW], [m], [pow])
515 AST_EXT_LIB_CHECK([SQRT], [m], [sqrt])
516 AST_EXT_LIB_CHECK([RINT], [m], [rint])
517 AST_EXT_LIB_CHECK([EXP], [m], [exp])
518 AST_EXT_LIB_CHECK([LOG], [m], [log])
519 AST_EXT_LIB_CHECK([REMAINDER], [m], [remainder])
520 AST_EXT_LIB_CHECK([FMOD], [m], [fmod])
521 AST_EXT_LIB_CHECK([ROUND], [m], [round])
522 AST_EXT_LIB_CHECK([TRUNC], [m], [trunc])
523 AST_EXT_LIB_CHECK([STRTOD], [c], [strtod], [stdlib.h])
524 AST_EXT_LIB_CHECK([FLOOR], [m], [floor])
525 AST_EXT_LIB_CHECK([CEIL], [m], [ceil])
528 AC_SUBST(GSM_INTERNAL)
530 if test "${USE_GSM}" != "no"; then
531 if test "${GSM_DIR}" = "internal"; then
533 elif test "${GSM_DIR}" != ""; then
536 if test "${GSM_SYSTEM}" = "yes"; then
538 if test "x${GSM_DIR}" != "x"; then
539 if test -d ${GSM_DIR}/lib; then
540 gsmlibdir="-L${GSM_DIR}/lib"
542 gsmlibdir="-L${GSM_DIR}"
545 AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
546 [Define to indicate the GSM library]), [], ${gsmlibdir})
547 if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
548 if test "x${GSM_DIR}" != "x" ; then
549 AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
550 AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
552 AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
553 AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
555 if test "${GSM_HEADER_FOUND}" = "0" ; then
556 if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
557 if test "x${GSM_MANDATORY}" = "xyes" ; then
559 AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
560 AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
561 AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
567 if test "${GSM_HEADER_FOUND}" = "1" ; then
568 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
571 if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
572 AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
576 if test "${GSM_OK}" = "1" ; then
578 if test "x${GSM_DIR}" != "x"; then
579 GSM_LIB="${gsmlibdir} ${GSM_LIB}"
580 GSM_INCLUDE="-I${GSM_DIR}/include"
587 if test "${GSM_INTERNAL}" = "yes"; then
589 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
593 AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
595 if test "${USE_IMAP_TK}" != "no"; then
596 if test "${IMAP_TK_DIR}" = "system" ; then
597 AC_MSG_NOTICE([Checking for system c-client library...])
598 elif test "${IMAP_TK_DIR}" = ""; then
599 IMAP_TK_DIR=`pwd`"/../imap-2004g"
600 if test -n "${IMAP_TK_MANDATORY}"; then
601 AC_MSG_NOTICE([The --with-imap option does not search your system for installed])
602 AC_MSG_NOTICE([c-client library/header files. Since you did not provide a path])
603 AC_MSG_NOTICE([the configure script will assume you have placed built the c-client])
604 AC_MSG_NOTICE([files at ${IMAP_TK_DIR}, as outlined in the doc/imapstorage.txt file.])
607 if test "${IMAP_TK_DIR}" != "system" ; then
608 AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
610 saved_cppflags="${CPPFLAGS}"
612 if test "${IMAP_TK_DIR}" = "system" ; then
614 imap_libs="-lc-client"
615 imap_include="-DUSE_SYSTEM_IMAP"
616 elif test -f ${IMAP_TK_DIR}/c-client/LDFLAGS ; then
617 imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
618 imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
619 imap_include="-I${IMAP_TK_DIR}/c-client"
621 CPPFLAGS="${CPPFLAGS} ${imap_include}"
622 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
625 [#ifdef USE_SYSTEM_IMAP
626 #include <imap/c-client.h>
628 #include "c-client.h"
630 void mm_searched (MAILSTREAM *stream,unsigned long number)
633 void mm_exists (MAILSTREAM *stream,unsigned long number)
636 void mm_expunged (MAILSTREAM *stream,unsigned long number)
639 void mm_flags (MAILSTREAM *stream,unsigned long number)
642 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
645 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
648 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
651 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
654 void mm_log (char *string,long errflg)
657 void mm_dlog (char *string)
660 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
663 void mm_critical (MAILSTREAM *stream)
666 void mm_nocritical (MAILSTREAM *stream)
669 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
672 void mm_fatal (char *string)
676 MAILSTREAM *foo = mail_open(NULL, "", 0);
679 [ac_cv_imap_tk="yes"],
682 if test "${ac_cv_imap_tk}" = "yes"; then
685 [#ifdef USE_SYSTEM_IMAP
686 #include <imap/c-client.h>
688 #include "c-client.h"
690 void mm_searched (MAILSTREAM *stream,unsigned long number)
693 void mm_exists (MAILSTREAM *stream,unsigned long number)
696 void mm_expunged (MAILSTREAM *stream,unsigned long number)
699 void mm_flags (MAILSTREAM *stream,unsigned long number)
702 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
705 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
708 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
711 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
714 void mm_log (char *string,long errflg)
717 void mm_dlog (char *string)
720 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
723 void mm_critical (MAILSTREAM *stream)
726 void mm_nocritical (MAILSTREAM *stream)
729 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
732 void mm_fatal (char *string)
736 long check = mail_expunge_full(NULL, "", 0);
739 [ac_cv_imap_tk2006="yes"],
740 [ac_cv_imap_tk2006="no"]
743 CPPFLAGS="${saved_cppflags}"
745 if test "${ac_cv_imap_tk}" = "yes"; then
747 IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
748 IMAP_TK_INCLUDE="${imap_include}"
750 AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
751 if test "${ac_cv_imap_tk2006}" = "yes"; then
752 AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
760 AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
764 if test "${USE_KDE}" != "no"; then
765 AC_MSG_CHECKING(for crashHandler in -lkdecore)
767 saved_cppflags="${CPPFLAGS}"
768 CPPFLAGS="${CPPFLAGS} -I${KDE_DIR}/include"
769 if test -d ${KDE_DIR}/lib; then
770 kdelibdir="${KDE_DIR}/lib"
772 kdelibdir="${KDE_DIR}"
774 LIBS="${LIBS} -L${kdelibdir} -lkdecore"
778 [#include "kcrash.h"],
779 [KCrash::defaultCrashHandler(1);])
781 [ac_cv_lib_kde_crash="yes"],
782 [ac_cv_lib_kde_crash="no"])
785 CPPFLAGS="${saved_cppflags}"
787 if test "${ac_cv_lib_kde_crash}" = "yes"; then
789 KDE_LIB="-lkdecore -lkdeui"
790 if test "${KDE_DIR}" != ""; then
791 KDE_LIB="-L${kdelibdir} ${KDE_LIB}"
792 KDE_INCLUDE="-I${KDE_DIR}/include"
795 AC_DEFINE([HAVE_LIBKDE], 1, [Define if your system has the KDE libraries.])
800 if test "${PBX_KDE}" = 1; then
801 AC_PATH_TOOL(KDEINIT, kdeinit, No)
802 if test ! x"${KDEINIT}" = xNo; then
803 KDEDIR=$(${DIRNAME} ${KDEINIT})
804 KDEDIR=$(${DIRNAME} ${KDEDIR})
811 AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
813 if test "${PBX_MISDN}" = 1; then
814 AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
815 AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
816 AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
817 AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
818 AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
821 AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
823 AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
826 if test "${USE_NETSNMP}" != "no"; then
827 if test "x${NETSNMP_DIR}" != "x"; then
828 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], No, [${NETSNMP_DIR}/bin])
829 if test x"${NETSNMP_CONFIG}" = xNo; then
831 AC_MSG_NOTICE([*** net-snmp-config was not found in the path you specified:])
832 AC_MSG_NOTICE([*** ${NETSNMP_DIR}/bin])
833 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
834 AC_MSG_NOTICE([*** including --without-netsnmp])
838 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], No)
841 if test x"${NETSNMP_CONFIG}" != xNo; then
842 NETSNMP_libs=`${NETSNMP_CONFIG} --agent-libs`
844 AC_CHECK_LIB([netsnmp], [snmp_register_callback], AC_DEFINE_UNQUOTED([HAVE_NETSNMP], 1,
845 [Define to indicate the Net-SNMP library]), [], ${NETSNMP_libs})
847 if test "${ac_cv_lib_netsnmp_snmp_register_callback}" = "yes"; then
848 NETSNMP_LIB="${NETSNMP_libs}"
853 AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
855 AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
857 AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
859 AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h], [-lexecinfo])
861 # possible places for oss definitions
862 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
863 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
864 AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
867 if test "${USE_PGSQL}" != "no"; then
868 if test "x${PGSQL_DIR}" != "x"; then
869 AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
870 if test x"${PG_CONFIG}" = xNo; then
872 AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
873 AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
874 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
875 AC_MSG_NOTICE([*** including --without-postgres])
879 AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
882 if test "${PG_CONFIG}" != No; then
883 PGSQL_libdir=`${PG_CONFIG} --libdir`
884 PGSQL_includedir=`${PG_CONFIG} --includedir`
885 if test "x$?" != "x0" ; then
886 if test -n "${PGSQL_MANDATORY}" ; then
888 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
889 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
890 AC_MSG_NOTICE([*** including --without-postgres])
894 AC_CHECK_LIB([pq], [PQexec], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
895 [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
897 if test "${ac_cv_lib_pq_PQexec}" = "yes"; then
898 PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
899 PGSQL_INCLUDE="-I${PGSQL_includedir}"
901 elif test -n "${PGSQL_MANDATORY}";
904 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
905 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
906 AC_MSG_NOTICE([*** including --without-postgres])
912 AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
914 AST_EXT_LIB_CHECK([PRI], [pri], [pri_keypad_facility], [libpri.h])
916 AST_EXT_LIB_CHECK([SS7], [ss7], [isup_cqr], [libss7.h])
918 if test "${USE_PWLIB}" != "no"; then
919 if test -n "${PWLIB_DIR}"; then
920 PWLIBDIR="${PWLIB_DIR}"
923 AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2])
925 if test "${HAS_PWLIB:-unset}" != "unset"; then
926 AST_CHECK_OPENH323_PLATFORM()
928 PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
930 AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
931 [Define if your system has the PWLib libraries.],
932 [#include "ptlib.h"],
933 [BOOL q = PTime::IsDaylightSavings();])
937 if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
938 if test -n "${OPENH323_DIR}"; then
939 OPENH323DIR="${OPENH323_DIR}"
942 AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3])
943 AST_CHECK_OPENH323_BUILD()
944 PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
945 AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
946 [Define if your system has the OpenH323 libraries.],
949 #include "h323ep.h"],
950 [H323EndPoint ep = H323EndPoint();],
951 [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
956 if test "${USE_QT}" != "no"; then
957 AC_MSG_CHECKING(for QDate in -lqt)
959 saved_cppflags="${CPPFLAGS}"
960 if test "x${QT_DIR}" != "x"; then
961 LIBS="${LIBS} -L${QT_DIR}/lib"
962 CPPFLAGS="${CPPFLAGS} -I${QT_DIR}/include"
969 [#include <qt3/qdatetime.h>],
972 [ac_cv_lib_qt_qt_date="yes"],
973 [ac_cv_lib_qt_qt_date="no"])
975 CPPFLAGS="${saved_cppflags}"
977 if test "${ac_cv_lib_qt_qt_date}" = "no"; then
979 saved_cppflags="${CPPFLAGS}"
980 if test "x${QT_DIR}" != "x"; then
981 LIBS="${LIBS} -L${QT_DIR}/lib"
982 CPPFLAGS="${CPPFLAGS} -I${QT_DIR}/include"
984 LIBS="${LIBS} -lqt-mt"
989 [#include <qt3/qdatetime.h>],
992 [ac_cv_lib_qt_qt_date="yes"],
993 [ac_cv_lib_qt_qt_date="no"])
995 CPPFLAGS="${saved_cppflags}"
998 if test "${ac_cv_lib_qt_qt_date}" = "yes"; then
1004 if test "${ac_cv_lib_qt_qt_date}" = "yes"; then
1006 if test "${QT_DIR}" != ""; then
1007 QT_LIB="-L${QT_DIR}/lib ${QT_LIB}"
1008 QT_INCLUDE="-I${QT_DIR}/include"
1011 AC_DEFINE([HAVE_QT], 1, [Define if your system has the Qt library])
1012 AC_PATH_TOOL(QTMOC, moc, No)
1018 LUA_INCLUDE="-I/usr/include/lua5.1"
1020 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h])
1022 AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
1024 AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
1026 AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
1028 AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h])
1030 AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
1032 if test "$PBX_CRYPTO" = "1";
1034 AST_EXT_LIB_CHECK([OPENSSL], [ssl], [ssl2_connect], [openssl/ssl.h], [-lcrypto])
1037 if test "$PBX_OPENSSL" = "1";
1039 AST_EXT_LIB_CHECK([OSPTK], [osptk], [OSPPCryptoDecrypt], [osp/osp.h], [-lcrypto -lssl])
1042 AST_EXT_LIB_CHECK([FREETDS], [tds], [tds_version], [tds.h])
1043 if test "${PBX_FREETDS}" != "0";
1045 case `grep TDS_VERSION_NO ${FREETDS_DIR:-/usr}/include/tdsver.h` in
1047 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_0_64"
1050 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_0_63"
1053 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_0_62"
1056 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_PRE_0_62"
1061 AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
1063 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
1065 if test "${host_os}" != "linux-gnu" ; then
1066 tonezone_extra="-lm"
1069 # new tonezone, version 1.4.0
1070 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [zaptel/tonezone.h], [${tonezone_extra}], [140])
1071 # other case, old tonezone (0.80)
1072 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [zaptel/zaptel.h], [${tonezone_extra}], [80])
1074 AST_EXT_LIB_CHECK([USB], [usb], [usb_init], [usb.h], [])
1076 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc])
1080 if test "${USE_VPB}" != "no"; then
1081 AC_MSG_CHECKING(for vpb_open in -lvpb)
1082 saved_libs="${LIBS}"
1083 saved_cppflags="${CPPFLAGS}"
1084 if test "x${VPB_DIR}" != "x"; then
1085 if test -d ${VPB_DIR}/lib; then
1086 vpblibdir=${VPB_DIR}/lib
1088 vpblibdir=${VPB_DIR}
1090 LIBS="${LIBS} -L${vpblibdir}"
1091 CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
1093 LIBS="${LIBS} -lvpb -lpthread"
1097 [#include <vpbapi.h>],
1098 [int q = vpb_open(0,0);])
1100 [ AC_MSG_RESULT(yes)
1101 ac_cv_lib_vpb_vpb_open="yes"
1104 ac_cv_lib_vpb_vpb_open="no"
1107 LIBS="${saved_libs}"
1108 CPPFLAGS="${saved_cppflags}"
1109 if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
1111 if test "${VPB_DIR}" != ""; then
1112 VPB_LIB="-L${vpblibdir} ${VPB_LIB}"
1113 VPB_INCLUDE="-I${VPB_DIR}/include"
1116 AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
1122 AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
1124 # Check for various zaptel features and locations.
1125 # The version number, which goes into HAVE_ZAPTEL_VERSION,
1126 # will be used in the system headers to determine the location
1127 # of the zaptel.h header.
1129 AST_C_DEFINE_CHECK([ZAPTEL], [ZT_TONE_DTMF_BASE], [zaptel/zaptel.h], [140])
1130 AST_C_DEFINE_CHECK([ZAPTEL], [ZT_DIAL_OP_CANCEL], [zaptel/zaptel.h], [90])
1132 # Check for VLDTMF support
1133 AST_C_DEFINE_CHECK([ZAPTEL_VLDTMF], [ZT_EVENT_REMOVED], [zaptel/zaptel.h])
1135 # Check for transcode support
1136 AST_C_DEFINE_CHECK([ZAPTEL_TRANSCODE], [ZT_TCOP_ALLOCATE], [zaptel/zaptel.h])
1138 # On FreeBSD, try old zaptel (0.80 or so) and pretend we have vldtmf
1139 case "${host_os}" in
1141 AST_EXT_LIB_CHECK([ZAPTEL], [zaptel],, [zaptel.h],, [80])
1142 AST_EXT_LIB_CHECK([ZAPTEL_VLDTMF], [zaptel],, [zaptel/zaptel.h],, [90])
1143 AST_EXT_LIB_CHECK([ZAPTEL_VLDTMF], [zaptel],, [zaptel.h],, [80])
1145 # other case, old tonezone (0.80)
1146 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [zaptel.h], [${tonezone_extra}], [80])
1151 if test "x$TERMCAP_LIB" != "x" ; then
1152 EDITLINE_LIB="$TERMCAP_LIB"
1153 elif test "x$TINFO_LIB" != "x" ; then
1154 EDITLINE_LIB="$TINFO_LIB"
1155 elif test "x$CURSES_LIB" != "x" ; then
1156 EDITLINE_LIB="$CURSES_LIB"
1157 elif test "x$NCURSES_LIB" != "x" ; then
1158 EDITLINE_LIB="$NCURSES_LIB"
1160 AC_MSG_ERROR(*** termcap support not found)
1162 AC_SUBST(EDITLINE_LIB)
1164 AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
1167 AC_CHECK_HEADER([linux/compiler.h],
1168 [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
1170 AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
1171 #include <linux/version.h>
1172 #ifdef HAVE_LINUX_COMPILER_H
1173 #include <linux/compiler.h>
1176 AC_SUBST(PBX_IXJUSER)
1178 AST_EXT_TOOL_CHECK([SDL], [sdl])
1179 AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL/SDL_image.h], [${SDL_LIB}])
1180 AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [-lpthread -lz -lm])
1183 AC_CHECK_TOOL(GTKCONFIG, gtk-config, No)
1184 if test ! "x${GTKCONFIG}" = xNo; then
1185 GTK_INCLUDE=$(${GTKCONFIG} --cflags gthread)
1186 GTK_LIB=$(${GTKCONFIG} --libs gthread)
1188 AC_DEFINE([HAVE_GTK], 1, [Define if your system has the GTK libraries.])
1191 AC_SUBST(GTK_INCLUDE)
1195 AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
1196 if test ! "x${PKGCONFIG}" = xNo; then
1197 GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
1198 GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
1200 AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
1203 AC_SUBST(GTK2_INCLUDE)
1206 if test "${USE_CURL}" != "no"; then
1207 AC_PATH_TOOL([CURL_CONFIG], [curl-config], No)
1208 if test ! x"${CURL_CONFIG}" = xNo; then
1210 if test $(printf "%d" 0x$(${CURL_CONFIG} --vernum)) -ge $(printf "%d" 0x070907); then
1211 CURL_INCLUDE=$(${CURL_CONFIG} --cflags)
1212 CURL_LIB=$(${CURL_CONFIG} --libs)
1214 AC_MSG_CHECKING(for curl_version() in curl/curl.h)
1215 saved_cppflags="${CPPFLAGS}"
1216 CPPFLAGS="${CPPFLAGS} ${CURL_INCLUDE}"
1219 [#include <curl/curl.h>],
1229 CPPFLAGS="${saved_cppflags}"
1230 if test "${ac_cv_curl_h}" = "yes"; then
1232 AC_DEFINE([HAVE_CURL], 1, [Define if your system has the curl libraries.])
1238 AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
1243 if test "x${silent}" != "xyes" ; then
1245 echo " .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=.. "
1246 echo " .\$7\$7.. .7\$\$7:. "
1247 echo " .\$\$:. ,\$7.7 "
1248 echo " .\$7. 7\$\$\$\$ .\$\$77 "
1249 echo " ..\$\$. \$\$\$\$\$ .\$\$\$7 "
1250 echo " ..7\$ .?. \$\$\$\$\$ .?. 7\$\$\$."
1251 echo " \$.\$. .\$\$\$7. \$\$\$\$7 .7\$\$\$. .\$\$\$."
1252 echo " .777. .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7. \$\$\$,"
1253 echo " \$\$\$~ .7\$\$\$\$\$\$\$\$\$\$\$\$\$7. .\$\$\$."
1254 echo ".\$\$7 .7\$\$\$\$\$\$\$7: ?\$\$\$."
1255 echo "\$\$\$ ?7\$\$\$\$\$\$\$\$\$\$I .\$\$\$7 "
1256 echo "\$\$\$ .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$ :\$\$\$. "
1257 echo "\$\$\$ \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$ .\$\$\$. "
1258 echo "\$\$\$ \$\$\$ 7\$\$\$7 .\$\$\$ .\$\$\$. "
1259 echo "\$\$\$\$ \$\$\$\$7 .\$\$\$. "
1260 echo "7\$\$\$7 7\$\$\$\$ 7\$\$\$ "
1261 echo " \$\$\$\$\$ \$\$\$ "
1262 echo " \$\$\$\$7. \$\$ (TM) "
1263 echo " \$\$\$\$\$\$\$. .7\$\$\$\$\$\$ \$\$ "
1264 echo " \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$ "
1265 echo " \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$. "
1269 AC_MSG_NOTICE(Package configured for: )
1270 AC_MSG_NOTICE( OS type : $host_os)
1271 AC_MSG_NOTICE( Host CPU : $host_cpu)
1272 AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :)
1273 AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :)
1274 if test "${cross_compiling}" = "yes"; then
1275 AC_MSG_NOTICE( Cross Compilation = YES)