configure.ac 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340
  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. AC_PREREQ(2.60)
  9. AC_INIT([asterisk], [trunk], [https://issues.asterisk.org])
  10. # cross-compile macros
  11. AC_CANONICAL_BUILD
  12. AC_CANONICAL_HOST
  13. # check existence of the package
  14. AC_CONFIG_SRCDIR([main/asterisk.c])
  15. AC_CONFIG_AUX_DIR(`pwd`)
  16. AC_COPYRIGHT("Asterisk")
  17. AC_REVISION($Revision$)
  18. # preserve any CFLAGS or LDFLAGS that may be set
  19. # NOTE: This must be done before calling any macros that end up
  20. # calling AC_PROG_CC or the like, since they will set a default
  21. # set of CFLAGS ("-g -O2") if the user did not supply any, and
  22. # we don't want those default flags to be carried over into the
  23. # rest of the build system since we have other means of controlling
  24. # debugging symbol generation and optimization.
  25. CONFIG_CFLAGS="${CFLAGS}"
  26. CONFIG_LDFLAGS="${LDFLAGS}"
  27. AC_SUBST(CONFIG_CFLAGS)
  28. AC_SUBST(CONFIG_LDFLAGS)
  29. # specify output header file
  30. AC_CONFIG_HEADER(include/asterisk/autoconfig.h)
  31. # Note: AC_PROG_CC *must* be specified before AC_USE_SYSTEM_EXTENSIONS or any
  32. # other macro that uses the C compiler, or the default order will be used.
  33. AC_PROG_CC([gcc cc])
  34. AC_USE_SYSTEM_EXTENSIONS dnl note- does not work on FreeBSD
  35. # System default paths
  36. AC_SUBST([astsbindir], ['${sbindir}'])dnl
  37. AC_SUBST([astetcdir], ['${sysconfdir}/asterisk'])dnl
  38. AC_SUBST([astheaderdir], ['${includedir}/asterisk'])dnl
  39. AC_SUBST([astlibdir], ['${libdir}/asterisk'])dnl
  40. AC_SUBST([astmandir], ['${mandir}'])dnl
  41. AC_SUBST([astvarlibdir], ['${localstatedir}/lib/asterisk'])dnl
  42. AC_SUBST([astdatadir], ['${astvarlibdir}'])dnl
  43. AC_SUBST([astdbdir], ['${astvarlibdir}'])dnl
  44. AC_SUBST([astkeydir], ['${astvarlibdir}'])dnl
  45. AC_SUBST([astspooldir], ['${localstatedir}/spool/asterisk'])dnl
  46. AC_SUBST([astlogdir], ['${localstatedir}/log/asterisk'])dnl
  47. AC_SUBST([astvarrundir], ['${localstatedir}/run/asterisk'])dnl
  48. case "${host_os}" in
  49. *bsd*)
  50. if test ${prefix} = 'NONE'; then
  51. astvarlibdir='${prefix}/share/asterisk'
  52. astdbdir='${localstatedir}/db/asterisk'
  53. fi
  54. ;;
  55. darwin*)
  56. if test ${prefix} = 'NONE'; then
  57. astvarrundir='/Library/Application Support/Asterisk/Run'
  58. fi
  59. ;;
  60. esac
  61. case "${host_os}" in
  62. freebsd*)
  63. ac_default_prefix=/usr/local
  64. CPPFLAGS=-I/usr/local/include
  65. LDFLAGS=-L/usr/local/lib
  66. ;;
  67. openbsd*)
  68. ac_default_prefix=/usr/local
  69. if test ${prefix} = '/usr/local' || test ${prefix} = 'NONE'; then
  70. if test ${sysconfdir} = '${prefix}/etc'; then
  71. astetcdir=/etc/asterisk
  72. fi
  73. if test ${mandir} = '${prefix}/man'; then
  74. astmandir=/usr/share/man
  75. fi
  76. fi
  77. CPPFLAGS=-I/usr/local/include
  78. LDFLAGS=-L/usr/local/lib
  79. ;;
  80. darwin*)
  81. ac_default_prefix=/usr/local
  82. if test ${prefix} = 'NONE'; then
  83. astlibdir='/Library/Application Support/Asterisk/Modules'
  84. astvarlibdir='/Library/Application Support/Asterisk'
  85. astlogdir=/Library/Logs/Asterisk
  86. astvarrundir='/Library/Application Support/Asterisk/Run'
  87. fi
  88. AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.])
  89. AC_DEFINE([_DARWIN_UNLIMITED_SELECT], 1, [Define to 1 if running on Darwin.])
  90. ;;
  91. solaris*)
  92. if test ${prefix} = 'NONE'; then
  93. astetcdir=/var/etc/asterisk
  94. astsbindir=/opt/asterisk/sbin
  95. astlibdir=/opt/asterisk/lib
  96. astheaderdir=/opt/asterisk/include
  97. astmandir=/opt/asterisk/man
  98. astvarlibdir=/var/opt/asterisk
  99. astspooldir=/var/spool/asterisk
  100. astlogdir=/var/log/asterisk
  101. astvarrundir=/var/run/asterisk
  102. fi
  103. ;;
  104. *)
  105. ac_default_prefix=/usr
  106. if test ${prefix} = '/usr' || test ${prefix} = 'NONE'; then
  107. if test ${sysconfdir} = '${prefix}/etc'; then
  108. sysconfdir=/etc
  109. fi
  110. if test ${mandir} = '${prefix}/man'; then
  111. mandir=/usr/share/man
  112. fi
  113. fi
  114. ;;
  115. esac
  116. if test ${prefix} = ${ac_default_prefix} || test ${prefix} = 'NONE'; then
  117. if test ${localstatedir} = '${prefix}/var'; then
  118. localstatedir=/var
  119. fi
  120. fi
  121. BUILD_PLATFORM=${build}
  122. BUILD_CPU=${build_cpu}
  123. BUILD_VENDOR=${build_vendor}
  124. BUILD_OS=${build_os}
  125. AC_SUBST(BUILD_PLATFORM)
  126. AC_SUBST(BUILD_CPU)
  127. AC_SUBST(BUILD_VENDOR)
  128. AC_SUBST(BUILD_OS)
  129. HOST_PLATFORM=${host}
  130. HOST_CPU=${host_cpu}
  131. HOST_VENDOR=${host_vendor}
  132. HOST_OS=${host_os}
  133. AC_SUBST(HOST_PLATFORM)
  134. AC_SUBST(HOST_CPU)
  135. AC_SUBST(HOST_VENDOR)
  136. AC_SUBST(HOST_OS)
  137. PBX_WINARCH=0
  138. case "${host_os}" in
  139. freebsd*)
  140. OSARCH=FreeBSD
  141. ;;
  142. netbsd*)
  143. OSARCH=NetBSD
  144. ;;
  145. openbsd*)
  146. OSARCH=OpenBSD
  147. ;;
  148. solaris*)
  149. OSARCH=SunOS
  150. ;;
  151. mingw32)
  152. OSARCH=mingw32
  153. PBX_WINARCH=1
  154. ;;
  155. cygwin)
  156. OSARCH=cygwin
  157. PBX_WINARCH=1
  158. ;;
  159. linux-gnueabi)
  160. OSARCH=linux-gnu
  161. ;;
  162. kfreebsd*-gnu)
  163. OSARCH=kfreebsd-gnu
  164. ;;
  165. *)
  166. OSARCH=${host_os}
  167. ;;
  168. esac
  169. AC_SUBST(OSARCH)
  170. AC_SUBST(PBX_WINARCH)
  171. # check for uname
  172. AC_PATH_TOOL([UNAME], [uname], No)
  173. if test ! x"${UNAME}" = xNo; then
  174. PBX_OSREV=$(${UNAME} -r)
  175. fi
  176. AC_SUBST(PBX_OSREV)
  177. AH_TOP(
  178. #ifndef ASTERISK_AUTOCONFIG_H
  179. #define ASTERISK_AUTOCONFIG_H
  180. #include "asterisk/buildopts.h"
  181. )
  182. AH_BOTTOM(
  183. #endif
  184. )
  185. # cross-compile checks
  186. if test "${cross_compiling}" = "yes";
  187. then
  188. AC_CHECK_TOOL(CC, gcc, :)
  189. AC_CHECK_TOOL(CXX, g++, :)
  190. AC_CHECK_TOOL(LD, ld, :)
  191. AC_CHECK_TOOL(RANLIB, ranlib, :)
  192. fi
  193. # Checks for programs.
  194. AC_PROG_CXX
  195. AC_PROG_CPP
  196. AC_PROG_CXXCPP
  197. # This macro is just copied into our local acinclude.m4 from libtool.m4 so that
  198. # the developers regenerating the configure script don't have to install libtool.
  199. AST_PROG_LD # note, does not work on FreeBSD
  200. AC_PROG_AWK
  201. AC_PROG_INSTALL
  202. AC_PROG_LN_S
  203. AC_PROG_RANLIB
  204. AST_CHECK_GNU_MAKE
  205. AC_PROG_EGREP
  206. AC_CHECK_TOOLS([STRIP], [strip gstrip], :)
  207. AC_CHECK_TOOLS([AR], [ar gar], :)
  208. AC_CHECK_TOOLS([SHA1SUM], [sha1sum], $ac_aux_dir/build_tools/sha1sum-sh)
  209. AC_CHECK_TOOLS([OPENSSL], [openssl], :)
  210. GNU_LD=0
  211. if test "x$with_gnu_ld" = "xyes" ; then
  212. GNU_LD=1
  213. fi
  214. AC_SUBST(GNU_LD)
  215. AC_PATH_PROG([BISON], [bison], :)
  216. AC_PATH_PROG([CMP], [cmp], :)
  217. AC_PATH_PROG([FLEX], [flex], :)
  218. AC_PATH_PROG([GREP], [grep], :)
  219. AC_PATH_PROG([FIND], [find], :)
  220. AC_PATH_PROG([COMPRESS], [compress], :)
  221. AC_PATH_PROG([BASENAME], [basename], :)
  222. AC_PATH_PROG([DIRNAME], [dirname], :)
  223. AC_PATH_PROG([SHELL], [sh], :)
  224. AC_PATH_PROG([LN], [ln], :)
  225. AC_PATH_PROG([DOT], [dot], :)
  226. AC_PATH_PROG([WGET], [wget], :)
  227. AC_PATH_PROG([CURL], [curl], :)
  228. AC_PATH_PROG([RUBBER], [rubber], :)
  229. AC_PATH_PROG([CATDVI], [catdvi], :)
  230. AC_PATH_PROG([KPATHSEA], [kpsewhich], :)
  231. AC_PATH_PROG([XMLLINT], [xmllint], :)
  232. AC_PATH_PROG([XMLSTARLET], [xmlstarlet], :)
  233. AC_PATH_PROG([GIT], [git], :)
  234. if test "${WGET}" != ":" ; then
  235. DOWNLOAD=${WGET}
  236. else if test "${CURL}" != ":" ; then
  237. DOWNLOAD="${CURL} -O --progress-bar -w \"%{url_effective}\n\""
  238. else
  239. AC_PATH_PROG([FETCH], [fetch], [:])
  240. DOWNLOAD=${FETCH}
  241. fi
  242. fi
  243. AC_SUBST(DOWNLOAD)
  244. AC_CACHE_CHECK([for bison that supports parse-param], [ac_cv_path_BISON2], [
  245. if test "x$BISON" != "x:" ; then
  246. # Create a temporary directory $tmp in $TMPDIR (default /tmp).
  247. # Use mktemp if possible; otherwise fall back on mkdir,
  248. # with $RANDOM to make collisions less likely.
  249. : ${TMPDIR=/tmp}
  250. {
  251. tmp=`
  252. (umask 077 && mktemp -d "$TMPDIR/fooXXXXXX") 2>/dev/null
  253. ` &&
  254. test -n "$tmp" && test -d "$tmp"
  255. } || {
  256. tmp=$TMPDIR/foo$$-$RANDOM
  257. (umask 077 && mkdir "$tmp")
  258. } || exit $?
  259. cat >$tmp/test.y <<__EOL__
  260. %parse-param {struct parse_io *parseio}
  261. %%
  262. file : { \$\$ = parseio->pval = 1; }
  263. ;
  264. %%
  265. __EOL__
  266. ${BISON} -o ${tmp}/test.tab.c ${tmp}/test.y >/dev/null 2>&1
  267. if test -e "${tmp}/test.tab.c"; then
  268. ac_cv_path_BISON2=${BISON}
  269. fi
  270. rm -rf ${tmp}
  271. fi
  272. ])
  273. if test "x${ac_cv_path_BISON2}" = "x" ; then
  274. BISON=:
  275. PBX_BISON=0
  276. else
  277. PBX_BISON=1
  278. fi
  279. AC_SUBST(PBX_BISON)
  280. if test "x${FLEX}" = "x:" ; then
  281. PBX_FLEX=0
  282. else
  283. PBX_FLEX=1
  284. fi
  285. AC_SUBST(PBX_FLEX)
  286. AC_CHECK_TOOL([SOXMIX], [soxmix], [:])
  287. if test "${SOXMIX}" != ":" ; then
  288. AC_DEFINE([HAVE_SOXMIX], 1, [Define to 1 if your system has soxmix application.])
  289. fi
  290. AC_CHECK_PROGS([MD5], [md5 md5sum gmd5sum digest])
  291. if test "${MD5}" = "digest" ; then
  292. MD5="${MD5} -a md5"
  293. fi
  294. ACX_PTHREAD
  295. AC_LANG(C)
  296. AC_ARG_ENABLE([dev-mode],
  297. [AS_HELP_STRING([--enable-dev-mode],
  298. [Turn on developer mode])],
  299. [case "${enableval}" in
  300. y|ye|yes) AST_DEVMODE=yes ;;
  301. n|no) AST_DEVMODE=no ;;
  302. noisy)
  303. AST_DEVMODE=yes
  304. NOISY_BUILD=yes
  305. ;;
  306. *) AC_MSG_ERROR(bad value ${enableval} for --enable-dev-mode) ;;
  307. esac])
  308. AC_SUBST(NOISY_BUILD)
  309. AC_SUBST(AST_DEVMODE)
  310. AST_CODE_COVERAGE=no
  311. AC_ARG_ENABLE([coverage],
  312. [AS_HELP_STRING([--enable-coverage],
  313. [Turn on code coverage tracking (for gcov)])],
  314. [case "${enableval}" in
  315. y|ye|yes) AST_CODE_COVERAGE=yes ;;
  316. n|no) AST_CODE_COVERAGE=no ;;
  317. *) AC_MSG_ERROR(bad value ${enableval} for --enable-coverage) ;;
  318. esac])
  319. AC_SUBST(AST_CODE_COVERAGE)
  320. # AST_EXT_LIB_SETUP is used to tell configure to handle variables for
  321. # various packages.
  322. # $1 is the prefix for the variables in makeopts and autoconfig.h
  323. # $2 is the short comment, $4 is the long comment
  324. # $3 is the name used in --with- or --without- flags for configure.
  325. #
  326. # Package option names should be in alphabetical order
  327. # by the --with option name (the third field),
  328. # to make things easier for the users.
  329. AST_EXT_LIB_SETUP([ALSA], [Advanced Linux Sound Architecture], [asound])
  330. AST_EXT_LIB_SETUP([BFD], [Debug symbol decoding], [bfd])
  331. # BKTR is used for backtrace support on platforms that do not
  332. # have it natively.
  333. AST_EXT_LIB_SETUP([BKTR], [Stack Backtrace], [execinfo])
  334. AST_EXT_LIB_SETUP([BLUETOOTH], [Bluetooth], [bluetooth])
  335. AST_EXT_LIB_SETUP([CAP], [POSIX 1.e capabilities], [cap])
  336. AST_EXT_LIB_SETUP([CURSES], [curses], [curses])
  337. AST_EXT_LIB_SETUP([CRYPTO], [OpenSSL Cryptography], [crypto])
  338. AST_EXT_LIB_SETUP([DAHDI], [DAHDI], [dahdi])
  339. AST_EXT_LIB_SETUP([FFMPEG], [Ffmpeg and avcodec], [avcodec])
  340. AST_EXT_LIB_SETUP([GSM], [External GSM], [gsm], [, use 'internal' GSM otherwise])
  341. AST_EXT_LIB_SETUP([GTK2], [gtk2], [gtk2])
  342. AST_EXT_LIB_SETUP([GMIME], [GMime], [gmime])
  343. AST_EXT_LIB_SETUP([OPENH323], [OpenH323], [h323])
  344. AST_EXT_LIB_SETUP([HOARD], [Hoard Memory Allocator], [hoard])
  345. AST_EXT_LIB_SETUP([ICAL], [iCal], [ical])
  346. AST_EXT_LIB_SETUP([ICONV], [Iconv], [iconv])
  347. AST_EXT_LIB_SETUP([IKSEMEL], [Iksemel Jabber], [iksemel])
  348. AST_EXT_LIB_SETUP([IMAP_TK], [UW IMAP Toolkit], [imap])
  349. AST_EXT_LIB_SETUP([INOTIFY], [inotify support], [inotify])
  350. AST_EXT_LIB_SETUP([IODBC], [iODBC], [iodbc])
  351. AST_EXT_LIB_SETUP([ISDNNET], [ISDN4Linux], [isdnnet])
  352. AST_EXT_LIB_SETUP([JACK], [Jack Audio Connection Kit], [jack])
  353. AST_EXT_LIB_SETUP([KQUEUE], [kqueue support], [kqueue])
  354. AST_EXT_LIB_SETUP([LDAP], [OpenLDAP], [ldap])
  355. AST_LIBCURL_CHECK_CONFIG([], [7.10.1])
  356. AST_EXT_LIB_SETUP([LIBXML2], [LibXML2], [libxml2])
  357. AST_EXT_LIB_SETUP([LTDL], [libtool], [ltdl])
  358. AST_EXT_LIB_SETUP([LUA], [Lua], [lua])
  359. AST_EXT_LIB_SETUP([MISDN], [mISDN user], [misdn])
  360. AST_EXT_LIB_SETUP([MYSQLCLIENT], [MySQL client], [mysqlclient])
  361. AST_EXT_LIB_SETUP([NBS], [Network Broadcast Sound], [nbs])
  362. AST_EXT_LIB_SETUP([NCURSES], [ncurses], [ncurses])
  363. AST_EXT_LIB_SETUP([NEON], [neon], [neon])
  364. AST_EXT_LIB_SETUP([NEON29], [neon29], [neon29])
  365. AST_EXT_LIB_SETUP([NETSNMP], [Net-SNMP], [netsnmp])
  366. AST_EXT_LIB_SETUP([NEWT], [newt], [newt])
  367. AST_EXT_LIB_SETUP([OGG], [OGG], [ogg])
  368. AST_EXT_LIB_SETUP([OPENAIS], [OpenAIS], [openais])
  369. AST_EXT_LIB_SETUP([OPENR2], [MFR2], [openr2])
  370. AST_EXT_LIB_SETUP([OSPTK], [OSP Toolkit], [osptk])
  371. AST_EXT_LIB_SETUP([OSS], [Open Sound System], [oss])
  372. AST_EXT_LIB_SETUP([PGSQL], [PostgreSQL], [postgres])
  373. AST_EXT_LIB_SETUP([POPT], [popt], [popt])
  374. AST_EXT_LIB_SETUP([PORTAUDIO], [PortAudio], [portaudio])
  375. AST_EXT_LIB_SETUP([PRI], [ISDN PRI], [pri])
  376. AST_EXT_LIB_SETUP_OPTIONAL([PRI_L2_PERSISTENCE], [ISDN Layer 2 persistence option], [PRI], [pri])
  377. AST_EXT_LIB_SETUP_OPTIONAL([PRI_DATETIME_SEND], [ISDN PRI Date/time ie send policy], [PRI], [pri])
  378. AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI_V2], [ISDN PRI Message Waiting Indication (Fixed)], [PRI], [pri])
  379. AST_EXT_LIB_SETUP_OPTIONAL([PRI_DISPLAY_TEXT], [ISDN PRI user display text IE contents during call], [PRI], [pri])
  380. AST_EXT_LIB_SETUP_OPTIONAL([PRI_MWI], [ISDN PRI Message Waiting Indication], [PRI], [pri])
  381. AST_EXT_LIB_SETUP_OPTIONAL([PRI_MCID], [ISDN PRI Malicious Call ID], [PRI], [pri])
  382. AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_WAITING], [ISDN PRI call waiting supplementary service], [PRI], [pri])
  383. AST_EXT_LIB_SETUP_OPTIONAL([PRI_AOC_EVENTS], [ISDN PRI advice of charge supplementary service events], [PRI], [pri])
  384. AST_EXT_LIB_SETUP_OPTIONAL([PRI_TRANSFER], [ISDN PRI call transfer supplementary service], [PRI], [pri])
  385. AST_EXT_LIB_SETUP_OPTIONAL([PRI_CCSS], [ISDN PRI call completion supplementary service], [PRI], [pri])
  386. AST_EXT_LIB_SETUP_OPTIONAL([PRI_HANGUP_FIX], [ISDN PRI hangup fix], [PRI], [pri])
  387. AST_EXT_LIB_SETUP_OPTIONAL([PRI_SUBADDR], [ISDN PRI subaddressing], [PRI], [pri])
  388. AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_HOLD], [ISDN PRI call hold], [PRI], [pri])
  389. AST_EXT_LIB_SETUP_OPTIONAL([PRI_CALL_REROUTING], [ISDN PRI call rerouting and call deflection], [PRI], [pri])
  390. AST_EXT_LIB_SETUP_OPTIONAL([PRI_SETUP_KEYPAD], [ISDN PRI keypad facility in SETUP], [PRI], [pri])
  391. # ------------------------------------v
  392. # TODO: The code can be changed to always include these features now.
  393. # These features will always be present if pri_connected_line_update is available.
  394. AST_EXT_LIB_SETUP_OPTIONAL([PRI_INBANDDISCONNECT], [ISDN PRI set_inbanddisconnect], [PRI], [pri])
  395. AST_EXT_LIB_SETUP_OPTIONAL([PRI_PROG_W_CAUSE], [ISDN progress with cause], [PRI], [pri])
  396. AST_EXT_LIB_SETUP_OPTIONAL([PRI_SERVICE_MESSAGES], [ISDN service messages], [PRI], [pri])
  397. AST_EXT_LIB_SETUP_OPTIONAL([PRI_REVERSE_CHARGE], [ISDN reverse charge], [PRI], [pri])
  398. # ------------------------------------^
  399. AST_EXT_LIB_SETUP([PWLIB], [PWlib], [pwlib])
  400. AST_EXT_LIB_SETUP([RADIUS], [Radius Client], [radius])
  401. AST_EXT_LIB_SETUP([RESAMPLE], [LIBRESAMPLE], [resample])
  402. AST_EXT_LIB_SETUP([SDL], [Sdl], [sdl])
  403. AST_EXT_LIB_SETUP([SDL_IMAGE], [Sdl Image], [SDL_image])
  404. AST_OPTION_ONLY([sounds-cache], [SOUNDS_CACHE_DIR], [cached sound tarfiles], [])
  405. AST_EXT_LIB_SETUP([SPANDSP], [SPANDSP], [spandsp])
  406. AST_EXT_LIB_SETUP([SS7], [ISDN SS7], [ss7])
  407. AST_EXT_LIB_SETUP([SPEEX], [Speex], [speex])
  408. AST_EXT_LIB_SETUP([SPEEX_PREPROCESS], [Speex preprocess routines], [speex])
  409. AST_EXT_LIB_SETUP([SPEEXDSP], [SpeexDSP], [speexdsp])
  410. AST_EXT_LIB_SETUP_DEPENDENT([SPEEX_PREPROCESS], [speex_preprocess_ctl], [], [speex])
  411. AST_EXT_LIB_SETUP([SQLITE], [SQLite], [sqlite])
  412. AST_EXT_LIB_SETUP([SQLITE3], [SQLite], [sqlite3])
  413. AST_EXT_LIB_SETUP([SRTP], [Secure RTP], [srtp])
  414. AST_EXT_LIB_SETUP([OPENSSL], [OpenSSL Secure Sockets Layer], [ssl])
  415. AST_EXT_LIB_SETUP([SUPPSERV], [mISDN Supplemental Services], [suppserv])
  416. AST_EXT_LIB_SETUP([FREETDS], [FreeTDS], [tds])
  417. AST_EXT_LIB_SETUP([TERMCAP], [Termcap], [termcap])
  418. AST_EXT_LIB_SETUP([TIMERFD], [timerfd], [timerfd])
  419. AST_EXT_LIB_SETUP([TINFO], [Term Info], [tinfo])
  420. AST_EXT_LIB_SETUP([TONEZONE], [tonezone], [tonezone])
  421. AST_EXT_LIB_SETUP([UNIXODBC], [unixODBC], [unixodbc])
  422. AST_EXT_LIB_SETUP([VORBIS], [Vorbis], [vorbis])
  423. AST_EXT_LIB_SETUP([VPB], [Voicetronix API], [vpb])
  424. AST_EXT_LIB_SETUP([X11], [X11], [x11])
  425. AST_EXT_LIB_SETUP([ZLIB], [zlib compression], [z])
  426. # check for basic system features and functionality before
  427. # checking for package libraries
  428. AC_FUNC_ALLOCA
  429. AC_HEADER_DIRENT
  430. AC_HEADER_STDC
  431. AC_HEADER_SYS_WAIT
  432. AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h libintl.h limits.h locale.h malloc.h netdb.h netinet/in.h stddef.h stdint.h stdlib.h string.h strings.h sys/event.h sys/file.h sys/ioctl.h sys/param.h sys/socket.h sys/time.h syslog.h termios.h unistd.h utime.h arpa/nameser.h sys/io.h])
  433. # Any one of these 4 packages support a mandatory requirement, so we want to check on them as early as possible.
  434. AST_EXT_LIB_CHECK([TERMCAP], [termcap], [tgetent], [])
  435. AST_EXT_LIB_CHECK([TINFO], [tinfo], [tgetent], [])
  436. AST_EXT_LIB_CHECK([CURSES], [curses], [initscr], [curses.h])
  437. AST_EXT_LIB_CHECK([NCURSES], [ncurses], [initscr], [curses.h])
  438. EDITLINE_LIB=""
  439. if test "x$TERMCAP_LIB" != "x" ; then
  440. EDITLINE_LIB="$TERMCAP_LIB"
  441. elif test "x$TINFO_LIB" != "x" ; then
  442. EDITLINE_LIB="$TINFO_LIB"
  443. elif test "x$CURSES_LIB" != "x" ; then
  444. EDITLINE_LIB="$CURSES_LIB"
  445. elif test "x$NCURSES_LIB" != "x" ; then
  446. EDITLINE_LIB="$NCURSES_LIB"
  447. else
  448. AC_MSG_ERROR([*** termcap support not found (on modern systems, this typically means the ncurses development package is missing)])
  449. fi
  450. AC_SUBST(EDITLINE_LIB)
  451. # Another mandatory item (unless it's explicitly disabled)
  452. AC_ARG_ENABLE([xmldoc],
  453. [AS_HELP_STRING([--disable-xmldoc],
  454. [Explicity disable XML documentation])],
  455. [case "${enableval}" in
  456. y|ye|yes) disable_xmldoc=no ;;
  457. n|no) disable_xmldoc=yes ;;
  458. *) AC_MSG_ERROR(bad value ${enableval} for --disable-xmldoc) ;;
  459. esac], [disable_xmldoc=no])
  460. if test "${disable_xmldoc}" != "yes"; then
  461. AST_EXT_TOOL_CHECK([LIBXML2], [xml2-config], , ,
  462. [#include <libxml/tree.h>
  463. #include <libxml/parser.h>],
  464. [LIBXML_TEST_VERSION])
  465. if test "${PBX_LIBXML2}" != 1; then
  466. AC_MSG_NOTICE(*** XML documentation will not be available because the 'libxml2' development package is missing.)
  467. AC_MSG_NOTICE(*** Please run the 'configure' script with the '--disable-xmldoc' parameter option)
  468. AC_MSG_NOTICE(*** or install the 'libxml2' development package.)
  469. exit 1
  470. fi
  471. fi
  472. # some embedded systems omit internationalization (locale) support
  473. AC_CHECK_HEADERS([xlocale.h])
  474. AC_CHECK_HEADERS([winsock.h winsock2.h])
  475. AC_CHECK_HEADER([sys/poll.h],
  476. [],
  477. AC_DEFINE([AST_POLL_COMPAT], 1, [Define to 1 if internal poll should be used.]))
  478. AC_SYS_LARGEFILE
  479. # Checks for typedefs, structures, and compiler characteristics.
  480. AC_HEADER_STDBOOL
  481. AC_C_CONST
  482. AC_TYPE_UID_T
  483. AC_C_INLINE
  484. AC_TYPE_LONG_DOUBLE_WIDER
  485. AC_TYPE_MODE_T
  486. AC_TYPE_OFF_T
  487. AC_TYPE_PID_T
  488. AC_TYPE_SIZE_T
  489. AC_CHECK_MEMBERS([struct stat.st_blksize])
  490. AC_CHECK_MEMBERS([struct ucred.uid, struct ucred.cr_uid, struct sockpeercred.uid], [], [], [#include <sys/types.h>
  491. #include <sys/socket.h> ])
  492. AC_CHECK_MEMBERS([struct ifreq.ifr_ifru.ifru_hwaddr], [], [], [#include <net/if.h>])
  493. AC_HEADER_TIME
  494. AC_STRUCT_TM
  495. AC_C_VOLATILE
  496. AC_CHECK_TYPES([ptrdiff_t])
  497. # Checks for library functions.
  498. AC_FUNC_CHOWN
  499. AC_FUNC_CLOSEDIR_VOID
  500. AC_FUNC_ERROR_AT_LINE
  501. AST_FUNC_FORK
  502. AC_FUNC_FSEEKO
  503. AC_PROG_GCC_TRADITIONAL
  504. # XXX: these are commented out until we determine whether it matters if our malloc()
  505. # acts exactly like glibc's or not
  506. # AC_FUNC_MALLOC
  507. # AC_FUNC_REALLOC
  508. AC_FUNC_MEMCMP
  509. AC_FUNC_MMAP
  510. AC_FUNC_SELECT_ARGTYPES
  511. AC_FUNC_SETVBUF_REVERSED
  512. AC_TYPE_SIGNAL
  513. AC_FUNC_STAT
  514. AC_FUNC_STRCOLL
  515. AC_FUNC_STRFTIME
  516. AC_FUNC_STRNLEN
  517. AC_FUNC_STRTOD
  518. AC_FUNC_UTIME_NULL
  519. AC_FUNC_VPRINTF
  520. AC_CHECK_FUNCS([asprintf atexit closefrom dup2 eaccess endpwent euidaccess ffsll ftruncate getcwd gethostbyname gethostname getloadavg gettimeofday glob htonll ioperm inet_ntoa isascii memchr memmove memset mkdir mkdtemp munmap ntohll newlocale ppoll putenv re_comp regcomp select setenv socket strcasecmp strcasestr strchr strcspn strdup strerror strlcat strlcpy strncasecmp strndup strnlen strrchr strsep strspn strstr strtod strtol strtold strtoq unsetenv utime vasprintf getpeereid sysctl swapctl])
  521. # NOTE: we use AC_CHECK_LIB to get -lm into the arguments for later checks,
  522. # so that AC_CHECK_FUNCS can detect functions in that library.
  523. AC_CHECK_LIB([m], [sqrt])
  524. # BSD might not have exp2, and/or log2
  525. AC_CHECK_FUNCS([exp2 log2 exp10 log10 sin cos tan asin acos atan atan2 pow rint exp log remainder fmod round trunc floor ceil])
  526. # Certain architectures don't really have long double, even though
  527. # AC_CHECK_FUNCS would otherwise find the following functions.
  528. if test "x${ac_cv_type_long_double_wider}" = "xyes" ; then
  529. AC_CHECK_FUNCS([exp2l log2l exp10l log10l sinl cosl tanl asinl acosl atanl atan2l powl sqrtl rintl expl logl remainderl fmodl roundl truncl floorl ceill])
  530. fi
  531. AC_MSG_CHECKING(for LLONG_MAX in limits.h)
  532. AC_LINK_IFELSE(
  533. [AC_LANG_PROGRAM([#include <limits.h>],
  534. [long long foo = LLONG_MAX])],
  535. AC_MSG_RESULT(yes)
  536. AC_DEFINE([HAVE_LLONG_MAX], 1, [Define to 1 if limits.h includes a LLONG_MAX definition.]),
  537. AC_MSG_RESULT(no)
  538. )
  539. AC_MSG_CHECKING(for timersub in time.h)
  540. AC_LINK_IFELSE(
  541. [AC_LANG_PROGRAM([#include <sys/time.h>],
  542. [struct timeval *a; timersub(a, a, a);])],
  543. AC_MSG_RESULT(yes)
  544. AC_DEFINE([HAVE_TIMERSUB], 1, [Define to 1 if your system defines timersub.]),
  545. AC_MSG_RESULT(no)
  546. )
  547. AC_MSG_CHECKING(for a version of GNU ld that supports the --dynamic-list flag)
  548. old_LDFLAGS=${LDFLAGS}
  549. cat >conftest.dynamics <<_ACEOF
  550. {
  551. *ast_*;
  552. };
  553. _ACEOF
  554. LDFLAGS="${LDFLAGS} -Wl,--dynamic-list,conftest.dynamics"
  555. PBX_DYNAMIC_LIST=0
  556. AC_LINK_IFELSE(
  557. [AC_LANG_PROGRAM([], [])],
  558. PBX_DYNAMIC_LIST=1
  559. AC_MSG_RESULT(yes),
  560. AC_MSG_RESULT(no)
  561. )
  562. AC_SUBST(PBX_DYNAMIC_LIST)
  563. LDFLAGS=${old_LDFLAGS}
  564. rm -f conftest.dynamics
  565. AC_CHECK_HEADER([sys/poll.h],
  566. [HAS_POLL=1]
  567. AC_DEFINE([HAVE_SYS_POLL_H], 1, [Define to 1 if your system has working sys/poll.h]),
  568. )
  569. AC_ARG_ENABLE([internal-poll],
  570. [AS_HELP_STRING([--enable-internal-poll],
  571. [Use Asterisk's poll implementation])],
  572. [case "${enableval}" in
  573. y|ye|yes) HAS_POLL="";;
  574. n|no) HAS_POLL="${HAS_POLL}" ;;
  575. *) AC_MSG_ERROR(bad value ${enableval} for --enable-internal-poll) ;;
  576. esac])
  577. AC_SUBST(HAS_POLL)
  578. # https support (in main/http.c) uses funopen on BSD systems,
  579. # fopencookie on linux
  580. AC_CHECK_FUNCS([funopen fopencookie])
  581. AC_CHECK_FUNCS([inet_aton])
  582. # check if we have IP_PKTINFO constant defined
  583. AC_MSG_CHECKING(for IP_PKTINFO)
  584. AC_LINK_IFELSE(
  585. [AC_LANG_PROGRAM([#include <netinet/in.h>],
  586. [int pi = IP_PKTINFO;])],
  587. AC_MSG_RESULT(yes)
  588. AC_DEFINE([HAVE_PKTINFO], 1, [Define to 1 if your system defines IP_PKTINFO.]),
  589. AC_MSG_RESULT(no)
  590. )
  591. # some systems already have gethostbyname_r so we don't need to build ours in main/utils.c
  592. AC_SEARCH_LIBS(gethostbyname_r, [socket nsl])
  593. AC_MSG_CHECKING(for gethostbyname_r with 6 arguments)
  594. AC_LINK_IFELSE(
  595. [AC_LANG_PROGRAM([#include <stdlib.h>
  596. #include <netdb.h>],
  597. [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (struct hostent **)NULL, (int *)NULL);])],
  598. AC_MSG_RESULT(yes)
  599. AC_DEFINE([HAVE_GETHOSTBYNAME_R_6], 1, [Define to 1 if your system has gethostbyname_r with 6 arguments.]),
  600. AC_MSG_RESULT(no)
  601. )
  602. AC_MSG_CHECKING(for gethostbyname_r with 5 arguments)
  603. AC_LINK_IFELSE(
  604. [AC_LANG_PROGRAM([#include <stdlib.h>
  605. #include <netdb.h>],
  606. [struct hostent *he = gethostbyname_r((const char *)NULL, (struct hostent *)NULL, (char *)NULL, (int)0, (int *)NULL);])],
  607. AC_MSG_RESULT(yes)
  608. AC_DEFINE([HAVE_GETHOSTBYNAME_R_5], 1, [Define to 1 if your system has gethostbyname_r with 5 arguments.]),
  609. AC_MSG_RESULT(no)
  610. )
  611. AC_CHECK_HEADER([byteswap.h], [AC_DEFINE_UNQUOTED([HAVE_BYTESWAP_H], 1, [Define to 1 if byteswap.h macros are available.])])
  612. AC_MSG_CHECKING(for __swap16 variant of <sys/endian.h> byteswapping macros)
  613. AC_LINK_IFELSE(
  614. [AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = __swap16(a);])],
  615. AC_MSG_RESULT(yes)
  616. AC_DEFINE([HAVE_SYS_ENDIAN_SWAP16], 1, [Define to 1 if your sys/endian.h header file provides the __swap16 macro.]),
  617. AC_MSG_RESULT(no)
  618. )
  619. AC_MSG_CHECKING(for bswap16 variant of <sys/endian.h> byteswapping macros)
  620. AC_LINK_IFELSE(
  621. [AC_LANG_PROGRAM([#include <sys/endian.h>], [int a = 1; int b = bswap16(a);])],
  622. AC_MSG_RESULT(yes)
  623. AC_DEFINE([HAVE_SYS_ENDIAN_BSWAP16], 1, [Define to 1 if your sys/endian.h header file provides the bswap16 macro.]),
  624. AC_MSG_RESULT(no)
  625. )
  626. if test "${cross_compiling}" = "no";
  627. then
  628. AC_CHECK_FILE(/dev/urandom, AC_DEFINE([HAVE_DEV_URANDOM], 1, [Define to 1 if your system has /dev/urandom.]))
  629. fi
  630. AC_MSG_CHECKING(for locale_t in locale.h)
  631. AC_LINK_IFELSE(
  632. [AC_LANG_PROGRAM([#include <locale.h>], [locale_t lt = NULL])],
  633. AC_MSG_RESULT(yes)
  634. AC_DEFINE([HAVE_LOCALE_T_IN_LOCALE_H], 1, [Define to 1 if your system defines the locale_t type in locale.h]),
  635. AC_MSG_RESULT(no)
  636. AC_MSG_CHECKING(for locale_t in xlocale.h)
  637. AC_LINK_IFELSE(
  638. [AC_LANG_PROGRAM([#include <xlocale.h>], [locale_t lt = NULL])],
  639. AC_MSG_RESULT(yes)
  640. AC_DEFINE([HAVE_LOCALE_T_IN_XLOCALE_H], 1, [Define to 1 if your system defines the locale_t type in xlocale.h]),
  641. AC_MSG_RESULT(no)
  642. )
  643. )
  644. AC_MSG_CHECKING(for O_EVTONLY in fcntl.h)
  645. AC_LINK_IFELSE(
  646. [AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_EVTONLY;])],
  647. AC_MSG_RESULT(yes)
  648. AC_DEFINE([HAVE_O_EVTONLY], 1, [Define to 1 if your system defines the file flag O_EVTONLY in fcntl.h]),
  649. AC_MSG_RESULT(no)
  650. )
  651. AC_MSG_CHECKING(for O_SYMLINK in fcntl.h)
  652. AC_LINK_IFELSE(
  653. [AC_LANG_PROGRAM([#include <fcntl.h>], [int a = O_SYMLINK;])],
  654. AC_MSG_RESULT(yes)
  655. AC_DEFINE([HAVE_O_SYMLINK], 1, [Define to 1 if your system defines the file flag O_SYMLINK in fcntl.h]),
  656. AC_MSG_RESULT(no)
  657. )
  658. AST_C_DEFINE_CHECK([PTHREAD_RWLOCK_INITIALIZER], [PTHREAD_RWLOCK_INITIALIZER], [pthread.h])
  659. AC_MSG_CHECKING(for PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h)
  660. AC_LINK_IFELSE(
  661. [AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_RWLOCK_PREFER_WRITER_NP;])],
  662. AC_MSG_RESULT(yes)
  663. AC_DEFINE([HAVE_PTHREAD_RWLOCK_PREFER_WRITER_NP], 1, [Define to 1 if your system defines PTHREAD_RWLOCK_PREFER_WRITER_NP in pthread.h]),
  664. AC_MSG_RESULT(no)
  665. )
  666. AC_MSG_CHECKING(for PTHREAD_MUTEX_RECURSIVE_NP in pthread.h)
  667. AC_LINK_IFELSE(
  668. [AC_LANG_PROGRAM([#include <pthread.h>], [int a = PTHREAD_MUTEX_RECURSIVE_NP;])],
  669. AC_MSG_RESULT(yes)
  670. AC_DEFINE([HAVE_PTHREAD_MUTEX_RECURSIVE_NP], 1, [Define to 1 if your system defines PTHREAD_MUTEX_RECURSIVE_NP in pthread.h]),
  671. AC_MSG_RESULT(no)
  672. )
  673. AC_MSG_CHECKING(for pthread_rwlock_timedwrlock() in pthread.h)
  674. save_LIBS="$LIBS"
  675. save_CFLAGS="$CFLAGS"
  676. LIBS="$PTHREAD_LIBS $LIBS"
  677. CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
  678. AC_LINK_IFELSE(
  679. [AC_LANG_PROGRAM(
  680. [#include <pthread.h>
  681. #include <time.h>],
  682. [pthread_rwlock_t foo; struct timespec bar; pthread_rwlock_timedwrlock(&foo, &bar)])
  683. ],[
  684. AC_MSG_RESULT(yes)
  685. ac_cv_pthread_rwlock_timedwrlock="yes"
  686. ],[
  687. AC_MSG_RESULT(no)
  688. ac_cv_pthread_rwlock_timedwrlock="no"
  689. ]
  690. )
  691. LIBS="$save_LIBS"
  692. CFLAGS="$save_CFLAGS"
  693. if test "${ac_cv_pthread_rwlock_timedwrlock}" = "yes"; then
  694. AC_DEFINE([HAVE_PTHREAD_RWLOCK_TIMEDWRLOCK], 1, [Define if your system has pthread_rwlock_timedwrlock()])
  695. fi
  696. AC_MSG_CHECKING(if PTHREAD_ONCE_INIT needs braces)
  697. saved_CFLAGS="${CFLAGS}"
  698. CFLAGS="${CFLAGS} -Werror -Wmissing-braces"
  699. AC_COMPILE_IFELSE(
  700. [AC_LANG_PROGRAM(
  701. [#include <pthread.h>
  702. void empty(){}],
  703. [pthread_once_t once = PTHREAD_ONCE_INIT; pthread_once(&once, empty);])
  704. ],[
  705. AC_MSG_RESULT(no)
  706. ac_cv_pthread_once_needsbraces="no"
  707. ],[
  708. AC_MSG_RESULT(yes)
  709. ac_cv_pthread_once_needsbraces="yes"
  710. ]
  711. )
  712. CFLAGS="${saved_CFLAGS}"
  713. if test "${ac_cv_pthread_once_needsbraces}" = "yes"; then
  714. AC_DEFINE([PTHREAD_ONCE_INIT_NEEDS_BRACES], 1, [Define if your system needs braces around PTHREAD_ONCE_INIT])
  715. fi
  716. AST_C_DEFINE_CHECK([PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [PTHREAD_RECURSIVE_MUTEX_INITIALIZER_NP], [pthread.h])
  717. # Can we compare a mutex to its initial value?
  718. # Generally yes on OpenBSD/FreeBSD and no on Mac OS X.
  719. AC_MSG_CHECKING(whether we can compare a mutex to its initial value)
  720. AC_LINK_IFELSE(
  721. [AC_LANG_PROGRAM([#include <pthread.h>], [pthread_mutex_t lock;
  722. if ((lock) != ((pthread_mutex_t) PTHREAD_MUTEX_INITIALIZER)) {
  723. return 0;
  724. }
  725. return 0])],
  726. AC_MSG_RESULT(yes)
  727. AC_DEFINE([CAN_COMPARE_MUTEX_TO_INIT_VALUE], 1, [Define to 1 if your system's implementation of mutexes supports comparison of a mutex to its initializer.]),
  728. AC_MSG_RESULT(no)
  729. )
  730. #if test "${cross_compiling}" = "no";
  731. #then
  732. #AC_MSG_CHECKING(for working epoll support)
  733. #AC_LINK_IFELSE(
  734. #AC_LANG_PROGRAM([#include <sys/epoll.h>], [int res = epoll_create(10);
  735. # if (res < 0)
  736. # return 1;
  737. # close (res);
  738. # return 0;]),
  739. #AC_MSG_RESULT(yes)
  740. #AC_DEFINE([HAVE_EPOLL], 1, [Define to 1 if your system has working epoll support.]),
  741. #AC_MSG_RESULT(no)
  742. #)
  743. #fi
  744. # for FreeBSD thr_self
  745. AC_CHECK_HEADERS([sys/thr.h])
  746. AC_MSG_CHECKING(for compiler atomic operations)
  747. AC_LINK_IFELSE(
  748. [AC_LANG_PROGRAM([], [int foo1; int foo2 = __sync_fetch_and_add(&foo1, 1);])],
  749. AC_MSG_RESULT(yes)
  750. AC_DEFINE([HAVE_GCC_ATOMICS], 1, [Define to 1 if your GCC C compiler provides atomic operations.]),
  751. AC_MSG_RESULT(no)
  752. )
  753. # glibc, AFAIK, is the only C library that makes printing a NULL to a string safe.
  754. AC_MSG_CHECKING([if your system printf is NULL-safe.])
  755. AC_RUN_IFELSE(
  756. [AC_LANG_PROGRAM([#include <stdio.h>],
  757. [printf("%s", NULL)])],
  758. AC_DEFINE([HAVE_NULLSAFE_PRINTF], 1, [Define to 1 if your C library can safely print NULL to string formats.])
  759. AC_MSG_RESULT(yes),
  760. AC_MSG_RESULT(no),
  761. # It's unlikely an embedded system will have this.
  762. AC_MSG_RESULT(unknown)
  763. )
  764. AC_MSG_CHECKING(if we can increase the maximum select-able file descriptor)
  765. AC_RUN_IFELSE(
  766. [AC_LANG_PROGRAM([
  767. #include <stdio.h>
  768. #include <sys/select.h>
  769. #include <sys/time.h>
  770. #include <sys/resource.h>
  771. #include <string.h>
  772. #include <errno.h>
  773. #include <stdlib.h>
  774. #include <sys/types.h>
  775. #include <sys/stat.h>
  776. #include <fcntl.h>
  777. #include <unistd.h>
  778. ], [[
  779. struct rlimit rlim = { FD_SETSIZE * 2, FD_SETSIZE * 2 };
  780. int fd0, fd1;
  781. struct timeval tv = { 0, };
  782. struct ast_fdset { long fds_bits[[1024]]; } fds = { { 0, } };
  783. if (setrlimit(RLIMIT_NOFILE, &rlim)) { exit(1); }
  784. if ((fd0 = open("/dev/null", O_RDONLY)) < 0) { exit(1); }
  785. if (dup2(fd0, (fd1 = FD_SETSIZE + 1)) < 0) { exit(1); }
  786. FD_SET(fd0, (fd_set *) &fds);
  787. FD_SET(fd1, (fd_set *) &fds);
  788. if (select(FD_SETSIZE + 2, (fd_set *) &fds, NULL, NULL, &tv) < 0) { exit(1); }
  789. exit(0)]])],
  790. AC_MSG_RESULT(yes)
  791. AC_DEFINE([HAVE_VARIABLE_FDSET], 1, [Define to 1 if your system can support larger than default select bitmasks.]),
  792. AC_MSG_RESULT(no),
  793. AC_MSG_RESULT(cross-compile)
  794. )
  795. if test "${ac_cv_have_variable_fdset}x" = "0x"; then
  796. AC_RUN_IFELSE(
  797. [AC_LANG_PROGRAM([
  798. #include <unistd.h>
  799. #include <sys/types.h>
  800. #include <stdlib.h>
  801. ], [if (getuid() != 0) { exit(1); }])],
  802. AC_DEFINE([CONFIGURE_RAN_AS_ROOT], 1, [Some configure tests will unexpectedly fail if configure is run by a non-root user. These may be able to be tested at runtime.]))
  803. fi
  804. AST_GCC_ATTRIBUTE(pure)
  805. AST_GCC_ATTRIBUTE(malloc)
  806. AST_GCC_ATTRIBUTE(const)
  807. AST_GCC_ATTRIBUTE(unused)
  808. AST_GCC_ATTRIBUTE(always_inline)
  809. AST_GCC_ATTRIBUTE(deprecated)
  810. AST_GCC_ATTRIBUTE(sentinel)
  811. AST_GCC_ATTRIBUTE(warn_unused_result)
  812. # Support weak symbols on a platform specific basis. The Mac OS X
  813. # (Darwin) support must be isolated from the other platforms because
  814. # it has caused other platforms to fail.
  815. #
  816. case "${OSARCH}" in
  817. darwin*)
  818. # Allow weak symbol support on Darwin platforms only because there
  819. # is active community support for it.
  820. # However, Darwin seems to break weak symbols for each new version.
  821. #
  822. AST_GCC_ATTRIBUTE(weak_import, [], [], PBX_WEAKREF)
  823. # Several other platforms including Linux have GCC versions that
  824. # define the weak attribute. However, this attribute is only
  825. # setup for use in the code by Darwin.
  826. AST_GCC_ATTRIBUTE(weak, [], [], PBX_WEAKREF)
  827. ;;
  828. linux-gnu)
  829. # Primarily support weak symbols on Linux platforms.
  830. #
  831. AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
  832. ;;
  833. *)
  834. # Allow weak symbols on other platforms. However, any problems
  835. # with this feature on other platforms must be fixed by the
  836. # community.
  837. #
  838. AST_GCC_ATTRIBUTE(weakref, [weakref("foo")], static, PBX_WEAKREF)
  839. ;;
  840. esac
  841. AC_MSG_CHECKING(for -ffunction-sections support)
  842. saved_CFLAGS="${CFLAGS}"
  843. CFLAGS="${CFLAGS} -ffunction-sections"
  844. AC_COMPILE_IFELSE(
  845. [AC_LANG_PROGRAM([], [int x = 1;])],
  846. AC_MSG_RESULT(yes)
  847. [saved_LDFLAGS="${LDFLAGS}"]
  848. [LDFLAGS="${LDFLAGS} -Wl,--gc-sections"]
  849. AC_MSG_CHECKING(for --gc-sections support)
  850. AC_LINK_IFELSE(
  851. [AC_LANG_PROGRAM([], [int x = 1;])],
  852. AC_MSG_RESULT(yes)
  853. [GC_CFLAGS="-ffunction-sections"]
  854. [[GC_LDFLAGS="-Wl,--gc-sections"]],
  855. AC_MSG_RESULT(no)
  856. )
  857. [LDFLAGS="${saved_LDFLAGS}"],
  858. AC_MSG_RESULT(no)
  859. )
  860. CFLAGS="${saved_CFLAGS}"
  861. AC_SUBST(GC_CFLAGS)
  862. AC_SUBST(GC_LDFLAGS)
  863. AC_MSG_CHECKING(for -Wdeclaration-after-statement support)
  864. if $(${CC} -Wdeclaration-after-statement -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
  865. AC_MSG_RESULT(yes)
  866. AST_DECLARATION_AFTER_STATEMENT=-Wdeclaration-after-statement
  867. else
  868. AC_MSG_RESULT(no)
  869. AST_DECLARATION_AFTER_STATEMENT=
  870. fi
  871. AC_SUBST(AST_DECLARATION_AFTER_STATEMENT)
  872. AC_MSG_CHECKING(for _FORTIFY_SOURCE support)
  873. if $(${CC} -D_FORTIFY_SOURCE=2 -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
  874. AC_MSG_RESULT(yes)
  875. AST_FORTIFY_SOURCE=-D_FORTIFY_SOURCE=2
  876. else
  877. AC_MSG_RESULT(no)
  878. AST_FORTIFY_SOURCE=
  879. fi
  880. AC_SUBST(AST_FORTIFY_SOURCE)
  881. AC_MSG_CHECKING(for -fno-strict-overflow)
  882. if $(${CC} -O2 -fno-strict-overflow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
  883. AC_MSG_RESULT(yes)
  884. AST_NO_STRICT_OVERFLOW=-fno-strict-overflow
  885. else
  886. AC_MSG_RESULT(no)
  887. AST_NO_STRICT_OVERFLOW=
  888. fi
  889. AC_SUBST(AST_NO_STRICT_OVERFLOW)
  890. AC_MSG_CHECKING(for -Wshadow)
  891. if $(${CC} -Wshadow -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
  892. AC_MSG_RESULT(yes)
  893. AST_SHADOW_WARNINGS=-Wshadow
  894. else
  895. AC_MSG_RESULT(no)
  896. AST_SHADOW_WARNINGS=
  897. fi
  898. AC_SUBST(AST_SHADOW_WARNINGS)
  899. AC_MSG_CHECKING(for -march=native support)
  900. if $(${CC} -march=native -S -o /dev/null -xc /dev/null > /dev/null 2>&1); then
  901. if test "${CONFIG_CFLAGS}" = ""; then
  902. AC_MSG_RESULT(yes)
  903. AST_NATIVE_ARCH=1
  904. else
  905. AC_MSG_RESULT(user CFLAGS present)
  906. AST_NATIVE_ARCH=
  907. fi
  908. else
  909. AC_MSG_RESULT(no)
  910. AST_NATIVE_ARCH=
  911. fi
  912. AC_SUBST(AST_NATIVE_ARCH)
  913. AC_MSG_CHECKING(for sysinfo)
  914. AC_LINK_IFELSE(
  915. [AC_LANG_PROGRAM([#include <sys/sysinfo.h>],
  916. [struct sysinfo sys_info; int uptime = sys_info.uptime])],
  917. AC_MSG_RESULT(yes)
  918. AC_DEFINE([HAVE_SYSINFO], 1, [Define to 1 if your system has sysinfo support]),
  919. AC_MSG_RESULT(no)
  920. )
  921. AC_SEARCH_LIBS(res_9_ninit, resolv)
  922. AC_MSG_CHECKING(for res_ninit)
  923. AC_LINK_IFELSE(
  924. [AC_LANG_PROGRAM([
  925. #ifdef HAVE_SYS_SOCKET_H
  926. #include <sys/socket.h>
  927. #endif
  928. #ifdef HAVE_NETINET_IN_H
  929. #include <netinet/in.h>
  930. #endif
  931. #ifdef HAVE_ARPA_NAMESER_H
  932. #include <arpa/nameser.h>
  933. #endif
  934. #include <resolv.h>],
  935. [int foo = res_ninit(NULL);])],
  936. AC_MSG_RESULT(yes)
  937. AC_DEFINE([HAVE_RES_NINIT], 1, [Define to 1 if your system has the re-entrant resolver functions.])
  938. AC_SEARCH_LIBS(res_9_ndestroy, resolv)
  939. AC_MSG_CHECKING(for res_ndestroy)
  940. AC_LINK_IFELSE(
  941. [AC_LANG_PROGRAM([
  942. #ifdef HAVE_SYS_SOCKET_H
  943. #include <sys/socket.h>
  944. #endif
  945. #ifdef HAVE_NETINET_IN_H
  946. #include <netinet/in.h>
  947. #endif
  948. #ifdef HAVE_ARPA_NAMESER_H
  949. #include <arpa/nameser.h>
  950. #endif
  951. #include <resolv.h>],
  952. [res_ndestroy(NULL);])],
  953. AC_MSG_RESULT(yes)
  954. AC_DEFINE([HAVE_RES_NDESTROY], 1, [Define to 1 if your system has the ndestroy resolver function.]),
  955. AC_MSG_RESULT(no)
  956. )
  957. AC_SEARCH_LIBS(res_9_close, resolv)
  958. AC_MSG_CHECKING(for res_close)
  959. AC_LINK_IFELSE(
  960. [AC_LANG_PROGRAM([
  961. #ifdef HAVE_SYS_SOCKET_H
  962. #include <sys/socket.h>
  963. #endif
  964. #ifdef HAVE_NETINET_IN_H
  965. #include <netinet/in.h>
  966. #endif
  967. #ifdef HAVE_ARPA_NAMESER_H
  968. #include <arpa/nameser.h>
  969. #endif
  970. #include <resolv.h>],
  971. [res_close();])],
  972. AC_MSG_RESULT(yes)
  973. AC_DEFINE([HAVE_RES_CLOSE], 1, [Define to 1 if your system has the close resolver function.]),
  974. AC_MSG_RESULT(no)
  975. ),
  976. AC_MSG_RESULT(no)
  977. )
  978. AST_C_DEFINE_CHECK([GLOB_NOMAGIC], [GLOB_NOMAGIC], [glob.h])
  979. AST_C_DEFINE_CHECK([GLOB_BRACE], [GLOB_BRACE], [glob.h])
  980. AST_C_DEFINE_CHECK([IP_MTU_DISCOVER], [IP_MTU_DISCOVER], [netinet/in.h])
  981. AC_CHECK_HEADER([libkern/OSAtomic.h],
  982. [AC_DEFINE_UNQUOTED([HAVE_OSX_ATOMICS], 1, [Define to 1 if OSX atomic operations are supported.])])
  983. AC_CHECK_SIZEOF([int])
  984. AC_CHECK_SIZEOF([long])
  985. AC_CHECK_SIZEOF([long long])
  986. AC_CHECK_SIZEOF([char *])
  987. AC_CHECK_SIZEOF(long)
  988. AC_CHECK_SIZEOF(long long)
  989. AC_COMPUTE_INT([ac_cv_sizeof_fd_set_fds_bits], [sizeof(foo.fds_bits[[0]])], [$ac_includes_default
  990. fd_set foo;])
  991. # This doesn't actually work; what it does is to use the variable set in the
  992. # previous test as a cached value to set the right output variables.
  993. AC_CHECK_SIZEOF(fd_set.fds_bits)
  994. # Set a type compatible with the previous. We cannot just use a generic type
  995. # for these bits, because on big-endian systems, the bits won't match up
  996. # correctly if the size is wrong.
  997. if test $ac_cv_sizeof_int = $ac_cv_sizeof_fd_set_fds_bits; then
  998. AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [int], [Define to a type of the same size as fd_set.fds_bits[[0]]])
  999. else if test $ac_cv_sizeof_long = $ac_cv_sizeof_fd_set_fds_bits; then
  1000. AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
  1001. else if test $ac_cv_sizeof_long_long = $ac_cv_sizeof_fd_set_fds_bits; then
  1002. AC_DEFINE([TYPEOF_FD_SET_FDS_BITS], [long long], [Define to a type of the same size as fd_set.fds_bits[[0]]])
  1003. fi ; fi ; fi
  1004. AC_MSG_CHECKING(for dladdr in dlfcn.h)
  1005. PBX_DLADDR=0
  1006. old_LIBS=${LIBS}
  1007. LIBS="${LIBS} -ldl"
  1008. AC_LINK_IFELSE(
  1009. [AC_LANG_PROGRAM([#define _GNU_SOURCE 1
  1010. #include <dlfcn.h>],
  1011. [dladdr((void *)0, (void *)0)]
  1012. )],
  1013. AC_MSG_RESULT(yes)
  1014. PBX_DLADDR=1
  1015. AC_SUBST([PBX_DLADDR])
  1016. AC_DEFINE([HAVE_DLADDR], 1, [Define to 1 if your system has the dladdr() GNU extension]),
  1017. AC_MSG_RESULT(no)
  1018. )
  1019. LIBS=${old_LIBS}
  1020. # PKGCONFIG is used in later tests
  1021. AC_CHECK_TOOL(PKGCONFIG, pkg-config, No)
  1022. # do the package library checks now
  1023. AST_EXT_LIB_CHECK([ALSA], [asound], [snd_spcm_init], [alsa/asoundlib.h], [-lm -ldl])
  1024. AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_openr], [bfd.h])
  1025. if test "${PBX_BFD}" = "0"; then
  1026. # Fedora/RedHat/CentOS require extra libraries
  1027. AST_EXT_LIB_CHECK([BFD], [bfd], [bfd_check_format], [bfd.h], [-ldl -liberty])
  1028. fi
  1029. if test "x${OSARCH}" = "xlinux-gnu" ; then
  1030. AST_EXT_LIB_CHECK([CAP], [cap], [cap_from_text], [sys/capability.h])
  1031. fi
  1032. AST_C_DEFINE_CHECK([DAHDI], [DAHDI_RESET_COUNTERS], [dahdi/user.h], [230])
  1033. AST_C_DEFINE_CHECK([DAHDI], [DAHDI_DEFAULT_MTU_MRU], [dahdi/user.h], [220])
  1034. AST_C_DEFINE_CHECK([DAHDI], [DAHDI_CODE], [dahdi/user.h], [200])
  1035. AST_C_DEFINE_CHECK([DAHDI_HALF_FULL], [DAHDI_POLICY_HALF_FULL], [dahdi/user.h])
  1036. AST_C_COMPILE_CHECK([DAHDI_LINEREVERSE_VMWI], [struct dahdi_vmwi_info booger], [dahdi/user.h], , [enhanced dahdi vmwi support])
  1037. AST_C_COMPILE_CHECK([DAHDI_ECHOCANCEL_FAX_MODE], [int foo = DAHDI_ECHOCANCEL_FAX_MODE], [dahdi/user.h])
  1038. AST_C_COMPILE_CHECK([GETIFADDRS], [struct ifaddrs *p; getifaddrs(&p)], [ifaddrs.h], , [getifaddrs() support])
  1039. AST_C_COMPILE_CHECK([TIMERFD], [timerfd_create(0,0); timerfd_settime(0,0,NULL,NULL);], [sys/timerfd.h], , [timerfd support])
  1040. GSM_INTERNAL="yes"
  1041. AC_SUBST(GSM_INTERNAL)
  1042. GSM_SYSTEM="yes"
  1043. if test "${USE_GSM}" != "no"; then
  1044. if test "${GSM_DIR}" = "internal"; then
  1045. GSM_SYSTEM="no"
  1046. elif test "${GSM_DIR}" != ""; then
  1047. GSM_INTERNAL="no"
  1048. fi
  1049. if test "${GSM_SYSTEM}" = "yes"; then
  1050. gsmlibdir=""
  1051. if test "x${GSM_DIR}" != "x"; then
  1052. if test -d ${GSM_DIR}/lib; then
  1053. gsmlibdir="-L${GSM_DIR}/lib"
  1054. else
  1055. gsmlibdir="-L${GSM_DIR}"
  1056. fi
  1057. fi
  1058. AC_CHECK_LIB([gsm], [gsm_create], AC_DEFINE_UNQUOTED([HAVE_GSM], 1,
  1059. [Define to indicate the GSM library]), [], ${gsmlibdir})
  1060. if test "${ac_cv_lib_gsm_gsm_create}" = "yes"; then
  1061. if test "x${GSM_DIR}" != "x" ; then
  1062. AC_CHECK_HEADER([${GSM_DIR}/include/gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
  1063. AC_CHECK_HEADER([${GSM_DIR}/include/gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
  1064. else
  1065. AC_CHECK_HEADER([gsm.h], [GSM_HEADER_FOUND=1], [GSM_HEADER_FOUND=0])
  1066. AC_CHECK_HEADER([gsm/gsm.h], [GSM_GSM_HEADER_FOUND=1], [GSM_GSM_HEADER_FOUND=0])
  1067. fi
  1068. if test "${GSM_HEADER_FOUND}" = "0" ; then
  1069. if test "{GSM_GSM_HEADER_FOUND}" = "0" ; then
  1070. if test "x${GSM_MANDATORY}" = "xyes" ; then
  1071. AC_MSG_NOTICE([***])
  1072. AC_MSG_NOTICE([*** It appears that you do not have the gsm development package installed.])
  1073. AC_MSG_NOTICE([*** Please install it to include ${GSM_DESCRIP} support, or re-run configure])
  1074. AC_MSG_NOTICE([*** without explicitly specifying --with-${GSM_OPTION}])
  1075. exit 1
  1076. fi
  1077. fi
  1078. fi
  1079. GSM_OK=0
  1080. if test "${GSM_HEADER_FOUND}" = "1" ; then
  1081. AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
  1082. GSM_OK=1
  1083. else
  1084. if test "${GSM_GSM_HEADER_FOUND}" = "1" ; then
  1085. AC_DEFINE_UNQUOTED([HAVE_GSM_GSM_HEADER], 1, [Define to indicate that gsm.h is in gsm/gsm.h])
  1086. GSM_OK=1
  1087. fi
  1088. fi
  1089. if test "${GSM_OK}" = "1" ; then
  1090. GSM_LIB="-lgsm"
  1091. if test "x${GSM_DIR}" != "x"; then
  1092. GSM_LIB="${gsmlibdir} ${GSM_LIB}"
  1093. GSM_INCLUDE="-I${GSM_DIR}/include"
  1094. fi
  1095. PBX_GSM=1
  1096. GSM_INTERNAL="no"
  1097. fi
  1098. fi
  1099. fi
  1100. if test "${GSM_INTERNAL}" = "yes"; then
  1101. PBX_GSM=1
  1102. AC_DEFINE_UNQUOTED([HAVE_GSM_HEADER], 1, [Define to indicate that gsm.h has no prefix for its location])
  1103. fi
  1104. fi
  1105. AST_EXT_LIB_CHECK([ICONV], [iconv], [iconv_open], [iconv.h])
  1106. # GNU libiconv #define's iconv_open to libiconv_open, so we need to search for that symbol
  1107. AST_EXT_LIB_CHECK([ICONV], [iconv], [libiconv_open], [iconv.h])
  1108. # Some versions of Linux package iconv in glibc
  1109. AST_EXT_LIB_CHECK([ICONV], [c], [iconv_close], [iconv.h])
  1110. # If ical.h is NOT in the libical directory, then it is of a version insufficient for us.
  1111. AST_EXT_LIB_CHECK([ICAL], [ical], [icaltimezone_get_utc_timezone], [libical/ical.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
  1112. AST_EXT_LIB_CHECK([IKSEMEL], [iksemel], [iks_start_sasl], [iksemel.h])
  1113. if test "${USE_IMAP_TK}" != "no"; then
  1114. saved_cppflags="${CPPFLAGS}"
  1115. saved_libs="${LIBS}"
  1116. switch_to_system_on_failure="no"
  1117. if test "${IMAP_TK_DIR}" = ""; then
  1118. IMAP_TK_DIR=`pwd`"/../imap-2004g"
  1119. switch_to_system_on_failure="yes"
  1120. fi
  1121. if test "${IMAP_TK_DIR}" != "system"; then
  1122. AC_MSG_CHECKING(for UW IMAP Toolkit c-client library)
  1123. if test -f "${IMAP_TK_DIR}/c-client/LDFLAGS"; then
  1124. imap_ldflags=`cat ${IMAP_TK_DIR}/c-client/LDFLAGS`
  1125. fi
  1126. imap_libs="${IMAP_TK_DIR}/c-client/c-client.a"
  1127. imap_include="-I${IMAP_TK_DIR}/c-client"
  1128. CPPFLAGS="${CPPFLAGS} ${imap_include}"
  1129. LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
  1130. AC_LINK_IFELSE(
  1131. [AC_LANG_PROGRAM(
  1132. [#include "c-client.h"
  1133. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1134. {
  1135. }
  1136. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1137. {
  1138. }
  1139. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1140. {
  1141. }
  1142. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1143. {
  1144. }
  1145. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1146. {
  1147. }
  1148. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1149. {
  1150. }
  1151. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1152. {
  1153. }
  1154. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1155. {
  1156. }
  1157. void mm_log (char *string,long errflg)
  1158. {
  1159. }
  1160. void mm_dlog (char *string)
  1161. {
  1162. }
  1163. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1164. {
  1165. }
  1166. void mm_critical (MAILSTREAM *stream)
  1167. {
  1168. }
  1169. void mm_nocritical (MAILSTREAM *stream)
  1170. {
  1171. }
  1172. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1173. {
  1174. }
  1175. void mm_fatal (char *string)
  1176. {
  1177. }],
  1178. [
  1179. MAILSTREAM *foo = mail_open(NULL, "", 0);
  1180. ]
  1181. )],
  1182. [ac_cv_imap_tk="yes"],
  1183. [ac_cv_imap_tk="no"]
  1184. )
  1185. if test "${ac_cv_imap_tk}" = "yes"; then
  1186. AC_LINK_IFELSE(
  1187. [AC_LANG_PROGRAM(
  1188. [#include "c-client.h"
  1189. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1190. {
  1191. }
  1192. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1193. {
  1194. }
  1195. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1196. {
  1197. }
  1198. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1199. {
  1200. }
  1201. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1202. {
  1203. }
  1204. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1205. {
  1206. }
  1207. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1208. {
  1209. }
  1210. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1211. {
  1212. }
  1213. void mm_log (char *string,long errflg)
  1214. {
  1215. }
  1216. void mm_dlog (char *string)
  1217. {
  1218. }
  1219. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1220. {
  1221. }
  1222. void mm_critical (MAILSTREAM *stream)
  1223. {
  1224. }
  1225. void mm_nocritical (MAILSTREAM *stream)
  1226. {
  1227. }
  1228. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1229. {
  1230. }
  1231. void mm_fatal (char *string)
  1232. {
  1233. }],
  1234. [
  1235. long check = mail_expunge_full(NULL, "", 0);
  1236. ]
  1237. )],
  1238. [ac_cv_imap_tk2006="yes"],
  1239. [ac_cv_imap_tk2006="no"]
  1240. )
  1241. fi
  1242. CPPFLAGS="${saved_cppflags}"
  1243. LIBS="${saved_libs}"
  1244. if test "${ac_cv_imap_tk}" = "no"; then
  1245. AC_MSG_RESULT(no)
  1246. if test "${switch_to_system_on_failure}" = "yes"; then
  1247. IMAP_TK_DIR="system"
  1248. else #This means they specified a directory. Search for a package installation there too
  1249. AC_MSG_CHECKING([for system c-client library...])
  1250. CPPFLAGS="${saved_cppflags}"
  1251. LIBS="${saved_libs}"
  1252. imap_include="-I${IMAP_TK_DIR}/include"
  1253. imap_ldflags="-L${IMAP_TK_DIR}/lib"
  1254. imap_libs="-lc-client"
  1255. CPPFLAGS="${CPPFLAGS} ${imap_include}"
  1256. LIBS="${LIBS} ${imap_libs} ${imap_ldflags}"
  1257. AC_LINK_IFELSE(
  1258. [AC_LANG_PROGRAM(
  1259. [#include "c-client.h"
  1260. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1261. {
  1262. }
  1263. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1264. {
  1265. }
  1266. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1267. {
  1268. }
  1269. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1270. {
  1271. }
  1272. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1273. {
  1274. }
  1275. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1276. {
  1277. }
  1278. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1279. {
  1280. }
  1281. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1282. {
  1283. }
  1284. void mm_log (char *string,long errflg)
  1285. {
  1286. }
  1287. void mm_dlog (char *string)
  1288. {
  1289. }
  1290. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1291. {
  1292. }
  1293. void mm_critical (MAILSTREAM *stream)
  1294. {
  1295. }
  1296. void mm_nocritical (MAILSTREAM *stream)
  1297. {
  1298. }
  1299. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1300. {
  1301. }
  1302. void mm_fatal (char *string)
  1303. {
  1304. }],
  1305. [
  1306. MAILSTREAM *foo = mail_open(NULL, "", 0);
  1307. ]
  1308. )],
  1309. [ac_cv_imap_tk="yes"],
  1310. [ac_cv_imap_tk="no"]
  1311. )
  1312. if test "${ac_cv_imap_tk}" = "yes"; then
  1313. AC_LINK_IFELSE(
  1314. [AC_LANG_PROGRAM(
  1315. [#include "c-client.h"
  1316. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1317. {
  1318. }
  1319. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1320. {
  1321. }
  1322. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1323. {
  1324. }
  1325. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1326. {
  1327. }
  1328. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1329. {
  1330. }
  1331. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1332. {
  1333. }
  1334. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1335. {
  1336. }
  1337. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1338. {
  1339. }
  1340. void mm_log (char *string,long errflg)
  1341. {
  1342. }
  1343. void mm_dlog (char *string)
  1344. {
  1345. }
  1346. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1347. {
  1348. }
  1349. void mm_critical (MAILSTREAM *stream)
  1350. {
  1351. }
  1352. void mm_nocritical (MAILSTREAM *stream)
  1353. {
  1354. }
  1355. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1356. {
  1357. }
  1358. void mm_fatal (char *string)
  1359. {
  1360. }],
  1361. [
  1362. long check = mail_expunge_full(NULL, "", 0);
  1363. ]
  1364. )],
  1365. [ac_cv_imap_tk2006="yes"],
  1366. [ac_cv_imap_tk2006="no"]
  1367. )
  1368. fi
  1369. fi
  1370. fi
  1371. fi
  1372. if test "${IMAP_TK_DIR}" = "system"; then
  1373. #We will enter here if user specified "system" or if any of above checks failed
  1374. AC_MSG_CHECKING([for system c-client library...])
  1375. CPPFLAGS="${saved_cppflags}"
  1376. LIBS="${saved_libs}"
  1377. imap_ldflags=""
  1378. imap_libs="-lc-client"
  1379. imap_include="-DUSE_SYSTEM_IMAP" #Try the imap directory first
  1380. CPPFLAGS="${CPPFLAGS} ${imap_include}"
  1381. LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
  1382. AC_LINK_IFELSE(
  1383. [AC_LANG_PROGRAM(
  1384. [#include <stdio.h>
  1385. #include <imap/c-client.h>
  1386. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1387. {
  1388. }
  1389. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1390. {
  1391. }
  1392. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1393. {
  1394. }
  1395. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1396. {
  1397. }
  1398. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1399. {
  1400. }
  1401. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1402. {
  1403. }
  1404. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1405. {
  1406. }
  1407. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1408. {
  1409. }
  1410. void mm_log (char *string,long errflg)
  1411. {
  1412. }
  1413. void mm_dlog (char *string)
  1414. {
  1415. }
  1416. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1417. {
  1418. }
  1419. void mm_critical (MAILSTREAM *stream)
  1420. {
  1421. }
  1422. void mm_nocritical (MAILSTREAM *stream)
  1423. {
  1424. }
  1425. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1426. {
  1427. }
  1428. void mm_fatal (char *string)
  1429. {
  1430. }],
  1431. [
  1432. MAILSTREAM *foo = mail_open(NULL, "", 0);
  1433. ]
  1434. )],
  1435. [ac_cv_imap_tk="yes"],
  1436. [ac_cv_imap_tk="no"]
  1437. )
  1438. if test "${ac_cv_imap_tk}" = "yes"; then
  1439. AC_LINK_IFELSE(
  1440. [AC_LANG_PROGRAM(
  1441. [#include <stdio.h>
  1442. #include <imap/c-client.h>
  1443. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1444. {
  1445. }
  1446. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1447. {
  1448. }
  1449. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1450. {
  1451. }
  1452. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1453. {
  1454. }
  1455. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1456. {
  1457. }
  1458. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1459. {
  1460. }
  1461. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1462. {
  1463. }
  1464. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1465. {
  1466. }
  1467. void mm_log (char *string,long errflg)
  1468. {
  1469. }
  1470. void mm_dlog (char *string)
  1471. {
  1472. }
  1473. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1474. {
  1475. }
  1476. void mm_critical (MAILSTREAM *stream)
  1477. {
  1478. }
  1479. void mm_nocritical (MAILSTREAM *stream)
  1480. {
  1481. }
  1482. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1483. {
  1484. }
  1485. void mm_fatal (char *string)
  1486. {
  1487. }],
  1488. [
  1489. long check = mail_expunge_full(NULL, "", 0);
  1490. ]
  1491. )],
  1492. [ac_cv_imap_tk2006="yes"],
  1493. [ac_cv_imap_tk2006="no"]
  1494. )
  1495. else #looking in imap directory didn't work, try c-client
  1496. imap_ldflags=""
  1497. imap_libs="-lc-client"
  1498. imap_include="-DUSE_SYSTEM_CCLIENT"
  1499. CPPFLAGS="${saved_cppflags}"
  1500. LIBS="${saved_libs}"
  1501. CPPFLAGS="${CPPFLAGS} ${imap_include}"
  1502. LIBS="${LIBS} ${imap_libs} "`echo ${imap_ldflags}`
  1503. AC_LINK_IFELSE(
  1504. [AC_LANG_PROGRAM(
  1505. [#include <stdio.h>
  1506. #include <c-client/c-client.h>
  1507. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1508. {
  1509. }
  1510. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1511. {
  1512. }
  1513. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1514. {
  1515. }
  1516. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1517. {
  1518. }
  1519. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1520. {
  1521. }
  1522. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1523. {
  1524. }
  1525. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1526. {
  1527. }
  1528. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1529. {
  1530. }
  1531. void mm_log (char *string,long errflg)
  1532. {
  1533. }
  1534. void mm_dlog (char *string)
  1535. {
  1536. }
  1537. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1538. {
  1539. }
  1540. void mm_critical (MAILSTREAM *stream)
  1541. {
  1542. }
  1543. void mm_nocritical (MAILSTREAM *stream)
  1544. {
  1545. }
  1546. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1547. {
  1548. }
  1549. void mm_fatal (char *string)
  1550. {
  1551. }],
  1552. [
  1553. MAILSTREAM *foo = mail_open(NULL, "", 0);
  1554. ]
  1555. )],
  1556. [ac_cv_imap_tk="yes"],
  1557. [ac_cv_imap_tk="no"]
  1558. )
  1559. if test "${ac_cv_imap_tk}" = "yes"; then
  1560. AC_LINK_IFELSE(
  1561. [AC_LANG_PROGRAM(
  1562. [#include <stdio.h>
  1563. #include <c-client/c-client.h>
  1564. void mm_searched (MAILSTREAM *stream,unsigned long number)
  1565. {
  1566. }
  1567. void mm_exists (MAILSTREAM *stream,unsigned long number)
  1568. {
  1569. }
  1570. void mm_expunged (MAILSTREAM *stream,unsigned long number)
  1571. {
  1572. }
  1573. void mm_flags (MAILSTREAM *stream,unsigned long number)
  1574. {
  1575. }
  1576. void mm_notify (MAILSTREAM *stream,char *string,long errflg)
  1577. {
  1578. }
  1579. void mm_list (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1580. {
  1581. }
  1582. void mm_lsub (MAILSTREAM *stream,int delimiter,char *mailbox,long attributes)
  1583. {
  1584. }
  1585. void mm_status (MAILSTREAM *stream,char *mailbox,MAILSTATUS *status)
  1586. {
  1587. }
  1588. void mm_log (char *string,long errflg)
  1589. {
  1590. }
  1591. void mm_dlog (char *string)
  1592. {
  1593. }
  1594. void mm_login (NETMBX *mb,char *user,char *pwd,long trial)
  1595. {
  1596. }
  1597. void mm_critical (MAILSTREAM *stream)
  1598. {
  1599. }
  1600. void mm_nocritical (MAILSTREAM *stream)
  1601. {
  1602. }
  1603. long mm_diskerror (MAILSTREAM *stream,long errcode,long serious)
  1604. {
  1605. }
  1606. void mm_fatal (char *string)
  1607. {
  1608. }],
  1609. [
  1610. long check = mail_expunge_full(NULL, "", 0);
  1611. ]
  1612. )],
  1613. [ac_cv_imap_tk2006="yes"],
  1614. [ac_cv_imap_tk2006="no"]
  1615. )
  1616. fi
  1617. fi
  1618. fi
  1619. if test "${ac_cv_imap_tk}" = "yes"; then
  1620. AC_MSG_RESULT(yes)
  1621. IMAP_TK_LIB="${imap_libs} "`echo ${imap_ldflags}`
  1622. IMAP_TK_INCLUDE="${imap_include}"
  1623. PBX_IMAP_TK=1
  1624. AC_DEFINE([HAVE_IMAP_TK], 1, [Define if your system has the UW IMAP Toolkit c-client library.])
  1625. if test "${ac_cv_imap_tk2006}" = "yes"; then
  1626. AC_DEFINE([HAVE_IMAP_TK2006], 1, [Define if your system has the UW IMAP Toolkit c-client library version 2006 or greater.])
  1627. fi
  1628. else
  1629. AC_MSG_RESULT(no)
  1630. fi
  1631. CPPFLAGS="${saved_cppflags}"
  1632. LIBS="${saved_libs}"
  1633. fi
  1634. AST_EXT_LIB_CHECK([IODBC], [iodbc], [SQLConnect], [sql.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
  1635. AST_EXT_LIB_CHECK([INOTIFY], [c], [inotify_init], [sys/inotify.h])
  1636. AST_EXT_LIB_CHECK([JACK], [jack], [jack_activate], [jack/jack.h])
  1637. # BSD (and OS X) equivalent of inotify
  1638. AST_EXT_LIB_CHECK([KQUEUE], [c], [kqueue], [sys/event.h])
  1639. # 64-bit version of kevent (from kqueue) on OS X
  1640. AC_CHECK_FUNCS([kevent64])
  1641. # Needed by unixodbc
  1642. AST_EXT_LIB_CHECK([LTDL], [ltdl], [lt_dlinit], [ltdl.h], [])
  1643. AST_EXT_LIB_CHECK([LDAP], [ldap], [ldap_initialize], [ldap.h])
  1644. AST_EXT_LIB_CHECK([MISDN], [mISDN], [mISDN_open], [mISDNuser/mISDNlib.h])
  1645. if test "${PBX_MISDN}" = 1; then
  1646. AST_EXT_LIB_CHECK([ISDNNET], [isdnnet], [init_manager], [mISDNuser/isdn_net.h], [-lmISDN -lpthread])
  1647. AST_EXT_LIB_CHECK([SUPPSERV], [suppserv], [encodeFac], [mISDNuser/suppserv.h])
  1648. AST_C_DEFINE_CHECK([MISDN_FAC_RESULT], [Fac_RESULT], [mISDNuser/suppserv.h])
  1649. AST_C_DEFINE_CHECK([MISDN_FAC_ERROR], [Fac_ERROR], [mISDNuser/suppserv.h])
  1650. AC_CHECK_HEADER([linux/mISDNdsp.h], [AC_DEFINE_UNQUOTED([MISDN_1_2], 1, [Build chan_misdn for mISDN 1.2 or later.])])
  1651. AC_CHECK_MEMBER([Q931_info_t.redirect_dn], [], [PBX_MISDN=0], [#include <mISDNuser/mISDNlib.h>])
  1652. fi
  1653. AST_EXT_TOOL_CHECK([MYSQLCLIENT], [mysql_config])
  1654. AST_EXT_LIB_CHECK([NBS], [nbs], [nbs_connect], [nbs.h])
  1655. AST_EXT_TOOL_CHECK([NEON], [neon-config])
  1656. AST_EXT_TOOL_CHECK([NEON29], [neon-config], , [--libs],
  1657. [#include <ne_auth.h>],
  1658. [#ifndef NE_AUTH_NTLM
  1659. #error Need libneon >= 0.29.0
  1660. #endif])
  1661. AST_EXT_TOOL_CHECK([NETSNMP], [net-snmp-config], , [--agent-libs],
  1662. [#include <net-snmp/net-snmp-config.h>
  1663. #include <net-snmp/net-snmp-includes.h>
  1664. #include <net-snmp/agent/net-snmp-agent-includes.h>],
  1665. [int callback = snmp_register_callback(0, 0, NULL, NULL)])
  1666. AST_EXT_LIB_CHECK([NEWT], [newt], [newtBell], [newt.h])
  1667. AST_EXT_LIB_CHECK([UNIXODBC], [odbc], [SQLConnect], [sql.h], [])
  1668. AST_EXT_LIB_CHECK([OGG], [ogg], [ogg_sync_init], [])
  1669. # Non-glibc platforms require libexecinfo for backtrace support
  1670. AST_EXT_LIB_CHECK([BKTR], [execinfo], [backtrace], [execinfo.h])
  1671. # Linux, however, has backtrace directly in glibc
  1672. AST_EXT_LIB_CHECK([BKTR], [c], [backtrace], [execinfo.h])
  1673. AST_EXT_LIB_CHECK([BLUETOOTH], [bluetooth], [ba2str], [bluetooth/bluetooth.h])
  1674. # possible places for oss definitions
  1675. AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [linux/soundcard.h])
  1676. AST_EXT_LIB_CHECK([OSS], [ossaudio], [], [sys/soundcard.h])
  1677. AST_EXT_LIB_CHECK([OSS], [ossaudio], [oss_ioctl_mixer], [soundcard.h])
  1678. PG_CONFIG=No
  1679. if test "${USE_PGSQL}" != "no"; then
  1680. if test "x${PGSQL_DIR}" != "x"; then
  1681. AC_PATH_TOOL([PG_CONFIG], [pg_config], No, [${PGSQL_DIR}/bin])
  1682. if test x"${PG_CONFIG}" = xNo; then
  1683. AC_MSG_NOTICE([***])
  1684. AC_MSG_NOTICE([*** pg_config was not found in the path you specified:])
  1685. AC_MSG_NOTICE([*** ${PGSQL_DIR}/bin])
  1686. AC_MSG_NOTICE([*** Either correct the installation, or run configure])
  1687. AC_MSG_NOTICE([*** including --without-postgres])
  1688. exit 1
  1689. fi
  1690. else
  1691. AC_PATH_TOOL([PG_CONFIG], [pg_config], No)
  1692. fi
  1693. fi
  1694. if test "${PG_CONFIG}" != No; then
  1695. PGSQL_libdir=`${PG_CONFIG} --libdir`
  1696. PGSQL_includedir=`${PG_CONFIG} --includedir`
  1697. if test "x$?" != "x0" ; then
  1698. if test -n "${PGSQL_MANDATORY}" ; then
  1699. AC_MSG_NOTICE([***])
  1700. AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
  1701. AC_MSG_NOTICE([*** Either correct the installation, or run configure])
  1702. AC_MSG_NOTICE([*** including --without-postgres])
  1703. exit 1
  1704. fi
  1705. else
  1706. AC_CHECK_LIB([pq], [PQescapeStringConn], AC_DEFINE_UNQUOTED([HAVE_PGSQL], 1,
  1707. [Define to indicate the PostgreSQL library]), [], -L${PGSQL_libdir} -lz)
  1708. AC_MSG_CHECKING(for pg_encoding_to_char within Postgres headers)
  1709. old_CFLAGS=${CFLAGS}
  1710. CFLAGS="${CFLAGS} -I${PGSQL_includedir} -Werror"
  1711. old_LDFLAGS=${LDFLAGS}
  1712. LDFLAGS="${LDFLAGS} -L${PGSQL_libdir} -lpq -lz"
  1713. AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <libpq-fe.h>],
  1714. [const char *foo = pg_encoding_to_char(1)])],
  1715. [AC_MSG_RESULT(yes)
  1716. AC_DEFINE_UNQUOTED([HAVE_PGSQL_pg_encoding_to_char], 1, [Define to indicate presence of the pg_encoding_to_char API.])],
  1717. [AC_MSG_RESULT(no)])
  1718. CFLAGS=${old_CFLAGS}
  1719. LDFLAGS=${old_LDFLAGS}
  1720. if test "${ac_cv_lib_pq_PQescapeStringConn}" = "yes"; then
  1721. PGSQL_LIB="-L${PGSQL_libdir} -lpq -lz"
  1722. PGSQL_INCLUDE="-I${PGSQL_includedir}"
  1723. PBX_PGSQL=1
  1724. elif test -n "${PGSQL_MANDATORY}";
  1725. then
  1726. AC_MSG_NOTICE([***])
  1727. AC_MSG_NOTICE([*** The PostgreSQL installation on this system appears to be broken.])
  1728. AC_MSG_NOTICE([*** Either correct the installation, or run configure])
  1729. AC_MSG_NOTICE([*** including --without-postgres])
  1730. exit 1
  1731. fi
  1732. fi
  1733. fi
  1734. AST_EXT_LIB_CHECK([POPT], [popt], [poptStrerror], [popt.h])
  1735. AST_EXT_LIB_CHECK([PORTAUDIO], [portaudio], [Pa_GetDeviceCount], [portaudio.h])
  1736. AST_EXT_LIB_CHECK([PRI], [pri], [pri_connected_line_update], [libpri.h])
  1737. AST_EXT_LIB_CHECK([PRI_L2_PERSISTENCE], [pri], [pri_persistent_layer2_option], [libpri.h])
  1738. AST_EXT_LIB_CHECK([PRI_DATETIME_SEND], [pri], [pri_date_time_send_option], [libpri.h])
  1739. AST_EXT_LIB_CHECK([PRI_MWI_V2], [pri], [pri_mwi_indicate_v2], [libpri.h])
  1740. AST_EXT_LIB_CHECK([PRI_DISPLAY_TEXT], [pri], [pri_display_text], [libpri.h])
  1741. AST_EXT_LIB_CHECK([PRI_MWI], [pri], [pri_mwi_indicate], [libpri.h])
  1742. AST_EXT_LIB_CHECK([PRI_MCID], [pri], [pri_mcid_enable], [libpri.h])
  1743. AST_EXT_LIB_CHECK([PRI_CALL_WAITING], [pri], [pri_connect_ack_enable], [libpri.h])
  1744. AST_EXT_LIB_CHECK([PRI_AOC_EVENTS], [pri], [pri_aoc_events_enable], [libpri.h])
  1745. AST_EXT_LIB_CHECK([PRI_TRANSFER], [pri], [pri_transfer_enable], [libpri.h])
  1746. AST_EXT_LIB_CHECK([PRI_CCSS], [pri], [pri_cc_enable], [libpri.h])
  1747. AST_EXT_LIB_CHECK([PRI_HANGUP_FIX], [pri], [pri_hangup_fix_enable], [libpri.h])
  1748. AST_EXT_LIB_CHECK([PRI_SUBADDR], [pri], [pri_sr_set_called_subaddress], [libpri.h])
  1749. AST_EXT_LIB_CHECK([PRI_CALL_HOLD], [pri], [pri_hold_enable], [libpri.h])
  1750. AST_EXT_LIB_CHECK([PRI_CALL_REROUTING], [pri], [pri_reroute_enable], [libpri.h])
  1751. AST_EXT_LIB_CHECK([PRI_SETUP_KEYPAD], [pri], [pri_sr_set_keypad_digits], [libpri.h])
  1752. # ------------------------------------v
  1753. # TODO: The code can be changed to always include these features now.
  1754. # These features will always be present if pri_connected_line_update is available.
  1755. AST_EXT_LIB_CHECK([PRI_PROG_W_CAUSE], [pri], [pri_progress_with_cause], [libpri.h])
  1756. AST_EXT_LIB_CHECK([PRI_INBANDDISCONNECT], [pri], [pri_set_inbanddisconnect], [libpri.h])
  1757. AST_EXT_LIB_CHECK([PRI_SERVICE_MESSAGES], [pri], [pri_maintenance_service], [libpri.h])
  1758. AST_EXT_LIB_CHECK([PRI_REVERSE_CHARGE], [pri], [pri_sr_set_reversecharge], [libpri.h])
  1759. # ------------------------------------^
  1760. AST_EXT_LIB_CHECK([RESAMPLE], [resample], [resample_open], [libresample.h], [-lm])
  1761. AST_C_COMPILE_CHECK([SPANDSP], [
  1762. #if SPANDSP_RELEASE_DATE < 20080516
  1763. #error "spandsp 0.0.5 or greater is required"
  1764. #endif
  1765. ], [spandsp/version.h], , [minimum version of SpanDSP])
  1766. if test "x${PBX_SPANDSP}" = "x1" ; then
  1767. # We found the correct version in the header, now let's make sure it links
  1768. # properly, and that libtiff is available
  1769. PBX_SPANDSP=0
  1770. AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [span_set_message_handler], [spandsp.h], [-ltiff])
  1771. fi
  1772. if test "x${PBX_SPANDSP}" = "x1" ; then
  1773. # We also need t38_terminal_init()
  1774. PBX_SPANDSP=0
  1775. AST_EXT_LIB_CHECK([SPANDSP], [spandsp], [t38_terminal_init], [spandsp.h], [-ltiff])
  1776. fi
  1777. # Check for libss7 v1.0 branch compatible version.
  1778. AST_EXT_LIB_CHECK([SS7], [ss7], [ss7_set_adjpc], [libss7.h])
  1779. AST_EXT_LIB_CHECK([OPENR2], [openr2], [openr2_chan_new], [openr2.h])
  1780. if test "${USE_PWLIB}" != "no"; then
  1781. if test -n "${PWLIB_DIR}"; then
  1782. PWLIBDIR="${PWLIB_DIR}"
  1783. fi
  1784. AST_CHECK_PWLIB()
  1785. AST_CHECK_PWLIB_VERSION([PWLib], [PWLIB], [ptbuildopts.h], [1], [9], [2], [P[[WT]]LIB_VERSION])
  1786. if test "${HAS_PWLIB:-unset}" != "unset"; then
  1787. AST_CHECK_PWLIB_PLATFORM()
  1788. PLATFORM_PWLIB="pt_${PWLIB_PLATFORM}_r"
  1789. AST_CHECK_PWLIB_BUILD([PWLib], [PWLIB],
  1790. [Define if your system has the PWLib libraries.],
  1791. [#include "ptlib.h"],
  1792. [int q = (int) PTime::IsDaylightSavings();])
  1793. fi
  1794. fi
  1795. if test "${PBX_PWLIB}" = "1" -a "${USE_OPENH323}" != "no" ; then
  1796. if test -n "${OPENH323_DIR}"; then
  1797. OPENH323DIR="${OPENH323_DIR}"
  1798. fi
  1799. AST_CHECK_OPENH323()
  1800. AST_CHECK_PWLIB_VERSION([OpenH323], [OPENH323], [openh323buildopts.h], [1], [17], [3], [], [1], [19], [0])
  1801. AST_CHECK_OPENH323_BUILD()
  1802. PLATFORM_OPENH323="h323_${PWLIB_PLATFORM}_${OPENH323_SUFFIX}"
  1803. AST_CHECK_PWLIB_BUILD([OpenH323], [OPENH323],
  1804. [Define if your system has the OpenH323 libraries.],
  1805. [#include "ptlib.h"
  1806. #include "h323.h"
  1807. #include "h323ep.h"],
  1808. [H323EndPoint ep = H323EndPoint();],
  1809. [${PWLIB_INCLUDE}], [${PWLIB_LIB}])
  1810. fi
  1811. AST_EXT_LIB_CHECK([LUA], [lua5.1], [luaL_newstate], [lua5.1/lua.h], [-lm])
  1812. if test "x${PBX_LUA}" = "x1" ; then
  1813. if test x"${LUA_DIR}" = x; then
  1814. LUA_INCLUDE="${LUA_INCLUDE} -I/usr/include/lua5.1"
  1815. else
  1816. LUA_INCLUDE="${LUA_INCLUDE} -I${LUA_DIR}/lua5.1"
  1817. fi
  1818. fi
  1819. # Some distributions (like SuSE) remove the 5.1 suffix.
  1820. AST_EXT_LIB_CHECK([LUA], [lua], [luaL_register], [lua.h], [-lm])
  1821. AST_EXT_LIB_CHECK([RADIUS], [radiusclient-ng], [rc_read_config], [radiusclient-ng.h])
  1822. # This is a bit complex... in reality, Asterisk's AIS support is dependent on finding
  1823. # *any* implementation of AIS, not just OpenAIS. However, the configure script needs
  1824. # to know the specifics of each possible implementation, and then represent the one
  1825. # that was found as 'AIS'.
  1826. PBX_AIS=0
  1827. # OpenAIS installs its libraries into /usr/lib/openais by default, so check there
  1828. AST_EXT_LIB_CHECK([OPENAIS], [SaClm], [saClmInitialize], [openais/saClm.h], [-L/usr/lib/openais -L/usr/lib64/openais])
  1829. if test "${PBX_OPENAIS}" = 1; then
  1830. PBX_AIS=1
  1831. if test -n "${OPENAIS_DIR}"; then
  1832. AIS_INCLUDE="${OPENAIS_INCLUDE}/openais"
  1833. AIS_LIB="-lSaEvt ${OPENAIS_LIB}"
  1834. else
  1835. AIS_INCLUDE="-I/usr/include/openais"
  1836. AIS_LIB="-lSaClm -lSaEvt -L/usr/lib/openais -L/usr/lib64/openais"
  1837. fi
  1838. fi
  1839. AC_SUBST(PBX_AIS)
  1840. AC_SUBST(AIS_INCLUDE)
  1841. AC_SUBST(AIS_LIB)
  1842. AST_EXT_LIB_CHECK([SPEEX], [speex], [speex_encode], [speex/speex.h], [-lm])
  1843. # See if the main speex library contains the preprocess functions
  1844. AST_EXT_LIB_CHECK([SPEEX_PREPROCESS], [speex], [speex_preprocess_ctl], [speex/speex.h], [-lm])
  1845. if test "${PBX_SPEEX_PREPROCESS}" = 1; then
  1846. PBX_SPEEX_PREPROCESS=1
  1847. fi
  1848. AST_EXT_LIB_CHECK([SPEEXDSP], [speexdsp], [speex_preprocess_ctl], [speex/speex.h], [-lm])
  1849. if test "${PBX_SPEEXDSP}" = 1; then
  1850. PBX_SPEEX_PREPROCESS=1
  1851. fi
  1852. AC_SUBST(PBX_SPEEX_PREPROCESS)
  1853. AST_EXT_LIB_CHECK([SQLITE], [sqlite], [sqlite_exec], [sqlite.h])
  1854. AST_EXT_LIB_CHECK([SQLITE3], [sqlite3], [sqlite3_open], [sqlite3.h], [${PTHREAD_LIBS}], [${PTHREAD_CFLAGS}])
  1855. if test "${PBX_SQLITE3}" != 1; then
  1856. AC_MSG_WARN(*** Asterisk now uses SQLite3 for the internal Asterisk database.)
  1857. AC_MSG_WARN(*** Please install the SQLite3 development package.)
  1858. exit 1
  1859. fi
  1860. AST_EXT_LIB_CHECK([CRYPTO], [crypto], [AES_encrypt], [openssl/aes.h])
  1861. if test "$PBX_CRYPTO" = "1";
  1862. then
  1863. AST_EXT_LIB_CHECK([OPENSSL], [ssl], [SSL_connect], [openssl/ssl.h], [-lcrypto])
  1864. fi
  1865. if test "$PBX_OPENSSL" = "1";
  1866. then
  1867. AST_CHECK_OSPTK([3], [6], [0])
  1868. fi
  1869. AST_EXT_LIB_CHECK([SRTP], [srtp], [srtp_init], [srtp/srtp.h])
  1870. if test "$PBX_SRTP" = "1";
  1871. then
  1872. saved_libs="${LIBS}"
  1873. saved_ldflags="${LDFLAGS}"
  1874. saved_cflags="${CFLAGS}"
  1875. LIBS="${LIBS} ${SRTP_LIB}"
  1876. LDFLAGS="${LDFLAGS} -shared -fPIC"
  1877. CFLAGS="${CFLAGS} ${SRTP_INCLUDE}"
  1878. AC_MSG_CHECKING(for the ability of -lsrtp to be linked in a shared object)
  1879. AC_LINK_IFELSE(
  1880. [
  1881. AC_LANG_PROGRAM(
  1882. [#include <srtp/srtp.h>],
  1883. [srtp_init();]
  1884. )
  1885. ],
  1886. [ AC_MSG_RESULT(yes) ],
  1887. [
  1888. AC_MSG_RESULT(no)
  1889. AC_MSG_WARN(***)
  1890. AC_MSG_WARN(*** libsrtp could not be linked as a shared object.)
  1891. AC_MSG_WARN(*** Try compiling libsrtp manually. Configure libsrtp)
  1892. AC_MSG_WARN(*** with ./configure CFLAGS=-fPIC --prefix=/usr)
  1893. AC_MSG_WARN(*** replacing /usr with the prefix of your choice.)
  1894. AC_MSG_WARN(*** After re-installing libsrtp, re-run the Asterisk)
  1895. AC_MSG_WARN(*** configure script.)
  1896. AC_MSG_WARN(***)
  1897. AC_MSG_WARN(*** If you do not need SRTP support re-run configure)
  1898. AC_MSG_WARN(*** with the --without-srtp option.)
  1899. exit 1
  1900. ]
  1901. )
  1902. LIBS="${saved_libs}"
  1903. LDFLAGS="${saved_ldflags}"
  1904. CFLAGS="${saved_cflags}"
  1905. fi
  1906. AST_EXT_TOOL_CHECK([GMIME], [gmime-config], [], [], [#include <gmime/gmime.h>], [gboolean q = g_mime_check_version(0,0,0);])
  1907. if test "x${PBX_GMIME}" = "x0" -a "${PKGCONFIG}" != "No"; then
  1908. # Later versions of GMime use pkg-config
  1909. for ver in 2.0 2.2 2.4 2.6; do
  1910. if ! ${PKGCONFIG} --exists gmime-$ver; then
  1911. continue
  1912. fi
  1913. # If we got here, we have this version:
  1914. GMIME_INCLUDE=$(${PKGCONFIG} gmime-$ver --cflags 2>/dev/null)
  1915. GMIME_LIB=$(${PKGCONFIG} gmime-$ver --libs)
  1916. PBX_GMIME=1
  1917. AC_DEFINE([HAVE_GMIME], 1, [Define if your system has the GMIME libraries.])
  1918. break;
  1919. done
  1920. fi
  1921. AST_EXT_LIB_CHECK([HOARD], [hoard], [malloc], [])
  1922. AST_EXT_LIB_CHECK([FREETDS], [sybdb], [dbinit], [sybdb.h])
  1923. AC_CHECK_LIB([tonezone], [tone_zone_find_by_num], tonezone_does_not_need_lm=yes, tonezone_does_not_need_lm=no)
  1924. if test "${tonezone_does_not_need_lm}" = "no" ; then
  1925. tonezone_extra="-lm"
  1926. fi
  1927. AST_EXT_LIB_CHECK([TONEZONE], [tonezone], [tone_zone_find], [dahdi/tonezone.h], [${tonezone_extra} ${DAHDI_INCLUDE}])
  1928. if test "${OSARCH}" = "OpenBSD";
  1929. then
  1930. AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -lvorbisfile -logg])
  1931. else
  1932. AST_EXT_LIB_CHECK([VORBIS], [vorbis], [vorbis_info_init], [vorbis/codec.h], [-lm -lvorbisenc -lvorbisfile])
  1933. fi
  1934. AST_C_DECLARE_CHECK([VORBIS_OPEN_CALLBACKS], [OV_CALLBACKS_NOCLOSE], [vorbis/vorbisfile.h])
  1935. AC_LANG_PUSH(C++)
  1936. if test "${USE_VPB}" != "no"; then
  1937. AC_MSG_CHECKING(for vpb_open in -lvpb)
  1938. saved_libs="${LIBS}"
  1939. saved_cppflags="${CPPFLAGS}"
  1940. if test "x${VPB_DIR}" != "x"; then
  1941. if test -d ${VPB_DIR}/lib; then
  1942. vpblibdir=${VPB_DIR}/lib
  1943. else
  1944. vpblibdir=${VPB_DIR}
  1945. fi
  1946. LIBS="${LIBS} -L${vpblibdir}"
  1947. CPPFLAGS="${CPPFLAGS} -I${VPB_DIR}/include"
  1948. fi
  1949. LIBS="${PTHREAD_LIBS} ${LIBS} -lvpb"
  1950. CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS}"
  1951. AC_LINK_IFELSE(
  1952. [
  1953. AC_LANG_PROGRAM(
  1954. [#include <vpbapi.h>],
  1955. [int q = vpb_open(0,0);])
  1956. ],
  1957. [ AC_MSG_RESULT(yes)
  1958. ac_cv_lib_vpb_vpb_open="yes"
  1959. ],
  1960. [ AC_MSG_RESULT(no)
  1961. ac_cv_lib_vpb_vpb_open="no"
  1962. ]
  1963. )
  1964. LIBS="${saved_libs}"
  1965. CPPFLAGS="${saved_cppflags}"
  1966. if test "${ac_cv_lib_vpb_vpb_open}" = "yes"; then
  1967. VPB_LIB="-lvpb"
  1968. if test "${VPB_DIR}" != ""; then
  1969. VPB_LIB="-L${vpblibdir} ${VPB_LIB}"
  1970. VPB_INCLUDE="-I${VPB_DIR}/include"
  1971. fi
  1972. PBX_VPB=1
  1973. AC_DEFINE([HAVE_VPB], 1, [Define if your system has the VoiceTronix API libraries.])
  1974. fi
  1975. fi
  1976. AC_LANG_POP
  1977. AST_EXT_LIB_CHECK([ZLIB], [z], [compress], [zlib.h])
  1978. if test "x${PBX_UNIXODBC}" = "x1" -o "x${PBX_IODBC}" = "x1"; then
  1979. # Does ODBC support wide characters?
  1980. AC_MSG_CHECKING(whether ODBC has support for Unicode types)
  1981. AC_LINK_IFELSE(
  1982. [AC_LANG_PROGRAM(
  1983. [#include <sql.h>
  1984. #include <sqlext.h>],
  1985. [int foo = SQL_WCHAR])],
  1986. AC_MSG_RESULT(yes)
  1987. AC_DEFINE([HAVE_ODBC_WCHAR], [1], [Define to 1 if your ODBC library has wide (Unicode) types.]),
  1988. AC_MSG_RESULT(no)
  1989. )
  1990. fi
  1991. AC_CHECK_HEADER([h323.h], [PBX_H323=1], [PBX_H323=0])
  1992. AC_SUBST(PBX_H323)
  1993. AC_CHECK_HEADER([linux/compiler.h],
  1994. [AC_DEFINE_UNQUOTED([HAVE_LINUX_COMPILER_H], 1, [Define to 1 if your system has linux/compiler.h.])])
  1995. AC_CHECK_HEADER([linux/ixjuser.h], [PBX_IXJUSER=1], [PBX_IXJUSER=0], [
  1996. #include <linux/version.h>
  1997. #ifdef HAVE_LINUX_COMPILER_H
  1998. #include <linux/compiler.h>
  1999. #endif
  2000. ])
  2001. AC_SUBST(PBX_IXJUSER)
  2002. # Used in res/res_pktccops
  2003. AST_C_DEFINE_CHECK([MSG_NOSIGNAL], [MSG_NOSIGNAL], [sys/socket.h])
  2004. AST_C_DEFINE_CHECK([SO_NOSIGPIPE], [SO_NOSIGPIPE], [sys/socket.h])
  2005. AST_EXT_TOOL_CHECK([SDL], [sdl-config])
  2006. AST_EXT_LIB_CHECK([SDL_IMAGE], [SDL_image], [IMG_Load], [SDL_image.h], [${SDL_LIB}], [${SDL_INCLUDE}])
  2007. AST_EXT_LIB_CHECK([FFMPEG], [avcodec], [sws_getContext], [ffmpeg/avcodec.h], [${PTHREAD_LIBS} -lz -lm], [${PTHREAD_CFLAGS}])
  2008. # possible places for video4linux version 1
  2009. AC_CHECK_HEADER([linux/videodev.h],
  2010. [AC_DEFINE_UNQUOTED([HAVE_VIDEODEV_H], 1, [Define to 1 if your system has linux/videodev.h.])])
  2011. # possible places for X11
  2012. AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],,, [standard_path])
  2013. AST_EXT_LIB_CHECK([X11], [X11], [XOpenDisplay], [X11/Xlib.h],, [-I/usr/X11R6/include], [X11R6])
  2014. PBX_LAUNCHD=0
  2015. if test "${cross_compiling}" = "no";
  2016. then
  2017. AC_CHECK_FILE(/sbin/launchd, AC_DEFINE([HAVE_SBIN_LAUNCHD], 1, [Define to 1 if your system has /sbin/launchd.]))
  2018. PBX_LAUNCHD=1
  2019. fi
  2020. AC_SUBST(PBX_LAUNCHD)
  2021. PBX_GTK2=0
  2022. if test "${PKGCONFIG}" != "No"; then
  2023. GTK2_INCLUDE=$(${PKGCONFIG} gtk+-2.0 --cflags 2>/dev/null)
  2024. GTK2_LIB=$(${PKGCONFIG} gtk+-2.0 --libs)
  2025. PBX_GTK2=1
  2026. AC_DEFINE([HAVE_GTK2], 1, [Define if your system has the GTK2 libraries.])
  2027. fi
  2028. AC_SUBST(PBX_GTK2)
  2029. AC_SUBST(GTK2_INCLUDE)
  2030. AC_SUBST(GTK2_LIB)
  2031. # build a GENERIC_ODBC result based on the presence of either UnixODBC (preferred)
  2032. # or iODBC
  2033. PBX_GENERIC_ODBC=0
  2034. if test "${PBX_UNIXODBC}" = 1; then
  2035. PBX_GENERIC_ODBC=1
  2036. GENERIC_ODBC_LIB="${UNIXODBC_LIB}"
  2037. GENERIC_ODBC_INCLUDE="${UNIXODBC_INCLUDE}"
  2038. elif test "${PBX_IODBC}" = 1; then
  2039. PBX_GENERIC_ODBC=1
  2040. GENERIC_ODBC_LIB="${IODBC_LIB}"
  2041. GENERIC_ODBC_INCLUDE="${IODBC_INCLUDE}"
  2042. fi
  2043. AC_SUBST([GENERIC_ODBC_LIB])
  2044. AC_SUBST([GENERIC_ODBC_INCLUDE])
  2045. AC_SUBST([PBX_GENERIC_ODBC])
  2046. PBX_SYSLOG=0
  2047. if test "${ac_cv_header_syslog_h}" = "yes"; then
  2048. # syslog facilities
  2049. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTH], [LOG_AUTH], [syslog.h])
  2050. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_AUTHPRIV], [LOG_AUTHPRIV], [syslog.h])
  2051. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_CRON], [LOG_CRON], [syslog.h])
  2052. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_DAEMON], [LOG_DAEMON], [syslog.h])
  2053. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_FTP], [LOG_FTP], [syslog.h])
  2054. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_KERN], [LOG_KERN], [syslog.h])
  2055. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_LPR], [LOG_LPR], [syslog.h])
  2056. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_MAIL], [LOG_MAIL], [syslog.h])
  2057. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_NEWS], [LOG_NEWS], [syslog.h])
  2058. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_SYSLOG], [LOG_SYSLOG], [syslog.h])
  2059. AST_C_DEFINE_CHECK([SYSLOG_FACILITY_LOG_UUCP], [LOG_UUCP], [syslog.h])
  2060. PBX_SYSLOG=1
  2061. fi
  2062. AC_SUBST([PBX_SYSLOG])
  2063. if test -f makeopts; then
  2064. ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak
  2065. else
  2066. touch makeopts.acbak
  2067. fi
  2068. AC_CONFIG_FILES([build_tools/menuselect-deps makeopts channels/h323/Makefile])
  2069. AST_CHECK_MANDATORY
  2070. if test -f build_tools/menuselect-deps; then
  2071. # extract old values of all PBX_ variables from menuselect-deps
  2072. # and preserve them so that menuselect can determine whether
  2073. # any previously-met dependencies are no longer met and warn
  2074. # the user appropriately
  2075. while IFS="=:" read var val old_val; do
  2076. eval "PBX_${var}=\${PBX_${var}}:${val}"
  2077. done < build_tools/menuselect-deps
  2078. fi
  2079. AC_OUTPUT
  2080. ${ac_cv_path_EGREP} 'CURSES|GTK2|OSARCH|NEWT' makeopts > makeopts.acbak2
  2081. if test "x${ac_cv_path_CMP}" = "x:"; then
  2082. ( cd `pwd`/menuselect && ./configure )
  2083. else if ${ac_cv_path_CMP} -s makeopts.acbak makeopts.acbak2; then : ; else
  2084. ( cd `pwd`/menuselect && ./configure )
  2085. fi ; fi
  2086. rm makeopts.acbak makeopts.acbak2
  2087. if test "x${silent}" != "xyes" ; then
  2088. echo
  2089. echo " .\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$=.. "
  2090. echo " .\$7\$7.. .7\$\$7:. "
  2091. echo " .\$\$:. ,\$7.7 "
  2092. echo " .\$7. 7\$\$\$\$ .\$\$77 "
  2093. echo " ..\$\$. \$\$\$\$\$ .\$\$\$7 "
  2094. echo " ..7\$ .?. \$\$\$\$\$ .?. 7\$\$\$."
  2095. echo " \$.\$. .\$\$\$7. \$\$\$\$7 .7\$\$\$. .\$\$\$."
  2096. echo " .777. .\$\$\$\$\$\$77\$\$\$77\$\$\$\$\$7. \$\$\$,"
  2097. echo " \$\$\$~ .7\$\$\$\$\$\$\$\$\$\$\$\$\$7. .\$\$\$."
  2098. echo ".\$\$7 .7\$\$\$\$\$\$\$7: ?\$\$\$."
  2099. echo "\$\$\$ ?7\$\$\$\$\$\$\$\$\$\$I .\$\$\$7 "
  2100. echo "\$\$\$ .7\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$ :\$\$\$. "
  2101. echo "\$\$\$ \$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$\$\$\$ .\$\$\$. "
  2102. echo "\$\$\$ \$\$\$ 7\$\$\$7 .\$\$\$ .\$\$\$. "
  2103. echo "\$\$\$\$ \$\$\$\$7 .\$\$\$. "
  2104. echo "7\$\$\$7 7\$\$\$\$ 7\$\$\$ "
  2105. echo " \$\$\$\$\$ \$\$\$ "
  2106. echo " \$\$\$\$7. \$\$ (TM) "
  2107. echo " \$\$\$\$\$\$\$. .7\$\$\$\$\$\$ \$\$ "
  2108. echo " \$\$\$\$\$\$\$\$\$\$\$\$7\$\$\$\$\$\$\$\$\$.\$\$\$\$\$\$ "
  2109. echo " \$\$\$\$\$\$\$\$\$\$\$\$\$\$\$\$. "
  2110. echo
  2111. fi
  2112. AC_MSG_NOTICE(Package configured for: )
  2113. AC_MSG_NOTICE( OS type : $host_os)
  2114. AC_MSG_NOTICE( Host CPU : $host_cpu)
  2115. AC_MSG_NOTICE( build-cpu:vendor:os: $build_cpu : $build_vendor : $build_os :)
  2116. AC_MSG_NOTICE( host-cpu:vendor:os: $host_cpu : $host_vendor : $host_os :)
  2117. if test "${cross_compiling}" = "yes"; then
  2118. AC_MSG_NOTICE( Cross Compilation = YES)
  2119. fi