config.rpath 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686
  1. #! /bin/sh
  2. # Output a system dependent set of variables, describing how to set the
  3. # run time search path of shared libraries in an executable.
  4. #
  5. # Copyright 1996-2007 Free Software Foundation, Inc.
  6. # Taken from GNU libtool, 2001
  7. # Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
  8. #
  9. # This file is free software; the Free Software Foundation gives
  10. # unlimited permission to copy and/or distribute it, with or without
  11. # modifications, as long as this notice is preserved.
  12. #
  13. # The first argument passed to this file is the canonical host specification,
  14. # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
  15. # or
  16. # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
  17. # The environment variables CC, GCC, LDFLAGS, LD, with_gnu_ld
  18. # should be set by the caller.
  19. #
  20. # The set of defined variables is at the end of this script.
  21. # Known limitations:
  22. # - On IRIX 6.5 with CC="cc", the run time search patch must not be longer
  23. # than 256 bytes, otherwise the compiler driver will dump core. The only
  24. # known workaround is to choose shorter directory names for the build
  25. # directory and/or the installation directory.
  26. # All known linkers require a `.a' archive for static linking (except MSVC,
  27. # which needs '.lib').
  28. libext=a
  29. shrext=.so
  30. host="$1"
  31. host_cpu=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
  32. host_vendor=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\2/'`
  33. host_os=`echo "$host" | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\3/'`
  34. # Code taken from libtool.m4's _LT_CC_BASENAME.
  35. for cc_temp in $CC""; do
  36. case $cc_temp in
  37. compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
  38. distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
  39. \-*) ;;
  40. *) break;;
  41. esac
  42. done
  43. cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
  44. # Code taken from libtool.m4's _LT_CC_BASENAME.
  45. for cc_temp in $CC""; do
  46. case $cc_temp in
  47. compile | *[\\/]compile | ccache | *[\\/]ccache ) ;;
  48. distcc | *[\\/]distcc | purify | *[\\/]purify ) ;;
  49. \-*) ;;
  50. *) break;;
  51. esac
  52. done
  53. cc_basename=`echo "$cc_temp" | sed -e 's%^.*/%%'`
  54. # Code taken from libtool.m4's AC_LIBTOOL_PROG_COMPILER_PIC.
  55. wl=
  56. if test "$GCC" = yes; then
  57. wl='-Wl,'
  58. else
  59. case "$host_os" in
  60. aix*)
  61. wl='-Wl,'
  62. ;;
  63. darwin*)
  64. case $cc_basename in
  65. xlc*)
  66. wl='-Wl,'
  67. ;;
  68. esac
  69. ;;
  70. darwin*)
  71. case $cc_basename in
  72. xlc*)
  73. wl='-Wl,'
  74. ;;
  75. esac
  76. ;;
  77. mingw* | cygwin* | pw32* | os2*)
  78. ;;
  79. hpux9* | hpux10* | hpux11*)
  80. wl='-Wl,'
  81. ;;
  82. irix5* | irix6* | nonstopux*)
  83. wl='-Wl,'
  84. ;;
  85. newsos6)
  86. ;;
  87. linux* | k*bsd*-gnu)
  88. case $cc_basename in
  89. icc* | ecc*)
  90. wl='-Wl,'
  91. ;;
  92. pgcc | pgf77 | pgf90)
  93. wl='-Wl,'
  94. ;;
  95. ccc*)
  96. wl='-Wl,'
  97. ;;
  98. como)
  99. wl='-lopt='
  100. ;;
  101. *)
  102. case `$CC -V 2>&1 | sed 5q` in
  103. *Sun\ C*)
  104. wl='-Wl,'
  105. ;;
  106. esac
  107. ;;
  108. esac
  109. ;;
  110. osf3* | osf4* | osf5*)
  111. wl='-Wl,'
  112. ;;
  113. rdos*)
  114. ;;
  115. solaris*)
  116. wl='-Wl,'
  117. ;;
  118. sunos4*)
  119. wl='-Qoption ld '
  120. ;;
  121. sysv4 | sysv4.2uw2* | sysv4.3*)
  122. wl='-Wl,'
  123. ;;
  124. sysv4*MP*)
  125. ;;
  126. sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
  127. wl='-Wl,'
  128. ;;
  129. unicos*)
  130. wl='-Wl,'
  131. ;;
  132. uts4*)
  133. ;;
  134. esac
  135. fi
  136. # Code taken from libtool.m4's AC_LIBTOOL_PROG_LD_SHLIBS.
  137. hardcode_libdir_flag_spec=
  138. hardcode_libdir_separator=
  139. hardcode_direct=no
  140. hardcode_minus_L=no
  141. case "$host_os" in
  142. cygwin* | mingw* | pw32*)
  143. # FIXME: the MSVC++ port hasn't been tested in a loooong time
  144. # When not using gcc, we currently assume that we are using
  145. # Microsoft Visual C++.
  146. if test "$GCC" != yes; then
  147. with_gnu_ld=no
  148. fi
  149. ;;
  150. interix*)
  151. # we just hope/assume this is gcc and not c89 (= MSVC++)
  152. with_gnu_ld=yes
  153. ;;
  154. interix*)
  155. # we just hope/assume this is gcc and not c89 (= MSVC++)
  156. with_gnu_ld=yes
  157. ;;
  158. openbsd*)
  159. with_gnu_ld=no
  160. ;;
  161. esac
  162. ld_shlibs=yes
  163. if test "$with_gnu_ld" = yes; then
  164. # Set some defaults for GNU ld with shared library support. These
  165. # are reset later if shared libraries are not supported. Putting them
  166. # here allows them to be overridden if necessary.
  167. # Unlike libtool, we use -rpath here, not --rpath, since the documented
  168. # option of GNU ld is called -rpath, not --rpath.
  169. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  170. case "$host_os" in
  171. aix3* | aix4* | aix5*)
  172. # On AIX/PPC, the GNU linker is very broken
  173. if test "$host_cpu" != ia64; then
  174. ld_shlibs=no
  175. fi
  176. ;;
  177. amigaos*)
  178. hardcode_libdir_flag_spec='-L$libdir'
  179. hardcode_minus_L=yes
  180. # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
  181. # that the semantics of dynamic libraries on AmigaOS, at least up
  182. # to version 4, is to share data among multiple programs linked
  183. # with the same dynamic library. Since this doesn't match the
  184. # behavior of shared libraries on other platforms, we cannot use
  185. # them.
  186. ld_shlibs=no
  187. ;;
  188. beos*)
  189. if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  190. :
  191. else
  192. ld_shlibs=no
  193. fi
  194. ;;
  195. cygwin* | mingw* | pw32*)
  196. # hardcode_libdir_flag_spec is actually meaningless, as there is
  197. # no search path for DLLs.
  198. hardcode_libdir_flag_spec='-L$libdir'
  199. if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
  200. :
  201. else
  202. ld_shlibs=no
  203. fi
  204. ;;
  205. interix[3-9]*)
  206. hardcode_direct=no
  207. hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
  208. ;;
  209. gnu* | linux* | k*bsd*-gnu)
  210. if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  211. :
  212. else
  213. ld_shlibs=no
  214. fi
  215. ;;
  216. netbsd*)
  217. ;;
  218. solaris*)
  219. if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
  220. ld_shlibs=no
  221. elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  222. :
  223. else
  224. ld_shlibs=no
  225. fi
  226. ;;
  227. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
  228. case `$LD -v 2>&1` in
  229. *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*)
  230. ld_shlibs=no
  231. ;;
  232. *)
  233. if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  234. hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
  235. else
  236. ld_shlibs=no
  237. fi
  238. ;;
  239. esac
  240. ;;
  241. sunos4*)
  242. hardcode_direct=yes
  243. ;;
  244. *)
  245. if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
  246. :
  247. else
  248. ld_shlibs=no
  249. fi
  250. ;;
  251. esac
  252. if test "$ld_shlibs" = no; then
  253. hardcode_libdir_flag_spec=
  254. fi
  255. else
  256. case "$host_os" in
  257. aix3*)
  258. # Note: this linker hardcodes the directories in LIBPATH if there
  259. # are no directories specified by -L.
  260. hardcode_minus_L=yes
  261. if test "$GCC" = yes; then
  262. # Neither direct hardcoding nor static linking is supported with a
  263. # broken collect2.
  264. hardcode_direct=unsupported
  265. fi
  266. ;;
  267. aix4* | aix5*)
  268. if test "$host_cpu" = ia64; then
  269. # On IA64, the linker does run time linking by default, so we don't
  270. # have to do anything special.
  271. aix_use_runtimelinking=no
  272. else
  273. aix_use_runtimelinking=no
  274. # Test if we are trying to use run time linking or normal
  275. # AIX style linking. If -brtl is somewhere in LDFLAGS, we
  276. # need to do runtime linking.
  277. case $host_os in aix4.[23]|aix4.[23].*|aix5*)
  278. for ld_flag in $LDFLAGS; do
  279. if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
  280. aix_use_runtimelinking=yes
  281. break
  282. fi
  283. done
  284. ;;
  285. esac
  286. fi
  287. hardcode_direct=yes
  288. hardcode_libdir_separator=':'
  289. if test "$GCC" = yes; then
  290. case $host_os in aix4.[012]|aix4.[012].*)
  291. collect2name=`${CC} -print-prog-name=collect2`
  292. if test -f "$collect2name" && \
  293. strings "$collect2name" | grep resolve_lib_name >/dev/null
  294. then
  295. # We have reworked collect2
  296. :
  297. else
  298. # We have old collect2
  299. hardcode_direct=unsupported
  300. hardcode_minus_L=yes
  301. hardcode_libdir_flag_spec='-L$libdir'
  302. hardcode_libdir_separator=
  303. fi
  304. ;;
  305. esac
  306. fi
  307. # Begin _LT_AC_SYS_LIBPATH_AIX.
  308. echo 'int main () { return 0; }' > conftest.c
  309. ${CC} ${LDFLAGS} conftest.c -o conftest
  310. aix_libpath=`dump -H conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
  311. }'`
  312. if test -z "$aix_libpath"; then
  313. aix_libpath=`dump -HX64 conftest 2>/dev/null | sed -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; }
  314. }'`
  315. fi
  316. if test -z "$aix_libpath"; then
  317. aix_libpath="/usr/lib:/lib"
  318. fi
  319. rm -f conftest.c conftest
  320. # End _LT_AC_SYS_LIBPATH_AIX.
  321. if test "$aix_use_runtimelinking" = yes; then
  322. hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
  323. else
  324. if test "$host_cpu" = ia64; then
  325. hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib'
  326. else
  327. hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath"
  328. fi
  329. fi
  330. ;;
  331. amigaos*)
  332. hardcode_libdir_flag_spec='-L$libdir'
  333. hardcode_minus_L=yes
  334. # see comment about different semantics on the GNU ld section
  335. ld_shlibs=no
  336. ;;
  337. bsdi[45]*)
  338. ;;
  339. cygwin* | mingw* | pw32*)
  340. # When not using gcc, we currently assume that we are using
  341. # Microsoft Visual C++.
  342. # hardcode_libdir_flag_spec is actually meaningless, as there is
  343. # no search path for DLLs.
  344. hardcode_libdir_flag_spec=' '
  345. libext=lib
  346. ;;
  347. darwin* | rhapsody*)
  348. hardcode_direct=no
  349. if test "$GCC" = yes ; then
  350. :
  351. else
  352. case $cc_basename in
  353. xlc*)
  354. ;;
  355. *)
  356. ld_shlibs=no
  357. ;;
  358. esac
  359. fi
  360. ;;
  361. dgux*)
  362. hardcode_libdir_flag_spec='-L$libdir'
  363. ;;
  364. freebsd1*)
  365. ld_shlibs=no
  366. ;;
  367. freebsd2.2*)
  368. hardcode_libdir_flag_spec='-R$libdir'
  369. hardcode_direct=yes
  370. ;;
  371. freebsd2*)
  372. hardcode_direct=yes
  373. hardcode_minus_L=yes
  374. ;;
  375. freebsd* | dragonfly*)
  376. hardcode_libdir_flag_spec='-R$libdir'
  377. hardcode_direct=yes
  378. ;;
  379. hpux9*)
  380. hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  381. hardcode_libdir_separator=:
  382. hardcode_direct=yes
  383. # hardcode_minus_L: Not really in the search PATH,
  384. # but as the default location of the library.
  385. hardcode_minus_L=yes
  386. ;;
  387. hpux10*)
  388. if test "$with_gnu_ld" = no; then
  389. hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  390. hardcode_libdir_separator=:
  391. hardcode_direct=yes
  392. # hardcode_minus_L: Not really in the search PATH,
  393. # but as the default location of the library.
  394. hardcode_minus_L=yes
  395. fi
  396. ;;
  397. hpux11*)
  398. if test "$with_gnu_ld" = no; then
  399. hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir'
  400. hardcode_libdir_separator=:
  401. case $host_cpu in
  402. hppa*64*|ia64*)
  403. hardcode_direct=no
  404. ;;
  405. *)
  406. hardcode_direct=yes
  407. # hardcode_minus_L: Not really in the search PATH,
  408. # but as the default location of the library.
  409. hardcode_minus_L=yes
  410. ;;
  411. esac
  412. fi
  413. ;;
  414. irix5* | irix6* | nonstopux*)
  415. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  416. hardcode_libdir_separator=:
  417. ;;
  418. netbsd*)
  419. hardcode_libdir_flag_spec='-R$libdir'
  420. hardcode_direct=yes
  421. ;;
  422. newsos6)
  423. hardcode_direct=yes
  424. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  425. hardcode_libdir_separator=:
  426. ;;
  427. openbsd*)
  428. if test -f /usr/libexec/ld.so; then
  429. hardcode_direct=yes
  430. if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  431. hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
  432. else
  433. case "$host_os" in
  434. openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*)
  435. hardcode_libdir_flag_spec='-R$libdir'
  436. ;;
  437. *)
  438. hardcode_libdir_flag_spec='${wl}-rpath,$libdir'
  439. ;;
  440. esac
  441. fi
  442. else
  443. ld_shlibs=no
  444. fi
  445. ;;
  446. os2*)
  447. hardcode_libdir_flag_spec='-L$libdir'
  448. hardcode_minus_L=yes
  449. ;;
  450. osf3*)
  451. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  452. hardcode_libdir_separator=:
  453. ;;
  454. osf4* | osf5*)
  455. if test "$GCC" = yes; then
  456. hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
  457. else
  458. # Both cc and cxx compiler support -rpath directly
  459. hardcode_libdir_flag_spec='-rpath $libdir'
  460. fi
  461. hardcode_libdir_separator=:
  462. ;;
  463. solaris*)
  464. hardcode_libdir_flag_spec='-R$libdir'
  465. ;;
  466. sunos4*)
  467. hardcode_libdir_flag_spec='-L$libdir'
  468. hardcode_direct=yes
  469. hardcode_minus_L=yes
  470. ;;
  471. sysv4)
  472. case $host_vendor in
  473. sni)
  474. hardcode_direct=yes # is this really true???
  475. ;;
  476. siemens)
  477. hardcode_direct=no
  478. ;;
  479. motorola)
  480. hardcode_direct=no #Motorola manual says yes, but my tests say they lie
  481. ;;
  482. esac
  483. ;;
  484. sysv4.3*)
  485. ;;
  486. sysv4*MP*)
  487. if test -d /usr/nec; then
  488. ld_shlibs=yes
  489. fi
  490. ;;
  491. sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* |sco3.2v5.0.[024]*)
  492. ;;
  493. sysv5* | sco3.2v5* | sco5v6*)
  494. hardcode_libdir_flag_spec='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
  495. hardcode_libdir_separator=':'
  496. ;;
  497. uts4*)
  498. hardcode_libdir_flag_spec='-L$libdir'
  499. ;;
  500. *)
  501. ld_shlibs=no
  502. ;;
  503. esac
  504. fi
  505. # Check dynamic linker characteristics
  506. # Code taken from libtool.m4's AC_LIBTOOL_SYS_DYNAMIC_LINKER.
  507. # Unlike libtool.m4, here we don't care about _all_ names of the library, but
  508. # only about the one the linker finds when passed -lNAME. This is the last
  509. # element of library_names_spec in libtool.m4, or possibly two of them if the
  510. # linker has special search rules.
  511. library_names_spec= # the last element of library_names_spec in libtool.m4
  512. libname_spec='lib$name'
  513. case "$host_os" in
  514. aix3*)
  515. library_names_spec='$libname.a'
  516. ;;
  517. aix4* | aix5*)
  518. library_names_spec='$libname$shrext'
  519. ;;
  520. amigaos*)
  521. library_names_spec='$libname.a'
  522. ;;
  523. beos*)
  524. library_names_spec='$libname$shrext'
  525. ;;
  526. bsdi[45]*)
  527. library_names_spec='$libname$shrext'
  528. ;;
  529. cygwin* | mingw* | pw32*)
  530. shrext=.dll
  531. library_names_spec='$libname.dll.a $libname.lib'
  532. ;;
  533. darwin* | rhapsody*)
  534. shrext=.dylib
  535. library_names_spec='$libname$shrext'
  536. ;;
  537. dgux*)
  538. library_names_spec='$libname$shrext'
  539. ;;
  540. freebsd1*)
  541. ;;
  542. freebsd* | dragonfly*)
  543. case "$host_os" in
  544. freebsd[123]*)
  545. library_names_spec='$libname$shrext$versuffix' ;;
  546. *)
  547. library_names_spec='$libname$shrext' ;;
  548. esac
  549. ;;
  550. gnu*)
  551. library_names_spec='$libname$shrext'
  552. ;;
  553. hpux9* | hpux10* | hpux11*)
  554. case $host_cpu in
  555. ia64*)
  556. shrext=.so
  557. ;;
  558. hppa*64*)
  559. shrext=.sl
  560. ;;
  561. *)
  562. shrext=.sl
  563. ;;
  564. esac
  565. library_names_spec='$libname$shrext'
  566. ;;
  567. interix[3-9]*)
  568. library_names_spec='$libname$shrext'
  569. ;;
  570. irix5* | irix6* | nonstopux*)
  571. library_names_spec='$libname$shrext'
  572. case "$host_os" in
  573. irix5* | nonstopux*)
  574. libsuff= shlibsuff=
  575. ;;
  576. *)
  577. case $LD in
  578. *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= ;;
  579. *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 ;;
  580. *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 ;;
  581. *) libsuff= shlibsuff= ;;
  582. esac
  583. ;;
  584. esac
  585. ;;
  586. linux*oldld* | linux*aout* | linux*coff*)
  587. ;;
  588. linux* | k*bsd*-gnu)
  589. library_names_spec='$libname$shrext'
  590. ;;
  591. knetbsd*-gnu)
  592. library_names_spec='$libname$shrext'
  593. ;;
  594. netbsd*)
  595. library_names_spec='$libname$shrext'
  596. ;;
  597. newsos6)
  598. library_names_spec='$libname$shrext'
  599. ;;
  600. nto-qnx*)
  601. library_names_spec='$libname$shrext'
  602. ;;
  603. openbsd*)
  604. library_names_spec='$libname$shrext$versuffix'
  605. ;;
  606. os2*)
  607. libname_spec='$name'
  608. shrext=.dll
  609. library_names_spec='$libname.a'
  610. ;;
  611. osf3* | osf4* | osf5*)
  612. library_names_spec='$libname$shrext'
  613. ;;
  614. solaris*)
  615. library_names_spec='$libname$shrext'
  616. ;;
  617. sunos4*)
  618. library_names_spec='$libname$shrext$versuffix'
  619. ;;
  620. sysv4 | sysv4.3*)
  621. library_names_spec='$libname$shrext'
  622. ;;
  623. sysv4*MP*)
  624. library_names_spec='$libname$shrext'
  625. ;;
  626. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  627. library_names_spec='$libname$shrext'
  628. ;;
  629. uts4*)
  630. ;;
  631. esac
  632. sed_quote_subst='s/\(["`$\\]\)/\\\1/g'
  633. escaped_wl=`echo "X$wl" | sed -e 's/^X//' -e "$sed_quote_subst"`
  634. shlibext=`echo "$shrext" | sed -e 's,^\.,,'`
  635. escaped_libname_spec=`echo "X$libname_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
  636. escaped_library_names_spec=`echo "X$library_names_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
  637. escaped_hardcode_libdir_flag_spec=`echo "X$hardcode_libdir_flag_spec" | sed -e 's/^X//' -e "$sed_quote_subst"`
  638. LC_ALL=C sed -e 's/^\([a-zA-Z0-9_]*\)=/acl_cv_\1=/' <<EOF
  639. # How to pass a linker flag through the compiler.
  640. wl="$escaped_wl"
  641. # Static library suffix (normally "a").
  642. libext="$libext"
  643. # Shared library suffix (normally "so").
  644. shlibext="$shlibext"
  645. # Format of library name prefix.
  646. libname_spec="$escaped_libname_spec"
  647. # Library names that the linker finds when passed -lNAME.
  648. library_names_spec="$escaped_library_names_spec"
  649. # Flag to hardcode \$libdir into a binary during linking.
  650. # This must work even if \$libdir does not exist.
  651. hardcode_libdir_flag_spec="$escaped_hardcode_libdir_flag_spec"
  652. # Whether we need a single -rpath flag with a separated argument.
  653. hardcode_libdir_separator="$hardcode_libdir_separator"
  654. # Set to yes if using DIR/libNAME.so during linking hardcodes DIR into the
  655. # resulting binary.
  656. hardcode_direct="$hardcode_direct"
  657. # Set to yes if using the -LDIR flag during linking hardcodes DIR into the
  658. # resulting binary.
  659. hardcode_minus_L="$hardcode_minus_L"
  660. EOF