lib-link.m4 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777
  1. # lib-link.m4 serial 26 (gettext-0.18.2)
  2. dnl Copyright (C) 2001-2013 Free Software Foundation, Inc.
  3. dnl This file is free software; the Free Software Foundation
  4. dnl gives unlimited permission to copy and/or distribute it,
  5. dnl with or without modifications, as long as this notice is preserved.
  6. dnl From Bruno Haible.
  7. AC_PREREQ([2.54])
  8. dnl AC_LIB_LINKFLAGS(name [, dependencies]) searches for libname and
  9. dnl the libraries corresponding to explicit and implicit dependencies.
  10. dnl Sets and AC_SUBSTs the LIB${NAME} and LTLIB${NAME} variables and
  11. dnl augments the CPPFLAGS variable.
  12. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname
  13. dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem.
  14. AC_DEFUN([AC_LIB_LINKFLAGS],
  15. [
  16. AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
  17. AC_REQUIRE([AC_LIB_RPATH])
  18. pushdef([Name],[m4_translit([$1],[./+-], [____])])
  19. pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],
  20. [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])
  21. AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [
  22. AC_LIB_LINKFLAGS_BODY([$1], [$2])
  23. ac_cv_lib[]Name[]_libs="$LIB[]NAME"
  24. ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME"
  25. ac_cv_lib[]Name[]_cppflags="$INC[]NAME"
  26. ac_cv_lib[]Name[]_prefix="$LIB[]NAME[]_PREFIX"
  27. ])
  28. LIB[]NAME="$ac_cv_lib[]Name[]_libs"
  29. LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs"
  30. INC[]NAME="$ac_cv_lib[]Name[]_cppflags"
  31. LIB[]NAME[]_PREFIX="$ac_cv_lib[]Name[]_prefix"
  32. AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
  33. AC_SUBST([LIB]NAME)
  34. AC_SUBST([LTLIB]NAME)
  35. AC_SUBST([LIB]NAME[_PREFIX])
  36. dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the
  37. dnl results of this search when this library appears as a dependency.
  38. HAVE_LIB[]NAME=yes
  39. popdef([NAME])
  40. popdef([Name])
  41. ])
  42. dnl AC_LIB_HAVE_LINKFLAGS(name, dependencies, includes, testcode, [missing-message])
  43. dnl searches for libname and the libraries corresponding to explicit and
  44. dnl implicit dependencies, together with the specified include files and
  45. dnl the ability to compile and link the specified testcode. The missing-message
  46. dnl defaults to 'no' and may contain additional hints for the user.
  47. dnl If found, it sets and AC_SUBSTs HAVE_LIB${NAME}=yes and the LIB${NAME}
  48. dnl and LTLIB${NAME} variables and augments the CPPFLAGS variable, and
  49. dnl #defines HAVE_LIB${NAME} to 1. Otherwise, it sets and AC_SUBSTs
  50. dnl HAVE_LIB${NAME}=no and LIB${NAME} and LTLIB${NAME} to empty.
  51. dnl Sets and AC_SUBSTs the LIB${NAME}_PREFIX variable to nonempty if libname
  52. dnl was found in ${LIB${NAME}_PREFIX}/$acl_libdirstem.
  53. AC_DEFUN([AC_LIB_HAVE_LINKFLAGS],
  54. [
  55. AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
  56. AC_REQUIRE([AC_LIB_RPATH])
  57. pushdef([Name],[m4_translit([$1],[./+-], [____])])
  58. pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],
  59. [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])
  60. dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME
  61. dnl accordingly.
  62. AC_LIB_LINKFLAGS_BODY([$1], [$2])
  63. dnl Add $INC[]NAME to CPPFLAGS before performing the following checks,
  64. dnl because if the user has installed lib[]Name and not disabled its use
  65. dnl via --without-lib[]Name-prefix, he wants to use it.
  66. ac_save_CPPFLAGS="$CPPFLAGS"
  67. AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
  68. AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [
  69. ac_save_LIBS="$LIBS"
  70. dnl If $LIB[]NAME contains some -l options, add it to the end of LIBS,
  71. dnl because these -l options might require -L options that are present in
  72. dnl LIBS. -l options benefit only from the -L options listed before it.
  73. dnl Otherwise, add it to the front of LIBS, because it may be a static
  74. dnl library that depends on another static library that is present in LIBS.
  75. dnl Static libraries benefit only from the static libraries listed after
  76. dnl it.
  77. case " $LIB[]NAME" in
  78. *" -l"*) LIBS="$LIBS $LIB[]NAME" ;;
  79. *) LIBS="$LIB[]NAME $LIBS" ;;
  80. esac
  81. AC_LINK_IFELSE(
  82. [AC_LANG_PROGRAM([[$3]], [[$4]])],
  83. [ac_cv_lib[]Name=yes],
  84. [ac_cv_lib[]Name='m4_if([$5], [], [no], [[$5]])'])
  85. LIBS="$ac_save_LIBS"
  86. ])
  87. if test "$ac_cv_lib[]Name" = yes; then
  88. HAVE_LIB[]NAME=yes
  89. AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the lib][$1 library.])
  90. AC_MSG_CHECKING([how to link with lib[]$1])
  91. AC_MSG_RESULT([$LIB[]NAME])
  92. else
  93. HAVE_LIB[]NAME=no
  94. dnl If $LIB[]NAME didn't lead to a usable library, we don't need
  95. dnl $INC[]NAME either.
  96. CPPFLAGS="$ac_save_CPPFLAGS"
  97. LIB[]NAME=
  98. LTLIB[]NAME=
  99. LIB[]NAME[]_PREFIX=
  100. fi
  101. AC_SUBST([HAVE_LIB]NAME)
  102. AC_SUBST([LIB]NAME)
  103. AC_SUBST([LTLIB]NAME)
  104. AC_SUBST([LIB]NAME[_PREFIX])
  105. popdef([NAME])
  106. popdef([Name])
  107. ])
  108. dnl Determine the platform dependent parameters needed to use rpath:
  109. dnl acl_libext,
  110. dnl acl_shlibext,
  111. dnl acl_libname_spec,
  112. dnl acl_library_names_spec,
  113. dnl acl_hardcode_libdir_flag_spec,
  114. dnl acl_hardcode_libdir_separator,
  115. dnl acl_hardcode_direct,
  116. dnl acl_hardcode_minus_L.
  117. AC_DEFUN([AC_LIB_RPATH],
  118. [
  119. dnl Tell automake >= 1.10 to complain if config.rpath is missing.
  120. m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])])
  121. AC_REQUIRE([AC_PROG_CC]) dnl we use $CC, $GCC, $LDFLAGS
  122. AC_REQUIRE([AC_LIB_PROG_LD]) dnl we use $LD, $with_gnu_ld
  123. AC_REQUIRE([AC_CANONICAL_HOST]) dnl we use $host
  124. AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir
  125. AC_CACHE_CHECK([for shared library run path origin], [acl_cv_rpath], [
  126. CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
  127. ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
  128. . ./conftest.sh
  129. rm -f ./conftest.sh
  130. acl_cv_rpath=done
  131. ])
  132. wl="$acl_cv_wl"
  133. acl_libext="$acl_cv_libext"
  134. acl_shlibext="$acl_cv_shlibext"
  135. acl_libname_spec="$acl_cv_libname_spec"
  136. acl_library_names_spec="$acl_cv_library_names_spec"
  137. acl_hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
  138. acl_hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
  139. acl_hardcode_direct="$acl_cv_hardcode_direct"
  140. acl_hardcode_minus_L="$acl_cv_hardcode_minus_L"
  141. dnl Determine whether the user wants rpath handling at all.
  142. AC_ARG_ENABLE([rpath],
  143. [ --disable-rpath do not hardcode runtime library paths],
  144. :, enable_rpath=yes)
  145. ])
  146. dnl AC_LIB_FROMPACKAGE(name, package)
  147. dnl declares that libname comes from the given package. The configure file
  148. dnl will then not have a --with-libname-prefix option but a
  149. dnl --with-package-prefix option. Several libraries can come from the same
  150. dnl package. This declaration must occur before an AC_LIB_LINKFLAGS or similar
  151. dnl macro call that searches for libname.
  152. AC_DEFUN([AC_LIB_FROMPACKAGE],
  153. [
  154. pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],
  155. [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])
  156. define([acl_frompackage_]NAME, [$2])
  157. popdef([NAME])
  158. pushdef([PACK],[$2])
  159. pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-],
  160. [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])
  161. define([acl_libsinpackage_]PACKUP,
  162. m4_ifdef([acl_libsinpackage_]PACKUP, [m4_defn([acl_libsinpackage_]PACKUP)[, ]],)[lib$1])
  163. popdef([PACKUP])
  164. popdef([PACK])
  165. ])
  166. dnl AC_LIB_LINKFLAGS_BODY(name [, dependencies]) searches for libname and
  167. dnl the libraries corresponding to explicit and implicit dependencies.
  168. dnl Sets the LIB${NAME}, LTLIB${NAME} and INC${NAME} variables.
  169. dnl Also, sets the LIB${NAME}_PREFIX variable to nonempty if libname was found
  170. dnl in ${LIB${NAME}_PREFIX}/$acl_libdirstem.
  171. AC_DEFUN([AC_LIB_LINKFLAGS_BODY],
  172. [
  173. AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])
  174. pushdef([NAME],[m4_translit([$1],[abcdefghijklmnopqrstuvwxyz./+-],
  175. [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])
  176. pushdef([PACK],[m4_ifdef([acl_frompackage_]NAME, [acl_frompackage_]NAME, lib[$1])])
  177. pushdef([PACKUP],[m4_translit(PACK,[abcdefghijklmnopqrstuvwxyz./+-],
  178. [ABCDEFGHIJKLMNOPQRSTUVWXYZ____])])
  179. pushdef([PACKLIBS],[m4_ifdef([acl_frompackage_]NAME, [acl_libsinpackage_]PACKUP, lib[$1])])
  180. dnl Autoconf >= 2.61 supports dots in --with options.
  181. pushdef([P_A_C_K],[m4_if(m4_version_compare(m4_defn([m4_PACKAGE_VERSION]),[2.61]),[-1],[m4_translit(PACK,[.],[_])],PACK)])
  182. dnl By default, look in $includedir and $libdir.
  183. use_additional=yes
  184. AC_LIB_WITH_FINAL_PREFIX([
  185. eval additional_includedir=\"$includedir\"
  186. eval additional_libdir=\"$libdir\"
  187. ])
  188. AC_ARG_WITH(P_A_C_K[-prefix],
  189. [[ --with-]]P_A_C_K[[-prefix[=DIR] search for ]PACKLIBS[ in DIR/include and DIR/lib
  190. --without-]]P_A_C_K[[-prefix don't search for ]PACKLIBS[ in includedir and libdir]],
  191. [
  192. if test "X$withval" = "Xno"; then
  193. use_additional=no
  194. else
  195. if test "X$withval" = "X"; then
  196. AC_LIB_WITH_FINAL_PREFIX([
  197. eval additional_includedir=\"$includedir\"
  198. eval additional_libdir=\"$libdir\"
  199. ])
  200. else
  201. additional_includedir="$withval/include"
  202. additional_libdir="$withval/$acl_libdirstem"
  203. if test "$acl_libdirstem2" != "$acl_libdirstem" \
  204. && ! test -d "$withval/$acl_libdirstem"; then
  205. additional_libdir="$withval/$acl_libdirstem2"
  206. fi
  207. fi
  208. fi
  209. ])
  210. dnl Search the library and its dependencies in $additional_libdir and
  211. dnl $LDFLAGS. Using breadth-first-seach.
  212. LIB[]NAME=
  213. LTLIB[]NAME=
  214. INC[]NAME=
  215. LIB[]NAME[]_PREFIX=
  216. dnl HAVE_LIB${NAME} is an indicator that LIB${NAME}, LTLIB${NAME} have been
  217. dnl computed. So it has to be reset here.
  218. HAVE_LIB[]NAME=
  219. rpathdirs=
  220. ltrpathdirs=
  221. names_already_handled=
  222. names_next_round='$1 $2'
  223. while test -n "$names_next_round"; do
  224. names_this_round="$names_next_round"
  225. names_next_round=
  226. for name in $names_this_round; do
  227. already_handled=
  228. for n in $names_already_handled; do
  229. if test "$n" = "$name"; then
  230. already_handled=yes
  231. break
  232. fi
  233. done
  234. if test -z "$already_handled"; then
  235. names_already_handled="$names_already_handled $name"
  236. dnl See if it was already located by an earlier AC_LIB_LINKFLAGS
  237. dnl or AC_LIB_HAVE_LINKFLAGS call.
  238. uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./+-|ABCDEFGHIJKLMNOPQRSTUVWXYZ____|'`
  239. eval value=\"\$HAVE_LIB$uppername\"
  240. if test -n "$value"; then
  241. if test "$value" = yes; then
  242. eval value=\"\$LIB$uppername\"
  243. test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value"
  244. eval value=\"\$LTLIB$uppername\"
  245. test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value"
  246. else
  247. dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined
  248. dnl that this library doesn't exist. So just drop it.
  249. :
  250. fi
  251. else
  252. dnl Search the library lib$name in $additional_libdir and $LDFLAGS
  253. dnl and the already constructed $LIBNAME/$LTLIBNAME.
  254. found_dir=
  255. found_la=
  256. found_so=
  257. found_a=
  258. eval libname=\"$acl_libname_spec\" # typically: libname=lib$name
  259. if test -n "$acl_shlibext"; then
  260. shrext=".$acl_shlibext" # typically: shrext=.so
  261. else
  262. shrext=
  263. fi
  264. if test $use_additional = yes; then
  265. dir="$additional_libdir"
  266. dnl The same code as in the loop below:
  267. dnl First look for a shared library.
  268. if test -n "$acl_shlibext"; then
  269. if test -f "$dir/$libname$shrext"; then
  270. found_dir="$dir"
  271. found_so="$dir/$libname$shrext"
  272. else
  273. if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then
  274. ver=`(cd "$dir" && \
  275. for f in "$libname$shrext".*; do echo "$f"; done \
  276. | sed -e "s,^$libname$shrext\\\\.,," \
  277. | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \
  278. | sed 1q ) 2>/dev/null`
  279. if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then
  280. found_dir="$dir"
  281. found_so="$dir/$libname$shrext.$ver"
  282. fi
  283. else
  284. eval library_names=\"$acl_library_names_spec\"
  285. for f in $library_names; do
  286. if test -f "$dir/$f"; then
  287. found_dir="$dir"
  288. found_so="$dir/$f"
  289. break
  290. fi
  291. done
  292. fi
  293. fi
  294. fi
  295. dnl Then look for a static library.
  296. if test "X$found_dir" = "X"; then
  297. if test -f "$dir/$libname.$acl_libext"; then
  298. found_dir="$dir"
  299. found_a="$dir/$libname.$acl_libext"
  300. fi
  301. fi
  302. if test "X$found_dir" != "X"; then
  303. if test -f "$dir/$libname.la"; then
  304. found_la="$dir/$libname.la"
  305. fi
  306. fi
  307. fi
  308. if test "X$found_dir" = "X"; then
  309. for x in $LDFLAGS $LTLIB[]NAME; do
  310. AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
  311. case "$x" in
  312. -L*)
  313. dir=`echo "X$x" | sed -e 's/^X-L//'`
  314. dnl First look for a shared library.
  315. if test -n "$acl_shlibext"; then
  316. if test -f "$dir/$libname$shrext"; then
  317. found_dir="$dir"
  318. found_so="$dir/$libname$shrext"
  319. else
  320. if test "$acl_library_names_spec" = '$libname$shrext$versuffix'; then
  321. ver=`(cd "$dir" && \
  322. for f in "$libname$shrext".*; do echo "$f"; done \
  323. | sed -e "s,^$libname$shrext\\\\.,," \
  324. | sort -t '.' -n -r -k1,1 -k2,2 -k3,3 -k4,4 -k5,5 \
  325. | sed 1q ) 2>/dev/null`
  326. if test -n "$ver" && test -f "$dir/$libname$shrext.$ver"; then
  327. found_dir="$dir"
  328. found_so="$dir/$libname$shrext.$ver"
  329. fi
  330. else
  331. eval library_names=\"$acl_library_names_spec\"
  332. for f in $library_names; do
  333. if test -f "$dir/$f"; then
  334. found_dir="$dir"
  335. found_so="$dir/$f"
  336. break
  337. fi
  338. done
  339. fi
  340. fi
  341. fi
  342. dnl Then look for a static library.
  343. if test "X$found_dir" = "X"; then
  344. if test -f "$dir/$libname.$acl_libext"; then
  345. found_dir="$dir"
  346. found_a="$dir/$libname.$acl_libext"
  347. fi
  348. fi
  349. if test "X$found_dir" != "X"; then
  350. if test -f "$dir/$libname.la"; then
  351. found_la="$dir/$libname.la"
  352. fi
  353. fi
  354. ;;
  355. esac
  356. if test "X$found_dir" != "X"; then
  357. break
  358. fi
  359. done
  360. fi
  361. if test "X$found_dir" != "X"; then
  362. dnl Found the library.
  363. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name"
  364. if test "X$found_so" != "X"; then
  365. dnl Linking with a shared library. We attempt to hardcode its
  366. dnl directory into the executable's runpath, unless it's the
  367. dnl standard /usr/lib.
  368. if test "$enable_rpath" = no \
  369. || test "X$found_dir" = "X/usr/$acl_libdirstem" \
  370. || test "X$found_dir" = "X/usr/$acl_libdirstem2"; then
  371. dnl No hardcoding is needed.
  372. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
  373. else
  374. dnl Use an explicit option to hardcode DIR into the resulting
  375. dnl binary.
  376. dnl Potentially add DIR to ltrpathdirs.
  377. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
  378. haveit=
  379. for x in $ltrpathdirs; do
  380. if test "X$x" = "X$found_dir"; then
  381. haveit=yes
  382. break
  383. fi
  384. done
  385. if test -z "$haveit"; then
  386. ltrpathdirs="$ltrpathdirs $found_dir"
  387. fi
  388. dnl The hardcoding into $LIBNAME is system dependent.
  389. if test "$acl_hardcode_direct" = yes; then
  390. dnl Using DIR/libNAME.so during linking hardcodes DIR into the
  391. dnl resulting binary.
  392. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
  393. else
  394. if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then
  395. dnl Use an explicit option to hardcode DIR into the resulting
  396. dnl binary.
  397. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
  398. dnl Potentially add DIR to rpathdirs.
  399. dnl The rpathdirs will be appended to $LIBNAME at the end.
  400. haveit=
  401. for x in $rpathdirs; do
  402. if test "X$x" = "X$found_dir"; then
  403. haveit=yes
  404. break
  405. fi
  406. done
  407. if test -z "$haveit"; then
  408. rpathdirs="$rpathdirs $found_dir"
  409. fi
  410. else
  411. dnl Rely on "-L$found_dir".
  412. dnl But don't add it if it's already contained in the LDFLAGS
  413. dnl or the already constructed $LIBNAME
  414. haveit=
  415. for x in $LDFLAGS $LIB[]NAME; do
  416. AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
  417. if test "X$x" = "X-L$found_dir"; then
  418. haveit=yes
  419. break
  420. fi
  421. done
  422. if test -z "$haveit"; then
  423. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir"
  424. fi
  425. if test "$acl_hardcode_minus_L" != no; then
  426. dnl FIXME: Not sure whether we should use
  427. dnl "-L$found_dir -l$name" or "-L$found_dir $found_so"
  428. dnl here.
  429. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
  430. else
  431. dnl We cannot use $acl_hardcode_runpath_var and LD_RUN_PATH
  432. dnl here, because this doesn't fit in flags passed to the
  433. dnl compiler. So give up. No hardcoding. This affects only
  434. dnl very old systems.
  435. dnl FIXME: Not sure whether we should use
  436. dnl "-L$found_dir -l$name" or "-L$found_dir $found_so"
  437. dnl here.
  438. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name"
  439. fi
  440. fi
  441. fi
  442. fi
  443. else
  444. if test "X$found_a" != "X"; then
  445. dnl Linking with a static library.
  446. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a"
  447. else
  448. dnl We shouldn't come here, but anyway it's good to have a
  449. dnl fallback.
  450. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name"
  451. fi
  452. fi
  453. dnl Assume the include files are nearby.
  454. additional_includedir=
  455. case "$found_dir" in
  456. */$acl_libdirstem | */$acl_libdirstem/)
  457. basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem/"'*$,,'`
  458. if test "$name" = '$1'; then
  459. LIB[]NAME[]_PREFIX="$basedir"
  460. fi
  461. additional_includedir="$basedir/include"
  462. ;;
  463. */$acl_libdirstem2 | */$acl_libdirstem2/)
  464. basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e "s,/$acl_libdirstem2/"'*$,,'`
  465. if test "$name" = '$1'; then
  466. LIB[]NAME[]_PREFIX="$basedir"
  467. fi
  468. additional_includedir="$basedir/include"
  469. ;;
  470. esac
  471. if test "X$additional_includedir" != "X"; then
  472. dnl Potentially add $additional_includedir to $INCNAME.
  473. dnl But don't add it
  474. dnl 1. if it's the standard /usr/include,
  475. dnl 2. if it's /usr/local/include and we are using GCC on Linux,
  476. dnl 3. if it's already present in $CPPFLAGS or the already
  477. dnl constructed $INCNAME,
  478. dnl 4. if it doesn't exist as a directory.
  479. if test "X$additional_includedir" != "X/usr/include"; then
  480. haveit=
  481. if test "X$additional_includedir" = "X/usr/local/include"; then
  482. if test -n "$GCC"; then
  483. case $host_os in
  484. linux* | gnu* | k*bsd*-gnu) haveit=yes;;
  485. esac
  486. fi
  487. fi
  488. if test -z "$haveit"; then
  489. for x in $CPPFLAGS $INC[]NAME; do
  490. AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
  491. if test "X$x" = "X-I$additional_includedir"; then
  492. haveit=yes
  493. break
  494. fi
  495. done
  496. if test -z "$haveit"; then
  497. if test -d "$additional_includedir"; then
  498. dnl Really add $additional_includedir to $INCNAME.
  499. INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir"
  500. fi
  501. fi
  502. fi
  503. fi
  504. fi
  505. dnl Look for dependencies.
  506. if test -n "$found_la"; then
  507. dnl Read the .la file. It defines the variables
  508. dnl dlname, library_names, old_library, dependency_libs, current,
  509. dnl age, revision, installed, dlopen, dlpreopen, libdir.
  510. save_libdir="$libdir"
  511. case "$found_la" in
  512. */* | *\\*) . "$found_la" ;;
  513. *) . "./$found_la" ;;
  514. esac
  515. libdir="$save_libdir"
  516. dnl We use only dependency_libs.
  517. for dep in $dependency_libs; do
  518. case "$dep" in
  519. -L*)
  520. additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
  521. dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME.
  522. dnl But don't add it
  523. dnl 1. if it's the standard /usr/lib,
  524. dnl 2. if it's /usr/local/lib and we are using GCC on Linux,
  525. dnl 3. if it's already present in $LDFLAGS or the already
  526. dnl constructed $LIBNAME,
  527. dnl 4. if it doesn't exist as a directory.
  528. if test "X$additional_libdir" != "X/usr/$acl_libdirstem" \
  529. && test "X$additional_libdir" != "X/usr/$acl_libdirstem2"; then
  530. haveit=
  531. if test "X$additional_libdir" = "X/usr/local/$acl_libdirstem" \
  532. || test "X$additional_libdir" = "X/usr/local/$acl_libdirstem2"; then
  533. if test -n "$GCC"; then
  534. case $host_os in
  535. linux* | gnu* | k*bsd*-gnu) haveit=yes;;
  536. esac
  537. fi
  538. fi
  539. if test -z "$haveit"; then
  540. haveit=
  541. for x in $LDFLAGS $LIB[]NAME; do
  542. AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
  543. if test "X$x" = "X-L$additional_libdir"; then
  544. haveit=yes
  545. break
  546. fi
  547. done
  548. if test -z "$haveit"; then
  549. if test -d "$additional_libdir"; then
  550. dnl Really add $additional_libdir to $LIBNAME.
  551. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir"
  552. fi
  553. fi
  554. haveit=
  555. for x in $LDFLAGS $LTLIB[]NAME; do
  556. AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
  557. if test "X$x" = "X-L$additional_libdir"; then
  558. haveit=yes
  559. break
  560. fi
  561. done
  562. if test -z "$haveit"; then
  563. if test -d "$additional_libdir"; then
  564. dnl Really add $additional_libdir to $LTLIBNAME.
  565. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir"
  566. fi
  567. fi
  568. fi
  569. fi
  570. ;;
  571. -R*)
  572. dir=`echo "X$dep" | sed -e 's/^X-R//'`
  573. if test "$enable_rpath" != no; then
  574. dnl Potentially add DIR to rpathdirs.
  575. dnl The rpathdirs will be appended to $LIBNAME at the end.
  576. haveit=
  577. for x in $rpathdirs; do
  578. if test "X$x" = "X$dir"; then
  579. haveit=yes
  580. break
  581. fi
  582. done
  583. if test -z "$haveit"; then
  584. rpathdirs="$rpathdirs $dir"
  585. fi
  586. dnl Potentially add DIR to ltrpathdirs.
  587. dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
  588. haveit=
  589. for x in $ltrpathdirs; do
  590. if test "X$x" = "X$dir"; then
  591. haveit=yes
  592. break
  593. fi
  594. done
  595. if test -z "$haveit"; then
  596. ltrpathdirs="$ltrpathdirs $dir"
  597. fi
  598. fi
  599. ;;
  600. -l*)
  601. dnl Handle this in the next round.
  602. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
  603. ;;
  604. *.la)
  605. dnl Handle this in the next round. Throw away the .la's
  606. dnl directory; it is already contained in a preceding -L
  607. dnl option.
  608. names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
  609. ;;
  610. *)
  611. dnl Most likely an immediate library name.
  612. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep"
  613. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep"
  614. ;;
  615. esac
  616. done
  617. fi
  618. else
  619. dnl Didn't find the library; assume it is in the system directories
  620. dnl known to the linker and runtime loader. (All the system
  621. dnl directories known to the linker should also be known to the
  622. dnl runtime loader, otherwise the system is severely misconfigured.)
  623. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name"
  624. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name"
  625. fi
  626. fi
  627. fi
  628. done
  629. done
  630. if test "X$rpathdirs" != "X"; then
  631. if test -n "$acl_hardcode_libdir_separator"; then
  632. dnl Weird platform: only the last -rpath option counts, the user must
  633. dnl pass all path elements in one option. We can arrange that for a
  634. dnl single library, but not when more than one $LIBNAMEs are used.
  635. alldirs=
  636. for found_dir in $rpathdirs; do
  637. alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$found_dir"
  638. done
  639. dnl Note: acl_hardcode_libdir_flag_spec uses $libdir and $wl.
  640. acl_save_libdir="$libdir"
  641. libdir="$alldirs"
  642. eval flag=\"$acl_hardcode_libdir_flag_spec\"
  643. libdir="$acl_save_libdir"
  644. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag"
  645. else
  646. dnl The -rpath options are cumulative.
  647. for found_dir in $rpathdirs; do
  648. acl_save_libdir="$libdir"
  649. libdir="$found_dir"
  650. eval flag=\"$acl_hardcode_libdir_flag_spec\"
  651. libdir="$acl_save_libdir"
  652. LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag"
  653. done
  654. fi
  655. fi
  656. if test "X$ltrpathdirs" != "X"; then
  657. dnl When using libtool, the option that works for both libraries and
  658. dnl executables is -R. The -R options are cumulative.
  659. for found_dir in $ltrpathdirs; do
  660. LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir"
  661. done
  662. fi
  663. popdef([P_A_C_K])
  664. popdef([PACKLIBS])
  665. popdef([PACKUP])
  666. popdef([PACK])
  667. popdef([NAME])
  668. ])
  669. dnl AC_LIB_APPENDTOVAR(VAR, CONTENTS) appends the elements of CONTENTS to VAR,
  670. dnl unless already present in VAR.
  671. dnl Works only for CPPFLAGS, not for LIB* variables because that sometimes
  672. dnl contains two or three consecutive elements that belong together.
  673. AC_DEFUN([AC_LIB_APPENDTOVAR],
  674. [
  675. for element in [$2]; do
  676. haveit=
  677. for x in $[$1]; do
  678. AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
  679. if test "X$x" = "X$element"; then
  680. haveit=yes
  681. break
  682. fi
  683. done
  684. if test -z "$haveit"; then
  685. [$1]="${[$1]}${[$1]:+ }$element"
  686. fi
  687. done
  688. ])
  689. dnl For those cases where a variable contains several -L and -l options
  690. dnl referring to unknown libraries and directories, this macro determines the
  691. dnl necessary additional linker options for the runtime path.
  692. dnl AC_LIB_LINKFLAGS_FROM_LIBS([LDADDVAR], [LIBSVALUE], [USE-LIBTOOL])
  693. dnl sets LDADDVAR to linker options needed together with LIBSVALUE.
  694. dnl If USE-LIBTOOL evaluates to non-empty, linking with libtool is assumed,
  695. dnl otherwise linking without libtool is assumed.
  696. AC_DEFUN([AC_LIB_LINKFLAGS_FROM_LIBS],
  697. [
  698. AC_REQUIRE([AC_LIB_RPATH])
  699. AC_REQUIRE([AC_LIB_PREPARE_MULTILIB])
  700. $1=
  701. if test "$enable_rpath" != no; then
  702. if test -n "$acl_hardcode_libdir_flag_spec" && test "$acl_hardcode_minus_L" = no; then
  703. dnl Use an explicit option to hardcode directories into the resulting
  704. dnl binary.
  705. rpathdirs=
  706. next=
  707. for opt in $2; do
  708. if test -n "$next"; then
  709. dir="$next"
  710. dnl No need to hardcode the standard /usr/lib.
  711. if test "X$dir" != "X/usr/$acl_libdirstem" \
  712. && test "X$dir" != "X/usr/$acl_libdirstem2"; then
  713. rpathdirs="$rpathdirs $dir"
  714. fi
  715. next=
  716. else
  717. case $opt in
  718. -L) next=yes ;;
  719. -L*) dir=`echo "X$opt" | sed -e 's,^X-L,,'`
  720. dnl No need to hardcode the standard /usr/lib.
  721. if test "X$dir" != "X/usr/$acl_libdirstem" \
  722. && test "X$dir" != "X/usr/$acl_libdirstem2"; then
  723. rpathdirs="$rpathdirs $dir"
  724. fi
  725. next= ;;
  726. *) next= ;;
  727. esac
  728. fi
  729. done
  730. if test "X$rpathdirs" != "X"; then
  731. if test -n ""$3""; then
  732. dnl libtool is used for linking. Use -R options.
  733. for dir in $rpathdirs; do
  734. $1="${$1}${$1:+ }-R$dir"
  735. done
  736. else
  737. dnl The linker is used for linking directly.
  738. if test -n "$acl_hardcode_libdir_separator"; then
  739. dnl Weird platform: only the last -rpath option counts, the user
  740. dnl must pass all path elements in one option.
  741. alldirs=
  742. for dir in $rpathdirs; do
  743. alldirs="${alldirs}${alldirs:+$acl_hardcode_libdir_separator}$dir"
  744. done
  745. acl_save_libdir="$libdir"
  746. libdir="$alldirs"
  747. eval flag=\"$acl_hardcode_libdir_flag_spec\"
  748. libdir="$acl_save_libdir"
  749. $1="$flag"
  750. else
  751. dnl The -rpath options are cumulative.
  752. for dir in $rpathdirs; do
  753. acl_save_libdir="$libdir"
  754. libdir="$dir"
  755. eval flag=\"$acl_hardcode_libdir_flag_spec\"
  756. libdir="$acl_save_libdir"
  757. $1="${$1}${$1:+ }$flag"
  758. done
  759. fi
  760. fi
  761. fi
  762. fi
  763. fi
  764. AC_SUBST([$1])
  765. ])