curl-confopts.m4 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 1998 - 2021, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. #
  10. # This software is licensed as described in the file COPYING, which
  11. # you should have received as part of this distribution. The terms
  12. # are also available at https://curl.se/docs/copyright.html.
  13. #
  14. # You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. # copies of the Software, and permit persons to whom the Software is
  16. # furnished to do so, under the terms of the COPYING file.
  17. #
  18. # This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. # KIND, either express or implied.
  20. #
  21. #***************************************************************************
  22. # File version for 'aclocal' use. Keep it a single number.
  23. # serial 19
  24. dnl CURL_CHECK_OPTION_THREADED_RESOLVER
  25. dnl -------------------------------------------------
  26. dnl Verify if configure has been invoked with option
  27. dnl --enable-threaded-resolver or --disable-threaded-resolver, and
  28. dnl set shell variable want_thres as appropriate.
  29. AC_DEFUN([CURL_CHECK_OPTION_THREADED_RESOLVER], [
  30. AC_MSG_CHECKING([whether to enable the threaded resolver])
  31. OPT_THRES="default"
  32. AC_ARG_ENABLE(threaded_resolver,
  33. AS_HELP_STRING([--enable-threaded-resolver],[Enable threaded resolver])
  34. AS_HELP_STRING([--disable-threaded-resolver],[Disable threaded resolver]),
  35. OPT_THRES=$enableval)
  36. case "$OPT_THRES" in
  37. no)
  38. dnl --disable-threaded-resolver option used
  39. want_thres="no"
  40. ;;
  41. *)
  42. dnl configure option not specified
  43. want_thres="yes"
  44. ;;
  45. esac
  46. AC_MSG_RESULT([$want_thres])
  47. ])
  48. dnl CURL_CHECK_OPTION_ARES
  49. dnl -------------------------------------------------
  50. dnl Verify if configure has been invoked with option
  51. dnl --enable-ares or --disable-ares, and
  52. dnl set shell variable want_ares as appropriate.
  53. AC_DEFUN([CURL_CHECK_OPTION_ARES], [
  54. dnl AC_BEFORE([$0],[CURL_CHECK_OPTION_THREADS])dnl
  55. AC_BEFORE([$0],[CURL_CHECK_LIB_ARES])dnl
  56. AC_MSG_CHECKING([whether to enable c-ares for DNS lookups])
  57. OPT_ARES="default"
  58. AC_ARG_ENABLE(ares,
  59. AS_HELP_STRING([--enable-ares@<:@=PATH@:>@],[Enable c-ares for DNS lookups])
  60. AS_HELP_STRING([--disable-ares],[Disable c-ares for DNS lookups]),
  61. OPT_ARES=$enableval)
  62. case "$OPT_ARES" in
  63. no)
  64. dnl --disable-ares option used
  65. want_ares="no"
  66. ;;
  67. default)
  68. dnl configure option not specified
  69. want_ares="no"
  70. ;;
  71. *)
  72. dnl --enable-ares option used
  73. want_ares="yes"
  74. if test -n "$enableval" && test "$enableval" != "yes"; then
  75. want_ares_path="$enableval"
  76. fi
  77. ;;
  78. esac
  79. AC_MSG_RESULT([$want_ares])
  80. ])
  81. dnl CURL_CHECK_OPTION_CURLDEBUG
  82. dnl -------------------------------------------------
  83. dnl Verify if configure has been invoked with option
  84. dnl --enable-curldebug or --disable-curldebug, and set
  85. dnl shell variable want_curldebug value as appropriate.
  86. AC_DEFUN([CURL_CHECK_OPTION_CURLDEBUG], [
  87. AC_BEFORE([$0],[CURL_CHECK_CURLDEBUG])dnl
  88. AC_MSG_CHECKING([whether to enable curl debug memory tracking])
  89. OPT_CURLDEBUG_BUILD="default"
  90. AC_ARG_ENABLE(curldebug,
  91. AS_HELP_STRING([--enable-curldebug],[Enable curl debug memory tracking])
  92. AS_HELP_STRING([--disable-curldebug],[Disable curl debug memory tracking]),
  93. OPT_CURLDEBUG_BUILD=$enableval)
  94. case "$OPT_CURLDEBUG_BUILD" in
  95. no)
  96. dnl --disable-curldebug option used
  97. want_curldebug="no"
  98. AC_MSG_RESULT([no])
  99. ;;
  100. default)
  101. dnl configure's curldebug option not specified. Initially we will
  102. dnl handle this as a request to use the same setting as option
  103. dnl --enable-debug. IOW, initially, for debug-enabled builds
  104. dnl this will be handled as a request to enable curldebug if
  105. dnl possible, and for debug-disabled builds this will be handled
  106. dnl as a request to disable curldebug.
  107. if test "$want_debug" = "yes"; then
  108. AC_MSG_RESULT([(assumed) yes])
  109. AC_DEFINE(CURLDEBUG, 1, [to enable curl debug memory tracking])
  110. else
  111. AC_MSG_RESULT([no])
  112. fi
  113. want_curldebug_assumed="yes"
  114. want_curldebug="$want_debug"
  115. ;;
  116. *)
  117. dnl --enable-curldebug option used.
  118. dnl The use of this option value is a request to enable curl's
  119. dnl debug memory tracking for the libcurl library. This can only
  120. dnl be done when some requisites are simultaneously satisfied.
  121. dnl Later on, these requisites are verified and if they are not
  122. dnl fully satisfied the option will be ignored and act as if
  123. dnl --disable-curldebug had been given setting shell variable
  124. dnl want_curldebug to 'no'.
  125. want_curldebug="yes"
  126. AC_DEFINE(CURLDEBUG, 1, [to enable curl debug memory tracking])
  127. AC_MSG_RESULT([yes])
  128. ;;
  129. esac
  130. ])
  131. dnl CURL_CHECK_OPTION_DEBUG
  132. dnl -------------------------------------------------
  133. dnl Verify if configure has been invoked with option
  134. dnl --enable-debug or --disable-debug, and set shell
  135. dnl variable want_debug value as appropriate.
  136. AC_DEFUN([CURL_CHECK_OPTION_DEBUG], [
  137. AC_BEFORE([$0],[CURL_CHECK_OPTION_WARNINGS])dnl
  138. AC_BEFORE([$0],[CURL_CHECK_OPTION_CURLDEBUG])dnl
  139. AC_BEFORE([$0],[XC_CHECK_PROG_CC])dnl
  140. AC_MSG_CHECKING([whether to enable debug build options])
  141. OPT_DEBUG_BUILD="default"
  142. AC_ARG_ENABLE(debug,
  143. AS_HELP_STRING([--enable-debug],[Enable debug build options])
  144. AS_HELP_STRING([--disable-debug],[Disable debug build options]),
  145. OPT_DEBUG_BUILD=$enableval)
  146. case "$OPT_DEBUG_BUILD" in
  147. no)
  148. dnl --disable-debug option used
  149. want_debug="no"
  150. ;;
  151. default)
  152. dnl configure option not specified
  153. want_debug="no"
  154. ;;
  155. *)
  156. dnl --enable-debug option used
  157. want_debug="yes"
  158. AC_DEFINE(DEBUGBUILD, 1, [enable debug build options])
  159. ;;
  160. esac
  161. AC_MSG_RESULT([$want_debug])
  162. ])
  163. dnl CURL_CHECK_OPTION_OPTIMIZE
  164. dnl -------------------------------------------------
  165. dnl Verify if configure has been invoked with option
  166. dnl --enable-optimize or --disable-optimize, and set
  167. dnl shell variable want_optimize value as appropriate.
  168. AC_DEFUN([CURL_CHECK_OPTION_OPTIMIZE], [
  169. AC_REQUIRE([CURL_CHECK_OPTION_DEBUG])dnl
  170. AC_BEFORE([$0],[XC_CHECK_PROG_CC])dnl
  171. AC_MSG_CHECKING([whether to enable compiler optimizer])
  172. OPT_COMPILER_OPTIMIZE="default"
  173. AC_ARG_ENABLE(optimize,
  174. AS_HELP_STRING([--enable-optimize],[Enable compiler optimizations])
  175. AS_HELP_STRING([--disable-optimize],[Disable compiler optimizations]),
  176. OPT_COMPILER_OPTIMIZE=$enableval)
  177. case "$OPT_COMPILER_OPTIMIZE" in
  178. no)
  179. dnl --disable-optimize option used. We will handle this as
  180. dnl a request to disable compiler optimizations if possible.
  181. dnl If the compiler is known CFLAGS and CPPFLAGS will be
  182. dnl overridden, otherwise this can not be honored.
  183. want_optimize="no"
  184. AC_MSG_RESULT([no])
  185. ;;
  186. default)
  187. dnl configure's optimize option not specified. Initially we will
  188. dnl handle this as a request contrary to configure's setting
  189. dnl for --enable-debug. IOW, initially, for debug-enabled builds
  190. dnl this will be handled as a request to disable optimizations if
  191. dnl possible, and for debug-disabled builds this will be handled
  192. dnl initially as a request to enable optimizations if possible.
  193. dnl Finally, if the compiler is known and CFLAGS and CPPFLAGS do
  194. dnl not have any optimizer flag the request will be honored, in
  195. dnl any other case the request can not be honored.
  196. dnl IOW, existing optimizer flags defined in CFLAGS or CPPFLAGS
  197. dnl will always take precedence over any initial assumption.
  198. if test "$want_debug" = "yes"; then
  199. want_optimize="assume_no"
  200. AC_MSG_RESULT([(assumed) no])
  201. else
  202. want_optimize="assume_yes"
  203. AC_MSG_RESULT([(assumed) yes])
  204. fi
  205. ;;
  206. *)
  207. dnl --enable-optimize option used. We will handle this as
  208. dnl a request to enable compiler optimizations if possible.
  209. dnl If the compiler is known CFLAGS and CPPFLAGS will be
  210. dnl overridden, otherwise this can not be honored.
  211. want_optimize="yes"
  212. AC_MSG_RESULT([yes])
  213. ;;
  214. esac
  215. ])
  216. dnl CURL_CHECK_OPTION_SYMBOL_HIDING
  217. dnl -------------------------------------------------
  218. dnl Verify if configure has been invoked with option
  219. dnl --enable-symbol-hiding or --disable-symbol-hiding,
  220. dnl setting shell variable want_symbol_hiding value.
  221. AC_DEFUN([CURL_CHECK_OPTION_SYMBOL_HIDING], [
  222. AC_BEFORE([$0],[CURL_CHECK_COMPILER_SYMBOL_HIDING])dnl
  223. AC_MSG_CHECKING([whether to enable hiding of library internal symbols])
  224. OPT_SYMBOL_HIDING="default"
  225. AC_ARG_ENABLE(symbol-hiding,
  226. AS_HELP_STRING([--enable-symbol-hiding],[Enable hiding of library internal symbols])
  227. AS_HELP_STRING([--disable-symbol-hiding],[Disable hiding of library internal symbols]),
  228. OPT_SYMBOL_HIDING=$enableval)
  229. AC_ARG_ENABLE(hidden-symbols,
  230. AS_HELP_STRING([--enable-hidden-symbols],[To be deprecated, use --enable-symbol-hiding])
  231. AS_HELP_STRING([--disable-hidden-symbols],[To be deprecated, use --disable-symbol-hiding]),
  232. OPT_SYMBOL_HIDING=$enableval)
  233. case "$OPT_SYMBOL_HIDING" in
  234. no)
  235. dnl --disable-symbol-hiding option used.
  236. dnl This is an indication to not attempt hiding of library internal
  237. dnl symbols. Default symbol visibility will be used, which normally
  238. dnl exposes all library internal symbols.
  239. want_symbol_hiding="no"
  240. AC_MSG_RESULT([no])
  241. ;;
  242. default)
  243. dnl configure's symbol-hiding option not specified.
  244. dnl Handle this as if --enable-symbol-hiding option was given.
  245. want_symbol_hiding="yes"
  246. AC_MSG_RESULT([yes])
  247. ;;
  248. *)
  249. dnl --enable-symbol-hiding option used.
  250. dnl This is an indication to attempt hiding of library internal
  251. dnl symbols. This is only supported on some compilers/linkers.
  252. want_symbol_hiding="yes"
  253. AC_MSG_RESULT([yes])
  254. ;;
  255. esac
  256. ])
  257. dnl CURL_CHECK_OPTION_THREADS
  258. dnl -------------------------------------------------
  259. dnl Verify if configure has been invoked with option
  260. dnl --enable-threads or --disable-threads, and
  261. dnl set shell variable want_threads as appropriate.
  262. dnl AC_DEFUN([CURL_CHECK_OPTION_THREADS], [
  263. dnl AC_BEFORE([$0],[CURL_CHECK_LIB_THREADS])dnl
  264. dnl AC_MSG_CHECKING([whether to enable threads for DNS lookups])
  265. dnl OPT_THREADS="default"
  266. dnl AC_ARG_ENABLE(threads,
  267. dnl AS_HELP_STRING([--enable-threads@<:@=PATH@:>@],[Enable threads for DNS lookups])
  268. dnl AS_HELP_STRING([--disable-threads],[Disable threads for DNS lookups]),
  269. dnl OPT_THREADS=$enableval)
  270. dnl case "$OPT_THREADS" in
  271. dnl no)
  272. dnl dnl --disable-threads option used
  273. dnl want_threads="no"
  274. dnl AC_MSG_RESULT([no])
  275. dnl ;;
  276. dnl default)
  277. dnl dnl configure option not specified
  278. dnl want_threads="no"
  279. dnl AC_MSG_RESULT([(assumed) no])
  280. dnl ;;
  281. dnl *)
  282. dnl dnl --enable-threads option used
  283. dnl want_threads="yes"
  284. dnl want_threads_path="$enableval"
  285. dnl AC_MSG_RESULT([yes])
  286. dnl ;;
  287. dnl esac
  288. dnl #
  289. dnl if test "$want_ares" = "assume_yes"; then
  290. dnl if test "$want_threads" = "yes"; then
  291. dnl AC_MSG_CHECKING([whether to ignore c-ares enabling assumed setting])
  292. dnl AC_MSG_RESULT([yes])
  293. dnl want_ares="no"
  294. dnl else
  295. dnl want_ares="yes"
  296. dnl fi
  297. dnl fi
  298. dnl if test "$want_threads" = "yes" && test "$want_ares" = "yes"; then
  299. dnl AC_MSG_ERROR([options --enable-ares and --enable-threads are mutually exclusive, at most one may be enabled.])
  300. dnl fi
  301. dnl ])
  302. dnl CURL_CHECK_OPTION_RT
  303. dnl -------------------------------------------------
  304. dnl Verify if configure has been invoked with option
  305. dnl --disable-rt and set shell variable dontwant_rt
  306. dnl as appropriate.
  307. AC_DEFUN([CURL_CHECK_OPTION_RT], [
  308. AC_BEFORE([$0], [CURL_CHECK_LIB_THREADS])dnl
  309. AC_MSG_CHECKING([whether to disable dependency on -lrt])
  310. OPT_RT="default"
  311. AC_ARG_ENABLE(rt,
  312. AS_HELP_STRING([--disable-rt],[disable dependency on -lrt]),
  313. OPT_RT=$enableval)
  314. case "$OPT_RT" in
  315. no)
  316. dnl --disable-rt used (reverse logic)
  317. dontwant_rt="yes"
  318. AC_MSG_RESULT([yes])
  319. ;;
  320. default)
  321. dnl configure option not specified (so not disabled)
  322. dontwant_rt="no"
  323. AC_MSG_RESULT([(assumed no)])
  324. ;;
  325. *)
  326. dnl --enable-rt option used (reverse logic)
  327. dontwant_rt="no"
  328. AC_MSG_RESULT([no])
  329. ;;
  330. esac
  331. ])
  332. dnl CURL_CHECK_OPTION_WARNINGS
  333. dnl -------------------------------------------------
  334. dnl Verify if configure has been invoked with option
  335. dnl --enable-warnings or --disable-warnings, and set
  336. dnl shell variable want_warnings as appropriate.
  337. AC_DEFUN([CURL_CHECK_OPTION_WARNINGS], [
  338. AC_REQUIRE([CURL_CHECK_OPTION_DEBUG])dnl
  339. AC_BEFORE([$0],[CURL_CHECK_OPTION_WERROR])dnl
  340. AC_BEFORE([$0],[XC_CHECK_PROG_CC])dnl
  341. AC_MSG_CHECKING([whether to enable strict compiler warnings])
  342. OPT_COMPILER_WARNINGS="default"
  343. AC_ARG_ENABLE(warnings,
  344. AS_HELP_STRING([--enable-warnings],[Enable strict compiler warnings])
  345. AS_HELP_STRING([--disable-warnings],[Disable strict compiler warnings]),
  346. OPT_COMPILER_WARNINGS=$enableval)
  347. case "$OPT_COMPILER_WARNINGS" in
  348. no)
  349. dnl --disable-warnings option used
  350. want_warnings="no"
  351. ;;
  352. default)
  353. dnl configure option not specified, so
  354. dnl use same setting as --enable-debug
  355. want_warnings="$want_debug"
  356. ;;
  357. *)
  358. dnl --enable-warnings option used
  359. want_warnings="yes"
  360. ;;
  361. esac
  362. AC_MSG_RESULT([$want_warnings])
  363. ])
  364. dnl CURL_CHECK_OPTION_WERROR
  365. dnl -------------------------------------------------
  366. dnl Verify if configure has been invoked with option
  367. dnl --enable-werror or --disable-werror, and set
  368. dnl shell variable want_werror as appropriate.
  369. AC_DEFUN([CURL_CHECK_OPTION_WERROR], [
  370. AC_BEFORE([$0],[CURL_CHECK_COMPILER])dnl
  371. AC_MSG_CHECKING([whether to enable compiler warnings as errors])
  372. OPT_COMPILER_WERROR="default"
  373. AC_ARG_ENABLE(werror,
  374. AS_HELP_STRING([--enable-werror],[Enable compiler warnings as errors])
  375. AS_HELP_STRING([--disable-werror],[Disable compiler warnings as errors]),
  376. OPT_COMPILER_WERROR=$enableval)
  377. case "$OPT_COMPILER_WERROR" in
  378. no)
  379. dnl --disable-werror option used
  380. want_werror="no"
  381. ;;
  382. default)
  383. dnl configure option not specified
  384. want_werror="no"
  385. ;;
  386. *)
  387. dnl --enable-werror option used
  388. want_werror="yes"
  389. ;;
  390. esac
  391. AC_MSG_RESULT([$want_werror])
  392. ])
  393. dnl CURL_CHECK_NONBLOCKING_SOCKET
  394. dnl -------------------------------------------------
  395. dnl Check for how to set a socket into non-blocking state.
  396. AC_DEFUN([CURL_CHECK_NONBLOCKING_SOCKET], [
  397. AC_REQUIRE([CURL_CHECK_FUNC_FCNTL])dnl
  398. AC_REQUIRE([CURL_CHECK_FUNC_IOCTL])dnl
  399. AC_REQUIRE([CURL_CHECK_FUNC_IOCTLSOCKET])dnl
  400. AC_REQUIRE([CURL_CHECK_FUNC_IOCTLSOCKET_CAMEL])dnl
  401. AC_REQUIRE([CURL_CHECK_FUNC_SETSOCKOPT])dnl
  402. #
  403. tst_method="unknown"
  404. AC_MSG_CHECKING([how to set a socket into non-blocking mode])
  405. if test "x$curl_cv_func_fcntl_o_nonblock" = "xyes"; then
  406. tst_method="fcntl O_NONBLOCK"
  407. elif test "x$curl_cv_func_ioctl_fionbio" = "xyes"; then
  408. tst_method="ioctl FIONBIO"
  409. elif test "x$curl_cv_func_ioctlsocket_fionbio" = "xyes"; then
  410. tst_method="ioctlsocket FIONBIO"
  411. elif test "x$curl_cv_func_ioctlsocket_camel_fionbio" = "xyes"; then
  412. tst_method="IoctlSocket FIONBIO"
  413. elif test "x$curl_cv_func_setsockopt_so_nonblock" = "xyes"; then
  414. tst_method="setsockopt SO_NONBLOCK"
  415. fi
  416. AC_MSG_RESULT([$tst_method])
  417. if test "$tst_method" = "unknown"; then
  418. AC_MSG_WARN([cannot determine non-blocking socket method.])
  419. fi
  420. ])
  421. dnl CURL_CONFIGURE_SYMBOL_HIDING
  422. dnl -------------------------------------------------
  423. dnl Depending on --enable-symbol-hiding or --disable-symbol-hiding
  424. dnl configure option, and compiler capability to actually honor such
  425. dnl option, this will modify compiler flags as appropriate and also
  426. dnl provide needed definitions for configuration and Makefile.am files.
  427. dnl This macro should not be used until all compilation tests have
  428. dnl been done to prevent interferences on other tests.
  429. AC_DEFUN([CURL_CONFIGURE_SYMBOL_HIDING], [
  430. AC_MSG_CHECKING([whether hiding of library internal symbols will actually happen])
  431. CFLAG_CURL_SYMBOL_HIDING=""
  432. doing_symbol_hiding="no"
  433. if test x"$curl_cv_native_windows" != "xyes" &&
  434. test "$want_symbol_hiding" = "yes" &&
  435. test "$supports_symbol_hiding" = "yes"; then
  436. doing_symbol_hiding="yes"
  437. CFLAG_CURL_SYMBOL_HIDING="$symbol_hiding_CFLAGS"
  438. AC_DEFINE_UNQUOTED(CURL_EXTERN_SYMBOL, $symbol_hiding_EXTERN,
  439. [Definition to make a library symbol externally visible.])
  440. AC_MSG_RESULT([yes])
  441. else
  442. AC_MSG_RESULT([no])
  443. fi
  444. AM_CONDITIONAL(DOING_CURL_SYMBOL_HIDING, test x$doing_symbol_hiding = xyes)
  445. AC_SUBST(CFLAG_CURL_SYMBOL_HIDING)
  446. ])
  447. dnl CURL_CHECK_LIB_ARES
  448. dnl -------------------------------------------------
  449. dnl When c-ares library support has been requested,
  450. dnl performs necessary checks and adjustsments needed
  451. dnl to enable support of this library.
  452. AC_DEFUN([CURL_CHECK_LIB_ARES], [
  453. #
  454. if test "$want_ares" = "yes"; then
  455. dnl c-ares library support has been requested
  456. clean_CPPFLAGS="$CPPFLAGS"
  457. clean_LDFLAGS="$LDFLAGS"
  458. clean_LIBS="$LIBS"
  459. embedded_ares="unknown"
  460. configure_runpath=`pwd`
  461. embedded_ares_builddir="$configure_runpath/ares"
  462. if test -n "$want_ares_path"; then
  463. dnl c-ares library path has been specified
  464. ARES_PCDIR="$want_ares_path/lib/pkgconfig"
  465. CURL_CHECK_PKGCONFIG(libcares, [$ARES_PCDIR])
  466. if test "$PKGCONFIG" != "no" ; then
  467. ares_LIBS=`CURL_EXPORT_PCDIR([$ARES_PCDIR])
  468. $PKGCONFIG --libs-only-l libcares`
  469. ares_LDFLAGS=`CURL_EXPORT_PCDIR([$ARES_PCDIR])
  470. $PKGCONFIG --libs-only-L libcares`
  471. ares_CPPFLAGS=`CURL_EXPORT_PCDIR([$ARES_PCDIR])
  472. $PKGCONFIG --cflags-only-I libcares`
  473. AC_MSG_NOTICE([pkg-config: ares LIBS: "$ares_LIBS"])
  474. AC_MSG_NOTICE([pkg-config: ares LDFLAGS: "$ares_LDFLAGS"])
  475. AC_MSG_NOTICE([pkg-config: ares CPPFLAGS: "$ares_CPPFLAGS"])
  476. else
  477. dnl ... path without pkg-config
  478. ares_CPPFLAGS="-I$want_ares_path/include"
  479. ares_LDFLAGS="-L$want_ares_path/lib"
  480. ares_LIBS="-lcares"
  481. fi
  482. else
  483. dnl c-ares library path has not been given
  484. if test -d "$srcdir/ares"; then
  485. dnl c-ares sources embedded in curl tree
  486. embedded_ares="yes"
  487. AC_CONFIG_SUBDIRS(ares)
  488. dnl c-ares has installable configured header files, path
  489. dnl inclusion fully done in makefiles for in-tree builds.
  490. ares_CPPFLAGS=""
  491. ares_LDFLAGS="-L$embedded_ares_builddir"
  492. ares_LIBS="-lcares"
  493. else
  494. dnl c-ares path not specified, use defaults
  495. CURL_CHECK_PKGCONFIG(libcares)
  496. if test "$PKGCONFIG" != "no" ; then
  497. ares_LIBS=`$PKGCONFIG --libs-only-l libcares`
  498. ares_LDFLAGS=`$PKGCONFIG --libs-only-L libcares`
  499. ares_CPPFLAGS=`$PKGCONFIG --cflags-only-I libcares`
  500. AC_MSG_NOTICE([pkg-config: ares_LIBS: "$ares_LIBS"])
  501. AC_MSG_NOTICE([pkg-config: ares_LDFLAGS: "$ares_LDFLAGS"])
  502. AC_MSG_NOTICE([pkg-config: ares_CPPFLAGS: "$ares_CPPFLAGS"])
  503. else
  504. ares_CPPFLAGS=""
  505. ares_LDFLAGS=""
  506. ares_LIBS="-lcares"
  507. fi
  508. fi
  509. fi
  510. #
  511. CPPFLAGS="$clean_CPPFLAGS $ares_CPPFLAGS"
  512. LDFLAGS="$clean_LDFLAGS $ares_LDFLAGS"
  513. LIBS="$ares_LIBS $clean_LIBS"
  514. #
  515. if test "$embedded_ares" != "yes"; then
  516. dnl check if c-ares new enough when not using an embedded
  517. dnl source tree one which normally has not been built yet.
  518. AC_MSG_CHECKING([that c-ares is good and recent enough])
  519. AC_LINK_IFELSE([
  520. AC_LANG_PROGRAM([[
  521. #include <ares.h>
  522. /* set of dummy functions in case c-ares was built with debug */
  523. void curl_dofree() { }
  524. void curl_sclose() { }
  525. void curl_domalloc() { }
  526. void curl_docalloc() { }
  527. void curl_socket() { }
  528. ]],[[
  529. ares_channel channel;
  530. ares_cancel(channel); /* added in 1.2.0 */
  531. ares_process_fd(channel, 0, 0); /* added in 1.4.0 */
  532. ares_dup(&channel, channel); /* added in 1.6.0 */
  533. ]])
  534. ],[
  535. AC_MSG_RESULT([yes])
  536. ],[
  537. AC_MSG_RESULT([no])
  538. AC_MSG_ERROR([c-ares library defective or too old])
  539. dnl restore initial settings
  540. CPPFLAGS="$clean_CPPFLAGS"
  541. LDFLAGS="$clean_LDFLAGS"
  542. LIBS="$clean_LIBS"
  543. # prevent usage
  544. want_ares="no"
  545. ])
  546. fi
  547. if test "$want_ares" = "yes"; then
  548. dnl finally c-ares will be used
  549. AC_DEFINE(USE_ARES, 1, [Define to enable c-ares support])
  550. AC_SUBST([USE_ARES], [1])
  551. curl_res_msg="c-ares"
  552. fi
  553. fi
  554. ])
  555. dnl CURL_CHECK_OPTION_NTLM_WB
  556. dnl -------------------------------------------------
  557. dnl Verify if configure has been invoked with option
  558. dnl --enable-ntlm-wb or --disable-ntlm-wb, and set
  559. dnl shell variable want_ntlm_wb and want_ntlm_wb_file
  560. dnl as appropriate.
  561. AC_DEFUN([CURL_CHECK_OPTION_NTLM_WB], [
  562. AC_BEFORE([$0],[CURL_CHECK_NTLM_WB])dnl
  563. OPT_NTLM_WB="default"
  564. AC_ARG_ENABLE(ntlm-wb,
  565. AS_HELP_STRING([--enable-ntlm-wb@<:@=FILE@:>@],[Enable NTLM delegation to winbind's ntlm_auth helper, where FILE is ntlm_auth's absolute filename (default: /usr/bin/ntlm_auth)])
  566. AS_HELP_STRING([--disable-ntlm-wb],[Disable NTLM delegation to winbind's ntlm_auth helper]),
  567. OPT_NTLM_WB=$enableval)
  568. want_ntlm_wb_file="/usr/bin/ntlm_auth"
  569. case "$OPT_NTLM_WB" in
  570. no)
  571. dnl --disable-ntlm-wb option used
  572. want_ntlm_wb="no"
  573. ;;
  574. default)
  575. dnl configure option not specified
  576. want_ntlm_wb="yes"
  577. ;;
  578. *)
  579. dnl --enable-ntlm-wb option used
  580. want_ntlm_wb="yes"
  581. if test -n "$enableval" && test "$enableval" != "yes"; then
  582. want_ntlm_wb_file="$enableval"
  583. fi
  584. ;;
  585. esac
  586. ])
  587. dnl CURL_CHECK_NTLM_WB
  588. dnl -------------------------------------------------
  589. dnl Check if support for NTLM delegation to winbind's
  590. dnl ntlm_auth helper will finally be enabled depending
  591. dnl on given configure options and target platform.
  592. AC_DEFUN([CURL_CHECK_NTLM_WB], [
  593. AC_REQUIRE([CURL_CHECK_OPTION_NTLM_WB])dnl
  594. AC_REQUIRE([CURL_CHECK_NATIVE_WINDOWS])dnl
  595. AC_MSG_CHECKING([whether to enable NTLM delegation to winbind's helper])
  596. if test "$curl_cv_native_windows" = "yes" ||
  597. test "x$SSL_ENABLED" = "x"; then
  598. want_ntlm_wb_file=""
  599. want_ntlm_wb="no"
  600. fi
  601. AC_MSG_RESULT([$want_ntlm_wb])
  602. if test "$want_ntlm_wb" = "yes"; then
  603. AC_DEFINE(NTLM_WB_ENABLED, 1,
  604. [Define to enable NTLM delegation to winbind's ntlm_auth helper.])
  605. AC_DEFINE_UNQUOTED(NTLM_WB_FILE, "$want_ntlm_wb_file",
  606. [Define absolute filename for winbind's ntlm_auth helper.])
  607. NTLM_WB_ENABLED=1
  608. fi
  609. ])
  610. dnl CURL_CHECK_OPTION_ECH
  611. dnl -----------------------------------------------------
  612. dnl Verify whether configure has been invoked with option
  613. dnl --enable-ech or --disable-ech, and set
  614. dnl shell variable want_ech as appropriate.
  615. AC_DEFUN([CURL_CHECK_OPTION_ECH], [
  616. AC_MSG_CHECKING([whether to enable ECH support])
  617. OPT_ECH="default"
  618. AC_ARG_ENABLE(ech,
  619. AS_HELP_STRING([--enable-ech],[Enable ECH support])
  620. AS_HELP_STRING([--disable-ech],[Disable ECH support]),
  621. OPT_ECH=$enableval)
  622. case "$OPT_ECH" in
  623. no)
  624. dnl --disable-ech option used
  625. want_ech="no"
  626. curl_ech_msg="no (--enable-ech)"
  627. AC_MSG_RESULT([no])
  628. ;;
  629. default)
  630. dnl configure option not specified
  631. want_ech="no"
  632. curl_ech_msg="no (--enable-ech)"
  633. AC_MSG_RESULT([no])
  634. ;;
  635. *)
  636. dnl --enable-ech option used
  637. want_ech="yes"
  638. curl_ech_msg="enabled (--disable-ech)"
  639. experimental="ech"
  640. AC_MSG_RESULT([yes])
  641. ;;
  642. esac
  643. ])