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_MSG_CHECKING(for timersub in time.h)
293 AC_LANG_PROGRAM([#include <sys/time.h>],
294 [struct timeval *a; timersub(a, a, a);]),
296 AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
300 AC_CHECK_HEADER([sys/poll.h],
302 AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
306 # https support (in main/http.c) uses funopen on BSD systems,
307 # fopencookie on linux
308 AC_CHECK_FUNCS([funopen fopencookie])
310 AC_CHECK_FUNCS([inet_aton])
312 # check if we have IP_PKTINFO constant defined
313 AC_MSG_CHECKING(for IP_PKTINFO)
315 AC_LANG_PROGRAM([#include <netinet/in.h>],
316 [int pi = IP_PKTINFO;]),
318 AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
322 # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
323 AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
325 AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
327 AC_LANG_PROGRAM([#include <stdlib.h>
329 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);]),
331 AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
335 AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
337 AC_LANG_PROGRAM([#include <stdlib.h>
339 [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);]),
341 AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
345 AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
347 AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
349 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);]),
351 AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
355 AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
357 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);]),
359 AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
363 if test "${cross_compiling}" = "no";
365 AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
368 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
369 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_PREFER_WRITER_NP], [PTHREAD_RWLOCK_PREFER_WRITER_NP], [pthread.h])
370 AST_C_DEFINE_CHECK([PTHREAD_MUTEX_RECURSIVE_NP], [PTHREAD_MUTEX_RECURSIVE_NP], [pthread.h])
371 AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
373 if test "${cross_compiling}" = "no";
375 AC_MSG_CHECKING(for working epoll support)
377 AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
383 AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
388 AC_MSG_CHECKING(for compiler atomic operations)
390 AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);]),
392 AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
396 AST_GCC_ATTRIBUTE(pure)
397 AST_GCC_ATTRIBUTE(malloc)
398 AST_GCC_ATTRIBUTE(const)
399 AST_GCC_ATTRIBUTE(unused)
400 AST_GCC_ATTRIBUTE(always_inline)
401 AST_GCC_ATTRIBUTE(deprecated)
403 AC_MSG_CHECKING(for -ffunction-sections support)
404 saved_CFLAGS="${CFLAGS}"
405 CFLAGS="${CFLAGS} -ffunction-sections"
407 AC_LANG_PROGRAM([], [int x = 1;]),
409 [saved_LDFLAGS="${LDFLAGS}"]
410 [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
411 AC_MSG_CHECKING(for --gc-sections support)
413 AC_LANG_PROGRAM([], [int x = 1;]),
415 [GC_CFLAGS="-ffunction-sections"]
416 [[GC_LDFLAGS="-Wl,--gc-sections"]],
419 [LDFLAGS="${saved_LDFLAGS}"],
422 CFLAGS="${saved_CFLAGS}"
426 AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
427 if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
429 AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
432 AST_DECLARATION_AFTER_STATEMENT=
434 AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
437 AC_MSG_CHECKING(for sysinfo)
439 AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
440 [struct sysinfo sys_info; int uptime = sys_info.uptime]),
442 AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
446 AC_MSG_CHECKING(for res_ninit)
448 AC_LANG_PROGRAM([#include <resolv.h>],
449 [int foo = res_ninit(NULL);]),
451 AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
452 AC_MSG_CHECKING(for res_ndestroy)
454 AC_LANG_PROGRAM([#include <resolv.h>],
455 [int foo = res_ndestroy(NULL);]),
457 AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
463 AST_C_DEFINE_CHECK([RTLD_NOLOAD], [RTLD_NOLOAD], [dlfcn.h])
465 AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
467 AC_CHECK_HEADER([libkern/OSAtomic.h],
468 [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
472 # do the package library checks now
474 AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
476 AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
478 if test "x${host_os}" = "xlinux-gnu" ; then
479 AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
482 # BSD might not have exp2, and/or log2
483 AST_EXT_LIB_CHECK([EXP2L], [m], [exp2l])
484 AST_EXT_LIB_CHECK([LOG2L], [m], [log2l])
485 AST_EXT_LIB_CHECK([EXP10L], [m], [exp10l])
486 AST_EXT_LIB_CHECK([LOG10L], [m], [log10l])
487 AST_EXT_LIB_CHECK([SINL], [m], [sinl])
488 AST_EXT_LIB_CHECK([COSL], [m], [cosl])
489 AST_EXT_LIB_CHECK([TANL], [m], [tanl])
490 AST_EXT_LIB_CHECK([ASINL], [m], [asinl])
491 AST_EXT_LIB_CHECK([ACOSL], [m], [acosl])
492 AST_EXT_LIB_CHECK([ATANL], [m], [atanl])
493 AST_EXT_LIB_CHECK([ATAN2L], [m], [atan2l])
494 AST_EXT_LIB_CHECK([POWL], [m], [powl])
495 AST_EXT_LIB_CHECK([SQRTL], [m], [sqrtl])
496 AST_EXT_LIB_CHECK([RINTL], [m], [rintl])
497 AST_EXT_LIB_CHECK([EXPL], [m], [expl])
498 AST_EXT_LIB_CHECK([LOGL], [m], [logl])
499 AST_EXT_LIB_CHECK([REMAINDERL], [m], [remainderl])
500 AST_EXT_LIB_CHECK([FMODL], [m], [fmodl])
501 AST_EXT_LIB_CHECK([ROUNDL], [m], [roundl])
502 AST_EXT_LIB_CHECK([TRUNCL], [m], [truncl])
503 AST_EXT_LIB_CHECK([STRTOLD], [c], [strtold], [stdlib.h])
504 AST_EXT_LIB_CHECK([FLOORL], [m], [floorl])
505 AST_EXT_LIB_CHECK([CEILL], [m], [ceill])
506 AST_EXT_LIB_CHECK([EXP2], [m], [exp2])
507 AST_EXT_LIB_CHECK([LOG2], [m], [log2])
508 AST_EXT_LIB_CHECK([EXP10], [m], [exp10])
509 AST_EXT_LIB_CHECK([LOG10], [m], [log10])
510 AST_EXT_LIB_CHECK([SIN], [m], [sin])
511 AST_EXT_LIB_CHECK([COS], [m], [cos])
512 AST_EXT_LIB_CHECK([TAN], [m], [tan])
513 AST_EXT_LIB_CHECK([ASIN], [m], [asin])
514 AST_EXT_LIB_CHECK([ACOS], [m], [acos])
515 AST_EXT_LIB_CHECK([ATAN], [m], [atan])
516 AST_EXT_LIB_CHECK([ATAN2], [m], [atan2])
517 AST_EXT_LIB_CHECK([POW], [m], [pow])
518 AST_EXT_LIB_CHECK([SQRT], [m], [sqrt])
519 AST_EXT_LIB_CHECK([RINT], [m], [rint])
520 AST_EXT_LIB_CHECK([EXP], [m], [exp])
521 AST_EXT_LIB_CHECK([LOG], [m], [log])
522 AST_EXT_LIB_CHECK([REMAINDER], [m], [remainder])
523 AST_EXT_LIB_CHECK([FMOD], [m], [fmod])
524 AST_EXT_LIB_CHECK([ROUND], [m], [round])
525 AST_EXT_LIB_CHECK([TRUNC], [m], [trunc])
526 AST_EXT_LIB_CHECK([STRTOD], [c], [strtod], [stdlib.h])
527 AST_EXT_LIB_CHECK([FLOOR], [m], [floor])
528 AST_EXT_LIB_CHECK([CEIL], [m], [ceil])
531 AC_SUBST(GSM_INTERNAL)
533 if test "${USE_GSM}" != "no"; then
534 if test "${GSM_DIR}" = "internal"; then
536 elif test "${GSM_DIR}" != ""; then
539 if test "${GSM_SYSTEM}" = "yes"; then
541 if test "x${GSM_DIR}" != "x"; then
542 if test -d ${GSM_DIR}/lib; then
543 gsmlibdir="-L${GSM_DIR}/lib"
545 gsmlibdir="-L${GSM_DIR}"
548 AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
549 [Define to indicate the GSM library]), [], ${gsmlibdir})
550 if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
551 if test "x${GSM_DIR}" != "x" ; then
552 AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
553 AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
555 AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
556 AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
558 if test "${GSM_HEADER_FOUND}" = "0" ; then
559 if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
560 if test "x${GSM_MANDATORY}" = "xyes" ; then
562 AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
563 AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
564 AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
570 if test "${GSM_HEADER_FOUND}" = "1" ; then
571 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
574 if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
575 AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
579 if test "${GSM_OK}" = "1" ; then
581 if test "x${GSM_DIR}" != "x"; then
582 GSM_LIB="${gsmlibdir} ${GSM_LIB}"
583 GSM_INCLUDE="-I${GSM_DIR}/include"
590 if test "${GSM_INTERNAL}" = "yes"; then
592 AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
596 AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
598 if test "${USE_IMAP_TK}" != "no"; then
599 if test "${IMAP_TK_DIR}" = "system" ; then
600 AC_MSG_NOTICE([Checking for system c-client library...])
601 elif test "${IMAP_TK_DIR}" = ""; then
602 IMAP_TK_DIR=`pwd`"/../imap-2004g"
603 if test -n "${IMAP_TK_MANDATORY}"; then
604 AC_MSG_NOTICE([The --with-imap option does not search your system for installed])
605 AC_MSG_NOTICE([c-client library/header files. Since you did not provide a path])
606 AC_MSG_NOTICE([the configure script will assume you have placed built the c-client])
607 AC_MSG_NOTICE([files at ${IMAP_TK_DIR}, as outlined in the doc/imapstorage.txt file.])
610 if test "${IMAP_TK_DIR}" != "system" ; then
611 AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
613 saved_cppflags="${CPPFLAGS}"
615 if test "${IMAP_TK_DIR}" = "system" ; then
617 imap_libs="-lc-client"
618 imap_include="-DUSE_SYSTEM_IMAP"
619 elif test -f ${IMAP_TK_DIR}/c-client/LDFLAGS ; then
620 imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
621 imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
622 imap_include="-I${IMAP_TK_DIR}/c-client"
624 CPPFLAGS="${CPPFLAGS} ${imap_include}"
625 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
628 [#ifdef USE_SYSTEM_IMAP
629 #include <imap/c-client.h>
631 #include "c-client.h"
633 void mm_searched (MAILSTREAM *stream,unsigned long number)
636 void mm_exists (MAILSTREAM *stream,unsigned long number)
639 void mm_expunged (MAILSTREAM *stream,unsigned long number)
642 void mm_flags (MAILSTREAM *stream,unsigned long number)
645 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
648 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
651 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
654 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
657 void mm_log (char *string,long errflg)
660 void mm_dlog (char *string)
663 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
666 void mm_critical (MAILSTREAM *stream)
669 void mm_nocritical (MAILSTREAM *stream)
672 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
675 void mm_fatal (char *string)
679 MAILSTREAM *foo = mail_open(NULL, "", 0);
682 [ac_cv_imap_tk="yes"],
685 if test "${ac_cv_imap_tk}" = "yes"; then
688 [#ifdef USE_SYSTEM_IMAP
689 #include <imap/c-client.h>
691 #include "c-client.h"
693 void mm_searched (MAILSTREAM *stream,unsigned long number)
696 void mm_exists (MAILSTREAM *stream,unsigned long number)
699 void mm_expunged (MAILSTREAM *stream,unsigned long number)
702 void mm_flags (MAILSTREAM *stream,unsigned long number)
705 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
708 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
711 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
714 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
717 void mm_log (char *string,long errflg)
720 void mm_dlog (char *string)
723 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
726 void mm_critical (MAILSTREAM *stream)
729 void mm_nocritical (MAILSTREAM *stream)
732 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
735 void mm_fatal (char *string)
739 long check = mail_expunge_full(NULL, "", 0);
742 [ac_cv_imap_tk2006="yes"],
743 [ac_cv_imap_tk2006="no"]
746 CPPFLAGS="${saved_cppflags}"
748 if test "${ac_cv_imap_tk}" = "yes"; then
750 IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
751 IMAP_TK_INCLUDE="${imap_include}"
753 AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
754 if test "${ac_cv_imap_tk2006}" = "yes"; then
755 AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
763 AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
767 if test "${USE_KDE}" != "no"; then
768 AC_MSG_CHECKING(for crashHandler in -lkdecore)
770 saved_cppflags="${CPPFLAGS}"
771 CPPFLAGS="${CPPFLAGS} -I${KDE_DIR}/include"
772 if test -d ${KDE_DIR}/lib; then
773 kdelibdir="${KDE_DIR}/lib"
775 kdelibdir="${KDE_DIR}"
777 LIBS="${LIBS} -L${kdelibdir} -lkdecore"
781 [#include "kcrash.h"],
782 [KCrash::defaultCrashHandler(1);])
784 [ac_cv_lib_kde_crash="yes"],
785 [ac_cv_lib_kde_crash="no"])
788 CPPFLAGS="${saved_cppflags}"
790 if test "${ac_cv_lib_kde_crash}" = "yes"; then
792 KDE_LIB="-lkdecore -lkdeui"
793 if test "${KDE_DIR}" != ""; then
794 KDE_LIB="-L${kdelibdir} ${KDE_LIB}"
795 KDE_INCLUDE="-I${KDE_DIR}/include"
798 AC_DEFINE([HAVE_LIBKDE], 1, [Define if your system has the KDE libraries.])
803 if test "${PBX_KDE}" = 1; then
804 AC_PATH_TOOL(KDEINIT, kdeinit, No)
805 if test ! x"${KDEINIT}" = xNo; then
806 KDEDIR=$(${DIRNAME} ${KDEINIT})
807 KDEDIR=$(${DIRNAME} ${KDEDIR})
814 AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
816 if test "${PBX_MISDN}" = 1; then
817 AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
818 AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
819 AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
820 AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
821 AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
824 AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
826 AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
829 if test "${USE_NETSNMP}" != "no"; then
830 if test "x${NETSNMP_DIR}" != "x"; then
831 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], No, [${NETSNMP_DIR}/bin])
832 if test x"${NETSNMP_CONFIG}" = xNo; then
834 AC_MSG_NOTICE([*** net-snmp-config was not found in the path you specified:])
835 AC_MSG_NOTICE([*** ${NETSNMP_DIR}/bin])
836 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
837 AC_MSG_NOTICE([*** including --without-netsnmp])
841 AC_PATH_TOOL([NETSNMP_CONFIG], [net-snmp-config], No)
844 if test x"${NETSNMP_CONFIG}" != xNo; then
845 NETSNMP_libs=`${NETSNMP_CONFIG} --agent-libs`
847 AC_CHECK_LIB([netsnmp], [snmp_register_callback], AC_DEFINE_UNQUOTED([HAVE_NETSNMP], 1,
848 [Define to indicate the Net-SNMP library]), [], ${NETSNMP_libs})
850 if test "${ac_cv_lib_netsnmp_snmp_register_callback}" = "yes"; then
851 NETSNMP_LIB="${NETSNMP_libs}"
856 AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
858 AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
860 AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
862 AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h], [-lexecinfo])
864 # possible places for oss definitions
865 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
866 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
867 AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
870 if test "${USE_PGSQL}" != "no"; then
871 if test "x${PGSQL_DIR}" != "x"; then
872 AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
873 if test x"${PG_CONFIG}" = xNo; then
875 AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
876 AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
877 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
878 AC_MSG_NOTICE([*** including --without-postgres])
882 AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
885 if test "${PG_CONFIG}" != No; then
886 PGSQL_libdir=`${PG_CONFIG} --libdir`
887 PGSQL_includedir=`${PG_CONFIG} --includedir`
888 if test "x$?" != "x0" ; then
889 if test -n "${PGSQL_MANDATORY}" ; then
891 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
892 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
893 AC_MSG_NOTICE([*** including --without-postgres])
897 AC_CHECK_LIB([pq], [PQexec], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
898 [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
900 if test "${ac_cv_lib_pq_PQexec}" = "yes"; then
901 PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
902 PGSQL_INCLUDE="-I${PGSQL_includedir}"
904 elif test -n "${PGSQL_MANDATORY}";
907 AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
908 AC_MSG_NOTICE([*** Either correct the installation, or run configure])
909 AC_MSG_NOTICE([*** including --without-postgres])
915 AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
917 AST_EXT_LIB_CHECK([PRI], [pri], [pri_keypad_facility], [libpri.h])
919 AST_EXT_LIB_CHECK([SS7], [ss7], [isup_cqr], [libss7.h])
921 if test "${USE_PWLIB}" != "no"; then
922 if test -n "${PWLIB_DIR}"; then
923 PWLIBDIR="${PWLIB_DIR}"
926 AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2])
928 if test "${HAS_PWLIB:-unset}" != "unset"; then
929 AST_CHECK_OPENH323_PLATFORM()
931 PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
933 AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
934 [Define if your system has the PWLib libraries.],
935 [#include "ptlib.h"],
936 [BOOL q = PTime::IsDaylightSavings();])
940 if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
941 if test -n "${OPENH323_DIR}"; then
942 OPENH323DIR="${OPENH323_DIR}"
945 AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3])
946 AST_CHECK_OPENH323_BUILD()
947 PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
948 AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
949 [Define if your system has the OpenH323 libraries.],
952 #include "h323ep.h"],
953 [H323EndPoint ep = H323EndPoint();],
954 [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
959 if test "${USE_QT}" != "no"; then
960 AC_MSG_CHECKING(for QDate in -lqt)
962 saved_cppflags="${CPPFLAGS}"
963 if test "x${QT_DIR}" != "x"; then
964 LIBS="${LIBS} -L${QT_DIR}/lib"
965 CPPFLAGS="${CPPFLAGS} -I${QT_DIR}/include"
972 [#include <qt3/qdatetime.h>],
975 [ac_cv_lib_qt_qt_date="yes"],
976 [ac_cv_lib_qt_qt_date="no"])
978 CPPFLAGS="${saved_cppflags}"
980 if test "${ac_cv_lib_qt_qt_date}" = "no"; then
982 saved_cppflags="${CPPFLAGS}"
983 if test "x${QT_DIR}" != "x"; then
984 LIBS="${LIBS} -L${QT_DIR}/lib"
985 CPPFLAGS="${CPPFLAGS} -I${QT_DIR}/include"
987 LIBS="${LIBS} -lqt-mt"
992 [#include <qt3/qdatetime.h>],
995 [ac_cv_lib_qt_qt_date="yes"],
996 [ac_cv_lib_qt_qt_date="no"])
998 CPPFLAGS="${saved_cppflags}"
1001 if test "${ac_cv_lib_qt_qt_date}" = "yes"; then
1007 if test "${ac_cv_lib_qt_qt_date}" = "yes"; then
1009 if test "${QT_DIR}" != ""; then
1010 QT_LIB="-L${QT_DIR}/lib ${QT_LIB}"
1011 QT_INCLUDE="-I${QT_DIR}/include"
1014 AC_DEFINE([HAVE_QT], 1, [Define if your system has the Qt library])
1015 AC_PATH_TOOL(QTMOC, moc, No)
1021 LUA_INCLUDE="-I/usr/include/lua5.1"
1023 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h])
1025 AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
1027 AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
1029 AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
1031 AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h])
1033 AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
1035 if test "$PBX_CRYPTO" = "1";
1037 AST_EXT_LIB_CHECK([OPENSSL], [ssl], [ssl2_connect], [openssl/ssl.h], [-lcrypto])
1040 if test "$PBX_OPENSSL" = "1";
1042 AST_EXT_LIB_CHECK([OSPTK], [osptk], [OSPPCryptoDecrypt], [osp/osp.h], [-lcrypto -lssl])
1045 AST_EXT_LIB_CHECK([FREETDS], [tds], [tds_version], [tds.h])
1046 if test "${PBX_FREETDS}" != "0";
1048 case `grep TDS_VERSION_NO ${FREETDS_DIR:-/usr}/include/tdsver.h` in
1050 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_0_64"
1053 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_0_63"
1056 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_0_62"
1059 FREETDS_INCLUDE="${FREETDS_INCLUDE} -DFREETDS_PRE_0_62"
1064 AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
1066 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
1068 if test "${host_os}" != "linux-gnu" ; then
1069 tonezone_extra="-lm"
1072 # new tonezone, version 1.4.0
1073 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [zaptel/tonezone.h], [${tonezone_extra}], [140])
1074 # other case, old tonezone (0.80)
1075 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [zaptel/zaptel.h], [${tonezone_extra}], [80])
1077 AST_EXT_LIB_CHECK([USB], [usb], [usb_init], [usb.h], [])
1079 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc])
1083 if test "${USE_VPB}" != "no"; then
1084 AC_MSG_CHECKING(for vpb_open in -lvpb)
1085 saved_libs="${LIBS}"
1086 saved_cppflags="${CPPFLAGS}"
1087 if test "x${VPB_DIR}" != "x"; then
1088 if test -d ${VPB_DIR}/lib; then
1089 vpblibdir=${VPB_DIR}/lib
1091 vpblibdir=${VPB_DIR}
1093 LIBS="${LIBS} -L${vpblibdir}"
1094 CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
1096 LIBS="${LIBS} -lvpb -lpthread"
1100 [#include <vpbapi.h>],
1101 [int q = vpb_open(0,0);])
1103 [ AC_MSG_RESULT(yes)
1104 ac_cv_lib_vpb_vpb_open="yes"
1107 ac_cv_lib_vpb_vpb_open="no"
1110 LIBS="${saved_libs}"
1111 CPPFLAGS="${saved_cppflags}"
1112 if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
1114 if test "${VPB_DIR}" != ""; then
1115 VPB_LIB="-L${vpblibdir} ${VPB_LIB}"
1116 VPB_INCLUDE="-I${VPB_DIR}/include"
1119 AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
1125 AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
1127 # Check for various zaptel features and locations.
1128 # The version number, which goes into HAVE_ZAPTEL_VERSION,
1129 # will be used in the system headers to determine the location
1130 # of the zaptel.h header.
1132 AST_C_DEFINE_CHECK([ZAPTEL], [ZT_TONE_DTMF_BASE], [zaptel/zaptel.h], [140])
1133 AST_C_DEFINE_CHECK([ZAPTEL], [ZT_DIAL_OP_CANCEL], [zaptel/zaptel.h], [90])
1135 # Check for VLDTMF support
1136 AST_C_DEFINE_CHECK([ZAPTEL_VLDTMF], [ZT_EVENT_REMOVED], [zaptel/zaptel.h])
1138 # Check for transcode support
1139 AST_C_DEFINE_CHECK([ZAPTEL_TRANSCODE], [ZT_TCOP_ALLOCATE], [zaptel/zaptel.h])
1141 # On FreeBSD, try old zaptel (0.80 or so) and pretend we have vldtmf
1142 case "${host_os}" in
1144 AST_EXT_LIB_CHECK([ZAPTEL], [zaptel],, [zaptel.h],, [80])
1145 AST_EXT_LIB_CHECK([ZAPTEL_VLDTMF], [zaptel],, [zaptel/zaptel.h],, [90])
1146 AST_EXT_LIB_CHECK([ZAPTEL_VLDTMF], [zaptel],, [zaptel.h],, [80])
1148 # other case, old tonezone (0.80)
1149 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [zaptel.h], [${tonezone_extra}], [80])
1154 if test "x$TERMCAP_LIB" != "x" ; then
1155 EDITLINE_LIB="$TERMCAP_LIB"
1156 elif test "x$TINFO_LIB" != "x" ; then
1157 EDITLINE_LIB="$TINFO_LIB"
1158 elif test "x$CURSES_LIB" != "x" ; then
1159 EDITLINE_LIB="$CURSES_LIB"
1160 elif test "x$NCURSES_LIB" != "x" ; then
1161 EDITLINE_LIB="$NCURSES_LIB"
1163 AC_MSG_ERROR(*** termcap support not found)
1165 AC_SUBST(EDITLINE_LIB)
1167 AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
1170 AC_CHECK_HEADER([linux/compiler.h],
1171 [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
1173 AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
1174 #include <linux/version.h>
1175 #ifdef HAVE_LINUX_COMPILER_H
1176 #include <linux/compiler.h>
1179 AC_SUBST(PBX_IXJUSER)
1181 AST_EXT_TOOL_CHECK([SDL], [sdl])
1182 AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL/SDL_image.h], [${SDL_LIB}])
1183 AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [-lpthread -lz -lm])
1186 AC_CHECK_TOOL(GTKCONFIG, gtk-config, No)
1187 if test ! "x${GTKCONFIG}" = xNo; then
1188 GTK_INCLUDE=$(${GTKCONFIG} --cflags gthread)
1189 GTK_LIB=$(${GTKCONFIG} --libs gthread)
1191 AC_DEFINE([HAVE_GTK], 1, [Define if your system has the GTK libraries.])
1194 AC_SUBST(GTK_INCLUDE)
1198 AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
1199 if test ! "x${PKGCONFIG}" = xNo; then
1200 GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
1201 GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
1203 AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
1206 AC_SUBST(GTK2_INCLUDE)
1209 if test "${USE_CURL}" != "no"; then
1210 AC_PATH_TOOL([CURL_CONFIG], [curl-config], No)
1211 if test ! x"${CURL_CONFIG}" = xNo; then
1213 if test $(printf "%d" 0x$(${CURL_CONFIG} --vernum)) -ge $(printf "%d" 0x070907); then
1214 CURL_INCLUDE=$(${CURL_CONFIG} --cflags)
1215 CURL_LIB=$(${CURL_CONFIG} --libs)
1217 AC_MSG_CHECKING(for curl_version() in curl/curl.h)
1218 saved_cppflags="${CPPFLAGS}"
1219 CPPFLAGS="${CPPFLAGS} ${CURL_INCLUDE}"
1222 [#include <curl/curl.h>],
1232 CPPFLAGS="${saved_cppflags}"
1233 if test "${ac_cv_curl_h}" = "yes"; then
1235 AC_DEFINE([HAVE_CURL], 1, [Define if your system has the curl libraries.])
1241 AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
1246 if test "x${silent}" != "xyes" ; then
1248 echo " .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=.. "
1249 echo " .\$7\$7.. .7\$\$7:. "
1250 echo " .\$\$:. ,\$7.7 "
1251 echo " .\$7. 7\$\$\$\$ .\$\$77 "
1252 echo " ..\$\$. \$\$\$\$\$ .\$\$\$7 "
1253 echo " ..7\$ .?. \$\$\$\$\$ .?. 7\$\$\$."
1254 echo " \$.\$. .\$\$\$7. \$\$\$\$7 .7\$\$\$. .\$\$\$."
1255 echo " .777. .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7. \$\$\$,"
1256 echo " \$\$\$~ .7\$\$\$\$\$\$\$\$\$\$\$\$\$7. .\$\$\$."
1257 echo ".\$\$7 .7\$\$\$\$\$\$\$7: ?\$\$\$."
1258 echo "\$\$\$ ?7\$\$\$\$\$\$\$\$\$\$I .\$\$\$7 "
1259 echo "\$\$\$ .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$ :\$\$\$. "
1260 echo "\$\$\$ \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$ .\$\$\$. "
1261 echo "\$\$\$ \$\$\$ 7\$\$\$7 .\$\$\$ .\$\$\$. "
1262 echo "\$\$\$\$ \$\$\$\$7 .\$\$\$. "
1263 echo "7\$\$\$7 7\$\$\$\$ 7\$\$\$ "
1264 echo " \$\$\$\$\$ \$\$\$ "
1265 echo " \$\$\$\$7. \$\$ (TM) "
1266 echo " \$\$\$\$\$\$\$. .7\$\$\$\$\$\$ \$\$ "
1267 echo " \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$ "
1268 echo " \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$. "
1272 AC_MSG_NOTICE(Package configured for: )
1273 AC_MSG_NOTICE( OS type : $host_os)
1274 AC_MSG_NOTICE( Host CPU : $host_cpu)
1275 AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :)
1276 AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :)
1277 if test "${cross_compiling}" = "yes"; then
1278 AC_MSG_NOTICE( Cross Compilation = YES)