2
0

acinclude.m4 48 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899
  1. #***************************************************************************
  2. # _ _ ____ _
  3. # Project ___| | | | _ \| |
  4. # / __| | | | |_) | |
  5. # | (__| |_| | _ <| |___
  6. # \___|\___/|_| \_\_____|
  7. #
  8. # Copyright (C) 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. # SPDX-License-Identifier: curl
  22. #
  23. #***************************************************************************
  24. dnl CURL_CHECK_DEF (SYMBOL, [INCLUDES], [SILENT])
  25. dnl -------------------------------------------------
  26. dnl Use the C preprocessor to find out if the given object-style symbol
  27. dnl is defined and get its expansion. This macro will not use default
  28. dnl includes even if no INCLUDES argument is given. This macro will run
  29. dnl silently when invoked with three arguments. If the expansion would
  30. dnl result in a set of double-quoted strings the returned expansion will
  31. dnl actually be a single double-quoted string concatenating all them.
  32. AC_DEFUN([CURL_CHECK_DEF], [
  33. AC_REQUIRE([CURL_CPP_P])dnl
  34. OLDCPPFLAGS=$CPPFLAGS
  35. # CPPPFLAG comes from CURL_CPP_P
  36. CPPFLAGS="$CPPFLAGS $CPPPFLAG"
  37. AS_VAR_PUSHDEF([ac_HaveDef], [curl_cv_have_def_$1])dnl
  38. AS_VAR_PUSHDEF([ac_Def], [curl_cv_def_$1])dnl
  39. if test -z "$SED"; then
  40. AC_MSG_ERROR([SED not set. Cannot continue without SED being set.])
  41. fi
  42. if test -z "$GREP"; then
  43. AC_MSG_ERROR([GREP not set. Cannot continue without GREP being set.])
  44. fi
  45. ifelse($3,,[AC_MSG_CHECKING([for preprocessor definition of $1])])
  46. tmp_exp=""
  47. AC_PREPROC_IFELSE([
  48. AC_LANG_SOURCE(
  49. ifelse($2,,,[$2])[[
  50. #ifdef $1
  51. CURL_DEF_TOKEN $1
  52. #endif
  53. ]])
  54. ],[
  55. tmp_exp=`eval "$ac_cpp conftest.$ac_ext" 2>/dev/null | \
  56. "$GREP" CURL_DEF_TOKEN 2>/dev/null | \
  57. "$SED" 's/.*CURL_DEF_TOKEN[[ ]][[ ]]*//' 2>/dev/null | \
  58. "$SED" 's/[["]][[ ]]*[["]]//g' 2>/dev/null`
  59. if test -z "$tmp_exp" || test "$tmp_exp" = "$1"; then
  60. tmp_exp=""
  61. fi
  62. ])
  63. if test -z "$tmp_exp"; then
  64. AS_VAR_SET(ac_HaveDef, no)
  65. ifelse($3,,[AC_MSG_RESULT([no])])
  66. else
  67. AS_VAR_SET(ac_HaveDef, yes)
  68. AS_VAR_SET(ac_Def, $tmp_exp)
  69. ifelse($3,,[AC_MSG_RESULT([$tmp_exp])])
  70. fi
  71. AS_VAR_POPDEF([ac_Def])dnl
  72. AS_VAR_POPDEF([ac_HaveDef])dnl
  73. CPPFLAGS=$OLDCPPFLAGS
  74. ])
  75. dnl CURL_CHECK_DEF_CC (SYMBOL, [INCLUDES], [SILENT])
  76. dnl -------------------------------------------------
  77. dnl Use the C compiler to find out only if the given symbol is defined
  78. dnl or not, this can not find out its expansion. This macro will not use
  79. dnl default includes even if no INCLUDES argument is given. This macro
  80. dnl will run silently when invoked with three arguments.
  81. AC_DEFUN([CURL_CHECK_DEF_CC], [
  82. AS_VAR_PUSHDEF([ac_HaveDef], [curl_cv_have_def_$1])dnl
  83. ifelse($3,,[AC_MSG_CHECKING([for compiler definition of $1])])
  84. AC_COMPILE_IFELSE([
  85. AC_LANG_SOURCE(
  86. ifelse($2,,,[$2])[[
  87. int main (void)
  88. {
  89. #ifdef $1
  90. return 0;
  91. #else
  92. force compilation error
  93. #endif
  94. }
  95. ]])
  96. ],[
  97. tst_symbol_defined="yes"
  98. ],[
  99. tst_symbol_defined="no"
  100. ])
  101. if test "$tst_symbol_defined" = "yes"; then
  102. AS_VAR_SET(ac_HaveDef, yes)
  103. ifelse($3,,[AC_MSG_RESULT([yes])])
  104. else
  105. AS_VAR_SET(ac_HaveDef, no)
  106. ifelse($3,,[AC_MSG_RESULT([no])])
  107. fi
  108. AS_VAR_POPDEF([ac_HaveDef])dnl
  109. ])
  110. dnl CURL_CHECK_LIB_XNET
  111. dnl -------------------------------------------------
  112. dnl Verify if X/Open network library is required.
  113. AC_DEFUN([CURL_CHECK_LIB_XNET], [
  114. AC_MSG_CHECKING([if X/Open network library is required])
  115. tst_lib_xnet_required="no"
  116. AC_COMPILE_IFELSE([
  117. AC_LANG_SOURCE([[
  118. int main (void)
  119. {
  120. #if defined(__hpux) && defined(_XOPEN_SOURCE) && (_XOPEN_SOURCE >= 600)
  121. return 0;
  122. #elif defined(__hpux) && defined(_XOPEN_SOURCE_EXTENDED)
  123. return 0;
  124. #else
  125. force compilation error
  126. #endif
  127. }
  128. ]])
  129. ],[
  130. tst_lib_xnet_required="yes"
  131. LIBS="-lxnet $LIBS"
  132. ])
  133. AC_MSG_RESULT([$tst_lib_xnet_required])
  134. ])
  135. dnl CURL_CHECK_AIX_ALL_SOURCE
  136. dnl -------------------------------------------------
  137. dnl Provides a replacement of traditional AC_AIX with
  138. dnl an uniform behavior across all autoconf versions,
  139. dnl and with our own placement rules.
  140. AC_DEFUN([CURL_CHECK_AIX_ALL_SOURCE], [
  141. AH_VERBATIM([_ALL_SOURCE],
  142. [/* Define to 1 if OS is AIX. */
  143. #ifndef _ALL_SOURCE
  144. # undef _ALL_SOURCE
  145. #endif])
  146. AC_BEFORE([$0], [AC_SYS_LARGEFILE])dnl
  147. AC_BEFORE([$0], [CURL_CONFIGURE_REENTRANT])dnl
  148. AC_BEFORE([$0], [CURL_CONFIGURE_PULL_SYS_POLL])dnl
  149. AC_MSG_CHECKING([if OS is AIX (to define _ALL_SOURCE)])
  150. AC_EGREP_CPP([yes_this_is_aix],[
  151. #ifdef _AIX
  152. yes_this_is_aix
  153. #endif
  154. ],[
  155. AC_MSG_RESULT([yes])
  156. AC_DEFINE(_ALL_SOURCE)
  157. ],[
  158. AC_MSG_RESULT([no])
  159. ])
  160. ])
  161. dnl CURL_CHECK_HEADER_WINDOWS
  162. dnl -------------------------------------------------
  163. dnl Check for compilable and valid windows.h header
  164. AC_DEFUN([CURL_CHECK_HEADER_WINDOWS], [
  165. AC_CACHE_CHECK([for windows.h], [curl_cv_header_windows_h], [
  166. AC_COMPILE_IFELSE([
  167. AC_LANG_PROGRAM([[
  168. #undef inline
  169. #ifndef WIN32_LEAN_AND_MEAN
  170. #define WIN32_LEAN_AND_MEAN
  171. #endif
  172. #include <windows.h>
  173. ]],[[
  174. #if defined(__CYGWIN__) || defined(__CEGCC__)
  175. HAVE_WINDOWS_H shall not be defined.
  176. #else
  177. int dummy=2*WINVER;
  178. #endif
  179. ]])
  180. ],[
  181. curl_cv_header_windows_h="yes"
  182. ],[
  183. curl_cv_header_windows_h="no"
  184. ])
  185. ])
  186. case "$curl_cv_header_windows_h" in
  187. yes)
  188. AC_DEFINE_UNQUOTED(HAVE_WINDOWS_H, 1,
  189. [Define to 1 if you have the windows.h header file.])
  190. ;;
  191. esac
  192. ])
  193. dnl CURL_CHECK_NATIVE_WINDOWS
  194. dnl -------------------------------------------------
  195. dnl Check if building a native Windows target
  196. AC_DEFUN([CURL_CHECK_NATIVE_WINDOWS], [
  197. AC_REQUIRE([CURL_CHECK_HEADER_WINDOWS])dnl
  198. AC_CACHE_CHECK([whether build target is a native Windows one], [curl_cv_native_windows], [
  199. if test "$curl_cv_header_windows_h" = "no"; then
  200. curl_cv_native_windows="no"
  201. else
  202. AC_COMPILE_IFELSE([
  203. AC_LANG_PROGRAM([[
  204. ]],[[
  205. #if defined(__MINGW32__) || defined(__MINGW32CE__) || \
  206. (defined(_MSC_VER) && (defined(_WIN32) || defined(_WIN64)))
  207. int dummy=1;
  208. #else
  209. Not a native Windows build target.
  210. #endif
  211. ]])
  212. ],[
  213. curl_cv_native_windows="yes"
  214. ],[
  215. curl_cv_native_windows="no"
  216. ])
  217. fi
  218. ])
  219. AM_CONDITIONAL(DOING_NATIVE_WINDOWS, test "x$curl_cv_native_windows" = xyes)
  220. ])
  221. dnl CURL_CHECK_HEADER_WINSOCK2
  222. dnl -------------------------------------------------
  223. dnl Check for compilable and valid winsock2.h header
  224. AC_DEFUN([CURL_CHECK_HEADER_WINSOCK2], [
  225. AC_REQUIRE([CURL_CHECK_HEADER_WINDOWS])dnl
  226. AC_CACHE_CHECK([for winsock2.h], [curl_cv_header_winsock2_h], [
  227. AC_COMPILE_IFELSE([
  228. AC_LANG_PROGRAM([[
  229. #undef inline
  230. #ifndef WIN32_LEAN_AND_MEAN
  231. #define WIN32_LEAN_AND_MEAN
  232. #endif
  233. #include <windows.h>
  234. #include <winsock2.h>
  235. ]],[[
  236. #if defined(__CYGWIN__) || defined(__CEGCC__) || defined(__MINGW32CE__)
  237. HAVE_WINSOCK2_H shall not be defined.
  238. #else
  239. int dummy=2*IPPROTO_ESP;
  240. #endif
  241. ]])
  242. ],[
  243. curl_cv_header_winsock2_h="yes"
  244. ],[
  245. curl_cv_header_winsock2_h="no"
  246. ])
  247. ])
  248. case "$curl_cv_header_winsock2_h" in
  249. yes)
  250. AC_DEFINE_UNQUOTED(HAVE_WINSOCK2_H, 1,
  251. [Define to 1 if you have the winsock2.h header file.])
  252. ;;
  253. esac
  254. ])
  255. dnl CURL_CHECK_HEADER_WS2TCPIP
  256. dnl -------------------------------------------------
  257. dnl Check for compilable and valid ws2tcpip.h header
  258. AC_DEFUN([CURL_CHECK_HEADER_WS2TCPIP], [
  259. AC_REQUIRE([CURL_CHECK_HEADER_WINSOCK2])dnl
  260. AC_CACHE_CHECK([for ws2tcpip.h], [curl_cv_header_ws2tcpip_h], [
  261. AC_COMPILE_IFELSE([
  262. AC_LANG_PROGRAM([[
  263. #undef inline
  264. #ifndef WIN32_LEAN_AND_MEAN
  265. #define WIN32_LEAN_AND_MEAN
  266. #endif
  267. #include <windows.h>
  268. #include <winsock2.h>
  269. #include <ws2tcpip.h>
  270. ]],[[
  271. #if defined(__CYGWIN__) || defined(__CEGCC__) || defined(__MINGW32CE__)
  272. HAVE_WS2TCPIP_H shall not be defined.
  273. #else
  274. int dummy=2*IP_PKTINFO;
  275. #endif
  276. ]])
  277. ],[
  278. curl_cv_header_ws2tcpip_h="yes"
  279. ],[
  280. curl_cv_header_ws2tcpip_h="no"
  281. ])
  282. ])
  283. case "$curl_cv_header_ws2tcpip_h" in
  284. yes)
  285. AC_DEFINE_UNQUOTED(HAVE_WS2TCPIP_H, 1,
  286. [Define to 1 if you have the ws2tcpip.h header file.])
  287. ;;
  288. esac
  289. ])
  290. dnl CURL_CHECK_HEADER_WINCRYPT
  291. dnl -------------------------------------------------
  292. dnl Check for compilable and valid wincrypt.h header
  293. AC_DEFUN([CURL_CHECK_HEADER_WINCRYPT], [
  294. AC_REQUIRE([CURL_CHECK_HEADER_WINDOWS])dnl
  295. AC_CACHE_CHECK([for wincrypt.h], [curl_cv_header_wincrypt_h], [
  296. AC_COMPILE_IFELSE([
  297. AC_LANG_PROGRAM([[
  298. #undef inline
  299. #ifndef WIN32_LEAN_AND_MEAN
  300. #define WIN32_LEAN_AND_MEAN
  301. #endif
  302. #include <windows.h>
  303. #include <wincrypt.h>
  304. ]],[[
  305. int dummy=2*PROV_RSA_FULL;
  306. ]])
  307. ],[
  308. curl_cv_header_wincrypt_h="yes"
  309. ],[
  310. curl_cv_header_wincrypt_h="no"
  311. ])
  312. ])
  313. case "$curl_cv_header_wincrypt_h" in
  314. yes)
  315. AC_DEFINE_UNQUOTED(HAVE_WINCRYPT_H, 1,
  316. [Define to 1 if you have the wincrypt.h header file.])
  317. ;;
  318. esac
  319. ])
  320. dnl CURL_CHECK_HEADER_LBER
  321. dnl -------------------------------------------------
  322. dnl Check for compilable and valid lber.h header,
  323. dnl and check if it is needed even with ldap.h
  324. AC_DEFUN([CURL_CHECK_HEADER_LBER], [
  325. AC_REQUIRE([CURL_CHECK_HEADER_WINDOWS])dnl
  326. AC_CACHE_CHECK([for lber.h], [curl_cv_header_lber_h], [
  327. AC_COMPILE_IFELSE([
  328. AC_LANG_PROGRAM([[
  329. #undef inline
  330. #ifdef HAVE_WINDOWS_H
  331. #ifndef WIN32_LEAN_AND_MEAN
  332. #define WIN32_LEAN_AND_MEAN
  333. #endif
  334. #include <windows.h>
  335. #else
  336. #ifdef HAVE_SYS_TYPES_H
  337. #include <sys/types.h>
  338. #endif
  339. #endif
  340. #ifndef NULL
  341. #define NULL (void *)0
  342. #endif
  343. #include <lber.h>
  344. ]],[[
  345. BerValue *bvp = NULL;
  346. BerElement *bep = ber_init(bvp);
  347. ber_free(bep, 1);
  348. ]])
  349. ],[
  350. curl_cv_header_lber_h="yes"
  351. ],[
  352. curl_cv_header_lber_h="no"
  353. ])
  354. ])
  355. if test "$curl_cv_header_lber_h" = "yes"; then
  356. AC_DEFINE_UNQUOTED(HAVE_LBER_H, 1,
  357. [Define to 1 if you have the lber.h header file.])
  358. #
  359. AC_COMPILE_IFELSE([
  360. AC_LANG_PROGRAM([[
  361. #undef inline
  362. #ifdef HAVE_WINDOWS_H
  363. #ifndef WIN32_LEAN_AND_MEAN
  364. #define WIN32_LEAN_AND_MEAN
  365. #endif
  366. #include <windows.h>
  367. #else
  368. #ifdef HAVE_SYS_TYPES_H
  369. #include <sys/types.h>
  370. #endif
  371. #endif
  372. #ifndef NULL
  373. #define NULL (void *)0
  374. #endif
  375. #ifndef LDAP_DEPRECATED
  376. #define LDAP_DEPRECATED 1
  377. #endif
  378. #include <ldap.h>
  379. ]],[[
  380. BerValue *bvp = NULL;
  381. BerElement *bep = ber_init(bvp);
  382. ber_free(bep, 1);
  383. ]])
  384. ],[
  385. curl_cv_need_header_lber_h="no"
  386. ],[
  387. curl_cv_need_header_lber_h="yes"
  388. ])
  389. #
  390. case "$curl_cv_need_header_lber_h" in
  391. yes)
  392. AC_DEFINE_UNQUOTED(NEED_LBER_H, 1,
  393. [Define to 1 if you need the lber.h header file even with ldap.h])
  394. ;;
  395. esac
  396. fi
  397. ])
  398. dnl CURL_CHECK_HEADER_LDAP
  399. dnl -------------------------------------------------
  400. dnl Check for compilable and valid ldap.h header
  401. AC_DEFUN([CURL_CHECK_HEADER_LDAP], [
  402. AC_REQUIRE([CURL_CHECK_HEADER_LBER])dnl
  403. AC_CACHE_CHECK([for ldap.h], [curl_cv_header_ldap_h], [
  404. AC_COMPILE_IFELSE([
  405. AC_LANG_PROGRAM([[
  406. #undef inline
  407. #ifdef HAVE_WINDOWS_H
  408. #ifndef WIN32_LEAN_AND_MEAN
  409. #define WIN32_LEAN_AND_MEAN
  410. #endif
  411. #include <windows.h>
  412. #else
  413. #ifdef HAVE_SYS_TYPES_H
  414. #include <sys/types.h>
  415. #endif
  416. #endif
  417. #ifndef LDAP_DEPRECATED
  418. #define LDAP_DEPRECATED 1
  419. #endif
  420. #ifdef NEED_LBER_H
  421. #include <lber.h>
  422. #endif
  423. #include <ldap.h>
  424. ]],[[
  425. LDAP *ldp = ldap_init("dummy", LDAP_PORT);
  426. int res = ldap_unbind(ldp);
  427. ]])
  428. ],[
  429. curl_cv_header_ldap_h="yes"
  430. ],[
  431. curl_cv_header_ldap_h="no"
  432. ])
  433. ])
  434. case "$curl_cv_header_ldap_h" in
  435. yes)
  436. AC_DEFINE_UNQUOTED(HAVE_LDAP_H, 1,
  437. [Define to 1 if you have the ldap.h header file.])
  438. ;;
  439. esac
  440. ])
  441. dnl CURL_CHECK_HEADER_LDAP_SSL
  442. dnl -------------------------------------------------
  443. dnl Check for compilable and valid ldap_ssl.h header
  444. AC_DEFUN([CURL_CHECK_HEADER_LDAP_SSL], [
  445. AC_REQUIRE([CURL_CHECK_HEADER_LDAP])dnl
  446. AC_CACHE_CHECK([for ldap_ssl.h], [curl_cv_header_ldap_ssl_h], [
  447. AC_COMPILE_IFELSE([
  448. AC_LANG_PROGRAM([[
  449. #undef inline
  450. #ifdef HAVE_WINDOWS_H
  451. #ifndef WIN32_LEAN_AND_MEAN
  452. #define WIN32_LEAN_AND_MEAN
  453. #endif
  454. #include <windows.h>
  455. #else
  456. #ifdef HAVE_SYS_TYPES_H
  457. #include <sys/types.h>
  458. #endif
  459. #endif
  460. #ifndef LDAP_DEPRECATED
  461. #define LDAP_DEPRECATED 1
  462. #endif
  463. #ifdef NEED_LBER_H
  464. #include <lber.h>
  465. #endif
  466. #ifdef HAVE_LDAP_H
  467. #include <ldap.h>
  468. #endif
  469. #include <ldap_ssl.h>
  470. ]],[[
  471. LDAP *ldp = ldapssl_init("dummy", LDAPS_PORT, 1);
  472. ]])
  473. ],[
  474. curl_cv_header_ldap_ssl_h="yes"
  475. ],[
  476. curl_cv_header_ldap_ssl_h="no"
  477. ])
  478. ])
  479. case "$curl_cv_header_ldap_ssl_h" in
  480. yes)
  481. AC_DEFINE_UNQUOTED(HAVE_LDAP_SSL_H, 1,
  482. [Define to 1 if you have the ldap_ssl.h header file.])
  483. ;;
  484. esac
  485. ])
  486. dnl CURL_CHECK_LIBS_WINLDAP
  487. dnl -------------------------------------------------
  488. dnl Check for libraries needed for WINLDAP support,
  489. dnl and prepended to LIBS any needed libraries.
  490. dnl This macro can take an optional parameter with a
  491. dnl whitespace separated list of libraries to check
  492. dnl before the WINLDAP default ones.
  493. AC_DEFUN([CURL_CHECK_LIBS_WINLDAP], [
  494. AC_REQUIRE([CURL_CHECK_HEADER_WINBER])dnl
  495. #
  496. AC_MSG_CHECKING([for WINLDAP libraries])
  497. #
  498. u_libs=""
  499. #
  500. ifelse($1,,,[
  501. for x_lib in $1; do
  502. case "$x_lib" in
  503. -l*)
  504. l_lib="$x_lib"
  505. ;;
  506. *)
  507. l_lib="-l$x_lib"
  508. ;;
  509. esac
  510. if test -z "$u_libs"; then
  511. u_libs="$l_lib"
  512. else
  513. u_libs="$u_libs $l_lib"
  514. fi
  515. done
  516. ])
  517. #
  518. curl_cv_save_LIBS="$LIBS"
  519. curl_cv_ldap_LIBS="unknown"
  520. #
  521. for x_nlibs in '' "$u_libs" \
  522. '-lwldap32' ; do
  523. if test "$curl_cv_ldap_LIBS" = "unknown"; then
  524. if test -z "$x_nlibs"; then
  525. LIBS="$curl_cv_save_LIBS"
  526. else
  527. LIBS="$x_nlibs $curl_cv_save_LIBS"
  528. fi
  529. AC_LINK_IFELSE([
  530. AC_LANG_PROGRAM([[
  531. #undef inline
  532. #ifdef HAVE_WINDOWS_H
  533. #ifndef WIN32_LEAN_AND_MEAN
  534. #define WIN32_LEAN_AND_MEAN
  535. #endif
  536. #include <windows.h>
  537. #include <winldap.h>
  538. #ifdef HAVE_WINBER_H
  539. #include <winber.h>
  540. #endif
  541. #endif
  542. ]],[[
  543. BERVAL *bvp = NULL;
  544. BerElement *bep = ber_init(bvp);
  545. LDAP *ldp = ldap_init("dummy", LDAP_PORT);
  546. ULONG res = ldap_unbind(ldp);
  547. ber_free(bep, 1);
  548. ]])
  549. ],[
  550. curl_cv_ldap_LIBS="$x_nlibs"
  551. ])
  552. fi
  553. done
  554. #
  555. LIBS="$curl_cv_save_LIBS"
  556. #
  557. case X-"$curl_cv_ldap_LIBS" in
  558. X-unknown)
  559. AC_MSG_RESULT([cannot find WINLDAP libraries])
  560. ;;
  561. X-)
  562. AC_MSG_RESULT([no additional lib required])
  563. ;;
  564. *)
  565. if test -z "$curl_cv_save_LIBS"; then
  566. LIBS="$curl_cv_ldap_LIBS"
  567. else
  568. LIBS="$curl_cv_ldap_LIBS $curl_cv_save_LIBS"
  569. fi
  570. AC_MSG_RESULT([$curl_cv_ldap_LIBS])
  571. ;;
  572. esac
  573. #
  574. ])
  575. dnl CURL_CHECK_LIBS_LDAP
  576. dnl -------------------------------------------------
  577. dnl Check for libraries needed for LDAP support,
  578. dnl and prepended to LIBS any needed libraries.
  579. dnl This macro can take an optional parameter with a
  580. dnl whitespace separated list of libraries to check
  581. dnl before the default ones.
  582. AC_DEFUN([CURL_CHECK_LIBS_LDAP], [
  583. AC_REQUIRE([CURL_CHECK_HEADER_LDAP])dnl
  584. #
  585. AC_MSG_CHECKING([for LDAP libraries])
  586. #
  587. u_libs=""
  588. #
  589. ifelse($1,,,[
  590. for x_lib in $1; do
  591. case "$x_lib" in
  592. -l*)
  593. l_lib="$x_lib"
  594. ;;
  595. *)
  596. l_lib="-l$x_lib"
  597. ;;
  598. esac
  599. if test -z "$u_libs"; then
  600. u_libs="$l_lib"
  601. else
  602. u_libs="$u_libs $l_lib"
  603. fi
  604. done
  605. ])
  606. #
  607. curl_cv_save_LIBS="$LIBS"
  608. curl_cv_ldap_LIBS="unknown"
  609. #
  610. for x_nlibs in '' "$u_libs" \
  611. '-lldap' \
  612. '-lldap -llber' \
  613. '-llber -lldap' \
  614. '-lldapssl -lldapx -lldapsdk' \
  615. '-lldapsdk -lldapx -lldapssl' \
  616. '-lldap -llber -lssl -lcrypto' ; do
  617. if test "$curl_cv_ldap_LIBS" = "unknown"; then
  618. if test -z "$x_nlibs"; then
  619. LIBS="$curl_cv_save_LIBS"
  620. else
  621. LIBS="$x_nlibs $curl_cv_save_LIBS"
  622. fi
  623. AC_LINK_IFELSE([
  624. AC_LANG_PROGRAM([[
  625. #undef inline
  626. #ifdef HAVE_WINDOWS_H
  627. #ifndef WIN32_LEAN_AND_MEAN
  628. #define WIN32_LEAN_AND_MEAN
  629. #endif
  630. #include <windows.h>
  631. #else
  632. #ifdef HAVE_SYS_TYPES_H
  633. #include <sys/types.h>
  634. #endif
  635. #endif
  636. #ifndef NULL
  637. #define NULL (void *)0
  638. #endif
  639. #ifndef LDAP_DEPRECATED
  640. #define LDAP_DEPRECATED 1
  641. #endif
  642. #ifdef NEED_LBER_H
  643. #include <lber.h>
  644. #endif
  645. #ifdef HAVE_LDAP_H
  646. #include <ldap.h>
  647. #endif
  648. ]],[[
  649. BerValue *bvp = NULL;
  650. BerElement *bep = ber_init(bvp);
  651. LDAP *ldp = ldap_init("dummy", LDAP_PORT);
  652. int res = ldap_unbind(ldp);
  653. ber_free(bep, 1);
  654. ]])
  655. ],[
  656. curl_cv_ldap_LIBS="$x_nlibs"
  657. ])
  658. fi
  659. done
  660. #
  661. LIBS="$curl_cv_save_LIBS"
  662. #
  663. case X-"$curl_cv_ldap_LIBS" in
  664. X-unknown)
  665. AC_MSG_RESULT([cannot find LDAP libraries])
  666. ;;
  667. X-)
  668. AC_MSG_RESULT([no additional lib required])
  669. ;;
  670. *)
  671. if test -z "$curl_cv_save_LIBS"; then
  672. LIBS="$curl_cv_ldap_LIBS"
  673. else
  674. LIBS="$curl_cv_ldap_LIBS $curl_cv_save_LIBS"
  675. fi
  676. AC_MSG_RESULT([$curl_cv_ldap_LIBS])
  677. ;;
  678. esac
  679. #
  680. ])
  681. dnl TYPE_SOCKADDR_STORAGE
  682. dnl -------------------------------------------------
  683. dnl Check for struct sockaddr_storage. Most IPv6-enabled
  684. dnl hosts have it, but AIX 4.3 is one known exception.
  685. AC_DEFUN([TYPE_SOCKADDR_STORAGE],
  686. [
  687. AC_CHECK_TYPE([struct sockaddr_storage],
  688. AC_DEFINE(HAVE_STRUCT_SOCKADDR_STORAGE, 1,
  689. [if struct sockaddr_storage is defined]), ,
  690. [
  691. #undef inline
  692. #ifdef HAVE_WINDOWS_H
  693. #ifndef WIN32_LEAN_AND_MEAN
  694. #define WIN32_LEAN_AND_MEAN
  695. #endif
  696. #include <windows.h>
  697. #ifdef HAVE_WINSOCK2_H
  698. #include <winsock2.h>
  699. #endif
  700. #else
  701. #ifdef HAVE_SYS_TYPES_H
  702. #include <sys/types.h>
  703. #endif
  704. #ifdef HAVE_SYS_SOCKET_H
  705. #include <sys/socket.h>
  706. #endif
  707. #ifdef HAVE_NETINET_IN_H
  708. #include <netinet/in.h>
  709. #endif
  710. #ifdef HAVE_ARPA_INET_H
  711. #include <arpa/inet.h>
  712. #endif
  713. #endif
  714. ])
  715. ])
  716. dnl CURL_CHECK_FUNC_RECV
  717. dnl -------------------------------------------------
  718. dnl Test if the socket recv() function is available,
  719. AC_DEFUN([CURL_CHECK_FUNC_RECV], [
  720. AC_REQUIRE([CURL_CHECK_HEADER_WINSOCK2])dnl
  721. AC_REQUIRE([CURL_INCLUDES_BSDSOCKET])dnl
  722. AC_CHECK_HEADERS(sys/types.h sys/socket.h)
  723. #
  724. AC_MSG_CHECKING([for recv])
  725. AC_LINK_IFELSE([
  726. AC_LANG_PROGRAM([[
  727. #undef inline
  728. #ifdef HAVE_WINDOWS_H
  729. #ifndef WIN32_LEAN_AND_MEAN
  730. #define WIN32_LEAN_AND_MEAN
  731. #endif
  732. #include <windows.h>
  733. #ifdef HAVE_WINSOCK2_H
  734. #include <winsock2.h>
  735. #endif
  736. #else
  737. $curl_includes_bsdsocket
  738. #ifdef HAVE_SYS_TYPES_H
  739. #include <sys/types.h>
  740. #endif
  741. #ifdef HAVE_SYS_SOCKET_H
  742. #include <sys/socket.h>
  743. #endif
  744. #endif
  745. ]],[[
  746. recv(0, 0, 0, 0);
  747. ]])
  748. ],[
  749. AC_MSG_RESULT([yes])
  750. curl_cv_recv="yes"
  751. ],[
  752. AC_MSG_RESULT([no])
  753. curl_cv_recv="no"
  754. ])
  755. #
  756. if test "$curl_cv_recv" = "yes"; then
  757. AC_DEFINE_UNQUOTED(HAVE_RECV, 1,
  758. [Define to 1 if you have the recv function.])
  759. curl_cv_func_recv="yes"
  760. else
  761. AC_MSG_ERROR([Unable to link function recv])
  762. fi
  763. ])
  764. dnl CURL_CHECK_FUNC_SEND
  765. dnl -------------------------------------------------
  766. dnl Test if the socket send() function is available,
  767. AC_DEFUN([CURL_CHECK_FUNC_SEND], [
  768. AC_REQUIRE([CURL_CHECK_HEADER_WINSOCK2])dnl
  769. AC_REQUIRE([CURL_INCLUDES_BSDSOCKET])dnl
  770. AC_CHECK_HEADERS(sys/types.h sys/socket.h)
  771. #
  772. AC_MSG_CHECKING([for send])
  773. AC_LINK_IFELSE([
  774. AC_LANG_PROGRAM([[
  775. #undef inline
  776. #ifdef HAVE_WINDOWS_H
  777. #ifndef WIN32_LEAN_AND_MEAN
  778. #define WIN32_LEAN_AND_MEAN
  779. #endif
  780. #include <windows.h>
  781. #ifdef HAVE_WINSOCK2_H
  782. #include <winsock2.h>
  783. #endif
  784. #else
  785. $curl_includes_bsdsocket
  786. #ifdef HAVE_SYS_TYPES_H
  787. #include <sys/types.h>
  788. #endif
  789. #ifdef HAVE_SYS_SOCKET_H
  790. #include <sys/socket.h>
  791. #endif
  792. #endif
  793. ]],[[
  794. send(0, 0, 0, 0);
  795. ]])
  796. ],[
  797. AC_MSG_RESULT([yes])
  798. curl_cv_send="yes"
  799. ],[
  800. AC_MSG_RESULT([no])
  801. curl_cv_send="no"
  802. ])
  803. #
  804. if test "$curl_cv_send" = "yes"; then
  805. AC_DEFINE_UNQUOTED(HAVE_SEND, 1,
  806. [Define to 1 if you have the send function.])
  807. curl_cv_func_send="yes"
  808. else
  809. AC_MSG_ERROR([Unable to link function send])
  810. fi
  811. ])
  812. dnl CURL_CHECK_MSG_NOSIGNAL
  813. dnl -------------------------------------------------
  814. dnl Check for MSG_NOSIGNAL
  815. AC_DEFUN([CURL_CHECK_MSG_NOSIGNAL], [
  816. AC_CHECK_HEADERS(sys/types.h sys/socket.h)
  817. AC_CACHE_CHECK([for MSG_NOSIGNAL], [curl_cv_msg_nosignal], [
  818. AC_COMPILE_IFELSE([
  819. AC_LANG_PROGRAM([[
  820. #undef inline
  821. #ifdef HAVE_WINDOWS_H
  822. #ifndef WIN32_LEAN_AND_MEAN
  823. #define WIN32_LEAN_AND_MEAN
  824. #endif
  825. #include <windows.h>
  826. #ifdef HAVE_WINSOCK2_H
  827. #include <winsock2.h>
  828. #endif
  829. #else
  830. #ifdef HAVE_SYS_TYPES_H
  831. #include <sys/types.h>
  832. #endif
  833. #ifdef HAVE_SYS_SOCKET_H
  834. #include <sys/socket.h>
  835. #endif
  836. #endif
  837. ]],[[
  838. int flag=MSG_NOSIGNAL;
  839. ]])
  840. ],[
  841. curl_cv_msg_nosignal="yes"
  842. ],[
  843. curl_cv_msg_nosignal="no"
  844. ])
  845. ])
  846. case "$curl_cv_msg_nosignal" in
  847. yes)
  848. AC_DEFINE_UNQUOTED(HAVE_MSG_NOSIGNAL, 1,
  849. [Define to 1 if you have the MSG_NOSIGNAL flag.])
  850. ;;
  851. esac
  852. ])
  853. dnl CURL_CHECK_STRUCT_TIMEVAL
  854. dnl -------------------------------------------------
  855. dnl Check for timeval struct
  856. AC_DEFUN([CURL_CHECK_STRUCT_TIMEVAL], [
  857. AC_REQUIRE([CURL_CHECK_HEADER_WINSOCK2])dnl
  858. AC_CHECK_HEADERS(sys/types.h sys/time.h sys/socket.h)
  859. AC_CACHE_CHECK([for struct timeval], [curl_cv_struct_timeval], [
  860. AC_COMPILE_IFELSE([
  861. AC_LANG_PROGRAM([[
  862. #undef inline
  863. #ifdef HAVE_WINDOWS_H
  864. #ifndef WIN32_LEAN_AND_MEAN
  865. #define WIN32_LEAN_AND_MEAN
  866. #endif
  867. #include <windows.h>
  868. #ifdef HAVE_WINSOCK2_H
  869. #include <winsock2.h>
  870. #endif
  871. #endif
  872. #ifdef HAVE_SYS_TYPES_H
  873. #include <sys/types.h>
  874. #endif
  875. #ifdef HAVE_SYS_TIME_H
  876. #include <sys/time.h>
  877. #endif
  878. #include <time.h>
  879. #ifdef HAVE_SYS_SOCKET_H
  880. #include <sys/socket.h>
  881. #endif
  882. ]],[[
  883. struct timeval ts;
  884. ts.tv_sec = 0;
  885. ts.tv_usec = 0;
  886. ]])
  887. ],[
  888. curl_cv_struct_timeval="yes"
  889. ],[
  890. curl_cv_struct_timeval="no"
  891. ])
  892. ])
  893. case "$curl_cv_struct_timeval" in
  894. yes)
  895. AC_DEFINE_UNQUOTED(HAVE_STRUCT_TIMEVAL, 1,
  896. [Define to 1 if you have the timeval struct.])
  897. ;;
  898. esac
  899. ])
  900. dnl TYPE_IN_ADDR_T
  901. dnl -------------------------------------------------
  902. dnl Check for in_addr_t: it is used to receive the return code of inet_addr()
  903. dnl and a few other things.
  904. AC_DEFUN([TYPE_IN_ADDR_T], [
  905. AC_CHECK_TYPE([in_addr_t], ,[
  906. dnl in_addr_t not available
  907. AC_CACHE_CHECK([for in_addr_t equivalent],
  908. [curl_cv_in_addr_t_equiv], [
  909. curl_cv_in_addr_t_equiv="unknown"
  910. for t in "unsigned long" int size_t unsigned long; do
  911. if test "$curl_cv_in_addr_t_equiv" = "unknown"; then
  912. AC_LINK_IFELSE([
  913. AC_LANG_PROGRAM([[
  914. #undef inline
  915. #ifdef HAVE_WINDOWS_H
  916. #ifndef WIN32_LEAN_AND_MEAN
  917. #define WIN32_LEAN_AND_MEAN
  918. #endif
  919. #include <windows.h>
  920. #ifdef HAVE_WINSOCK2_H
  921. #include <winsock2.h>
  922. #endif
  923. #else
  924. #ifdef HAVE_SYS_TYPES_H
  925. #include <sys/types.h>
  926. #endif
  927. #ifdef HAVE_SYS_SOCKET_H
  928. #include <sys/socket.h>
  929. #endif
  930. #ifdef HAVE_NETINET_IN_H
  931. #include <netinet/in.h>
  932. #endif
  933. #ifdef HAVE_ARPA_INET_H
  934. #include <arpa/inet.h>
  935. #endif
  936. #endif
  937. ]],[[
  938. $t data = inet_addr ("1.2.3.4");
  939. ]])
  940. ],[
  941. curl_cv_in_addr_t_equiv="$t"
  942. ])
  943. fi
  944. done
  945. ])
  946. case "$curl_cv_in_addr_t_equiv" in
  947. unknown)
  948. AC_MSG_ERROR([Cannot find a type to use in place of in_addr_t])
  949. ;;
  950. *)
  951. AC_DEFINE_UNQUOTED(in_addr_t, $curl_cv_in_addr_t_equiv,
  952. [Type to use in place of in_addr_t when system does not provide it.])
  953. ;;
  954. esac
  955. ],[
  956. #undef inline
  957. #ifdef HAVE_WINDOWS_H
  958. #ifndef WIN32_LEAN_AND_MEAN
  959. #define WIN32_LEAN_AND_MEAN
  960. #endif
  961. #include <windows.h>
  962. #ifdef HAVE_WINSOCK2_H
  963. #include <winsock2.h>
  964. #endif
  965. #else
  966. #ifdef HAVE_SYS_TYPES_H
  967. #include <sys/types.h>
  968. #endif
  969. #ifdef HAVE_SYS_SOCKET_H
  970. #include <sys/socket.h>
  971. #endif
  972. #ifdef HAVE_NETINET_IN_H
  973. #include <netinet/in.h>
  974. #endif
  975. #ifdef HAVE_ARPA_INET_H
  976. #include <arpa/inet.h>
  977. #endif
  978. #endif
  979. ])
  980. ])
  981. dnl CURL_CHECK_FUNC_CLOCK_GETTIME_MONOTONIC
  982. dnl -------------------------------------------------
  983. dnl Check if monotonic clock_gettime is available.
  984. AC_DEFUN([CURL_CHECK_FUNC_CLOCK_GETTIME_MONOTONIC], [
  985. AC_CHECK_HEADERS(sys/types.h sys/time.h)
  986. AC_MSG_CHECKING([for monotonic clock_gettime])
  987. #
  988. if test "x$dontwant_rt" = "xno" ; then
  989. AC_COMPILE_IFELSE([
  990. AC_LANG_PROGRAM([[
  991. #ifdef HAVE_SYS_TYPES_H
  992. #include <sys/types.h>
  993. #endif
  994. #ifdef HAVE_SYS_TIME_H
  995. #include <sys/time.h>
  996. #endif
  997. #include <time.h>
  998. ]],[[
  999. struct timespec ts;
  1000. (void)clock_gettime(CLOCK_MONOTONIC, &ts);
  1001. ]])
  1002. ],[
  1003. AC_MSG_RESULT([yes])
  1004. curl_func_clock_gettime="yes"
  1005. ],[
  1006. AC_MSG_RESULT([no])
  1007. curl_func_clock_gettime="no"
  1008. ])
  1009. fi
  1010. dnl Definition of HAVE_CLOCK_GETTIME_MONOTONIC is intentionally postponed
  1011. dnl until library linking and run-time checks for clock_gettime succeed.
  1012. ])
  1013. dnl CURL_CHECK_LIBS_CLOCK_GETTIME_MONOTONIC
  1014. dnl -------------------------------------------------
  1015. dnl If monotonic clock_gettime is available then,
  1016. dnl check and prepended to LIBS any needed libraries.
  1017. AC_DEFUN([CURL_CHECK_LIBS_CLOCK_GETTIME_MONOTONIC], [
  1018. AC_REQUIRE([CURL_CHECK_FUNC_CLOCK_GETTIME_MONOTONIC])dnl
  1019. #
  1020. if test "$curl_func_clock_gettime" = "yes"; then
  1021. #
  1022. AC_MSG_CHECKING([for clock_gettime in libraries])
  1023. #
  1024. curl_cv_save_LIBS="$LIBS"
  1025. curl_cv_gclk_LIBS="unknown"
  1026. #
  1027. for x_xlibs in '' '-lrt' '-lposix4' ; do
  1028. if test "$curl_cv_gclk_LIBS" = "unknown"; then
  1029. if test -z "$x_xlibs"; then
  1030. LIBS="$curl_cv_save_LIBS"
  1031. else
  1032. LIBS="$x_xlibs $curl_cv_save_LIBS"
  1033. fi
  1034. AC_LINK_IFELSE([
  1035. AC_LANG_PROGRAM([[
  1036. #ifdef HAVE_SYS_TYPES_H
  1037. #include <sys/types.h>
  1038. #endif
  1039. #ifdef HAVE_SYS_TIME_H
  1040. #include <sys/time.h>
  1041. #endif
  1042. #include <time.h>
  1043. ]],[[
  1044. struct timespec ts;
  1045. (void)clock_gettime(CLOCK_MONOTONIC, &ts);
  1046. ]])
  1047. ],[
  1048. curl_cv_gclk_LIBS="$x_xlibs"
  1049. ])
  1050. fi
  1051. done
  1052. #
  1053. LIBS="$curl_cv_save_LIBS"
  1054. #
  1055. case X-"$curl_cv_gclk_LIBS" in
  1056. X-unknown)
  1057. AC_MSG_RESULT([cannot find clock_gettime])
  1058. AC_MSG_WARN([HAVE_CLOCK_GETTIME_MONOTONIC will not be defined])
  1059. curl_func_clock_gettime="no"
  1060. ;;
  1061. X-)
  1062. AC_MSG_RESULT([no additional lib required])
  1063. curl_func_clock_gettime="yes"
  1064. ;;
  1065. *)
  1066. if test -z "$curl_cv_save_LIBS"; then
  1067. LIBS="$curl_cv_gclk_LIBS"
  1068. else
  1069. LIBS="$curl_cv_gclk_LIBS $curl_cv_save_LIBS"
  1070. fi
  1071. AC_MSG_RESULT([$curl_cv_gclk_LIBS])
  1072. curl_func_clock_gettime="yes"
  1073. ;;
  1074. esac
  1075. #
  1076. dnl only do runtime verification when not cross-compiling
  1077. if test "x$cross_compiling" != "xyes" &&
  1078. test "$curl_func_clock_gettime" = "yes"; then
  1079. AC_MSG_CHECKING([if monotonic clock_gettime works])
  1080. CURL_RUN_IFELSE([
  1081. AC_LANG_PROGRAM([[
  1082. #ifdef HAVE_STDLIB_H
  1083. #include <stdlib.h>
  1084. #endif
  1085. #ifdef HAVE_SYS_TYPES_H
  1086. #include <sys/types.h>
  1087. #endif
  1088. #ifdef HAVE_SYS_TIME_H
  1089. #include <sys/time.h>
  1090. #endif
  1091. #include <time.h>
  1092. ]],[[
  1093. struct timespec ts;
  1094. if (0 == clock_gettime(CLOCK_MONOTONIC, &ts))
  1095. exit(0);
  1096. else
  1097. exit(1);
  1098. ]])
  1099. ],[
  1100. AC_MSG_RESULT([yes])
  1101. ],[
  1102. AC_MSG_RESULT([no])
  1103. AC_MSG_WARN([HAVE_CLOCK_GETTIME_MONOTONIC will not be defined])
  1104. curl_func_clock_gettime="no"
  1105. LIBS="$curl_cv_save_LIBS"
  1106. ])
  1107. fi
  1108. #
  1109. case "$curl_func_clock_gettime" in
  1110. yes)
  1111. AC_DEFINE_UNQUOTED(HAVE_CLOCK_GETTIME_MONOTONIC, 1,
  1112. [Define to 1 if you have the clock_gettime function and monotonic timer.])
  1113. ;;
  1114. esac
  1115. #
  1116. fi
  1117. #
  1118. ])
  1119. dnl CURL_CHECK_LIBS_CONNECT
  1120. dnl -------------------------------------------------
  1121. dnl Verify if network connect function is already available
  1122. dnl using current libraries or if another one is required.
  1123. AC_DEFUN([CURL_CHECK_LIBS_CONNECT], [
  1124. AC_REQUIRE([CURL_INCLUDES_WINSOCK2])dnl
  1125. AC_REQUIRE([CURL_INCLUDES_BSDSOCKET])dnl
  1126. AC_MSG_CHECKING([for connect in libraries])
  1127. tst_connect_save_LIBS="$LIBS"
  1128. tst_connect_need_LIBS="unknown"
  1129. for tst_lib in '' '-lsocket' ; do
  1130. if test "$tst_connect_need_LIBS" = "unknown"; then
  1131. LIBS="$tst_lib $tst_connect_save_LIBS"
  1132. AC_LINK_IFELSE([
  1133. AC_LANG_PROGRAM([[
  1134. $curl_includes_winsock2
  1135. $curl_includes_bsdsocket
  1136. #if !defined(HAVE_WINDOWS_H) && !defined(HAVE_PROTO_BSDSOCKET_H)
  1137. int connect(int, void*, int);
  1138. #endif
  1139. ]],[[
  1140. if(0 != connect(0, 0, 0))
  1141. return 1;
  1142. ]])
  1143. ],[
  1144. tst_connect_need_LIBS="$tst_lib"
  1145. ])
  1146. fi
  1147. done
  1148. LIBS="$tst_connect_save_LIBS"
  1149. #
  1150. case X-"$tst_connect_need_LIBS" in
  1151. X-unknown)
  1152. AC_MSG_RESULT([cannot find connect])
  1153. AC_MSG_ERROR([cannot find connect function in libraries.])
  1154. ;;
  1155. X-)
  1156. AC_MSG_RESULT([yes])
  1157. ;;
  1158. *)
  1159. AC_MSG_RESULT([$tst_connect_need_LIBS])
  1160. LIBS="$tst_connect_need_LIBS $tst_connect_save_LIBS"
  1161. ;;
  1162. esac
  1163. ])
  1164. dnl CURL_DEFINE_UNQUOTED (VARIABLE, [VALUE])
  1165. dnl -------------------------------------------------
  1166. dnl Like AC_DEFINE_UNQUOTED this macro will define a C preprocessor
  1167. dnl symbol that can be further used in custom template configuration
  1168. dnl files. This macro, unlike AC_DEFINE_UNQUOTED, does not use a third
  1169. dnl argument for the description. Symbol definitions done with this
  1170. dnl macro are intended to be exclusively used in handcrafted *.h.in
  1171. dnl template files. Contrary to what AC_DEFINE_UNQUOTED does, this one
  1172. dnl prevents autoheader generation and insertion of symbol template
  1173. dnl stub and definition into the first configuration header file. Do
  1174. dnl not use this macro as a replacement for AC_DEFINE_UNQUOTED, each
  1175. dnl one serves different functional needs.
  1176. AC_DEFUN([CURL_DEFINE_UNQUOTED], [
  1177. cat >>confdefs.h <<_EOF
  1178. [@%:@define] $1 ifelse($#, 2, [$2], 1)
  1179. _EOF
  1180. ])
  1181. dnl CURL_CONFIGURE_PULL_SYS_POLL
  1182. dnl -------------------------------------------------
  1183. dnl The need for the sys/poll.h inclusion arises mainly to properly
  1184. dnl interface AIX systems which define macros 'events' and 'revents'.
  1185. AC_DEFUN([CURL_CONFIGURE_PULL_SYS_POLL], [
  1186. AC_REQUIRE([CURL_INCLUDES_POLL])dnl
  1187. #
  1188. tst_poll_events_macro_defined="unknown"
  1189. #
  1190. AC_COMPILE_IFELSE([
  1191. AC_LANG_PROGRAM([[
  1192. $curl_includes_poll
  1193. ]],[[
  1194. #if defined(events) || defined(revents)
  1195. return 0;
  1196. #else
  1197. force compilation error
  1198. #endif
  1199. ]])
  1200. ],[
  1201. tst_poll_events_macro_defined="yes"
  1202. ],[
  1203. tst_poll_events_macro_defined="no"
  1204. ])
  1205. #
  1206. if test "$tst_poll_events_macro_defined" = "yes"; then
  1207. if test "x$ac_cv_header_sys_poll_h" = "xyes"; then
  1208. CURL_DEFINE_UNQUOTED([CURL_PULL_SYS_POLL_H])
  1209. fi
  1210. fi
  1211. #
  1212. ])
  1213. dnl CURL_CHECK_FUNC_SELECT
  1214. dnl -------------------------------------------------
  1215. dnl Test if the socket select() function is available.
  1216. AC_DEFUN([CURL_CHECK_FUNC_SELECT], [
  1217. AC_REQUIRE([CURL_CHECK_STRUCT_TIMEVAL])dnl
  1218. AC_REQUIRE([CURL_INCLUDES_BSDSOCKET])dnl
  1219. AC_CHECK_HEADERS(sys/select.h sys/socket.h)
  1220. #
  1221. AC_MSG_CHECKING([for select])
  1222. AC_LINK_IFELSE([
  1223. AC_LANG_PROGRAM([[
  1224. #undef inline
  1225. #ifdef HAVE_WINDOWS_H
  1226. #ifndef WIN32_LEAN_AND_MEAN
  1227. #define WIN32_LEAN_AND_MEAN
  1228. #endif
  1229. #include <windows.h>
  1230. #ifdef HAVE_WINSOCK2_H
  1231. #include <winsock2.h>
  1232. #endif
  1233. #endif
  1234. #ifdef HAVE_SYS_TYPES_H
  1235. #include <sys/types.h>
  1236. #endif
  1237. #ifdef HAVE_SYS_TIME_H
  1238. #include <sys/time.h>
  1239. #endif
  1240. #include <time.h>
  1241. #ifndef HAVE_WINDOWS_H
  1242. #ifdef HAVE_SYS_SELECT_H
  1243. #include <sys/select.h>
  1244. #elif defined(HAVE_UNISTD_H)
  1245. #include <unistd.h>
  1246. #endif
  1247. #ifdef HAVE_SYS_SOCKET_H
  1248. #include <sys/socket.h>
  1249. #endif
  1250. $curl_includes_bsdsocket
  1251. #endif
  1252. ]],[[
  1253. select(0, 0, 0, 0, 0);
  1254. ]])
  1255. ],[
  1256. AC_MSG_RESULT([yes])
  1257. curl_cv_select="yes"
  1258. ],[
  1259. AC_MSG_RESULT([no])
  1260. curl_cv_select="no"
  1261. ])
  1262. #
  1263. if test "$curl_cv_select" = "yes"; then
  1264. AC_DEFINE_UNQUOTED(HAVE_SELECT, 1,
  1265. [Define to 1 if you have the select function.])
  1266. curl_cv_func_select="yes"
  1267. fi
  1268. ])
  1269. dnl CURL_VERIFY_RUNTIMELIBS
  1270. dnl -------------------------------------------------
  1271. dnl Verify that the shared libs found so far can be used when running
  1272. dnl programs, since otherwise the situation will create odd configure errors
  1273. dnl that are misleading people.
  1274. dnl
  1275. dnl Make sure this test is run BEFORE the first test in the script that
  1276. dnl runs anything, which at the time of this writing is the AC_CHECK_SIZEOF
  1277. dnl macro. It must also run AFTER all lib-checking macros are complete.
  1278. AC_DEFUN([CURL_VERIFY_RUNTIMELIBS], [
  1279. dnl this test is of course not sensible if we are cross-compiling!
  1280. if test "x$cross_compiling" != xyes; then
  1281. dnl just run a program to verify that the libs checked for previous to this
  1282. dnl point also is available run-time!
  1283. AC_MSG_CHECKING([run-time libs availability])
  1284. CURL_RUN_IFELSE([
  1285. int main()
  1286. {
  1287. return 0;
  1288. }
  1289. ],
  1290. AC_MSG_RESULT([fine]),
  1291. AC_MSG_RESULT([failed])
  1292. AC_MSG_ERROR([one or more libs available at link-time are not available run-time. Libs used at link-time: $LIBS])
  1293. )
  1294. dnl if this test fails, configure has already stopped
  1295. fi
  1296. ])
  1297. dnl CURL_CHECK_VARIADIC_MACROS
  1298. dnl -------------------------------------------------
  1299. dnl Check compiler support of variadic macros
  1300. AC_DEFUN([CURL_CHECK_VARIADIC_MACROS], [
  1301. AC_CACHE_CHECK([for compiler support of C99 variadic macro style],
  1302. [curl_cv_variadic_macros_c99], [
  1303. AC_COMPILE_IFELSE([
  1304. AC_LANG_PROGRAM([[
  1305. #define c99_vmacro3(first, ...) fun3(first, __VA_ARGS__)
  1306. #define c99_vmacro2(first, ...) fun2(first, __VA_ARGS__)
  1307. int fun3(int arg1, int arg2, int arg3);
  1308. int fun2(int arg1, int arg2);
  1309. int fun3(int arg1, int arg2, int arg3)
  1310. { return arg1 + arg2 + arg3; }
  1311. int fun2(int arg1, int arg2)
  1312. { return arg1 + arg2; }
  1313. ]],[[
  1314. int res3 = c99_vmacro3(1, 2, 3);
  1315. int res2 = c99_vmacro2(1, 2);
  1316. ]])
  1317. ],[
  1318. curl_cv_variadic_macros_c99="yes"
  1319. ],[
  1320. curl_cv_variadic_macros_c99="no"
  1321. ])
  1322. ])
  1323. case "$curl_cv_variadic_macros_c99" in
  1324. yes)
  1325. AC_DEFINE_UNQUOTED(HAVE_VARIADIC_MACROS_C99, 1,
  1326. [Define to 1 if compiler supports C99 variadic macro style.])
  1327. ;;
  1328. esac
  1329. AC_CACHE_CHECK([for compiler support of old gcc variadic macro style],
  1330. [curl_cv_variadic_macros_gcc], [
  1331. AC_COMPILE_IFELSE([
  1332. AC_LANG_PROGRAM([[
  1333. #define gcc_vmacro3(first, args...) fun3(first, args)
  1334. #define gcc_vmacro2(first, args...) fun2(first, args)
  1335. int fun3(int arg1, int arg2, int arg3);
  1336. int fun2(int arg1, int arg2);
  1337. int fun3(int arg1, int arg2, int arg3)
  1338. { return arg1 + arg2 + arg3; }
  1339. int fun2(int arg1, int arg2)
  1340. { return arg1 + arg2; }
  1341. ]],[[
  1342. int res3 = gcc_vmacro3(1, 2, 3);
  1343. int res2 = gcc_vmacro2(1, 2);
  1344. ]])
  1345. ],[
  1346. curl_cv_variadic_macros_gcc="yes"
  1347. ],[
  1348. curl_cv_variadic_macros_gcc="no"
  1349. ])
  1350. ])
  1351. case "$curl_cv_variadic_macros_gcc" in
  1352. yes)
  1353. AC_DEFINE_UNQUOTED(HAVE_VARIADIC_MACROS_GCC, 1,
  1354. [Define to 1 if compiler supports old gcc variadic macro style.])
  1355. ;;
  1356. esac
  1357. ])
  1358. dnl CURL_CHECK_CA_BUNDLE
  1359. dnl -------------------------------------------------
  1360. dnl Check if a default ca-bundle should be used
  1361. dnl
  1362. dnl regarding the paths this will scan:
  1363. dnl /etc/ssl/certs/ca-certificates.crt Debian systems
  1364. dnl /etc/pki/tls/certs/ca-bundle.crt Redhat and Mandriva
  1365. dnl /usr/share/ssl/certs/ca-bundle.crt old(er) Redhat
  1366. dnl /usr/local/share/certs/ca-root-nss.crt FreeBSD, MidnightBSD
  1367. dnl /etc/ssl/cert.pem OpenBSD, FreeBSD, MidnightBSD (symlink)
  1368. dnl /etc/ssl/certs/ (ca path) SUSE
  1369. AC_DEFUN([CURL_CHECK_CA_BUNDLE], [
  1370. AC_MSG_CHECKING([default CA cert bundle/path])
  1371. AC_ARG_WITH(ca-bundle,
  1372. AS_HELP_STRING([--with-ca-bundle=FILE],
  1373. [Path to a file containing CA certificates (example: /etc/ca-bundle.crt)])
  1374. AS_HELP_STRING([--without-ca-bundle], [Don't use a default CA bundle]),
  1375. [
  1376. want_ca="$withval"
  1377. if test "x$want_ca" = "xyes"; then
  1378. AC_MSG_ERROR([--with-ca-bundle=FILE requires a path to the CA bundle])
  1379. fi
  1380. ],
  1381. [ want_ca="unset" ])
  1382. AC_ARG_WITH(ca-path,
  1383. AS_HELP_STRING([--with-ca-path=DIRECTORY],
  1384. [Path to a directory containing CA certificates stored individually, with \
  1385. their filenames in a hash format. This option can be used with the OpenSSL, \
  1386. GnuTLS and mbedTLS backends. Refer to OpenSSL c_rehash for details. \
  1387. (example: /etc/certificates)])
  1388. AS_HELP_STRING([--without-ca-path], [Don't use a default CA path]),
  1389. [
  1390. want_capath="$withval"
  1391. if test "x$want_capath" = "xyes"; then
  1392. AC_MSG_ERROR([--with-ca-path=DIRECTORY requires a path to the CA path directory])
  1393. fi
  1394. ],
  1395. [ want_capath="unset"])
  1396. ca_warning=" (warning: certs not found)"
  1397. capath_warning=" (warning: certs not found)"
  1398. check_capath=""
  1399. if test "x$want_ca" != "xno" -a "x$want_ca" != "xunset" -a \
  1400. "x$want_capath" != "xno" -a "x$want_capath" != "xunset"; then
  1401. dnl both given
  1402. ca="$want_ca"
  1403. capath="$want_capath"
  1404. elif test "x$want_ca" != "xno" -a "x$want_ca" != "xunset"; then
  1405. dnl --with-ca-bundle given
  1406. ca="$want_ca"
  1407. capath="no"
  1408. elif test "x$want_capath" != "xno" -a "x$want_capath" != "xunset"; then
  1409. dnl --with-ca-path given
  1410. if test "x$OPENSSL_ENABLED" != "x1" -a "x$GNUTLS_ENABLED" != "x1" -a "x$MBEDTLS_ENABLED" != "x1"; then
  1411. AC_MSG_ERROR([--with-ca-path only works with OpenSSL, GnuTLS or mbedTLS])
  1412. fi
  1413. capath="$want_capath"
  1414. ca="no"
  1415. else
  1416. dnl first try autodetecting a CA bundle , then a CA path
  1417. dnl both autodetections can be skipped by --without-ca-*
  1418. ca="no"
  1419. capath="no"
  1420. if test "x$cross_compiling" != "xyes"; then
  1421. dnl NOT cross-compiling and...
  1422. dnl neither of the --with-ca-* options are provided
  1423. if test "x$want_ca" = "xunset"; then
  1424. dnl the path we previously would have installed the curl ca bundle
  1425. dnl to, and thus we now check for an already existing cert in that
  1426. dnl place in case we find no other
  1427. if test "x$prefix" != xNONE; then
  1428. cac="${prefix}/share/curl/curl-ca-bundle.crt"
  1429. else
  1430. cac="$ac_default_prefix/share/curl/curl-ca-bundle.crt"
  1431. fi
  1432. for a in /etc/ssl/certs/ca-certificates.crt \
  1433. /etc/pki/tls/certs/ca-bundle.crt \
  1434. /usr/share/ssl/certs/ca-bundle.crt \
  1435. /usr/local/share/certs/ca-root-nss.crt \
  1436. /etc/ssl/cert.pem \
  1437. "$cac"; do
  1438. if test -f "$a"; then
  1439. ca="$a"
  1440. break
  1441. fi
  1442. done
  1443. fi
  1444. if test "x$want_capath" = "xunset" -a "x$ca" = "xno" -a \
  1445. "x$OPENSSL_ENABLED" = "x1"; then
  1446. check_capath="/etc/ssl/certs/"
  1447. fi
  1448. else
  1449. dnl no option given and cross-compiling
  1450. AC_MSG_WARN([skipped the ca-cert path detection when cross-compiling])
  1451. fi
  1452. fi
  1453. if test "x$ca" = "xno" || test -f "$ca"; then
  1454. ca_warning=""
  1455. fi
  1456. if test "x$capath" != "xno"; then
  1457. check_capath="$capath"
  1458. fi
  1459. if test ! -z "$check_capath"; then
  1460. for a in "$check_capath"; do
  1461. if test -d "$a" && ls "$a"/[[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]].0 >/dev/null 2>/dev/null; then
  1462. if test "x$capath" = "xno"; then
  1463. capath="$a"
  1464. fi
  1465. capath_warning=""
  1466. break
  1467. fi
  1468. done
  1469. fi
  1470. if test "x$capath" = "xno"; then
  1471. capath_warning=""
  1472. fi
  1473. if test "x$ca" != "xno"; then
  1474. CURL_CA_BUNDLE='"'$ca'"'
  1475. AC_DEFINE_UNQUOTED(CURL_CA_BUNDLE, "$ca", [Location of default ca bundle])
  1476. AC_SUBST(CURL_CA_BUNDLE)
  1477. AC_MSG_RESULT([$ca])
  1478. fi
  1479. if test "x$capath" != "xno"; then
  1480. CURL_CA_PATH="\"$capath\""
  1481. AC_DEFINE_UNQUOTED(CURL_CA_PATH, "$capath", [Location of default ca path])
  1482. AC_MSG_RESULT([$capath (capath)])
  1483. fi
  1484. if test "x$ca" = "xno" && test "x$capath" = "xno"; then
  1485. AC_MSG_RESULT([no])
  1486. fi
  1487. AC_MSG_CHECKING([whether to use builtin CA store of SSL library])
  1488. AC_ARG_WITH(ca-fallback,
  1489. AS_HELP_STRING([--with-ca-fallback], [Use the built in CA store of the SSL library])
  1490. AS_HELP_STRING([--without-ca-fallback], [Don't use the built in CA store of the SSL library]),
  1491. [
  1492. if test "x$with_ca_fallback" != "xyes" -a "x$with_ca_fallback" != "xno"; then
  1493. AC_MSG_ERROR([--with-ca-fallback only allows yes or no as parameter])
  1494. fi
  1495. ],
  1496. [ with_ca_fallback="no"])
  1497. AC_MSG_RESULT([$with_ca_fallback])
  1498. if test "x$with_ca_fallback" = "xyes"; then
  1499. if test "x$OPENSSL_ENABLED" != "x1" -a "x$GNUTLS_ENABLED" != "x1"; then
  1500. AC_MSG_ERROR([--with-ca-fallback only works with OpenSSL or GnuTLS])
  1501. fi
  1502. AC_DEFINE_UNQUOTED(CURL_CA_FALLBACK, 1, [define "1" to use built in CA store of SSL library ])
  1503. fi
  1504. ])
  1505. dnl CURL_CHECK_WIN32_LARGEFILE
  1506. dnl -------------------------------------------------
  1507. dnl Check if curl's WIN32 large file will be used
  1508. AC_DEFUN([CURL_CHECK_WIN32_LARGEFILE], [
  1509. AC_REQUIRE([CURL_CHECK_HEADER_WINDOWS])dnl
  1510. AC_MSG_CHECKING([whether build target supports WIN32 file API])
  1511. curl_win32_file_api="no"
  1512. if test "$curl_cv_header_windows_h" = "yes"; then
  1513. if test x"$enable_largefile" != "xno"; then
  1514. AC_COMPILE_IFELSE([
  1515. AC_LANG_PROGRAM([[
  1516. ]],[[
  1517. #if !defined(_WIN32_WCE) && \
  1518. (defined(__MINGW32__) || \
  1519. (defined(_MSC_VER) && (defined(_WIN32) || defined(_WIN64))))
  1520. int dummy=1;
  1521. #else
  1522. WIN32 large file API not supported.
  1523. #endif
  1524. ]])
  1525. ],[
  1526. curl_win32_file_api="win32_large_files"
  1527. ])
  1528. fi
  1529. if test "$curl_win32_file_api" = "no"; then
  1530. AC_COMPILE_IFELSE([
  1531. AC_LANG_PROGRAM([[
  1532. ]],[[
  1533. #if defined(_WIN32_WCE) || defined(__MINGW32__) || defined(_MSC_VER)
  1534. int dummy=1;
  1535. #else
  1536. WIN32 small file API not supported.
  1537. #endif
  1538. ]])
  1539. ],[
  1540. curl_win32_file_api="win32_small_files"
  1541. ])
  1542. fi
  1543. fi
  1544. case "$curl_win32_file_api" in
  1545. win32_large_files)
  1546. AC_MSG_RESULT([yes (large file enabled)])
  1547. AC_DEFINE_UNQUOTED(USE_WIN32_LARGE_FILES, 1,
  1548. [Define to 1 if you are building a Windows target with large file support.])
  1549. AC_SUBST(USE_WIN32_LARGE_FILES, [1])
  1550. ;;
  1551. win32_small_files)
  1552. AC_MSG_RESULT([yes (large file disabled)])
  1553. AC_DEFINE_UNQUOTED(USE_WIN32_SMALL_FILES, 1,
  1554. [Define to 1 if you are building a Windows target without large file support.])
  1555. AC_SUBST(USE_WIN32_SMALL_FILES, [1])
  1556. ;;
  1557. *)
  1558. AC_MSG_RESULT([no])
  1559. ;;
  1560. esac
  1561. ])
  1562. dnl CURL_CHECK_WIN32_CRYPTO
  1563. dnl -------------------------------------------------
  1564. dnl Check if curl's WIN32 crypto lib can be used
  1565. AC_DEFUN([CURL_CHECK_WIN32_CRYPTO], [
  1566. AC_REQUIRE([CURL_CHECK_HEADER_WINCRYPT])dnl
  1567. AC_MSG_CHECKING([whether build target supports WIN32 crypto API])
  1568. curl_win32_crypto_api="no"
  1569. if test "$curl_cv_header_wincrypt_h" = "yes"; then
  1570. AC_COMPILE_IFELSE([
  1571. AC_LANG_PROGRAM([[
  1572. #undef inline
  1573. #ifndef WIN32_LEAN_AND_MEAN
  1574. #define WIN32_LEAN_AND_MEAN
  1575. #endif
  1576. #include <windows.h>
  1577. #include <wincrypt.h>
  1578. ]],[[
  1579. HCRYPTPROV hCryptProv;
  1580. if(CryptAcquireContext(&hCryptProv, NULL, NULL, PROV_RSA_FULL,
  1581. CRYPT_VERIFYCONTEXT | CRYPT_SILENT)) {
  1582. CryptReleaseContext(hCryptProv, 0);
  1583. }
  1584. ]])
  1585. ],[
  1586. curl_win32_crypto_api="yes"
  1587. ])
  1588. fi
  1589. case "$curl_win32_crypto_api" in
  1590. yes)
  1591. AC_MSG_RESULT([yes])
  1592. AC_DEFINE_UNQUOTED(USE_WIN32_CRYPTO, 1,
  1593. [Define to 1 if you are building a Windows target with crypto API support.])
  1594. AC_SUBST(USE_WIN32_CRYPTO, [1])
  1595. ;;
  1596. *)
  1597. AC_MSG_RESULT([no])
  1598. ;;
  1599. esac
  1600. ])
  1601. dnl CURL_EXPORT_PCDIR ($pcdir)
  1602. dnl ------------------------
  1603. dnl if $pcdir is not empty, set PKG_CONFIG_LIBDIR to $pcdir and export
  1604. dnl
  1605. dnl we need this macro since pkg-config distinguishes among empty and unset
  1606. dnl variable while checking PKG_CONFIG_LIBDIR
  1607. dnl
  1608. AC_DEFUN([CURL_EXPORT_PCDIR], [
  1609. if test -n "$1"; then
  1610. PKG_CONFIG_LIBDIR="$1"
  1611. export PKG_CONFIG_LIBDIR
  1612. fi
  1613. ])
  1614. dnl CURL_CHECK_PKGCONFIG ($module, [$pcdir])
  1615. dnl ------------------------
  1616. dnl search for the pkg-config tool. Set the PKGCONFIG variable to hold the
  1617. dnl path to it, or 'no' if not found/present.
  1618. dnl
  1619. dnl If pkg-config is present, check that it has info about the $module or
  1620. dnl return "no" anyway!
  1621. dnl
  1622. dnl Optionally PKG_CONFIG_LIBDIR may be given as $pcdir.
  1623. dnl
  1624. AC_DEFUN([CURL_CHECK_PKGCONFIG], [
  1625. if test -n "$PKG_CONFIG"; then
  1626. PKGCONFIG="$PKG_CONFIG"
  1627. else
  1628. AC_PATH_TOOL([PKGCONFIG], [pkg-config], [no],
  1629. [$PATH:/usr/bin:/usr/local/bin])
  1630. fi
  1631. if test "x$PKGCONFIG" != "xno"; then
  1632. AC_MSG_CHECKING([for $1 options with pkg-config])
  1633. dnl ask pkg-config about $1
  1634. itexists=`CURL_EXPORT_PCDIR([$2]) dnl
  1635. $PKGCONFIG --exists $1 >/dev/null 2>&1 && echo 1`
  1636. if test -z "$itexists"; then
  1637. dnl pkg-config does not have info about the given module! set the
  1638. dnl variable to 'no'
  1639. PKGCONFIG="no"
  1640. AC_MSG_RESULT([no])
  1641. else
  1642. AC_MSG_RESULT([found])
  1643. fi
  1644. fi
  1645. ])
  1646. dnl CURL_GENERATE_CONFIGUREHELP_PM
  1647. dnl -------------------------------------------------
  1648. dnl Generate test harness configurehelp.pm module, defining and
  1649. dnl initializing some perl variables with values which are known
  1650. dnl when the configure script runs. For portability reasons, test
  1651. dnl harness needs information on how to run the C preprocessor.
  1652. AC_DEFUN([CURL_GENERATE_CONFIGUREHELP_PM], [
  1653. AC_REQUIRE([AC_PROG_CPP])dnl
  1654. tmp_cpp=`eval echo "$ac_cpp" 2>/dev/null`
  1655. if test -z "$tmp_cpp"; then
  1656. tmp_cpp='cpp'
  1657. fi
  1658. cat >./tests/configurehelp.pm <<_EOF
  1659. [@%:@] This is a generated file. Do not edit.
  1660. package configurehelp;
  1661. use strict;
  1662. use warnings;
  1663. use Exporter;
  1664. use vars qw(
  1665. @ISA
  1666. @EXPORT_OK
  1667. \$Cpreprocessor
  1668. );
  1669. @ISA = qw(Exporter);
  1670. @EXPORT_OK = qw(
  1671. \$Cpreprocessor
  1672. );
  1673. \$Cpreprocessor = '$tmp_cpp';
  1674. 1;
  1675. _EOF
  1676. ])
  1677. dnl CURL_CPP_P
  1678. dnl
  1679. dnl Check if $cpp -P should be used for extract define values due to gcc 5
  1680. dnl splitting up strings and defines between line outputs. gcc by default
  1681. dnl (without -P) will show TEST EINVAL TEST as
  1682. dnl
  1683. dnl # 13 "conftest.c"
  1684. dnl TEST
  1685. dnl # 13 "conftest.c" 3 4
  1686. dnl 22
  1687. dnl # 13 "conftest.c"
  1688. dnl TEST
  1689. AC_DEFUN([CURL_CPP_P], [
  1690. AC_MSG_CHECKING([if cpp -P is needed])
  1691. AC_EGREP_CPP([TEST.*TEST], [
  1692. #include <errno.h>
  1693. TEST EINVAL TEST
  1694. ], [cpp=no], [cpp=yes])
  1695. AC_MSG_RESULT([$cpp])
  1696. dnl we need cpp -P so check if it works then
  1697. if test "x$cpp" = "xyes"; then
  1698. AC_MSG_CHECKING([if cpp -P works])
  1699. OLDCPPFLAGS=$CPPFLAGS
  1700. CPPFLAGS="$CPPFLAGS -P"
  1701. AC_EGREP_CPP([TEST.*TEST], [
  1702. #include <errno.h>
  1703. TEST EINVAL TEST
  1704. ], [cpp_p=yes], [cpp_p=no])
  1705. AC_MSG_RESULT([$cpp_p])
  1706. if test "x$cpp_p" = "xno"; then
  1707. AC_MSG_WARN([failed to figure out cpp -P alternative])
  1708. # without -P
  1709. CPPPFLAG=""
  1710. else
  1711. # with -P
  1712. CPPPFLAG="-P"
  1713. fi
  1714. dnl restore CPPFLAGS
  1715. CPPFLAGS=$OLDCPPFLAGS
  1716. else
  1717. # without -P
  1718. CPPPFLAG=""
  1719. fi
  1720. ])
  1721. dnl CURL_DARWIN_CFLAGS
  1722. dnl
  1723. dnl Set -Werror=partial-availability to detect possible breaking code
  1724. dnl with very low deployment targets.
  1725. dnl
  1726. AC_DEFUN([CURL_DARWIN_CFLAGS], [
  1727. tst_cflags="no"
  1728. case $host_os in
  1729. darwin*)
  1730. tst_cflags="yes"
  1731. ;;
  1732. esac
  1733. AC_MSG_CHECKING([for good-to-use Darwin CFLAGS])
  1734. AC_MSG_RESULT([$tst_cflags]);
  1735. if test "$tst_cflags" = "yes"; then
  1736. old_CFLAGS=$CFLAGS
  1737. CFLAGS="$CFLAGS -Werror=partial-availability"
  1738. AC_MSG_CHECKING([whether $CC accepts -Werror=partial-availability])
  1739. AC_COMPILE_IFELSE([AC_LANG_PROGRAM()],
  1740. [AC_MSG_RESULT([yes])],
  1741. [AC_MSG_RESULT([no])
  1742. CFLAGS=$old_CFLAGS])
  1743. fi
  1744. ])
  1745. dnl CURL_SUPPORTS_BUILTIN_AVAILABLE
  1746. dnl
  1747. dnl Check to see if the compiler supports __builtin_available. This built-in
  1748. dnl compiler function first appeared in Apple LLVM 9.0.0. It's so new that, at
  1749. dnl the time this macro was written, the function was not yet documented. Its
  1750. dnl purpose is to return true if the code is running under a certain OS version
  1751. dnl or later.
  1752. AC_DEFUN([CURL_SUPPORTS_BUILTIN_AVAILABLE], [
  1753. AC_MSG_CHECKING([to see if the compiler supports __builtin_available()])
  1754. AC_COMPILE_IFELSE([
  1755. AC_LANG_PROGRAM([[
  1756. #include <stdlib.h>
  1757. ]],[[
  1758. if (__builtin_available(macOS 10.8, iOS 5.0, *)) {}
  1759. ]])
  1760. ],[
  1761. AC_MSG_RESULT([yes])
  1762. AC_DEFINE_UNQUOTED(HAVE_BUILTIN_AVAILABLE, 1,
  1763. [Define to 1 if you have the __builtin_available function.])
  1764. ],[
  1765. AC_MSG_RESULT([no])
  1766. ])
  1767. ])