Implement flags for AGI in the channel structure so taht "show channels" and
[asterisk/asterisk.git] / configure.ac
1 # Process this file with autoconf to produce a configure script.
2 #
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.
8
9 AC_PREREQ(2.60)
10
11 AC_INIT(asterisk, 1.6, www.asterisk.org)
12
13 # cross-compile macros
14 AC_CANONICAL_BUILD
15 AC_CANONICAL_HOST
16
17 # check existence of the package
18 AC_CONFIG_SRCDIR([main/asterisk.c])
19
20 # specify output header file
21 AC_CONFIG_HEADER(include/asterisk/autoconfig.h)
22
23 AC_COPYRIGHT("Asterisk")
24 AC_REVISION($Revision$)
25
26 AC_GNU_SOURCE
27 AC_USE_SYSTEM_EXTENSIONS        # note- does not work on FreeBSD
28
29 case "${host_os}" in
30      freebsd*)
31      ac_default_prefix=/usr/local
32      CPPFLAGS=-I/usr/local/include
33      LDFLAGS=-L/usr/local/lib
34      ;;
35
36      *)
37      ac_default_prefix=/usr
38      if test ${sysconfdir} = '${prefix}/etc'; then
39         sysconfdir=/etc
40      fi
41      if test ${mandir} = '${prefix}/man'; then
42         mandir=/usr/share/man
43      fi
44      ;;
45 esac
46
47 if test ${localstatedir} = '${prefix}/var'; then
48      localstatedir=/var
49 fi
50
51 BUILD_PLATFORM=${build}
52 BUILD_CPU=${build_cpu}
53 BUILD_VENDOR=${build_vendor}
54 BUILD_OS=${build_os}
55
56 AC_SUBST(BUILD_PLATFORM)
57 AC_SUBST(BUILD_CPU)
58 AC_SUBST(BUILD_VENDOR)
59 AC_SUBST(BUILD_OS)
60
61 HOST_PLATFORM=${host}
62 HOST_CPU=${host_cpu}
63 HOST_VENDOR=${host_vendor}
64 HOST_OS=${host_os}
65
66 AC_SUBST(HOST_PLATFORM)
67 AC_SUBST(HOST_CPU)
68 AC_SUBST(HOST_VENDOR)
69 AC_SUBST(HOST_OS)
70
71 WINARCH=0
72
73 case "${host_os}" in
74      freebsd*)
75      OSARCH=FreeBSD
76      ;;
77      netbsd*)
78      OSARCH=NetBSD
79      ;;
80      openbsd*)
81      OSARCH=OpenBSD
82      ;;
83      solaris*)
84      OSARCH=SunOS
85      ;;
86      mingw32)
87      OSARCH=mingw32
88      WINARCH=1
89      ;;
90      cygwin)
91      OSARCH=cygwin
92      WINARCH=1
93      ;;
94      *)
95      OSARCH=${host_os}
96      ;;
97 esac
98
99 AC_SUBST(OSARCH)
100 AC_SUBST(WINARCH)
101
102 #  check for uname
103 AC_PATH_TOOL([UNAME], [uname], No)
104 if test ! x"${UNAME}" = xNo; then
105    PBX_OSREV=$(${UNAME} -r)
106 fi
107 AC_SUBST(PBX_OSREV)
108
109 AH_TOP(
110 #ifndef ASTERISK_AUTOCONFIG_H
111 #define ASTERISK_AUTOCONFIG_H
112
113 #include "asterisk/buildopts.h"
114
115 )
116
117 AH_BOTTOM(
118 #endif
119 )
120
121 # cross-compile checks
122 if test "${cross_compiling}" = "yes"; 
123 then
124    AC_CHECK_TOOL(CC, gcc, :)
125    AC_CHECK_TOOL(CXX, g++, :)
126    AC_CHECK_TOOL(LD, ld, :)
127    AC_CHECK_TOOL(RANLIB, ranlib, :)
128 fi
129
130 # Checks for programs.
131 AC_PROG_CC
132 AC_PROG_CXX
133 AC_PROG_CPP
134 AC_PROG_CXXCPP
135 # This macro is just copied into our local acinclude.m4 from libtool.m4 so that
136 # the developers regenerating the configure script don't have to install libtool.
137 AST_PROG_LD     # note, does not work on FreeBSD
138 AC_PROG_AWK
139 AC_PROG_INSTALL
140 AC_PROG_LN_S
141 AC_PROG_RANLIB
142 AST_CHECK_GNU_MAKE
143
144 AC_PATH_TOOL([STRIP], [strip], :)
145 AC_PATH_TOOL([AR], [ar], :)
146
147 GNU_LD=0
148 if test "x$with_gnu_ld" = "xyes" ; then
149    GNU_LD=1
150 fi
151 AC_SUBST(GNU_LD)
152
153 AC_PATH_PROG([GREP], [grep], :)
154 AC_PATH_PROG([FIND], [find], :)
155 AC_PATH_PROG([COMPRESS], [compress], :)
156 AC_PATH_PROG([BASENAME], [basename], :)
157 AC_PATH_PROG([ID], [id], :)
158 AC_PATH_PROG([DIRNAME], [dirname], :)
159 AC_PATH_PROG([SHELL], [sh], :)
160 AC_PATH_PROG([LN], [ln], :)
161 AC_PATH_PROG([DOT], [dot], :)
162 AC_PATH_PROG([WGET], [wget], :)
163 AC_PATH_PROG([RUBBER], [rubber], :)
164 AC_PATH_PROG([KPATHSEA], [kpsewhich], :)
165 if test "${WGET}" != ":" ; then
166   DOWNLOAD=${WGET}
167 else
168   AC_PATH_PROG([FETCH], [fetch], [:])
169   DOWNLOAD=${FETCH}
170 fi
171 AC_SUBST(DOWNLOAD)
172
173 AC_CHECK_TOOL([SOXMIX], [soxmix], [:])
174 if test "${SOXMIX}" != ":" ; then
175         AC_DEFINE([HAVE_SOXMIX], 1, [Define to 1 if your system has soxmix application.])
176 fi
177
178 ACX_PTHREAD
179
180 AC_LANG(C)
181
182 AC_ARG_ENABLE(dev-mode,
183         [  --enable-dev-mode    Turn on developer mode],
184         [case "${enableval}" in
185               y|ye|yes) AST_DEVMODE=yes ;;
186               n|no)  AST_DEVMODE=no ;;
187               *) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode)  ;;
188         esac])
189 AC_SUBST(AST_DEVMODE)
190
191 # AST_EXT_LIB_SETUP is used to tell configure to handle variables for
192 # various packages.
193 # $1 is the prefix for the variables in makeopts and autoconfig.h
194 # $2 is the short comment, $4 is the long comment
195 # $3 is the name used in --with- or --without- flags for configure.
196 #
197 # Package option names should be in alphabetical order
198 # by the --with option name (the third field),
199 # to make things easier for the users.
200
201 AST_EXT_LIB_SETUP([ALSA], [Advanced Linux Sound Architecture], [asound])
202
203 # BKTR is used for backtrace support on platforms that do not
204 # have it natively.
205 AST_EXT_LIB_SETUP([BKTR], [Stack Backtrace support], [execinfo])
206 AST_EXT_LIB_SETUP([CAP], [POSIX 1.e capabilities], [cap])
207 AST_EXT_LIB_SETUP([CURL], [cURL], [curl])
208 AST_EXT_LIB_SETUP([CURSES], [curses], [curses])
209 AST_EXT_LIB_SETUP([CRYPTO], [OpenSSL Cryptography support], [crypto])
210 AST_EXT_LIB_SETUP([DAHDI], [DAHDI], [dahdi])
211 AST_EXT_LIB_SETUP([FFMPEG], [Ffmpeg and avcodec library], [avcodec])
212 AST_EXT_LIB_SETUP([GSM], [External GSM library], [gsm], [, use 'internal' GSM otherwise])
213 AST_EXT_LIB_SETUP([GTK], [gtk libraries], [gtk])
214 AST_EXT_LIB_SETUP([GTK2], [gtk2 libraries], [gtk2])
215 AST_EXT_LIB_SETUP([GMIME], [GMime library], [gmime])
216 AST_EXT_LIB_SETUP([ICONV], [Iconv Library], [iconv])
217 AST_EXT_LIB_SETUP([IKSEMEL], [Iksemel Jabber Library], [iksemel])
218 AST_EXT_LIB_SETUP([IMAP_TK], [UW IMAP Toolkit], [imap])
219 AST_EXT_LIB_SETUP([ISDNNET], [ISDN4Linux Library], [isdnnet])
220 AST_EXT_LIB_SETUP([JACK], [Jack Audio Connection Kit], [jack])
221 AST_EXT_LIB_SETUP([LDAP], [OpenLDAP], [ldap])
222 AST_EXT_LIB_SETUP([LTDL], [libtool], [ltdl])
223 AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
224 AST_EXT_LIB_SETUP([MISDN], [mISDN User Library], [misdn])
225 AST_EXT_LIB_SETUP([NBS], [Network Broadcast Sound], [nbs])
226 AST_EXT_LIB_SETUP([NCURSES], [ncurses], [ncurses])
227 AST_EXT_LIB_SETUP([NETSNMP], [Net-SNMP], [netsnmp])
228 AST_EXT_LIB_SETUP([NEWT], [newt], [newt])
229 AST_EXT_LIB_SETUP([UNIXODBC], [unixODBC], [odbc])
230 AST_EXT_LIB_SETUP([OGG], [OGG], [ogg])
231 AST_EXT_LIB_SETUP([OSPTK], [OSP Toolkit], [osptk])
232 AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
233 AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
234 AST_EXT_LIB_SETUP([POPT], [popt], [popt])
235 AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
236 AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
237 AST_EXT_LIB_SETUP([SPANDSP], [SPANDSP], [spandsp])
238 AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
239 AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
240 AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
241 AST_EXT_LIB_SETUP([RADIUS], [Radius Client], [radius])
242 AST_EXT_LIB_SETUP([SDL], [Sdl], [sdl])
243 AST_EXT_LIB_SETUP([SDL_IMAGE], [Sdl Image library], [SDL_image])
244 AST_EXT_LIB_SETUP([OPENAIS], [OpenAIS], [openais])
245 AST_EXT_LIB_SETUP([SPEEX], [Speex], [speex])
246 AST_EXT_LIB_SETUP([SPEEXDSP], [Speexdsp], [speexdsp])
247 AST_EXT_LIB_SETUP([SQLITE], [SQLite], [sqlite])
248 AST_EXT_LIB_SETUP([SQLITE3], [SQLite], [sqlite3])
249 AST_EXT_LIB_SETUP([SUPPSERV], [mISDN Supplemental Services], [suppserv])
250 AST_EXT_LIB_SETUP([OPENSSL], [OpenSSL Secure Sockets Layer support], [ssl])
251 AST_EXT_LIB_SETUP([FREETDS], [FreeTDS], [tds])
252 AST_EXT_LIB_SETUP([TERMCAP], [Termcap], [termcap])
253 AST_EXT_LIB_SETUP([TINFO], [Term Info], [tinfo])
254 AST_EXT_LIB_SETUP([TONEZONE], [tonezone], [tonezone])
255 AST_EXT_LIB_SETUP([USB], [usb], [usb])
256 AST_EXT_LIB_SETUP([VORBIS], [Vorbis], [vorbis])
257 AST_EXT_LIB_SETUP([VPB], [Voicetronix API], [vpb])
258 AST_EXT_LIB_SETUP([X11], [X11 support], [x11])
259 AST_EXT_LIB_SETUP([ZLIB], [zlib], [z])
260
261 # check for basic system features and functionality before
262 # checking for package libraries
263
264 AC_FUNC_ALLOCA
265 AC_HEADER_DIRENT
266 AC_HEADER_STDC
267 AC_HEADER_SYS_WAIT
268 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 arpa/nameser.h])
269
270 AC_CHECK_HEADERS([winsock.h winsock2.h])
271
272 AC_SYS_LARGEFILE
273
274 # Checks for typedefs, structures, and compiler characteristics.
275 AC_HEADER_STDBOOL
276 AC_C_CONST
277 AC_TYPE_UID_T
278 AC_C_INLINE
279 AC_TYPE_MODE_T
280 AC_TYPE_OFF_T
281 AC_TYPE_PID_T
282 AC_TYPE_SIZE_T
283 AC_CHECK_MEMBERS([struct stat.st_blksize])
284 AC_HEADER_TIME
285 AC_STRUCT_TM
286 AC_C_VOLATILE
287 AC_CHECK_TYPES([ptrdiff_t])
288
289 # Checks for library functions.
290 AC_FUNC_CHOWN
291 AC_FUNC_CLOSEDIR_VOID
292 AC_FUNC_ERROR_AT_LINE
293 AST_FUNC_FORK
294 AC_FUNC_FSEEKO
295 AC_PROG_GCC_TRADITIONAL
296 # XXX: these are commented out until we determine whether it matters if our malloc()
297 # acts exactly like glibc's or not
298 # AC_FUNC_MALLOC
299 # AC_FUNC_REALLOC
300 AC_FUNC_MEMCMP
301 AC_FUNC_MMAP
302 AC_FUNC_SELECT_ARGTYPES
303 AC_FUNC_SETVBUF_REVERSED
304 AC_TYPE_SIGNAL
305 AC_FUNC_STAT
306 AC_FUNC_STRCOLL
307 AC_FUNC_STRFTIME
308 AC_FUNC_STRNLEN
309 AC_FUNC_STRTOD
310 AC_FUNC_UTIME_NULL
311 AC_FUNC_VPRINTF
312 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])
313
314 AC_CHECK_FUNCS([glob])
315
316 AC_MSG_CHECKING(for timersub in time.h)
317 AC_LINK_IFELSE(
318         AC_LANG_PROGRAM([#include <sys/time.h>],
319                 [struct timeval *a; timersub(a, a, a);]),
320         AC_MSG_RESULT(yes)
321                 AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
322         AC_MSG_RESULT(no)
323 )
324
325 AC_CHECK_HEADER([sys/poll.h], 
326    [HAS_POLL=1]
327    AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
328    )
329 AC_SUBST(HAS_POLL)
330
331 # https support (in main/http.c) uses funopen on BSD systems,
332 # fopencookie on linux
333 AC_CHECK_FUNCS([funopen fopencookie])
334
335 AC_CHECK_FUNCS([inet_aton])
336
337 # check if we have IP_PKTINFO constant defined
338 AC_MSG_CHECKING(for IP_PKTINFO)
339 AC_LINK_IFELSE(
340                 AC_LANG_PROGRAM([#include <netinet/in.h>],
341                                                 [int pi = IP_PKTINFO;]),
342                 AC_MSG_RESULT(yes)
343                 AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
344                 AC_MSG_RESULT(no)
345 )
346
347 # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
348 AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
349
350 AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
351 AC_LINK_IFELSE(
352         AC_LANG_PROGRAM([#include <stdlib.h>
353                          #include <netdb.h>],
354                         [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);]),
355         AC_MSG_RESULT(yes)
356         AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
357         AC_MSG_RESULT(no)
358 )
359
360 AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
361 AC_LINK_IFELSE(
362         AC_LANG_PROGRAM([#include <stdlib.h>
363                          #include <netdb.h>],
364                         [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);]),
365         AC_MSG_RESULT(yes)
366         AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
367         AC_MSG_RESULT(no)
368 )
369
370 AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
371
372 AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
373 AC_LINK_IFELSE(
374 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);]),
375 AC_MSG_RESULT(yes)
376 AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
377 AC_MSG_RESULT(no)
378 )
379
380 AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
381 AC_LINK_IFELSE(
382 AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);]),
383 AC_MSG_RESULT(yes)
384 AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
385 AC_MSG_RESULT(no)
386 )
387
388 if test "${cross_compiling}" = "no";
389 then
390   AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
391 fi
392
393 AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
394
395 AC_MSG_CHECKING(for PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h)
396 AC_LINK_IFELSE(
397 AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_RWLOCK_PREFER_WRITER_NP;]),
398 AC_MSG_RESULT(yes)
399 AC_DEFINE([HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP], 1, [Define to 1 if your system defines PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h]),
400 AC_MSG_RESULT(no)
401 )
402
403 AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE_NP in pthread.h)
404 AC_LINK_IFELSE(
405 AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_MUTEX_RECURSIVE_NP;]),
406 AC_MSG_RESULT(yes)
407 AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1, [Define to 1 if your system defines PTHREAD_MUTEX_RECURSIVE_NP in pthread.h]),
408 AC_MSG_RESULT(no)
409 )
410
411 AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
412
413 #if test "${cross_compiling}" = "no";
414 #then
415 #AC_MSG_CHECKING(for working epoll support)
416 #AC_LINK_IFELSE(
417 #AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
418 #                                         if (res < 0)
419 #                                            return 1;
420 #                                         close (res);
421 #                                         return 0;]),
422 #AC_MSG_RESULT(yes)
423 #AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
424 #AC_MSG_RESULT(no)
425 #)
426 #fi
427
428 AC_MSG_CHECKING(for compiler atomic operations)
429 AC_LINK_IFELSE(
430 AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);]),
431 AC_MSG_RESULT(yes)
432 AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
433 AC_MSG_RESULT(no)
434 )
435
436 AST_GCC_ATTRIBUTE(pure)
437 AST_GCC_ATTRIBUTE(malloc)
438 AST_GCC_ATTRIBUTE(const)
439 AST_GCC_ATTRIBUTE(unused)
440 AST_GCC_ATTRIBUTE(always_inline)
441 AST_GCC_ATTRIBUTE(deprecated)
442 AST_GCC_ATTRIBUTE(sentinel)
443 AST_GCC_ATTRIBUTE(warn_unused_result)
444
445 AC_MSG_CHECKING(for -ffunction-sections support)
446 saved_CFLAGS="${CFLAGS}"
447 CFLAGS="${CFLAGS} -ffunction-sections"
448 AC_COMPILE_IFELSE(
449         AC_LANG_PROGRAM([], [int x = 1;]),
450         AC_MSG_RESULT(yes)
451         [saved_LDFLAGS="${LDFLAGS}"]
452         [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
453         AC_MSG_CHECKING(for --gc-sections support)
454         AC_LINK_IFELSE(
455                 AC_LANG_PROGRAM([], [int x = 1;]),
456                 AC_MSG_RESULT(yes)
457                 [GC_CFLAGS="-ffunction-sections"]
458                 [[GC_LDFLAGS="-Wl,--gc-sections"]],
459                 AC_MSG_RESULT(no)
460         )
461         [LDFLAGS="${saved_LDFLAGS}"],
462         AC_MSG_RESULT(no)
463 )
464 CFLAGS="${saved_CFLAGS}"
465 AC_SUBST(GC_CFLAGS)
466 AC_SUBST(GC_LDFLAGS)
467
468 AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
469 if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
470         AC_MSG_RESULT(yes)
471         AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
472 else
473         AC_MSG_RESULT(no)
474         AST_DECLARATION_AFTER_STATEMENT=
475 fi
476 AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
477
478 AC_MSG_CHECKING(for -fno-strict-overflow)
479 if $(${CC} -O2 -fno-strict-overflow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
480    AC_MSG_RESULT(yes)
481    AST_NO_STRICT_OVERFLOW=-fno-strict-overflow
482 else
483         AC_MSG_RESULT(no)
484         AST_NO_STRICT_OVERFLOW=
485 fi
486 AC_SUBST(AST_NO_STRICT_OVERFLOW)
487
488 AC_MSG_CHECKING(for sysinfo)
489 AC_LINK_IFELSE(
490         AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
491                         [struct sysinfo sys_info; int uptime = sys_info.uptime]),
492         AC_MSG_RESULT(yes)
493         AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
494         AC_MSG_RESULT(no)
495 )
496
497 AC_SEARCH_LIBS(res_9_ninit, resolv)
498 AC_MSG_CHECKING(for res_ninit)
499 AC_LINK_IFELSE(
500         AC_LANG_PROGRAM([
501                         #ifdef HAVE_SYS_SOCKET_H
502                         #include <sys/socket.h>
503                         #endif
504                         #ifdef HAVE_NETINET_IN_H
505                         #include <netinet/in.h>
506                         #endif
507                         #ifdef HAVE_ARPA_NAMESER_H
508                         #include <arpa/nameser.h>
509                         #endif
510                         #include <resolv.h>],
511                         [int foo = res_ninit(NULL);]),
512         AC_MSG_RESULT(yes)
513         AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
514         AC_SEARCH_LIBS(res_9_ndestroy, resolv)
515         AC_MSG_CHECKING(for res_ndestroy)
516         AC_LINK_IFELSE(
517                 AC_LANG_PROGRAM([
518                                 #ifdef HAVE_SYS_SOCKET_H
519                                 #include <sys/socket.h>
520                                 #endif
521                                 #ifdef HAVE_NETINET_IN_H
522                                 #include <netinet/in.h>
523                                 #endif
524                                 #ifdef HAVE_ARPA_NAMESER_H
525                                 #include <arpa/nameser.h>
526                                 #endif
527                                 #include <resolv.h>],
528                                 [res_ndestroy(NULL);]),
529                 AC_MSG_RESULT(yes)
530                 AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
531                 AC_MSG_RESULT(no)
532         ),
533         AC_MSG_RESULT(no)
534 )
535
536 AST_C_DEFINE_CHECK([RTLD_NOLOAD], [RTLD_NOLOAD], [dlfcn.h])
537
538 AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
539
540 AC_CHECK_HEADER([libkern/OSAtomic.h],
541                 [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
542
543 AC_CHECK_SIZEOF(int)
544
545 # do the package library checks now
546
547 AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
548
549 AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
550
551 if test "x${host_os}" = "xlinux-gnu" ; then
552   AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
553 fi
554
555 AST_C_DEFINE_CHECK([DAHDI], [DAHDI_CODE], [dahdi/user.h])
556
557 # BSD might not have exp2, and/or log2
558 AST_EXT_LIB_CHECK([EXP2L], [m], [exp2l])
559 AST_EXT_LIB_CHECK([LOG2L], [m], [log2l])
560 AST_EXT_LIB_CHECK([EXP10L], [m], [exp10l])
561 AST_EXT_LIB_CHECK([LOG10L], [m], [log10l])
562 AST_EXT_LIB_CHECK([SINL], [m], [sinl])
563 AST_EXT_LIB_CHECK([COSL], [m], [cosl])
564 AST_EXT_LIB_CHECK([TANL], [m], [tanl])
565 AST_EXT_LIB_CHECK([ASINL], [m], [asinl])
566 AST_EXT_LIB_CHECK([ACOSL], [m], [acosl])
567 AST_EXT_LIB_CHECK([ATANL], [m], [atanl])
568 AST_EXT_LIB_CHECK([ATAN2L], [m], [atan2l])
569 AST_EXT_LIB_CHECK([POWL], [m], [powl])
570 AST_EXT_LIB_CHECK([SQRTL], [m], [sqrtl])
571 AST_EXT_LIB_CHECK([RINTL], [m], [rintl])
572 AST_EXT_LIB_CHECK([EXPL], [m], [expl])
573 AST_EXT_LIB_CHECK([LOGL], [m], [logl])
574 AST_EXT_LIB_CHECK([REMAINDERL], [m], [remainderl])
575 AST_EXT_LIB_CHECK([FMODL], [m], [fmodl])
576 AST_EXT_LIB_CHECK([ROUNDL], [m], [roundl])
577 AST_EXT_LIB_CHECK([TRUNCL], [m], [truncl])
578 AST_EXT_LIB_CHECK([STRTOLD], [c], [strtold], [stdlib.h])
579 AST_EXT_LIB_CHECK([FLOORL], [m], [floorl])
580 AST_EXT_LIB_CHECK([CEILL], [m], [ceill])
581 AST_EXT_LIB_CHECK([EXP2], [m], [exp2])
582 AST_EXT_LIB_CHECK([LOG2], [m], [log2])
583 AST_EXT_LIB_CHECK([EXP10], [m], [exp10])
584 AST_EXT_LIB_CHECK([LOG10], [m], [log10])
585 AST_EXT_LIB_CHECK([SIN], [m], [sin])
586 AST_EXT_LIB_CHECK([COS], [m], [cos])
587 AST_EXT_LIB_CHECK([TAN], [m], [tan])
588 AST_EXT_LIB_CHECK([ASIN], [m], [asin])
589 AST_EXT_LIB_CHECK([ACOS], [m], [acos])
590 AST_EXT_LIB_CHECK([ATAN], [m], [atan])
591 AST_EXT_LIB_CHECK([ATAN2], [m], [atan2])
592 AST_EXT_LIB_CHECK([POW], [m], [pow])
593 AST_EXT_LIB_CHECK([SQRT], [m], [sqrt])
594 AST_EXT_LIB_CHECK([RINT], [m], [rint])
595 AST_EXT_LIB_CHECK([EXP], [m], [exp])
596 AST_EXT_LIB_CHECK([LOG], [m], [log])
597 AST_EXT_LIB_CHECK([REMAINDER], [m], [remainder])
598 AST_EXT_LIB_CHECK([FMOD], [m], [fmod])
599 AST_EXT_LIB_CHECK([ROUND], [m], [round])
600 AST_EXT_LIB_CHECK([TRUNC], [m], [trunc])
601 AST_EXT_LIB_CHECK([STRTOD], [c], [strtod], [stdlib.h])
602 AST_EXT_LIB_CHECK([FLOOR], [m], [floor])
603 AST_EXT_LIB_CHECK([CEIL], [m], [ceil])
604
605 AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h])
606
607 GSM_INTERNAL="yes"
608 AC_SUBST(GSM_INTERNAL)
609 GSM_SYSTEM="yes"
610 if test "${USE_GSM}" != "no"; then
611    if test "${GSM_DIR}" = "internal"; then
612       GSM_SYSTEM="no"
613    elif test "${GSM_DIR}" != ""; then
614       GSM_INTERNAL="no"
615    fi
616    if test "${GSM_SYSTEM}" = "yes"; then
617       gsmlibdir=""
618       if test "x${GSM_DIR}" != "x"; then
619          if test -d ${GSM_DIR}/lib; then
620             gsmlibdir="-L${GSM_DIR}/lib"
621          else
622             gsmlibdir="-L${GSM_DIR}"
623          fi
624       fi
625       AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
626       [Define to indicate the GSM library]), [], ${gsmlibdir})
627       if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
628          if test "x${GSM_DIR}" != "x" ; then
629             AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
630             AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
631          else
632             AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
633             AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
634          fi
635          if test "${GSM_HEADER_FOUND}" = "0" ; then
636             if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
637                if test "x${GSM_MANDATORY}" = "xyes" ; then
638                   AC_MSG_NOTICE([***])
639                   AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
640                   AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
641                   AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
642                   exit 1
643                fi
644             fi
645          fi
646          GSM_OK=0
647          if test "${GSM_HEADER_FOUND}" = "1" ; then
648             AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
649             GSM_OK=1
650          else
651             if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
652                AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
653                GSM_OK=1
654             fi
655          fi
656          if test "${GSM_OK}" = "1" ; then
657             GSM_LIB="-lgsm"
658             if test "x${GSM_DIR}" != "x"; then
659                GSM_LIB="${gsmlibdir} ${GSM_LIB}"
660                GSM_INCLUDE="-I${GSM_DIR}/include"
661             fi
662             PBX_GSM=1
663             GSM_INTERNAL="no"
664          fi
665       fi
666    fi
667    if test "${GSM_INTERNAL}" = "yes"; then
668       PBX_GSM=1
669       AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
670    fi
671 fi
672
673 if test "${host_os}" != "linux-gnu" ; then
674   AST_EXT_LIB_CHECK([ICONV], [iconv], [iconv_open], [iconv.h])
675 else
676   PBX_ICONV=1
677 fi
678
679 AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
680
681 if test "${USE_IMAP_TK}" != "no"; then
682         saved_cppflags="${CPPFLAGS}"
683         saved_libs="${LIBS}"
684         switch_to_system_on_failure="no"
685         if test "${IMAP_TK_DIR}" = ""; then
686                 IMAP_TK_DIR=`pwd`"/../imap-2004g"
687                 switch_to_system_on_failure="yes"
688         fi
689         if test "${IMAP_TK_DIR}" != "system"; then
690                 AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
691                 if test -f "${IMAP_TK_DIR}/c-client/LDFLAGS"; then
692                 imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
693                 fi
694                 imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
695                 imap_include="-I${IMAP_TK_DIR}/c-client"
696         CPPFLAGS="${CPPFLAGS} ${imap_include}"
697                 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
698                 AC_LINK_IFELSE(
699                 AC_LANG_PROGRAM(
700                                 [#include "c-client.h"
701                                 void mm_searched (MAILSTREAM *stream,unsigned long number)
702                                 {
703                                 }
704                                 void mm_exists (MAILSTREAM *stream,unsigned long number)
705                                 {
706                                 }
707                                 void mm_expunged (MAILSTREAM *stream,unsigned long number)
708                                 {
709                                 }
710                                 void mm_flags (MAILSTREAM *stream,unsigned long number)
711                                 {
712                                 }
713                                 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
714                                 {
715                                 }
716                                 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
717                                 {
718                                 }
719                                 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
720                                 {
721                                 }
722                                 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
723                                 {
724                                 }
725                                 void mm_log (char *string,long errflg)
726                                 {
727                                 }
728                                 void mm_dlog (char *string)
729                                 {
730                                 }
731                                 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
732                                 {
733                                 }
734                                 void mm_critical (MAILSTREAM *stream)
735                                 {
736                                 }
737                                 void mm_nocritical (MAILSTREAM *stream)
738                                 {
739                                 }
740                                 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
741                                 {
742                                 }
743                                 void mm_fatal (char *string)
744                                 {
745                                 }],
746                                 [
747                                 MAILSTREAM *foo = mail_open(NULL, "", 0);
748                                 ]
749                         ),
750                         [ac_cv_imap_tk="yes"],
751                         [ac_cv_imap_tk="no"]
752                 )
753                 if test "${ac_cv_imap_tk}" = "yes"; then
754                         AC_LINK_IFELSE(
755                                 AC_LANG_PROGRAM(
756                                         [#include "c-client.h"
757                                         void mm_searched (MAILSTREAM *stream,unsigned long number)
758                                         {
759                                         }
760                                         void mm_exists (MAILSTREAM *stream,unsigned long number)
761                                         {
762                                         }
763                                         void mm_expunged (MAILSTREAM *stream,unsigned long number)
764                                         {
765                                         }
766                                         void mm_flags (MAILSTREAM *stream,unsigned long number)
767                                         {
768                                         }
769                                         void mm_notify (MAILSTREAM *stream,char *string,long errflg)
770                                         {
771                                         }
772                                         void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
773                                         {
774                                         }
775                                         void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
776                                         {
777                                         }
778                                         void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
779                                         {
780                                         }
781                                         void mm_log (char *string,long errflg)
782                                         {
783                                         }
784                                         void mm_dlog (char *string)
785                                         {
786                                         }
787                                         void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
788                                         {
789                                         }
790                                         void mm_critical (MAILSTREAM *stream)
791                                         {
792                                         }
793                                         void mm_nocritical (MAILSTREAM *stream)
794                                         {
795                                         }
796                                         long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
797                                         {
798                                         }
799                                         void mm_fatal (char *string)
800                                         {
801                                         }],
802                                         [
803                                         long check = mail_expunge_full(NULL, "", 0);
804                                         ]
805                                 ),
806                                 [ac_cv_imap_tk2006="yes"],
807                                 [ac_cv_imap_tk2006="no"]
808                         )
809                 fi
810                 CPPFLAGS="${saved_cppflags}"
811                 LIBS="${saved_libs}"
812                 if test "${ac_cv_imap_tk}" = "no"; then
813                         AC_MSG_RESULT(no)
814                         if test "${switch_to_system_on_failure}" = "yes"; then
815                                 IMAP_TK_DIR="system"
816                         else #This means they specified a directory. Search for a package installation there too
817                                 AC_MSG_CHECKING([for system c-client library...])
818                                 CPPFLAGS="${saved_cppflags}"
819                                 LIBS="${saved_libs}"
820                                 imap_include="-I${IMAP_TK_DIR}/include"
821                                 imap_ldflags="-L${IMAP_TK_DIR}/lib"
822                                 imap_libs="-lc-client"
823                                 CPPFLAGS="${CPPFLAGS} ${imap_include}"
824                                 LIBS="${LIBS} ${imap_libs} ${imap_ldflags}"
825                                 AC_LINK_IFELSE(
826                                 AC_LANG_PROGRAM(
827                                                 [#include "c-client.h"
828                                                 void mm_searched (MAILSTREAM *stream,unsigned long number)
829                                                 {
830                                                 }
831                                                 void mm_exists (MAILSTREAM *stream,unsigned long number)
832                                                 {
833                                                 }
834                                                 void mm_expunged (MAILSTREAM *stream,unsigned long number)
835                                                 {
836                                                 }
837                                                 void mm_flags (MAILSTREAM *stream,unsigned long number)
838                                                 {
839                                                 }
840                                                 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
841                                                 {
842                                                 }
843                                                 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
844                                                 {
845                                                 }
846                                                 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
847                                                 {
848                                                 }
849                                                 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
850                                                 {
851                                                 }
852                                                 void mm_log (char *string,long errflg)
853                                                 {
854                                                 }
855                                                 void mm_dlog (char *string)
856                                                 {
857                                                 }
858                                                 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
859                                                 {
860                                                 }
861                                                 void mm_critical (MAILSTREAM *stream)
862                                                 {
863                                                 }
864                                                 void mm_nocritical (MAILSTREAM *stream)
865                                                 {
866                                                 }
867                                                 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
868                                                 {
869                                                 }
870                                                 void mm_fatal (char *string)
871                                                 {
872                                                 }],
873                                                 [
874                                                 MAILSTREAM *foo = mail_open(NULL, "", 0);
875                                                 ]
876                                         ),
877                                         [ac_cv_imap_tk="yes"],
878                                         [ac_cv_imap_tk="no"]
879                                 )
880                                 if test "${ac_cv_imap_tk}" = "yes"; then
881                                         AC_LINK_IFELSE(
882                                                 AC_LANG_PROGRAM(
883                                                         [#include "c-client.h"
884                                                         void mm_searched (MAILSTREAM *stream,unsigned long number)
885                                                         {
886                                                         }
887                                                         void mm_exists (MAILSTREAM *stream,unsigned long number)
888                                                         {
889                                                         }
890                                                         void mm_expunged (MAILSTREAM *stream,unsigned long number)
891                                                         {
892                                                         }
893                                                         void mm_flags (MAILSTREAM *stream,unsigned long number)
894                                                         {
895                                                         }
896                                                         void mm_notify (MAILSTREAM *stream,char *string,long errflg)
897                                                         {
898                                                         }
899                                                         void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
900                                                         {
901                                                         }
902                                                         void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
903                                                         {
904                                                         }
905                                                         void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
906                                                         {
907                                                         }
908                                                         void mm_log (char *string,long errflg)
909                                                         {
910                                                         }
911                                                         void mm_dlog (char *string)
912                                                         {
913                                                         }
914                                                         void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
915                                                         {
916                                                         }
917                                                         void mm_critical (MAILSTREAM *stream)
918                                                         {
919                                                         }
920                                                         void mm_nocritical (MAILSTREAM *stream)
921                                                         {
922                                                         }
923                                                         long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
924                                                         {
925                                                         }
926                                                         void mm_fatal (char *string)
927                                                         {
928                                                         }],
929                                                         [
930                                                         long check = mail_expunge_full(NULL, "", 0);
931                                                         ]
932                                                 ),
933                                                 [ac_cv_imap_tk2006="yes"],
934                                                 [ac_cv_imap_tk2006="no"]
935                                         )
936                                 fi
937                         fi
938                 fi
939         fi 
940         if test "${IMAP_TK_DIR}" = "system"; then
941                 #We will enter here if user specified "system" or if any of above checks failed
942                 AC_MSG_CHECKING([for system c-client library...])
943                 CPPFLAGS="${saved_cppflags}"
944                 LIBS="${saved_libs}"
945                 imap_ldflags=""
946                 imap_libs="-lc-client"
947                 imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
948                 CPPFLAGS="${CPPFLAGS} ${imap_include}"
949                 LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
950                 AC_LINK_IFELSE(
951                 AC_LANG_PROGRAM(
952                                 [#include <stdio.h>
953                                 #include <imap/c-client.h>
954                                 void mm_searched (MAILSTREAM *stream,unsigned long number)
955                                 {
956                                 }
957                                 void mm_exists (MAILSTREAM *stream,unsigned long number)
958                                 {
959                                 }
960                                 void mm_expunged (MAILSTREAM *stream,unsigned long number)
961                                 {
962                                 }
963                                 void mm_flags (MAILSTREAM *stream,unsigned long number)
964                                 {
965                                 }
966                                 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
967                                 {
968                                 }
969                                 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
970                                 {
971                                 }
972                                 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
973                                 {
974                                 }
975                                 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
976                                 {
977                                 }
978                                 void mm_log (char *string,long errflg)
979                                 {
980                                 }
981                                 void mm_dlog (char *string)
982                                 {
983                                 }
984                                 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
985                                 {
986                                 }
987                                 void mm_critical (MAILSTREAM *stream)
988                                 {
989                                 }
990                                 void mm_nocritical (MAILSTREAM *stream)
991                                 {
992                                 }
993                                 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
994                                 {
995                                 }
996                                 void mm_fatal (char *string)
997                                 {
998                                 }],
999                                 [
1000                                 MAILSTREAM *foo = mail_open(NULL, "", 0);
1001                                 ]
1002                         ),
1003                         [ac_cv_imap_tk="yes"],
1004                         [ac_cv_imap_tk="no"]
1005                 )
1006                 if test "${ac_cv_imap_tk}" = "yes"; then
1007                         AC_LINK_IFELSE(
1008                                 AC_LANG_PROGRAM(
1009                                         [#include <stdio.h>
1010                                         #include <imap/c-client.h>
1011                                         void mm_searched (MAILSTREAM *stream,unsigned long number)
1012                                         {
1013                                         }
1014                                         void mm_exists (MAILSTREAM *stream,unsigned long number)
1015                                         {
1016                                         }
1017                                         void mm_expunged (MAILSTREAM *stream,unsigned long number)
1018                                         {
1019                                         }
1020                                         void mm_flags (MAILSTREAM *stream,unsigned long number)
1021                                         {
1022                                         }
1023                                         void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1024                                         {
1025                                         }
1026                                         void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1027                                         {
1028                                         }
1029                                         void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1030                                         {
1031                                         }
1032                                         void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1033                                         {
1034                                         }
1035                                         void mm_log (char *string,long errflg)
1036                                         {
1037                                         }
1038                                         void mm_dlog (char *string)
1039                                         {
1040                                         }
1041                                         void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1042                                         {
1043                                         }
1044                                         void mm_critical (MAILSTREAM *stream)
1045                                         {
1046                                         }
1047                                         void mm_nocritical (MAILSTREAM *stream)
1048                                         {
1049                                         }
1050                                         long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1051                                         {
1052                                         }
1053                                         void mm_fatal (char *string)
1054                                         {
1055                                         }],
1056                                         [
1057                                         long check = mail_expunge_full(NULL, "", 0);
1058                                         ]
1059                                 ),
1060                                 [ac_cv_imap_tk2006="yes"],
1061                                 [ac_cv_imap_tk2006="no"]
1062                         )
1063                 else #looking in imap directory didn't work, try c-client
1064                         imap_ldflags=""
1065                         imap_libs="-lc-client"
1066                         imap_include="-DUSE_SYSTEM_CCLIENT"
1067                         CPPFLAGS="${saved_cppflags}"
1068                         LIBS="${saved_libs}"
1069                         CPPFLAGS="${CPPFLAGS} ${imap_include}"
1070                         LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
1071                         AC_LINK_IFELSE(
1072                         AC_LANG_PROGRAM(
1073                                         [#include <stdio.h>
1074                                         #include <c-client/c-client.h>
1075                                         void mm_searched (MAILSTREAM *stream,unsigned long number)
1076                                         {
1077                                         }
1078                                         void mm_exists (MAILSTREAM *stream,unsigned long number)
1079                                         {
1080                                         }
1081                                         void mm_expunged (MAILSTREAM *stream,unsigned long number)
1082                                         {
1083                                         }
1084                                         void mm_flags (MAILSTREAM *stream,unsigned long number)
1085                                         {
1086                                         }
1087                                         void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1088                                         {
1089                                         }
1090                                         void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1091                                         {
1092                                         }
1093                                         void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1094                                         {
1095                                         }
1096                                         void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1097                                         {
1098                                         }
1099                                         void mm_log (char *string,long errflg)
1100                                         {
1101                                         }
1102                                         void mm_dlog (char *string)
1103                                         {
1104                                         }
1105                                         void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1106                                         {
1107                                         }
1108                                         void mm_critical (MAILSTREAM *stream)
1109                                         {
1110                                         }
1111                                         void mm_nocritical (MAILSTREAM *stream)
1112                                         {
1113                                         }
1114                                         long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1115                                         {
1116                                         }
1117                                         void mm_fatal (char *string)
1118                                         {
1119                                         }],
1120                                         [
1121                                         MAILSTREAM *foo = mail_open(NULL, "", 0);
1122                                         ]
1123                                 ),
1124                                 [ac_cv_imap_tk="yes"],
1125                                 [ac_cv_imap_tk="no"]
1126                         )
1127                         if test "${ac_cv_imap_tk}" = "yes"; then
1128                                 AC_LINK_IFELSE(
1129                                         AC_LANG_PROGRAM(
1130                                                 [#include <stdio.h>
1131                                                 #include <c-client/c-client.h>
1132                                                 void mm_searched (MAILSTREAM *stream,unsigned long number)
1133                                                 {
1134                                                 }
1135                                                 void mm_exists (MAILSTREAM *stream,unsigned long number)
1136                                                 {
1137                                                 }
1138                                                 void mm_expunged (MAILSTREAM *stream,unsigned long number)
1139                                                 {
1140                                                 }
1141                                                 void mm_flags (MAILSTREAM *stream,unsigned long number)
1142                                                 {
1143                                                 }
1144                                                 void mm_notify (MAILSTREAM *stream,char *string,long errflg)
1145                                                 {
1146                                                 }
1147                                                 void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1148                                                 {
1149                                                 }
1150                                                 void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
1151                                                 {
1152                                                 }
1153                                                 void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
1154                                                 {
1155                                                 }
1156                                                 void mm_log (char *string,long errflg)
1157                                                 {
1158                                                 }
1159                                                 void mm_dlog (char *string)
1160                                                 {
1161                                                 }
1162                                                 void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
1163                                                 {
1164                                                 }
1165                                                 void mm_critical (MAILSTREAM *stream)
1166                                                 {
1167                                                 }
1168                                                 void mm_nocritical (MAILSTREAM *stream)
1169                                                 {
1170                                                 }
1171                                                 long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
1172                                                 {
1173                                                 }
1174                                                 void mm_fatal (char *string)
1175                                                 {
1176                                                 }],
1177                                                 [
1178                                                 long check = mail_expunge_full(NULL, "", 0);
1179                                                 ]
1180                                         ),
1181                                         [ac_cv_imap_tk2006="yes"],
1182                                         [ac_cv_imap_tk2006="no"]
1183                                 )
1184                         fi
1185                 fi
1186         fi
1187         if test "${ac_cv_imap_tk}" = "yes"; then
1188                 AC_MSG_RESULT(yes)
1189                 IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
1190                 IMAP_TK_INCLUDE="${imap_include}"
1191                 PBX_IMAP_TK=1
1192                 AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
1193                 if test "${ac_cv_imap_tk2006}" = "yes"; then
1194                         AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
1195                 fi
1196         else
1197                 AC_MSG_RESULT(no) 
1198         fi
1199         CPPFLAGS="${saved_cppflags}"
1200         LIBS="${saved_libs}"
1201 fi
1202
1203 AST_EXT_LIB_CHECK([JACK], [jack], [jack_activate], [jack/jack.h])
1204
1205 # Needed by unixodbc
1206 AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
1207
1208 AST_EXT_LIB_CHECK([LDAP], [ldap], [ldap_initialize], [ldap.h])
1209
1210 AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
1211
1212 if test "${PBX_MISDN}" = 1; then
1213    AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
1214    AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
1215    AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
1216    AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
1217    AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
1218 fi
1219
1220 AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
1221
1222 AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
1223
1224 AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp], , [--agent-libs],
1225 [#include <net-snmp/net-snmp-config.h>
1226 #include <net-snmp/net-snmp-includes.h>
1227 #include <net-snmp/agent/net-snmp-agent-includes.h>],
1228 [int callback = snmp_register_callback(0, 0, NULL, NULL)])
1229
1230 AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
1231
1232 AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
1233
1234 AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
1235
1236 # Non-glibc platforms require libexecinfo for backtrace support
1237 AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h])
1238 # Linux, however, has backtrace directly in glibc
1239 AST_EXT_LIB_CHECK([BKTR], [c], [backtrace], [execinfo.h])
1240
1241 # possible places for oss definitions
1242 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
1243 AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
1244 AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
1245
1246 PG_CONFIG=No
1247 if test "${USE_PGSQL}" != "no"; then    
1248    if test "x${PGSQL_DIR}" != "x"; then
1249       AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
1250       if test x"${PG_CONFIG}" = xNo; then
1251          AC_MSG_NOTICE([***])
1252          AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
1253          AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
1254          AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1255          AC_MSG_NOTICE([*** including --without-postgres])
1256          exit 1
1257       fi
1258    else
1259       AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
1260    fi
1261 fi
1262 if test "${PG_CONFIG}" != No; then
1263    PGSQL_libdir=`${PG_CONFIG} --libdir`
1264    PGSQL_includedir=`${PG_CONFIG} --includedir`
1265    if test "x$?" != "x0" ; then
1266       if test -n "${PGSQL_MANDATORY}" ; then
1267          AC_MSG_NOTICE([***])
1268          AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1269          AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1270          AC_MSG_NOTICE([*** including --without-postgres])
1271          exit 1
1272           fi
1273    else 
1274       AC_CHECK_LIB([pq], [PQescapeStringConn], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
1275       [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
1276
1277       if test "${ac_cv_lib_pq_PQescapeStringConn}" = "yes"; then
1278          PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
1279          PGSQL_INCLUDE="-I${PGSQL_includedir}"
1280          PBX_PGSQL=1
1281       elif test -n "${PGSQL_MANDATORY}";
1282       then
1283          AC_MSG_NOTICE([***])
1284          AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
1285          AC_MSG_NOTICE([*** Either correct the installation, or run configure])
1286          AC_MSG_NOTICE([*** including --without-postgres])
1287          exit 1
1288       fi
1289    fi
1290 fi
1291
1292 AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
1293
1294 AST_EXT_LIB_CHECK([PORTAUDIO], [portaudio], [Pa_GetDeviceCount], [portaudio.h])
1295
1296 AST_EXT_LIB_CHECK([PRI], [pri], [pri_get_version], [libpri.h])
1297
1298 AST_C_COMPILE_CHECK([SPANDSP], [
1299                 #if SPANDSP_RELEASE_DATE < 20080516
1300                 #error "spandsp 0.0.5 or greater is required"
1301                 #endif
1302         ], [spandsp/version.h])
1303
1304 if test "x${PBX_SPANDSP}" = "x1" ; then
1305         # We found the correct version in the header, now let's make sure it links
1306         # properly, and that libtiff is available
1307         PBX_SPANDSP=0
1308         AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [span_set_message_handler], [spandsp.h], [-ltiff])
1309 fi
1310
1311 AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_pollflags], [libss7.h])
1312
1313 if test "${USE_PWLIB}" != "no"; then
1314         if test -n "${PWLIB_DIR}"; then
1315                 PWLIBDIR="${PWLIB_DIR}"
1316         fi
1317         AST_CHECK_PWLIB()
1318         AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2])
1319                 
1320         if test "${HAS_PWLIB:-unset}" != "unset"; then
1321                 AST_CHECK_OPENH323_PLATFORM()
1322
1323                 PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
1324
1325                 AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
1326                         [Define if your system has the PWLib libraries.],
1327                         [#include "ptlib.h"],
1328                         [BOOL q = PTime::IsDaylightSavings();])
1329         fi
1330 fi
1331
1332 if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
1333         if test -n "${OPENH323_DIR}"; then
1334                 OPENH323DIR="${OPENH323_DIR}"
1335         fi
1336         AST_CHECK_OPENH323()
1337         AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3])
1338         AST_CHECK_OPENH323_BUILD()
1339         PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
1340         AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
1341                 [Define if your system has the OpenH323 libraries.],
1342                 [#include "ptlib.h"
1343                 #include "h323.h"
1344                 #include "h323ep.h"],
1345                 [H323EndPoint ep = H323EndPoint();],
1346                 [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
1347 fi
1348
1349 AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h]) 
1350
1351 AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
1352
1353 # This is a bit complex... in reality, Asterisk's AIS support is dependent on finding
1354 # *any* implementation of AIS, not just OpenAIS. However, the configure script needs
1355 # to know the specifics of each possible implementation, and then represent the one
1356 # that was found as 'AIS'.
1357
1358 PBX_AIS=0
1359
1360 # OpenAIS installs its libraries into /usr/lib/openais by default, so check there
1361
1362 AST_EXT_LIB_CHECK([OPENAIS], [SaClm], [saClmInitialize], [openais/saClm.h], [-L/usr/lib/openais])
1363
1364 if test "${PBX_OPENAIS}" = 1; then
1365    PBX_AIS=1
1366    if test -n "${OPENAIS_DIR}"; then
1367       AIS_INCLUDE="${OPENAIS_INCLUDE}/openais"
1368       AIS_LIB="-lSaEvt ${OPENAIS_LIB}"
1369    else
1370       AIS_INCLUDE="-I/usr/include/openais"
1371       AIS_LIB="-lSaClm -lSaEvt -L/usr/lib/openais"
1372    fi
1373 fi
1374
1375 AC_SUBST(PBX_AIS)
1376 AC_SUBST(AIS_INCLUDE)
1377 AC_SUBST(AIS_LIB)
1378
1379 AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
1380
1381 # See if the main speex library contains the preprocess functions
1382 AST_EXT_LIB_CHECK([SPEEX_PREPROCESS], [speex], [speex_preprocess_ctl], [speex/speex.h], [-lm])
1383 if test "${PBX_SPEEX_PREPROCESS}" = 1; then
1384    PBX_SPEEX_PREPROCESS=1
1385 fi
1386
1387 AST_EXT_LIB_CHECK([SPEEXDSP], [speexdsp], [speex_preprocess_ctl], [speex/speex.h], [-lm])
1388 if test "${PBX_SPEEXDSP}" = 1; then
1389    PBX_SPEEX_PREPROCESS=1
1390 fi
1391
1392 AC_SUBST(PBX_SPEEX_PREPROCESS)
1393
1394 AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
1395
1396 AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h])
1397
1398 AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
1399
1400 if test "$PBX_CRYPTO" = "1";
1401 then
1402     AST_EXT_LIB_CHECK([OPENSSL], [ssl], [ssl2_connect], [openssl/ssl.h], [-lcrypto])
1403 fi
1404
1405 if test "$PBX_OPENSSL" = "1";
1406 then
1407     AST_EXT_LIB_CHECK([OSPTK], [osptk], [OSPPCryptoDecrypt], [osp/osp.h], [-lcrypto -lssl])
1408 fi
1409
1410 AST_EXT_TOOL_CHECK([GMIME], [gmime])
1411
1412 AST_EXT_LIB_CHECK([FREETDS], [sybdb], [dbinit], [sybdb.h])
1413
1414 AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
1415
1416 AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
1417
1418 if test "${host_os}" != "linux-gnu" ; then
1419   tonezone_extra="-lm"
1420 fi
1421
1422 AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [dahdi/tonezone.h], [${tonezone_extra} ${DAHDI_INCLUDE}])
1423
1424 AST_EXT_LIB_CHECK([USB], [usb], [usb_init], [usb.h], [])
1425
1426 AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc])
1427
1428 AC_LANG_PUSH(C++)
1429
1430 if test "${USE_VPB}" != "no"; then
1431    AC_MSG_CHECKING(for vpb_open in -lvpb)
1432    saved_libs="${LIBS}"
1433    saved_cppflags="${CPPFLAGS}"
1434    if test "x${VPB_DIR}" != "x"; then
1435       if test -d ${VPB_DIR}/lib; then
1436          vpblibdir=${VPB_DIR}/lib
1437       else
1438          vpblibdir=${VPB_DIR}
1439       fi
1440       LIBS="${LIBS} -L${vpblibdir}"
1441       CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
1442    fi
1443    LIBS="${LIBS} -lvpb -lpthread"
1444    AC_LINK_IFELSE(
1445         [
1446         AC_LANG_PROGRAM(
1447         [#include <vpbapi.h>],
1448         [int q = vpb_open(0,0);])
1449         ],
1450         [       AC_MSG_RESULT(yes) 
1451                 ac_cv_lib_vpb_vpb_open="yes" 
1452         ],
1453         [       AC_MSG_RESULT(no) 
1454                 ac_cv_lib_vpb_vpb_open="no" 
1455         ]
1456         )
1457    LIBS="${saved_libs}"
1458    CPPFLAGS="${saved_cppflags}"
1459    if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
1460         VPB_LIB="-lvpb"
1461         if test "${VPB_DIR}" != ""; then
1462            VPB_LIB="-L${vpblibdir}  ${VPB_LIB}"
1463            VPB_INCLUDE="-I${VPB_DIR}/include"
1464         fi
1465         PBX_VPB=1
1466         AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
1467    fi
1468 fi
1469
1470 AC_LANG_POP
1471
1472 AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
1473
1474 EDITLINE_LIB=""
1475 if test "x$TERMCAP_LIB" != "x" ; then
1476   EDITLINE_LIB="$TERMCAP_LIB"
1477 elif test "x$TINFO_LIB" != "x" ; then
1478   EDITLINE_LIB="$TINFO_LIB"
1479 elif test "x$CURSES_LIB" != "x" ; then
1480   EDITLINE_LIB="$CURSES_LIB"
1481 elif test "x$NCURSES_LIB" != "x" ; then
1482   EDITLINE_LIB="$NCURSES_LIB"
1483 else
1484   AC_MSG_ERROR(*** termcap support not found)
1485 fi
1486 AC_SUBST(EDITLINE_LIB)
1487
1488 AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
1489 AC_SUBST(PBX_H323)
1490
1491 AC_CHECK_HEADER([linux/compiler.h],
1492                 [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
1493
1494 AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
1495                                    #include <linux/version.h>
1496                                    #ifdef HAVE_LINUX_COMPILER_H
1497                                    #include <linux/compiler.h>
1498                                    #endif
1499                                    ])
1500 AC_SUBST(PBX_IXJUSER)
1501
1502 AST_EXT_TOOL_CHECK([SDL], [sdl])
1503 AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL_image.h], [${SDL_LIB}], [${SDL_INCLUDE}])
1504 AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [-lpthread -lz -lm])
1505
1506 # possible places for video4linux version 1
1507 AC_CHECK_HEADER([linux/videodev.h],
1508         [AC_DEFINE_UNQUOTED([HAVE_VIDEODEV_H], 1, [Define to 1 if your system has linux/videodev.h.])])
1509
1510 # possible places for X11
1511 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],,, [standard_path])
1512 AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],, [-I/usr/X11R6/include], [X11R6])
1513
1514 if test "${cross_compiling}" = "no";
1515 then
1516   AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
1517 fi
1518
1519 PBX_GTK=0
1520 AST_EXT_TOOL_CHECK([GTK], [gtk], [--cflags gthread], [--libs gthread])
1521
1522 PBX_GTK2=0
1523 AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
1524 if test ! "x${PKGCONFIG}" = xNo; then
1525    GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
1526    GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
1527    PBX_GTK2=1
1528    AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
1529 fi
1530 AC_SUBST(PBX_GTK2)
1531 AC_SUBST(GTK2_INCLUDE)
1532 AC_SUBST(GTK2_LIB)
1533
1534 if test "${USE_CURL}" != "no"; then
1535    AC_PATH_TOOL([CURL_CONFIG], [curl-config], No)
1536    if test ! x"${CURL_CONFIG}" = xNo; then
1537    # check for version
1538       if test $(printf "%d" 0x$(${CURL_CONFIG} --vernum)) -ge $(printf "%d" 0x070907); then
1539          CURL_INCLUDE=$(${CURL_CONFIG} --cflags)
1540          CURL_LIB=$(${CURL_CONFIG} --libs)
1541
1542          AC_MSG_CHECKING(for curl_version() in curl/curl.h)
1543          saved_cppflags="${CPPFLAGS}"
1544          CPPFLAGS="${CPPFLAGS} ${CURL_INCLUDE}"
1545          AC_COMPILE_IFELSE(
1546             [AC_LANG_PROGRAM(
1547                 [#include <curl/curl.h>],
1548                     [curl_version();])
1549             ],[
1550                 AC_MSG_RESULT(yes)
1551                 ac_cv_curl_h="yes"
1552             ],[
1553                 AC_MSG_RESULT(no)
1554                 ac_cv_curl_h="no"
1555             ]
1556          )
1557          CPPFLAGS="${saved_cppflags}"
1558          if test "${ac_cv_curl_h}" = "yes"; then
1559              PBX_CURL=1
1560              AC_DEFINE([HAVE_CURL], 1, [Define if your system has the curl libraries.])
1561          fi
1562       fi
1563    fi
1564 fi
1565
1566 AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
1567 AST_CHECK_MANDATORY
1568
1569 AC_OUTPUT
1570
1571 if test "x${silent}" != "xyes" ; then
1572 echo
1573 echo "               .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=..      "
1574 echo "            .\$7\$7..          .7\$\$7:.    "
1575 echo "          .\$\$:.                 ,\$7.7   "
1576 echo "        .\$7.     7\$\$\$\$           .\$\$77  "
1577 echo "     ..\$\$.       \$\$\$\$\$            .\$\$\$7 "
1578 echo "    ..7\$   .?.   \$\$\$\$\$   .?.       7\$\$\$."
1579 echo "   \$.\$.   .\$\$\$7. \$\$\$\$7 .7\$\$\$.      .\$\$\$."
1580 echo " .777.   .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7.      \$\$\$,"
1581 echo " \$\$\$~      .7\$\$\$\$\$\$\$\$\$\$\$\$\$7.       .\$\$\$."
1582 echo ".\$\$7          .7\$\$\$\$\$\$\$7:          ?\$\$\$."
1583 echo "\$\$\$          ?7\$\$\$\$\$\$\$\$\$\$I        .\$\$\$7 "
1584 echo "\$\$\$       .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$      :\$\$\$. "
1585 echo "\$\$\$       \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$    .\$\$\$.  "
1586 echo "\$\$\$        \$\$\$   7\$\$\$7  .\$\$\$    .\$\$\$.   "
1587 echo "\$\$\$\$             \$\$\$\$7         .\$\$\$.    "
1588 echo "7\$\$\$7            7\$\$\$\$        7\$\$\$      "
1589 echo " \$\$\$\$\$                        \$\$\$       "
1590 echo "  \$\$\$\$7.                       \$\$  (TM)     "
1591 echo "   \$\$\$\$\$\$\$.           .7\$\$\$\$\$\$  \$\$      "
1592 echo "     \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$      "
1593 echo "       \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$.                "
1594 echo
1595 fi
1596
1597 AC_MSG_NOTICE(Package configured for: )
1598 AC_MSG_NOTICE( OS type  : $host_os)
1599 AC_MSG_NOTICE( Host CPU : $host_cpu)
1600 AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :) 
1601 AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :) 
1602 if test "${cross_compiling}" = "yes"; then
1603    AC_MSG_NOTICE( Cross Compilation = YES)
1604 fi