libtool.m4
上传用户:nini_0081
上传日期:2022-07-21
资源大小:2628k
文件大小:254k
源码类别:

多媒体编程

开发平台:

DOS

  1. ##############################################################################
  2. # Based on libtool-2.2.6a
  3. # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
  4. #
  5. #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  6. #                 2006, 2007, 2008 Free Software Foundation, Inc.
  7. #   Written by Gordon Matzigkeit, 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. m4_define([_LT_COPYING], [dnl
  13. #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
  14. #                 2006, 2007, 2008 Free Software Foundation, Inc.
  15. #   Written by Gordon Matzigkeit, 1996
  16. #
  17. #   This file is part of GNU Libtool.
  18. #
  19. # GNU Libtool is free software; you can redistribute it and/or
  20. # modify it under the terms of the GNU General Public License as
  21. # published by the Free Software Foundation; either version 2 of
  22. # the License, or (at your option) any later version.
  23. #
  24. # As a special exception to the GNU General Public License,
  25. # if you distribute this file as part of a program or library that
  26. # is built using GNU Libtool, you may include this file under the
  27. # same distribution terms that you use for the rest of that program.
  28. #
  29. # GNU Libtool is distributed in the hope that it will be useful,
  30. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  31. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  32. # GNU General Public License for more details.
  33. #
  34. # You should have received a copy of the GNU General Public License
  35. # along with GNU Libtool; see the file COPYING.  If not, a copy
  36. # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
  37. # obtained by writing to the Free Software Foundation, Inc.,
  38. # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  39. ])
  40. # serial 56 LT_INIT
  41. # LT_PREREQ(VERSION)
  42. # ------------------
  43. # Complain and exit if this libtool version is less that VERSION.
  44. m4_defun([LT_PREREQ],
  45. [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
  46.        [m4_default([$3],
  47.    [m4_fatal([Libtool version $1 or higher is required],
  48.              63)])],
  49.        [$2])])
  50. # _LT_CHECK_BUILDDIR
  51. # ------------------
  52. # Complain if the absolute build directory name contains unusual characters
  53. m4_defun([_LT_CHECK_BUILDDIR],
  54. [case `pwd` in
  55.   * * | * *)
  56.     AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
  57. esac
  58. ])
  59. # LT_INIT([OPTIONS])
  60. # ------------------
  61. AC_DEFUN([LT_INIT],
  62. [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
  63. AC_BEFORE([$0], [LT_LANG])dnl
  64. AC_BEFORE([$0], [LT_OUTPUT])dnl
  65. AC_BEFORE([$0], [LTDL_INIT])dnl
  66. m4_require([_LT_CHECK_BUILDDIR])dnl
  67. dnl Autoconf doesn't catch unexpanded LT_ macros by default:
  68. m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
  69. m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
  70. dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
  71. dnl unless we require an AC_DEFUNed macro:
  72. AC_REQUIRE([LTOPTIONS_VERSION])dnl
  73. AC_REQUIRE([LTSUGAR_VERSION])dnl
  74. AC_REQUIRE([LTVERSION_VERSION])dnl
  75. AC_REQUIRE([LTOBSOLETE_VERSION])dnl
  76. m4_require([_LT_PROG_LTMAIN])dnl
  77. dnl Parse OPTIONS
  78. _LT_SET_OPTIONS([$0], [$1])
  79. # This can be used to rebuild libtool when needed
  80. LIBTOOL_DEPS="$ltmain"
  81. # Always use our own libtool.
  82. LIBTOOL='$(SHELL) $(top_builddir)/libtool'
  83. AC_SUBST(LIBTOOL)dnl
  84. _LT_SETUP
  85. # Only expand once:
  86. m4_define([LT_INIT])
  87. ])# LT_INIT
  88. # Old names:
  89. AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
  90. AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
  91. dnl aclocal-1.4 backwards compatibility:
  92. dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
  93. dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
  94. # _LT_CC_BASENAME(CC)
  95. # -------------------
  96. # Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
  97. m4_defun([_LT_CC_BASENAME],
  98. [for cc_temp in $1""; do
  99.   case $cc_temp in
  100.     compile | *[[\/]]compile | ccache | *[[\/]]ccache ) ;;
  101.     distcc | *[[\/]]distcc | purify | *[[\/]]purify ) ;;
  102.     -*) ;;
  103.     *) break;;
  104.   esac
  105. done
  106. cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
  107. ])
  108. # _LT_FILEUTILS_DEFAULTS
  109. # ----------------------
  110. # It is okay to use these file commands and assume they have been set
  111. # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
  112. m4_defun([_LT_FILEUTILS_DEFAULTS],
  113. [: ${CP="cp -f"}
  114. : ${MV="mv -f"}
  115. : ${RM="rm -f"}
  116. ])# _LT_FILEUTILS_DEFAULTS
  117. # _LT_SETUP
  118. # ---------
  119. m4_defun([_LT_SETUP],
  120. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  121. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  122. _LT_DECL([], [host_alias], [0], [The host system])dnl
  123. _LT_DECL([], [host], [0])dnl
  124. _LT_DECL([], [host_os], [0])dnl
  125. dnl
  126. _LT_DECL([], [build_alias], [0], [The build system])dnl
  127. _LT_DECL([], [build], [0])dnl
  128. _LT_DECL([], [build_os], [0])dnl
  129. dnl
  130. AC_REQUIRE([AC_PROG_CC])dnl
  131. AC_REQUIRE([LT_PATH_LD])dnl
  132. AC_REQUIRE([LT_PATH_NM])dnl
  133. dnl
  134. AC_REQUIRE([AC_PROG_LN_S])dnl
  135. test -z "$LN_S" && LN_S="ln -s"
  136. _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
  137. dnl
  138. AC_REQUIRE([LT_CMD_MAX_LEN])dnl
  139. _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
  140. _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
  141. dnl
  142. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  143. m4_require([_LT_CHECK_SHELL_FEATURES])dnl
  144. m4_require([_LT_CMD_RELOAD])dnl
  145. m4_require([_LT_CHECK_MAGIC_METHOD])dnl
  146. m4_require([_LT_CMD_OLD_ARCHIVE])dnl
  147. m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
  148. _LT_CONFIG_LIBTOOL_INIT([
  149. # See if we are running on zsh, and set the options which allow our
  150. # commands through without removal of  escapes INIT.
  151. if test -n "${ZSH_VERSION+set}" ; then
  152.    setopt NO_GLOB_SUBST
  153. fi
  154. ])
  155. if test -n "${ZSH_VERSION+set}" ; then
  156.    setopt NO_GLOB_SUBST
  157. fi
  158. _LT_CHECK_OBJDIR
  159. m4_require([_LT_TAG_COMPILER])dnl
  160. _LT_PROG_ECHO_BACKSLASH
  161. case $host_os in
  162. aix3*)
  163.   # AIX sometimes has problems with the GCC collect2 program.  For some
  164.   # reason, if we set the COLLECT_NAMES environment variable, the problems
  165.   # vanish in a puff of smoke.
  166.   if test "X${COLLECT_NAMES+set}" != Xset; then
  167.     COLLECT_NAMES=
  168.     export COLLECT_NAMES
  169.   fi
  170.   ;;
  171. esac
  172. # Sed substitution that helps us do robust quoting.  It backslashifies
  173. # metacharacters that are still active within double-quoted strings.
  174. sed_quote_subst='s/([["`$\]])/\1/g'
  175. # Same as above, but do not quote variable references.
  176. double_quote_subst='s/([["`\]])/\1/g'
  177. # Sed substitution to delay expansion of an escaped shell variable in a
  178. # double_quote_subst'ed string.
  179. delay_variable_subst='s/\\\\\$/\\\$/g'
  180. # Sed substitution to delay expansion of an escaped single quote.
  181. delay_single_quote_subst='s/'''/''\\\'''/g'
  182. # Sed substitution to avoid accidental globbing in evaled expressions
  183. no_glob_subst='s/*/\*/g'
  184. # Global variables:
  185. ofile=libtool
  186. can_build_shared=yes
  187. # All known linkers require a `.a' archive for static linking (except MSVC,
  188. # which needs '.lib').
  189. libext=a
  190. with_gnu_ld="$lt_cv_prog_gnu_ld"
  191. old_CC="$CC"
  192. old_CFLAGS="$CFLAGS"
  193. # Set sane defaults for various variables
  194. test -z "$CC" && CC=cc
  195. test -z "$LTCC" && LTCC=$CC
  196. test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
  197. test -z "$LD" && LD=ld
  198. test -z "$ac_objext" && ac_objext=o
  199. _LT_CC_BASENAME([$compiler])
  200. # Only perform the check for file, if the check method requires it
  201. test -z "$MAGIC_CMD" && MAGIC_CMD=file
  202. case $deplibs_check_method in
  203. file_magic*)
  204.   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
  205.     _LT_PATH_MAGIC
  206.   fi
  207.   ;;
  208. esac
  209. # Use C for the default configuration in the libtool script
  210. LT_SUPPORTED_TAG([CC])
  211. _LT_LANG_C_CONFIG
  212. _LT_LANG_DEFAULT_CONFIG
  213. _LT_CONFIG_COMMANDS
  214. ])# _LT_SETUP
  215. # _LT_PROG_LTMAIN
  216. # ---------------
  217. # Note that this code is called both from `configure', and `config.status'
  218. # now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,
  219. # `config.status' has no value for ac_aux_dir unless we are using Automake,
  220. # so we pass a copy along to make sure it has a sensible value anyway.
  221. m4_defun([_LT_PROG_LTMAIN],
  222. [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
  223. _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
  224. ltmain="$ac_aux_dir/ltmain.sh"
  225. ])# _LT_PROG_LTMAIN
  226. ## ------------------------------------- ##
  227. ## Accumulate code for creating libtool. ##
  228. ## ------------------------------------- ##
  229. # So that we can recreate a full libtool script including additional
  230. # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
  231. # in macros and then make a single call at the end using the `libtool'
  232. # label.
  233. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
  234. # ----------------------------------------
  235. # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  236. m4_define([_LT_CONFIG_LIBTOOL_INIT],
  237. [m4_ifval([$1],
  238.           [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
  239.                      [$1
  240. ])])])
  241. # Initialize.
  242. m4_define([_LT_OUTPUT_LIBTOOL_INIT])
  243. # _LT_CONFIG_LIBTOOL([COMMANDS])
  244. # ------------------------------
  245. # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
  246. m4_define([_LT_CONFIG_LIBTOOL],
  247. [m4_ifval([$1],
  248.           [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
  249.                      [$1
  250. ])])])
  251. # Initialize.
  252. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
  253. # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
  254. # -----------------------------------------------------
  255. m4_defun([_LT_CONFIG_SAVE_COMMANDS],
  256. [_LT_CONFIG_LIBTOOL([$1])
  257. _LT_CONFIG_LIBTOOL_INIT([$2])
  258. ])
  259. # _LT_FORMAT_COMMENT([COMMENT])
  260. # -----------------------------
  261. # Add leading comment marks to the start of each line, and a trailing
  262. # full-stop to the whole comment if one is not present already.
  263. m4_define([_LT_FORMAT_COMMENT],
  264. [m4_ifval([$1], [
  265. m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
  266.               [['`$]], [\&])]m4_bmatch([$1], [[!?.]$], [], [.])
  267. )])
  268. ## ------------------------ ##
  269. ## FIXME: Eliminate VARNAME ##
  270. ## ------------------------ ##
  271. # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
  272. # -------------------------------------------------------------------
  273. # CONFIGNAME is the name given to the value in the libtool script.
  274. # VARNAME is the (base) name used in the configure script.
  275. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on
  276. # VARNAME.  Any other value will be used directly.
  277. m4_define([_LT_DECL],
  278. [lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
  279.     [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
  280. [m4_ifval([$1], [$1], [$2])])
  281.     lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
  282.     m4_ifval([$4],
  283. [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
  284.     lt_dict_add_subkey([lt_decl_dict], [$2],
  285. [tagged?], [m4_ifval([$5], [yes], [no])])])
  286. ])
  287. # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
  288. # --------------------------------------------------------
  289. m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
  290. # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
  291. # ------------------------------------------------
  292. m4_define([lt_decl_tag_varnames],
  293. [_lt_decl_filter([tagged?], [yes], $@)])
  294. # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
  295. # ---------------------------------------------------------
  296. m4_define([_lt_decl_filter],
  297. [m4_case([$#],
  298.   [0], [m4_fatal([$0: too few arguments: $#])],
  299.   [1], [m4_fatal([$0: too few arguments: $#: $1])],
  300.   [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
  301.   [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
  302.   [lt_dict_filter([lt_decl_dict], $@)])[]dnl
  303. ])
  304. # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
  305. # --------------------------------------------------
  306. m4_define([lt_decl_quote_varnames],
  307. [_lt_decl_filter([value], [1], $@)])
  308. # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
  309. # ---------------------------------------------------
  310. m4_define([lt_decl_dquote_varnames],
  311. [_lt_decl_filter([value], [2], $@)])
  312. # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
  313. # ---------------------------------------------------
  314. m4_define([lt_decl_varnames_tagged],
  315. [m4_assert([$# <= 2])dnl
  316. _$0(m4_quote(m4_default([$1], [[, ]])),
  317.     m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
  318.     m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
  319. m4_define([_lt_decl_varnames_tagged],
  320. [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
  321. # lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
  322. # ------------------------------------------------
  323. m4_define([lt_decl_all_varnames],
  324. [_$0(m4_quote(m4_default([$1], [[, ]])),
  325.      m4_if([$2], [],
  326.    m4_quote(lt_decl_varnames),
  327. m4_quote(m4_shift($@))))[]dnl
  328. ])
  329. m4_define([_lt_decl_all_varnames],
  330. [lt_join($@, lt_decl_varnames_tagged([$1],
  331. lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
  332. ])
  333. # _LT_CONFIG_STATUS_DECLARE([VARNAME])
  334. # ------------------------------------
  335. # Quote a variable value, and forward it to `config.status' so that its
  336. # declaration there will have the same value as in `configure'.  VARNAME
  337. # must have a single quote delimited value for this to work.
  338. m4_define([_LT_CONFIG_STATUS_DECLARE],
  339. [$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`'])
  340. # _LT_CONFIG_STATUS_DECLARATIONS
  341. # ------------------------------
  342. # We delimit libtool config variables with single quotes, so when
  343. # we write them to config.status, we have to be sure to quote all
  344. # embedded single quotes properly.  In configure, this macro expands
  345. # each variable declared with _LT_DECL (and _LT_TAGDECL) into:
  346. #
  347. #    <var>='`$ECHO "X$<var>" | $Xsed -e "$delay_single_quote_subst"`'
  348. m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
  349. [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
  350.     [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
  351. # _LT_LIBTOOL_TAGS
  352. # ----------------
  353. # Output comment and list of tags supported by the script
  354. m4_defun([_LT_LIBTOOL_TAGS],
  355. [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
  356. available_tags="_LT_TAGS"dnl
  357. ])
  358. # _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
  359. # -----------------------------------
  360. # Extract the dictionary values for VARNAME (optionally with TAG) and
  361. # expand to a commented shell variable setting:
  362. #
  363. #    # Some comment about what VAR is for.
  364. #    visible_name=$lt_internal_name
  365. m4_define([_LT_LIBTOOL_DECLARE],
  366. [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
  367.    [description])))[]dnl
  368. m4_pushdef([_libtool_name],
  369.     m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
  370. m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
  371.     [0], [_libtool_name=[$]$1],
  372.     [1], [_libtool_name=$lt_[]$1],
  373.     [2], [_libtool_name=$lt_[]$1],
  374.     [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
  375. m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
  376. ])
  377. # _LT_LIBTOOL_CONFIG_VARS
  378. # -----------------------
  379. # Produce commented declarations of non-tagged libtool config variables
  380. # suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
  381. # script.  Tagged libtool config variables (even for the LIBTOOL CONFIG
  382. # section) are produced by _LT_LIBTOOL_TAG_VARS.
  383. m4_defun([_LT_LIBTOOL_CONFIG_VARS],
  384. [m4_foreach([_lt_var],
  385.     m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
  386.     [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
  387. # _LT_LIBTOOL_TAG_VARS(TAG)
  388. # -------------------------
  389. m4_define([_LT_LIBTOOL_TAG_VARS],
  390. [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
  391.     [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
  392. # _LT_TAGVAR(VARNAME, [TAGNAME])
  393. # ------------------------------
  394. m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
  395. # _LT_CONFIG_COMMANDS
  396. # -------------------
  397. # Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of
  398. # variables for single and double quote escaping we saved from calls
  399. # to _LT_DECL, we can put quote escaped variables declarations
  400. # into `config.status', and then the shell code to quote escape them in
  401. # for loops in `config.status'.  Finally, any additional code accumulated
  402. # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
  403. m4_defun([_LT_CONFIG_COMMANDS],
  404. [AC_PROVIDE_IFELSE([LT_OUTPUT],
  405. dnl If the libtool generation code has been placed in $CONFIG_LT,
  406. dnl instead of duplicating it all over again into config.status,
  407. dnl then we will have config.status run $CONFIG_LT later, so it
  408. dnl needs to know what name is stored there:
  409.         [AC_CONFIG_COMMANDS([libtool],
  410.             [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
  411.     dnl If the libtool generation code is destined for config.status,
  412.     dnl expand the accumulated commands and init code now:
  413.     [AC_CONFIG_COMMANDS([libtool],
  414.         [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
  415. ])#_LT_CONFIG_COMMANDS
  416. # Initialize.
  417. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
  418. [
  419. # The HP-UX ksh and POSIX shell print the target directory to stdout
  420. # if CDPATH is set.
  421. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  422. sed_quote_subst='$sed_quote_subst'
  423. double_quote_subst='$double_quote_subst'
  424. delay_variable_subst='$delay_variable_subst'
  425. _LT_CONFIG_STATUS_DECLARATIONS
  426. LTCC='$LTCC'
  427. LTCFLAGS='$LTCFLAGS'
  428. compiler='$compiler_DEFAULT'
  429. # Quote evaled strings.
  430. for var in lt_decl_all_varnames([[ 
  431. ]], lt_decl_quote_varnames); do
  432.     case `eval \\$ECHO "X\\$$var"` in
  433.     *[[\\\`\"\$]]*)
  434.       eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
  435.       ;;
  436.     *)
  437.       eval "lt_$var=\\\"\$$var\\\""
  438.       ;;
  439.     esac
  440. done
  441. # Double-quote double-evaled strings.
  442. for var in lt_decl_all_varnames([[ 
  443. ]], lt_decl_dquote_varnames); do
  444.     case `eval \\$ECHO "X\\$$var"` in
  445.     *[[\\\`\"\$]]*)
  446.       eval "lt_$var=\\\"\`\$ECHO \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
  447.       ;;
  448.     *)
  449.       eval "lt_$var=\\\"\$$var\\\""
  450.       ;;
  451.     esac
  452. done
  453. # Fix-up fallback echo if it was mangled by the above quoting rules.
  454. case $lt_ECHO in
  455. *'\[$]0 --fallback-echo"')dnl "
  456.   lt_ECHO=`$ECHO "X$lt_ECHO" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
  457.   ;;
  458. esac
  459. _LT_OUTPUT_LIBTOOL_INIT
  460. ])
  461. # LT_OUTPUT
  462. # ---------
  463. # This macro allows early generation of the libtool script (before
  464. # AC_OUTPUT is called), incase it is used in configure for compilation
  465. # tests.
  466. AC_DEFUN([LT_OUTPUT],
  467. [: ${CONFIG_LT=./config.lt}
  468. AC_MSG_NOTICE([creating $CONFIG_LT])
  469. cat >"$CONFIG_LT" <<_LTEOF
  470. #! $SHELL
  471. # Generated by $as_me.
  472. # Run this file to recreate a libtool stub with the current configuration.
  473. lt_cl_silent=false
  474. SHELL=${CONFIG_SHELL-$SHELL}
  475. _LTEOF
  476. cat >>"$CONFIG_LT" <<_LTEOF
  477. AS_SHELL_SANITIZE
  478. _AS_PREPARE
  479. exec AS_MESSAGE_FD>&1
  480. exec AS_MESSAGE_LOG_FD>>config.log
  481. {
  482.   echo
  483.   AS_BOX([Running $as_me.])
  484. } >&AS_MESSAGE_LOG_FD
  485. lt_cl_help="
  486. `$as_me' creates a local libtool stub from the current configuration,
  487. for use in further configure time tests before the real libtool is
  488. generated.
  489. Usage: $[0] [[OPTIONS]]
  490.   -h, --help      print this help, then exit
  491.   -V, --version   print version number, then exit
  492.   -q, --quiet     do not print progress messages
  493.   -d, --debug     don't remove temporary files
  494. Report bugs to <bug-libtool@gnu.org>."
  495. lt_cl_version="
  496. m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
  497. m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
  498. configured by $[0], generated by m4_PACKAGE_STRING.
  499. Copyright (C) 2008 Free Software Foundation, Inc.
  500. This config.lt script is free software; the Free Software Foundation
  501. gives unlimited permision to copy, distribute and modify it."
  502. while test $[#] != 0
  503. do
  504.   case $[1] in
  505.     --version | --v* | -V )
  506.       echo "$lt_cl_version"; exit 0 ;;
  507.     --help | --h* | -h )
  508.       echo "$lt_cl_help"; exit 0 ;;
  509.     --debug | --d* | -d )
  510.       debug=: ;;
  511.     --quiet | --q* | --silent | --s* | -q )
  512.       lt_cl_silent=: ;;
  513.     -*) AC_MSG_ERROR([unrecognized option: $[1]
  514. Try `$[0] --help' for more information.]) ;;
  515.     *) AC_MSG_ERROR([unrecognized argument: $[1]
  516. Try `$[0] --help' for more information.]) ;;
  517.   esac
  518.   shift
  519. done
  520. if $lt_cl_silent; then
  521.   exec AS_MESSAGE_FD>/dev/null
  522. fi
  523. _LTEOF
  524. cat >>"$CONFIG_LT" <<_LTEOF
  525. _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
  526. _LTEOF
  527. cat >>"$CONFIG_LT" <<_LTEOF
  528. AC_MSG_NOTICE([creating $ofile])
  529. _LT_OUTPUT_LIBTOOL_COMMANDS
  530. AS_EXIT(0)
  531. _LTEOF
  532. chmod +x "$CONFIG_LT"
  533. # configure is writing to config.log, but config.lt does its own redirection,
  534. # appending to config.log, which fails on DOS, as config.log is still kept
  535. # open by configure.  Here we exec the FD to /dev/null, effectively closing
  536. # config.log, so it can be properly (re)opened and appended to by config.lt.
  537. if test "$no_create" != yes; then
  538.   lt_cl_success=:
  539.   test "$silent" = yes &&
  540.     lt_config_lt_args="$lt_config_lt_args --quiet"
  541.   exec AS_MESSAGE_LOG_FD>/dev/null
  542.   $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
  543.   exec AS_MESSAGE_LOG_FD>>config.log
  544.   $lt_cl_success || AS_EXIT(1)
  545. fi
  546. ])# LT_OUTPUT
  547. # _LT_CONFIG(TAG)
  548. # ---------------
  549. # If TAG is the built-in tag, create an initial libtool script with a
  550. # default configuration from the untagged config vars.  Otherwise add code
  551. # to config.status for appending the configuration named by TAG from the
  552. # matching tagged config vars.
  553. m4_defun([_LT_CONFIG],
  554. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  555. _LT_CONFIG_SAVE_COMMANDS([
  556.   m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
  557.   m4_if(_LT_TAG, [C], [
  558.     # See if we are running on zsh, and set the options which allow our
  559.     # commands through without removal of  escapes.
  560.     if test -n "${ZSH_VERSION+set}" ; then
  561.       setopt NO_GLOB_SUBST
  562.     fi
  563.     cfgfile="${ofile}T"
  564.     trap "$RM "$cfgfile"; exit 1" 1 2 15
  565.     $RM "$cfgfile"
  566.     cat <<_LT_EOF >> "$cfgfile"
  567. #! $SHELL
  568. # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
  569. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
  570. # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
  571. # NOTE: Changes made to this file will be lost: look at ltmain.sh.
  572. #
  573. _LT_COPYING
  574. _LT_LIBTOOL_TAGS
  575. # ### BEGIN LIBTOOL CONFIG
  576. _LT_LIBTOOL_CONFIG_VARS
  577. _LT_LIBTOOL_TAG_VARS
  578. # ### END LIBTOOL CONFIG
  579. _LT_EOF
  580.   case $host_os in
  581.   aix3*)
  582.     cat <<_LT_EOF >> "$cfgfile"
  583. # AIX sometimes has problems with the GCC collect2 program.  For some
  584. # reason, if we set the COLLECT_NAMES environment variable, the problems
  585. # vanish in a puff of smoke.
  586. if test "X${COLLECT_NAMES+set}" != Xset; then
  587.   COLLECT_NAMES=
  588.   export COLLECT_NAMES
  589. fi
  590. _LT_EOF
  591.     ;;
  592.   esac
  593.   _LT_PROG_LTMAIN
  594.   # We use sed instead of cat because bash on DJGPP gets confused if
  595.   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
  596.   # text mode, it properly converts lines to CR/LF.  This bash problem
  597.   # is reportedly fixed, but why not run on old versions too?
  598.   sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" 
  599.     || (rm -f "$cfgfile"; exit 1)
  600.   _LT_PROG_XSI_SHELLFNS
  601.   sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" 
  602.     || (rm -f "$cfgfile"; exit 1)
  603.   mv -f "$cfgfile" "$ofile" ||
  604.     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
  605.   chmod +x "$ofile"
  606. ],
  607. [cat <<_LT_EOF >> "$ofile"
  608. dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
  609. dnl in a comment (ie after a #).
  610. # ### BEGIN LIBTOOL TAG CONFIG: $1
  611. _LT_LIBTOOL_TAG_VARS(_LT_TAG)
  612. # ### END LIBTOOL TAG CONFIG: $1
  613. _LT_EOF
  614. ])dnl /m4_if
  615. ],
  616. [m4_if([$1], [], [
  617.     PACKAGE='$PACKAGE'
  618.     VERSION='$VERSION'
  619.     TIMESTAMP='$TIMESTAMP'
  620.     RM='$RM'
  621.     ofile='$ofile'], [])
  622. ])dnl /_LT_CONFIG_SAVE_COMMANDS
  623. ])# _LT_CONFIG
  624. # LT_SUPPORTED_TAG(TAG)
  625. # ---------------------
  626. # Trace this macro to discover what tags are supported by the libtool
  627. # --tag option, using:
  628. #    autoconf --trace 'LT_SUPPORTED_TAG:$1'
  629. AC_DEFUN([LT_SUPPORTED_TAG], [])
  630. # C support is built-in for now
  631. m4_define([_LT_LANG_C_enabled], [])
  632. m4_define([_LT_TAGS], [])
  633. # LT_LANG(LANG)
  634. # -------------
  635. # Enable libtool support for the given language if not already enabled.
  636. AC_DEFUN([LT_LANG],
  637. [AC_BEFORE([$0], [LT_OUTPUT])dnl
  638. m4_case([$1],
  639.   [C], [_LT_LANG(C)],
  640.   [C++], [_LT_LANG(CXX)],
  641.   [Java], [_LT_LANG(GCJ)],
  642.   [Fortran 77], [_LT_LANG(F77)],
  643.   [Fortran], [_LT_LANG(FC)],
  644.   [Windows Resource], [_LT_LANG(RC)],
  645.   [m4_ifdef([_LT_LANG_]$1[_CONFIG],
  646.     [_LT_LANG($1)],
  647.     [m4_fatal([$0: unsupported language: "$1"])])])dnl
  648. ])# LT_LANG
  649. # _LT_LANG(LANGNAME)
  650. # ------------------
  651. m4_defun([_LT_LANG],
  652. [m4_ifdef([_LT_LANG_]$1[_enabled], [],
  653.   [LT_SUPPORTED_TAG([$1])dnl
  654.   m4_append([_LT_TAGS], [$1 ])dnl
  655.   m4_define([_LT_LANG_]$1[_enabled], [])dnl
  656.   _LT_LANG_$1_CONFIG($1)])dnl
  657. ])# _LT_LANG
  658. # _LT_LANG_DEFAULT_CONFIG
  659. # -----------------------
  660. m4_defun([_LT_LANG_DEFAULT_CONFIG],
  661. [AC_PROVIDE_IFELSE([AC_PROG_CXX],
  662.   [LT_LANG(CXX)],
  663.   [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
  664. AC_PROVIDE_IFELSE([AC_PROG_F77],
  665.   [LT_LANG(F77)],
  666.   [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
  667. AC_PROVIDE_IFELSE([AC_PROG_FC],
  668.   [LT_LANG(FC)],
  669.   [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
  670. dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
  671. dnl pulling things in needlessly.
  672. AC_PROVIDE_IFELSE([AC_PROG_GCJ],
  673.   [LT_LANG(GCJ)],
  674.   [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
  675.     [LT_LANG(GCJ)],
  676.     [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
  677.       [LT_LANG(GCJ)],
  678.       [m4_ifdef([AC_PROG_GCJ],
  679. [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
  680.        m4_ifdef([A][M_PROG_GCJ],
  681. [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
  682.        m4_ifdef([LT_PROG_GCJ],
  683. [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
  684. AC_PROVIDE_IFELSE([LT_PROG_RC],
  685.   [LT_LANG(RC)],
  686.   [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
  687. ])# _LT_LANG_DEFAULT_CONFIG
  688. # Obsolete macros:
  689. AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
  690. AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
  691. AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
  692. AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
  693. dnl aclocal-1.4 backwards compatibility:
  694. dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
  695. dnl AC_DEFUN([AC_LIBTOOL_F77], [])
  696. dnl AC_DEFUN([AC_LIBTOOL_FC], [])
  697. dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
  698. # _LT_TAG_COMPILER
  699. # ----------------
  700. m4_defun([_LT_TAG_COMPILER],
  701. [AC_REQUIRE([AC_PROG_CC])dnl
  702. _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
  703. _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
  704. _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
  705. _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
  706. # If no C compiler was specified, use CC.
  707. LTCC=${LTCC-"$CC"}
  708. # If no C compiler flags were specified, use CFLAGS.
  709. LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
  710. # Allow CC to be a program name with arguments.
  711. compiler=$CC
  712. ])# _LT_TAG_COMPILER
  713. # _LT_COMPILER_BOILERPLATE
  714. # ------------------------
  715. # Check for compiler boilerplate output or warnings with
  716. # the simple compiler test code.
  717. m4_defun([_LT_COMPILER_BOILERPLATE],
  718. [m4_require([_LT_DECL_SED])dnl
  719. ac_outfile=conftest.$ac_objext
  720. echo "$lt_simple_compile_test_code" >conftest.$ac_ext
  721. eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  722. _lt_compiler_boilerplate=`cat conftest.err`
  723. $RM conftest*
  724. ])# _LT_COMPILER_BOILERPLATE
  725. # _LT_LINKER_BOILERPLATE
  726. # ----------------------
  727. # Check for linker boilerplate output or warnings with
  728. # the simple link test code.
  729. m4_defun([_LT_LINKER_BOILERPLATE],
  730. [m4_require([_LT_DECL_SED])dnl
  731. ac_outfile=conftest.$ac_objext
  732. echo "$lt_simple_link_test_code" >conftest.$ac_ext
  733. eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
  734. _lt_linker_boilerplate=`cat conftest.err`
  735. $RM -r conftest*
  736. ])# _LT_LINKER_BOILERPLATE
  737. # _LT_REQUIRED_DARWIN_CHECKS
  738. # -------------------------
  739. m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
  740.   case $host_os in
  741.     rhapsody* | darwin*)
  742.     AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
  743.     AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
  744.     AC_CHECK_TOOL([LIPO], [lipo], [:])
  745.     AC_CHECK_TOOL([OTOOL], [otool], [:])
  746.     AC_CHECK_TOOL([OTOOL64], [otool64], [:])
  747.     _LT_DECL([], [DSYMUTIL], [1],
  748.       [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
  749.     _LT_DECL([], [NMEDIT], [1],
  750.       [Tool to change global to local symbols on Mac OS X])
  751.     _LT_DECL([], [LIPO], [1],
  752.       [Tool to manipulate fat objects and archives on Mac OS X])
  753.     _LT_DECL([], [OTOOL], [1],
  754.       [ldd/readelf like tool for Mach-O binaries on Mac OS X])
  755.     _LT_DECL([], [OTOOL64], [1],
  756.       [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
  757.     AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
  758.       [lt_cv_apple_cc_single_mod=no
  759.       if test -z "${LT_MULTI_MODULE}"; then
  760. # By default we will add the -single_module flag. You can override
  761. # by either setting the environment variable LT_MULTI_MODULE
  762. # non-empty at configure time, or by adding -multi_module to the
  763. # link flags.
  764. rm -rf libconftest.dylib*
  765. echo "int foo(void){return 1;}" > conftest.c
  766. echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib 
  767. -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
  768. $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib 
  769.   -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
  770.         _lt_result=$?
  771. if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then
  772.   lt_cv_apple_cc_single_mod=yes
  773. else
  774.   cat conftest.err >&AS_MESSAGE_LOG_FD
  775. fi
  776. rm -rf libconftest.dylib*
  777. rm -f conftest.*
  778.       fi])
  779.     AC_CACHE_CHECK([for -exported_symbols_list linker flag],
  780.       [lt_cv_ld_exported_symbols_list],
  781.       [lt_cv_ld_exported_symbols_list=no
  782.       save_LDFLAGS=$LDFLAGS
  783.       echo "_main" > conftest.sym
  784.       LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
  785.       AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  786. [lt_cv_ld_exported_symbols_list=yes],
  787. [lt_cv_ld_exported_symbols_list=no])
  788. LDFLAGS="$save_LDFLAGS"
  789.     ])
  790.     case $host_os in
  791.     rhapsody* | darwin1.[[012]])
  792.       _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
  793.     darwin1.*)
  794.       _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  795.     darwin*) # darwin 5.x on
  796.       # if running on 10.5 or later, the deployment target defaults
  797.       # to the OS version, if on x86, and 10.4, the deployment
  798.       # target defaults to 10.4. Don't you love it?
  799.       case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
  800. 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
  801.   _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  802. 10.[[012]]*)
  803.   _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
  804. 10.*)
  805.   _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
  806.       esac
  807.     ;;
  808.   esac
  809.     if test "$lt_cv_apple_cc_single_mod" = "yes"; then
  810.       _lt_dar_single_mod='$single_module'
  811.     fi
  812.     if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
  813.       _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
  814.     else
  815.       _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
  816.     fi
  817.     if test "$DSYMUTIL" != ":"; then
  818.       _lt_dsymutil='~$DSYMUTIL $lib || :'
  819.     else
  820.       _lt_dsymutil=
  821.     fi
  822.     ;;
  823.   esac
  824. ])
  825. # _LT_DARWIN_LINKER_FEATURES
  826. # --------------------------
  827. # Checks for linker and compiler features on darwin
  828. m4_defun([_LT_DARWIN_LINKER_FEATURES],
  829. [
  830.   m4_require([_LT_REQUIRED_DARWIN_CHECKS])
  831.   _LT_TAGVAR(archive_cmds_need_lc, $1)=no
  832.   _LT_TAGVAR(hardcode_direct, $1)=no
  833.   _LT_TAGVAR(hardcode_automatic, $1)=yes
  834.   _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
  835.   _LT_TAGVAR(whole_archive_flag_spec, $1)=''
  836.   _LT_TAGVAR(link_all_deplibs, $1)=yes
  837.   _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
  838.   case $cc_basename in
  839.      ifort*) _lt_dar_can_shared=yes ;;
  840.      *) _lt_dar_can_shared=$GCC ;;
  841.   esac
  842.   if test "$_lt_dar_can_shared" = "yes"; then
  843.     output_verbose_link_cmd=echo
  844.     _LT_TAGVAR(archive_cmds, $1)="$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring $_lt_dar_single_mod${_lt_dsymutil}"
  845.     _LT_TAGVAR(module_cmds, $1)="$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags${_lt_dsymutil}"
  846.     _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
  847.     _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs $compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
  848.     m4_if([$1], [CXX],
  849. [   if test "$lt_cv_apple_cc_single_mod" != "yes"; then
  850.       _LT_TAGVAR(archive_cmds, $1)="$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring${_lt_dsymutil}"
  851.       _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $deplibs $compiler_flags -install_name $rpath/$soname $verstring${_lt_dar_export_syms}${_lt_dsymutil}"
  852.     fi
  853. ],[])
  854.   else
  855.   _LT_TAGVAR(ld_shlibs, $1)=no
  856.   fi
  857. ])
  858. # _LT_SYS_MODULE_PATH_AIX
  859. # -----------------------
  860. # Links a minimal program and checks the executable
  861. # for the system default hardcoded library path. In most cases,
  862. # this is /usr/lib:/lib, but when the MPI compilers are used
  863. # the location of the communication and MPI libs are included too.
  864. # If we don't find anything, use the default library path according
  865. # to the aix ld manual.
  866. m4_defun([_LT_SYS_MODULE_PATH_AIX],
  867. [m4_require([_LT_DECL_SED])dnl
  868. AC_LINK_IFELSE(AC_LANG_PROGRAM,[
  869. lt_aix_libpath_sed='
  870.     /Import File Strings/,/^$/ {
  871. /^0/ {
  872.     s/^0  *(.*)$/1/
  873.     p
  874. }
  875.     }'
  876. aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  877. # Check for a 64-bit object if we didn't find anything.
  878. if test -z "$aix_libpath"; then
  879.   aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
  880. fi],[])
  881. if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
  882. ])# _LT_SYS_MODULE_PATH_AIX
  883. # _LT_SHELL_INIT(ARG)
  884. # -------------------
  885. m4_define([_LT_SHELL_INIT],
  886. [ifdef([AC_DIVERSION_NOTICE],
  887.      [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
  888.  [AC_DIVERT_PUSH(NOTICE)])
  889. $1
  890. AC_DIVERT_POP
  891. ])# _LT_SHELL_INIT
  892. # _LT_PROG_ECHO_BACKSLASH
  893. # -----------------------
  894. # Add some code to the start of the generated configure script which
  895. # will find an echo command which doesn't interpret backslashes.
  896. m4_defun([_LT_PROG_ECHO_BACKSLASH],
  897. [_LT_SHELL_INIT([
  898. # Check that we are running under the correct shell.
  899. SHELL=${CONFIG_SHELL-/bin/sh}
  900. case X$lt_ECHO in
  901. X*--fallback-echo)
  902.   # Remove one level of quotation (which was required for Make).
  903.   ECHO=`echo "$lt_ECHO" | sed 's,\\[$]\[$]0,'[$]0','`
  904.   ;;
  905. esac
  906. ECHO=${lt_ECHO-echo}
  907. if test "X[$]1" = X--no-reexec; then
  908.   # Discard the --no-reexec flag, and continue.
  909.   shift
  910. elif test "X[$]1" = X--fallback-echo; then
  911.   # Avoid inline document here, it may be left over
  912.   :
  913. elif test "X`{ $ECHO 't'; } 2>/dev/null`" = 'Xt' ; then
  914.   # Yippee, $ECHO works!
  915.   :
  916. else
  917.   # Restart under the correct shell.
  918.   exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
  919. fi
  920. if test "X[$]1" = X--fallback-echo; then
  921.   # used as fallback echo
  922.   shift
  923.   cat <<_LT_EOF
  924. [$]*
  925. _LT_EOF
  926.   exit 0
  927. fi
  928. # The HP-UX ksh and POSIX shell print the target directory to stdout
  929. # if CDPATH is set.
  930. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
  931. if test -z "$lt_ECHO"; then
  932.   if test "X${echo_test_string+set}" != Xset; then
  933.     # find a string as large as possible, as long as the shell can cope with it
  934.     for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
  935.       # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
  936.       if { echo_test_string=`eval $cmd`; } 2>/dev/null &&
  937.  { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null
  938.       then
  939.         break
  940.       fi
  941.     done
  942.   fi
  943.   if test "X`{ $ECHO 't'; } 2>/dev/null`" = 'Xt' &&
  944.      echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
  945.      test "X$echo_testing_string" = "X$echo_test_string"; then
  946.     :
  947.   else
  948.     # The Solaris, AIX, and Digital Unix default echo programs unquote
  949.     # backslashes.  This makes it impossible to quote backslashes using
  950.     #   echo "$something" | sed 's/\/\\/g'
  951.     #
  952.     # So, first we look for a working echo in the user's PATH.
  953.     lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  954.     for dir in $PATH /usr/ucb; do
  955.       IFS="$lt_save_ifs"
  956.       if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
  957.          test "X`($dir/echo 't') 2>/dev/null`" = 'Xt' &&
  958.          echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
  959.          test "X$echo_testing_string" = "X$echo_test_string"; then
  960.         ECHO="$dir/echo"
  961.         break
  962.       fi
  963.     done
  964.     IFS="$lt_save_ifs"
  965.     if test "X$ECHO" = Xecho; then
  966.       # We didn't find a better echo, so look for alternatives.
  967.       if test "X`{ print -r 't'; } 2>/dev/null`" = 'Xt' &&
  968.          echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` &&
  969.          test "X$echo_testing_string" = "X$echo_test_string"; then
  970.         # This shell has a builtin print -r that does the trick.
  971.         ECHO='print -r'
  972.       elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } &&
  973.    test "X$CONFIG_SHELL" != X/bin/ksh; then
  974.         # If we have ksh, try running configure again with it.
  975.         ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
  976.         export ORIGINAL_CONFIG_SHELL
  977.         CONFIG_SHELL=/bin/ksh
  978.         export CONFIG_SHELL
  979.         exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
  980.       else
  981.         # Try using printf.
  982.         ECHO='printf %sn'
  983.         if test "X`{ $ECHO 't'; } 2>/dev/null`" = 'Xt' &&
  984.    echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` &&
  985.    test "X$echo_testing_string" = "X$echo_test_string"; then
  986.   # Cool, printf works
  987.   :
  988.         elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo 't') 2>/dev/null` &&
  989.      test "X$echo_testing_string" = 'Xt' &&
  990.      echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  991.      test "X$echo_testing_string" = "X$echo_test_string"; then
  992.   CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
  993.   export CONFIG_SHELL
  994.   SHELL="$CONFIG_SHELL"
  995.   export SHELL
  996.   ECHO="$CONFIG_SHELL [$]0 --fallback-echo"
  997.         elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo 't') 2>/dev/null` &&
  998.      test "X$echo_testing_string" = 'Xt' &&
  999.      echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
  1000.      test "X$echo_testing_string" = "X$echo_test_string"; then
  1001.   ECHO="$CONFIG_SHELL [$]0 --fallback-echo"
  1002.         else
  1003.   # maybe with a smaller string...
  1004.   prev=:
  1005.   for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
  1006.     if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null
  1007.     then
  1008.       break
  1009.     fi
  1010.     prev="$cmd"
  1011.   done
  1012.   if test "$prev" != 'sed 50q "[$]0"'; then
  1013.     echo_test_string=`eval $prev`
  1014.     export echo_test_string
  1015.     exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
  1016.   else
  1017.     # Oops.  We lost completely, so just stick with echo.
  1018.     ECHO=echo
  1019.   fi
  1020.         fi
  1021.       fi
  1022.     fi
  1023.   fi
  1024. fi
  1025. # Copy echo and quote the copy suitably for passing to libtool from
  1026. # the Makefile, instead of quoting the original, which is used later.
  1027. lt_ECHO=$ECHO
  1028. if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
  1029.    lt_ECHO="$CONFIG_SHELL \$[$]0 --fallback-echo"
  1030. fi
  1031. AC_SUBST(lt_ECHO)
  1032. ])
  1033. _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
  1034. _LT_DECL([], [ECHO], [1],
  1035.     [An echo program that does not interpret backslashes])
  1036. ])# _LT_PROG_ECHO_BACKSLASH
  1037. # _LT_ENABLE_LOCK
  1038. # ---------------
  1039. m4_defun([_LT_ENABLE_LOCK],
  1040. [AC_ARG_ENABLE([libtool-lock],
  1041.   [AS_HELP_STRING([--disable-libtool-lock],
  1042.     [avoid locking (might break parallel builds)])])
  1043. test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
  1044. # Some flags need to be propagated to the compiler or linker for good
  1045. # libtool support.
  1046. case $host in
  1047. ia64-*-hpux*)
  1048.   # Find out which ABI we are using.
  1049.   echo 'int i;' > conftest.$ac_ext
  1050.   if AC_TRY_EVAL(ac_compile); then
  1051.     case `/usr/bin/file conftest.$ac_objext` in
  1052.       *ELF-32*)
  1053. HPUX_IA64_MODE="32"
  1054. ;;
  1055.       *ELF-64*)
  1056. HPUX_IA64_MODE="64"
  1057. ;;
  1058.     esac
  1059.   fi
  1060.   rm -rf conftest*
  1061.   ;;
  1062. *-*-irix6*)
  1063.   # Find out which ABI we are using.
  1064.   echo '[#]line __oline__ "configure"' > conftest.$ac_ext
  1065.   if AC_TRY_EVAL(ac_compile); then
  1066.     if test "$lt_cv_prog_gnu_ld" = yes; then
  1067.       case `/usr/bin/file conftest.$ac_objext` in
  1068. *32-bit*)
  1069.   LD="${LD-ld} -melf32bsmip"
  1070.   ;;
  1071. *N32*)
  1072.   LD="${LD-ld} -melf32bmipn32"
  1073.   ;;
  1074. *64-bit*)
  1075.   LD="${LD-ld} -melf64bmip"
  1076. ;;
  1077.       esac
  1078.     else
  1079.       case `/usr/bin/file conftest.$ac_objext` in
  1080. *32-bit*)
  1081.   LD="${LD-ld} -32"
  1082.   ;;
  1083. *N32*)
  1084.   LD="${LD-ld} -n32"
  1085.   ;;
  1086. *64-bit*)
  1087.   LD="${LD-ld} -64"
  1088.   ;;
  1089.       esac
  1090.     fi
  1091.   fi
  1092.   rm -rf conftest*
  1093.   ;;
  1094. x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| 
  1095. s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
  1096.   # Find out which ABI we are using.
  1097.   echo 'int i;' > conftest.$ac_ext
  1098.   if AC_TRY_EVAL(ac_compile); then
  1099.     case `/usr/bin/file conftest.o` in
  1100.       *32-bit*)
  1101. case $host in
  1102.   x86_64-*kfreebsd*-gnu)
  1103.     LD="${LD-ld} -m elf_i386_fbsd"
  1104.     ;;
  1105.   x86_64-*linux*)
  1106.     LD="${LD-ld} -m elf_i386"
  1107.     ;;
  1108.   ppc64-*linux*|powerpc64-*linux*)
  1109.     LD="${LD-ld} -m elf32ppclinux"
  1110.     ;;
  1111.   s390x-*linux*)
  1112.     LD="${LD-ld} -m elf_s390"
  1113.     ;;
  1114.   sparc64-*linux*)
  1115.     LD="${LD-ld} -m elf32_sparc"
  1116.     ;;
  1117. esac
  1118. ;;
  1119.       *64-bit*)
  1120. case $host in
  1121.   x86_64-*kfreebsd*-gnu)
  1122.     LD="${LD-ld} -m elf_x86_64_fbsd"
  1123.     ;;
  1124.   x86_64-*linux*)
  1125.     LD="${LD-ld} -m elf_x86_64"
  1126.     ;;
  1127.   ppc*-*linux*|powerpc*-*linux*)
  1128.     LD="${LD-ld} -m elf64ppc"
  1129.     ;;
  1130.   s390*-*linux*|s390*-*tpf*)
  1131.     LD="${LD-ld} -m elf64_s390"
  1132.     ;;
  1133.   sparc*-*linux*)
  1134.     LD="${LD-ld} -m elf64_sparc"
  1135.     ;;
  1136. esac
  1137. ;;
  1138.     esac
  1139.   fi
  1140.   rm -rf conftest*
  1141.   ;;
  1142. *-*-sco3.2v5*)
  1143.   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
  1144.   SAVE_CFLAGS="$CFLAGS"
  1145.   CFLAGS="$CFLAGS -belf"
  1146.   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
  1147.     [AC_LANG_PUSH(C)
  1148.      AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
  1149.      AC_LANG_POP])
  1150.   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
  1151.     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
  1152.     CFLAGS="$SAVE_CFLAGS"
  1153.   fi
  1154.   ;;
  1155. sparc*-*solaris*)
  1156.   # Find out which ABI we are using.
  1157.   echo 'int i;' > conftest.$ac_ext
  1158.   if AC_TRY_EVAL(ac_compile); then
  1159.     case `/usr/bin/file conftest.o` in
  1160.     *64-bit*)
  1161.       case $lt_cv_prog_gnu_ld in
  1162.       yes*) LD="${LD-ld} -m elf64_sparc" ;;
  1163.       *)
  1164. if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
  1165.   LD="${LD-ld} -64"
  1166. fi
  1167. ;;
  1168.       esac
  1169.       ;;
  1170.     esac
  1171.   fi
  1172.   rm -rf conftest*
  1173.   ;;
  1174. esac
  1175. need_locks="$enable_libtool_lock"
  1176. ])# _LT_ENABLE_LOCK
  1177. # _LT_CMD_OLD_ARCHIVE
  1178. # -------------------
  1179. m4_defun([_LT_CMD_OLD_ARCHIVE],
  1180. [AC_CHECK_TOOL(AR, ar, false)
  1181. test -z "$AR" && AR=ar
  1182. test -z "$AR_FLAGS" && AR_FLAGS=cru
  1183. _LT_DECL([], [AR], [1], [The archiver])
  1184. _LT_DECL([], [AR_FLAGS], [1])
  1185. AC_CHECK_TOOL(STRIP, strip, :)
  1186. test -z "$STRIP" && STRIP=:
  1187. _LT_DECL([], [STRIP], [1], [A symbol stripping program])
  1188. AC_CHECK_TOOL(RANLIB, ranlib, :)
  1189. test -z "$RANLIB" && RANLIB=:
  1190. _LT_DECL([], [RANLIB], [1],
  1191.     [Commands used to install an old-style archive])
  1192. # Determine commands to create old-style static archives.
  1193. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
  1194. old_postinstall_cmds='chmod 644 $oldlib'
  1195. old_postuninstall_cmds=
  1196. if test -n "$RANLIB"; then
  1197.   case $host_os in
  1198.   openbsd*)
  1199.     old_postinstall_cmds="$old_postinstall_cmds~$RANLIB -t $oldlib"
  1200.     ;;
  1201.   *)
  1202.     old_postinstall_cmds="$old_postinstall_cmds~$RANLIB $oldlib"
  1203.     ;;
  1204.   esac
  1205.   old_archive_cmds="$old_archive_cmds~$RANLIB $oldlib"
  1206. fi
  1207. _LT_DECL([], [old_postinstall_cmds], [2])
  1208. _LT_DECL([], [old_postuninstall_cmds], [2])
  1209. _LT_TAGDECL([], [old_archive_cmds], [2],
  1210.     [Commands used to build an old-style archive])
  1211. ])# _LT_CMD_OLD_ARCHIVE
  1212. # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1213. # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
  1214. # ----------------------------------------------------------------
  1215. # Check whether the given compiler option works
  1216. AC_DEFUN([_LT_COMPILER_OPTION],
  1217. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1218. m4_require([_LT_DECL_SED])dnl
  1219. AC_CACHE_CHECK([$1], [$2],
  1220.   [$2=no
  1221.    m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
  1222.    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1223.    lt_compiler_flag="$3"
  1224.    # Insert the option either (1) after the last *FLAGS variable, or
  1225.    # (2) before a word containing "conftest.", or (3) at the end.
  1226.    # Note that $ac_compile itself does not contain backslashes and begins
  1227.    # with a dollar sign (not a hyphen), so the echo should work correctly.
  1228.    # The option is referenced via a variable to avoid confusing sed.
  1229.    lt_compile=`echo "$ac_compile" | $SED 
  1230.    -e 's:.*FLAGS}{0,1} :&$lt_compiler_flag :; t' 
  1231.    -e 's: [[^ ]]*conftest.: $lt_compiler_flag&:; t' 
  1232.    -e 's:$: $lt_compiler_flag:'`
  1233.    (eval echo ""$as_me:__oline__: $lt_compile"" >&AS_MESSAGE_LOG_FD)
  1234.    (eval "$lt_compile" 2>conftest.err)
  1235.    ac_status=$?
  1236.    cat conftest.err >&AS_MESSAGE_LOG_FD
  1237.    echo "$as_me:__oline__: $? = $ac_status" >&AS_MESSAGE_LOG_FD
  1238.    if (exit $ac_status) && test -s "$ac_outfile"; then
  1239.      # The compiler can only warn and ignore the option if not recognized
  1240.      # So say no if there are warnings other than the usual output.
  1241.      $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
  1242.      $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1243.      if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
  1244.        $2=yes
  1245.      fi
  1246.    fi
  1247.    $RM conftest*
  1248. ])
  1249. if test x"[$]$2" = xyes; then
  1250.     m4_if([$5], , :, [$5])
  1251. else
  1252.     m4_if([$6], , :, [$6])
  1253. fi
  1254. ])# _LT_COMPILER_OPTION
  1255. # Old name:
  1256. AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
  1257. dnl aclocal-1.4 backwards compatibility:
  1258. dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
  1259. # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
  1260. #                  [ACTION-SUCCESS], [ACTION-FAILURE])
  1261. # ----------------------------------------------------
  1262. # Check whether the given linker option works
  1263. AC_DEFUN([_LT_LINKER_OPTION],
  1264. [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1265. m4_require([_LT_DECL_SED])dnl
  1266. AC_CACHE_CHECK([$1], [$2],
  1267.   [$2=no
  1268.    save_LDFLAGS="$LDFLAGS"
  1269.    LDFLAGS="$LDFLAGS $3"
  1270.    echo "$lt_simple_link_test_code" > conftest.$ac_ext
  1271.    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
  1272.      # The linker can only warn and ignore the option if not recognized
  1273.      # So say no if there are warnings
  1274.      if test -s conftest.err; then
  1275.        # Append any errors to the config.log.
  1276.        cat conftest.err 1>&AS_MESSAGE_LOG_FD
  1277.        $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
  1278.        $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
  1279.        if diff conftest.exp conftest.er2 >/dev/null; then
  1280.          $2=yes
  1281.        fi
  1282.      else
  1283.        $2=yes
  1284.      fi
  1285.    fi
  1286.    $RM -r conftest*
  1287.    LDFLAGS="$save_LDFLAGS"
  1288. ])
  1289. if test x"[$]$2" = xyes; then
  1290.     m4_if([$4], , :, [$4])
  1291. else
  1292.     m4_if([$5], , :, [$5])
  1293. fi
  1294. ])# _LT_LINKER_OPTION
  1295. # Old name:
  1296. AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
  1297. dnl aclocal-1.4 backwards compatibility:
  1298. dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
  1299. # LT_CMD_MAX_LEN
  1300. #---------------
  1301. AC_DEFUN([LT_CMD_MAX_LEN],
  1302. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1303. # find the maximum length of command line arguments
  1304. AC_MSG_CHECKING([the maximum length of command line arguments])
  1305. AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
  1306.   i=0
  1307.   teststring="ABCD"
  1308.   case $build_os in
  1309.   msdosdjgpp*)
  1310.     # On DJGPP, this test can blow up pretty badly due to problems in libc
  1311.     # (any single argument exceeding 2000 bytes causes a buffer overrun
  1312.     # during glob expansion).  Even if it were fixed, the result of this
  1313.     # check would be larger than it should be.
  1314.     lt_cv_sys_max_cmd_len=12288;    # 12K is about right
  1315.     ;;
  1316.   gnu*)
  1317.     # Under GNU Hurd, this test is not required because there is
  1318.     # no limit to the length of command line arguments.
  1319.     # Libtool will interpret -1 as no limit whatsoever
  1320.     lt_cv_sys_max_cmd_len=-1;
  1321.     ;;
  1322.   cygwin* | mingw* | cegcc*)
  1323.     # On Win9x/ME, this test blows up -- it succeeds, but takes
  1324.     # about 5 minutes as the teststring grows exponentially.
  1325.     # Worse, since 9x/ME are not pre-emptively multitasking,
  1326.     # you end up with a "frozen" computer, even though with patience
  1327.     # the test eventually succeeds (with a max line length of 256k).
  1328.     # Instead, let's just punt: use the minimum linelength reported by
  1329.     # all of the supported platforms: 8192 (on NT/2K/XP).
  1330.     lt_cv_sys_max_cmd_len=8192;
  1331.     ;;
  1332.   beos*)
  1333.     # On BeOS, this test takes a really really long time.
  1334.     # So we just punt and use a minimum line length of 8192.
  1335.     lt_cv_sys_max_cmd_len=8192;
  1336.     ;;
  1337.   amigaos*)
  1338.     # On AmigaOS with pdksh, this test takes hours, literally.
  1339.     # So we just punt and use a minimum line length of 8192.
  1340.     lt_cv_sys_max_cmd_len=8192;
  1341.     ;;
  1342.   netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
  1343.     # This has been around since 386BSD, at least.  Likely further.
  1344.     if test -x /sbin/sysctl; then
  1345.       lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
  1346.     elif test -x /usr/sbin/sysctl; then
  1347.       lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
  1348.     else
  1349.       lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
  1350.     fi
  1351.     # And add a safety zone
  1352.     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len / 4`
  1353.     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len * 3`
  1354.     ;;
  1355.   interix*)
  1356.     # We know the value 262144 and hardcode it with a safety zone (like BSD)
  1357.     lt_cv_sys_max_cmd_len=196608
  1358.     ;;
  1359.   osf*)
  1360.     # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
  1361.     # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
  1362.     # nice to cause kernel panics so lets avoid the loop below.
  1363.     # First set a reasonable default.
  1364.     lt_cv_sys_max_cmd_len=16384
  1365.     #
  1366.     if test -x /sbin/sysconfig; then
  1367.       case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
  1368.         *1*) lt_cv_sys_max_cmd_len=-1 ;;
  1369.       esac
  1370.     fi
  1371.     ;;
  1372.   sco3.2v5*)
  1373.     lt_cv_sys_max_cmd_len=102400
  1374.     ;;
  1375.   sysv5* | sco5v6* | sysv4.2uw2*)
  1376.     kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
  1377.     if test -n "$kargmax"; then
  1378.       lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[  ]]//'`
  1379.     else
  1380.       lt_cv_sys_max_cmd_len=32768
  1381.     fi
  1382.     ;;
  1383.   *)
  1384.     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
  1385.     if test -n "$lt_cv_sys_max_cmd_len"; then
  1386.       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len / 4`
  1387.       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len * 3`
  1388.     else
  1389.       # Make teststring a little bigger before we do anything with it.
  1390.       # a 1K string should be a reasonable start.
  1391.       for i in 1 2 3 4 5 6 7 8 ; do
  1392.         teststring=$teststring$teststring
  1393.       done
  1394.       SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
  1395.       # If test is not a shell built-in, we'll probably end up computing a
  1396.       # maximum length that is only half of the actual maximum length, but
  1397.       # we can't tell.
  1398.       while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` 
  1399.          = "XX$teststring$teststring"; } >/dev/null 2>&1 &&
  1400.       test $i != 17 # 1/2 MB should be enough
  1401.       do
  1402.         i=`expr $i + 1`
  1403.         teststring=$teststring$teststring
  1404.       done
  1405.       # Only check the string length outside the loop.
  1406.       lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
  1407.       teststring=
  1408.       # Add a significant safety factor because C++ compilers can tack on
  1409.       # massive amounts of additional arguments before passing them to the
  1410.       # linker.  It appears as though 1/2 is a usable value.
  1411.       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len / 2`
  1412.     fi
  1413.     ;;
  1414.   esac
  1415. ])
  1416. if test -n $lt_cv_sys_max_cmd_len ; then
  1417.   AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
  1418. else
  1419.   AC_MSG_RESULT(none)
  1420. fi
  1421. max_cmd_len=$lt_cv_sys_max_cmd_len
  1422. _LT_DECL([], [max_cmd_len], [0],
  1423.     [What is the maximum length of a command?])
  1424. ])# LT_CMD_MAX_LEN
  1425. # Old name:
  1426. AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
  1427. dnl aclocal-1.4 backwards compatibility:
  1428. dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
  1429. # _LT_HEADER_DLFCN
  1430. # ----------------
  1431. m4_defun([_LT_HEADER_DLFCN],
  1432. [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
  1433. ])# _LT_HEADER_DLFCN
  1434. # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
  1435. #                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
  1436. # ----------------------------------------------------------------
  1437. m4_defun([_LT_TRY_DLOPEN_SELF],
  1438. [m4_require([_LT_HEADER_DLFCN])dnl
  1439. if test "$cross_compiling" = yes; then :
  1440.   [$4]
  1441. else
  1442.   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
  1443.   lt_status=$lt_dlunknown
  1444.   cat > conftest.$ac_ext <<_LT_EOF
  1445. [#line __oline__ "configure"
  1446. #include "confdefs.h"
  1447. #if HAVE_DLFCN_H
  1448. #include <dlfcn.h>
  1449. #endif
  1450. #include <stdio.h>
  1451. #ifdef RTLD_GLOBAL
  1452. #  define LT_DLGLOBAL RTLD_GLOBAL
  1453. #else
  1454. #  ifdef DL_GLOBAL
  1455. #    define LT_DLGLOBAL DL_GLOBAL
  1456. #  else
  1457. #    define LT_DLGLOBAL 0
  1458. #  endif
  1459. #endif
  1460. /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
  1461.    find out it does not work in some platform. */
  1462. #ifndef LT_DLLAZY_OR_NOW
  1463. #  ifdef RTLD_LAZY
  1464. #    define LT_DLLAZY_OR_NOW RTLD_LAZY
  1465. #  else
  1466. #    ifdef DL_LAZY
  1467. #      define LT_DLLAZY_OR_NOW DL_LAZY
  1468. #    else
  1469. #      ifdef RTLD_NOW
  1470. #        define LT_DLLAZY_OR_NOW RTLD_NOW
  1471. #      else
  1472. #        ifdef DL_NOW
  1473. #          define LT_DLLAZY_OR_NOW DL_NOW
  1474. #        else
  1475. #          define LT_DLLAZY_OR_NOW 0
  1476. #        endif
  1477. #      endif
  1478. #    endif
  1479. #  endif
  1480. #endif
  1481. void fnord() { int i=42;}
  1482. int main ()
  1483. {
  1484.   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
  1485.   int status = $lt_dlunknown;
  1486.   if (self)
  1487.     {
  1488.       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
  1489.       else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
  1490.       /* dlclose (self); */
  1491.     }
  1492.   else
  1493.     puts (dlerror ());
  1494.   return status;
  1495. }]
  1496. _LT_EOF
  1497.   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
  1498.     (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
  1499.     lt_status=$?
  1500.     case x$lt_status in
  1501.       x$lt_dlno_uscore) $1 ;;
  1502.       x$lt_dlneed_uscore) $2 ;;
  1503.       x$lt_dlunknown|x*) $3 ;;
  1504.     esac
  1505.   else :
  1506.     # compilation failed
  1507.     $3
  1508.   fi
  1509. fi
  1510. rm -fr conftest*
  1511. ])# _LT_TRY_DLOPEN_SELF
  1512. # LT_SYS_DLOPEN_SELF
  1513. # ------------------
  1514. AC_DEFUN([LT_SYS_DLOPEN_SELF],
  1515. [m4_require([_LT_HEADER_DLFCN])dnl
  1516. if test "x$enable_dlopen" != xyes; then
  1517.   enable_dlopen=unknown
  1518.   enable_dlopen_self=unknown
  1519.   enable_dlopen_self_static=unknown
  1520. else
  1521.   lt_cv_dlopen=no
  1522.   lt_cv_dlopen_libs=
  1523.   case $host_os in
  1524.   beos*)
  1525.     lt_cv_dlopen="load_add_on"
  1526.     lt_cv_dlopen_libs=
  1527.     lt_cv_dlopen_self=yes
  1528.     ;;
  1529.   mingw* | pw32* | cegcc*)
  1530.     lt_cv_dlopen="LoadLibrary"
  1531.     lt_cv_dlopen_libs=
  1532.     ;;
  1533.   cygwin*)
  1534.     lt_cv_dlopen="dlopen"
  1535.     lt_cv_dlopen_libs=
  1536.     ;;
  1537.   darwin*)
  1538.   # if libdl is installed we need to link against it
  1539.     AC_CHECK_LIB([dl], [dlopen],
  1540. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
  1541.     lt_cv_dlopen="dyld"
  1542.     lt_cv_dlopen_libs=
  1543.     lt_cv_dlopen_self=yes
  1544.     ])
  1545.     ;;
  1546.   *)
  1547.     AC_CHECK_FUNC([shl_load],
  1548.   [lt_cv_dlopen="shl_load"],
  1549.       [AC_CHECK_LIB([dld], [shl_load],
  1550.     [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
  1551. [AC_CHECK_FUNC([dlopen],
  1552.       [lt_cv_dlopen="dlopen"],
  1553.   [AC_CHECK_LIB([dl], [dlopen],
  1554. [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
  1555.     [AC_CHECK_LIB([svld], [dlopen],
  1556.   [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
  1557.       [AC_CHECK_LIB([dld], [dld_link],
  1558.     [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
  1559.       ])
  1560.     ])
  1561.   ])
  1562. ])
  1563.       ])
  1564.     ;;
  1565.   esac
  1566.   if test "x$lt_cv_dlopen" != xno; then
  1567.     enable_dlopen=yes
  1568.   else
  1569.     enable_dlopen=no
  1570.   fi
  1571.   case $lt_cv_dlopen in
  1572.   dlopen)
  1573.     save_CPPFLAGS="$CPPFLAGS"
  1574.     test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
  1575.     save_LDFLAGS="$LDFLAGS"
  1576.     wl=$lt_prog_compiler_wl eval LDFLAGS="$LDFLAGS $export_dynamic_flag_spec"
  1577.     save_LIBS="$LIBS"
  1578.     LIBS="$lt_cv_dlopen_libs $LIBS"
  1579.     AC_CACHE_CHECK([whether a program can dlopen itself],
  1580.   lt_cv_dlopen_self, [dnl
  1581.   _LT_TRY_DLOPEN_SELF(
  1582.     lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
  1583.     lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
  1584.     ])
  1585.     if test "x$lt_cv_dlopen_self" = xyes; then
  1586.       wl=$lt_prog_compiler_wl eval LDFLAGS="$LDFLAGS $lt_prog_compiler_static"
  1587.       AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
  1588.   lt_cv_dlopen_self_static, [dnl
  1589.   _LT_TRY_DLOPEN_SELF(
  1590.     lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
  1591.     lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
  1592.       ])
  1593.     fi
  1594.     CPPFLAGS="$save_CPPFLAGS"
  1595.     LDFLAGS="$save_LDFLAGS"
  1596.     LIBS="$save_LIBS"
  1597.     ;;
  1598.   esac
  1599.   case $lt_cv_dlopen_self in
  1600.   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
  1601.   *) enable_dlopen_self=unknown ;;
  1602.   esac
  1603.   case $lt_cv_dlopen_self_static in
  1604.   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
  1605.   *) enable_dlopen_self_static=unknown ;;
  1606.   esac
  1607. fi
  1608. _LT_DECL([dlopen_support], [enable_dlopen], [0],
  1609.  [Whether dlopen is supported])
  1610. _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
  1611.  [Whether dlopen of programs is supported])
  1612. _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
  1613.  [Whether dlopen of statically linked programs is supported])
  1614. ])# LT_SYS_DLOPEN_SELF
  1615. # Old name:
  1616. AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
  1617. dnl aclocal-1.4 backwards compatibility:
  1618. dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
  1619. # _LT_COMPILER_C_O([TAGNAME])
  1620. # ---------------------------
  1621. # Check to see if options -c and -o are simultaneously supported by compiler.
  1622. # This macro does not hard code the compiler like AC_PROG_CC_C_O.
  1623. m4_defun([_LT_COMPILER_C_O],
  1624. [m4_require([_LT_DECL_SED])dnl
  1625. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1626. m4_require([_LT_TAG_COMPILER])dnl
  1627. AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
  1628.   [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
  1629.   [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
  1630.    $RM -r conftest 2>/dev/null
  1631.    mkdir conftest
  1632.    cd conftest
  1633.    mkdir out
  1634.    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
  1635.    lt_compiler_flag="-o out/conftest2.$ac_objext"
  1636.    # Insert the option either (1) after the last *FLAGS variable, or
  1637.    # (2) before a word containing "conftest.", or (3) at the end.
  1638.    # Note that $ac_compile itself does not contain backslashes and begins
  1639.    # with a dollar sign (not a hyphen), so the echo should work correctly.
  1640.    lt_compile=`echo "$ac_compile" | $SED 
  1641.    -e 's:.*FLAGS}{0,1} :&$lt_compiler_flag :; t' 
  1642.    -e 's: [[^ ]]*conftest.: $lt_compiler_flag&:; t' 
  1643.    -e 's:$: $lt_compiler_flag:'`
  1644.    (eval echo ""$as_me:__oline__: $lt_compile"" >&AS_MESSAGE_LOG_FD)
  1645.    (eval "$lt_compile" 2>out/conftest.err)
  1646.    ac_status=$?
  1647.    cat out/conftest.err >&AS_MESSAGE_LOG_FD
  1648.    echo "$as_me:__oline__: $? = $ac_status" >&AS_MESSAGE_LOG_FD
  1649.    if (exit $ac_status) && test -s out/conftest2.$ac_objext
  1650.    then
  1651.      # The compiler can only warn and ignore the option if not recognized
  1652.      # So say no if there are warnings
  1653.      $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
  1654.      $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
  1655.      if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
  1656.        _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
  1657.      fi
  1658.    fi
  1659.    chmod u+w . 2>&AS_MESSAGE_LOG_FD
  1660.    $RM conftest*
  1661.    # SGI C++ compiler will create directory out/ii_files/ for
  1662.    # template instantiation
  1663.    test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
  1664.    $RM out/* && rmdir out
  1665.    cd ..
  1666.    $RM -r conftest
  1667.    $RM conftest*
  1668. ])
  1669. _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
  1670. [Does compiler simultaneously support -c and -o options?])
  1671. ])# _LT_COMPILER_C_O
  1672. # _LT_COMPILER_FILE_LOCKS([TAGNAME])
  1673. # ----------------------------------
  1674. # Check to see if we can do hard links to lock some files if needed
  1675. m4_defun([_LT_COMPILER_FILE_LOCKS],
  1676. [m4_require([_LT_ENABLE_LOCK])dnl
  1677. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1678. _LT_COMPILER_C_O([$1])
  1679. hard_links="nottested"
  1680. if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
  1681.   # do not overwrite the value of need_locks provided by the user
  1682.   AC_MSG_CHECKING([if we can lock with hard links])
  1683.   hard_links=yes
  1684.   $RM conftest*
  1685.   ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1686.   touch conftest.a
  1687.   ln conftest.a conftest.b 2>&5 || hard_links=no
  1688.   ln conftest.a conftest.b 2>/dev/null && hard_links=no
  1689.   AC_MSG_RESULT([$hard_links])
  1690.   if test "$hard_links" = no; then
  1691.     AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
  1692.     need_locks=warn
  1693.   fi
  1694. else
  1695.   need_locks=no
  1696. fi
  1697. _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
  1698. ])# _LT_COMPILER_FILE_LOCKS
  1699. # _LT_CHECK_OBJDIR
  1700. # ----------------
  1701. m4_defun([_LT_CHECK_OBJDIR],
  1702. [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
  1703. [rm -f .libs 2>/dev/null
  1704. mkdir .libs 2>/dev/null
  1705. if test -d .libs; then
  1706.   lt_cv_objdir=.libs
  1707. else
  1708.   # MS-DOS does not allow filenames that begin with a dot.
  1709.   lt_cv_objdir=_libs
  1710. fi
  1711. rmdir .libs 2>/dev/null])
  1712. objdir=$lt_cv_objdir
  1713. _LT_DECL([], [objdir], [0],
  1714.          [The name of the directory that contains temporary libtool files])dnl
  1715. m4_pattern_allow([LT_OBJDIR])dnl
  1716. AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
  1717.   [Define to the sub-directory in which libtool stores uninstalled libraries.])
  1718. ])# _LT_CHECK_OBJDIR
  1719. # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
  1720. # --------------------------------------
  1721. # Check hardcoding attributes.
  1722. m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
  1723. [AC_MSG_CHECKING([how to hardcode library paths into programs])
  1724. _LT_TAGVAR(hardcode_action, $1)=
  1725. if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
  1726.    test -n "$_LT_TAGVAR(runpath_var, $1)" ||
  1727.    test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
  1728.   # We can hardcode non-existent directories.
  1729.   if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
  1730.      # If the only mechanism to avoid hardcoding is shlibpath_var, we
  1731.      # have to relink, otherwise we might link with an installed library
  1732.      # when we should be linking with a yet-to-be-installed one
  1733.      ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
  1734.      test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
  1735.     # Linking always hardcodes the temporary library directory.
  1736.     _LT_TAGVAR(hardcode_action, $1)=relink
  1737.   else
  1738.     # We can link without hardcoding, and we can hardcode nonexisting dirs.
  1739.     _LT_TAGVAR(hardcode_action, $1)=immediate
  1740.   fi
  1741. else
  1742.   # We cannot hardcode anything, or else we can only hardcode existing
  1743.   # directories.
  1744.   _LT_TAGVAR(hardcode_action, $1)=unsupported
  1745. fi
  1746. AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
  1747. if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
  1748.    test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
  1749.   # Fast installation is not supported
  1750.   enable_fast_install=no
  1751. elif test "$shlibpath_overrides_runpath" = yes ||
  1752.      test "$enable_shared" = no; then
  1753.   # Fast installation is not necessary
  1754.   enable_fast_install=needless
  1755. fi
  1756. _LT_TAGDECL([], [hardcode_action], [0],
  1757.     [How to hardcode a shared library path into an executable])
  1758. ])# _LT_LINKER_HARDCODE_LIBPATH
  1759. # _LT_CMD_STRIPLIB
  1760. # ----------------
  1761. m4_defun([_LT_CMD_STRIPLIB],
  1762. [m4_require([_LT_DECL_EGREP])
  1763. striplib=
  1764. old_striplib=
  1765. AC_MSG_CHECKING([whether stripping libraries is possible])
  1766. if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
  1767.   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
  1768.   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
  1769.   AC_MSG_RESULT([yes])
  1770. else
  1771. # FIXME - insert some real tests, host_os isn't really good enough
  1772.   case $host_os in
  1773.   darwin*)
  1774.     if test -n "$STRIP" ; then
  1775.       striplib="$STRIP -x"
  1776.       old_striplib="$STRIP -S"
  1777.       AC_MSG_RESULT([yes])
  1778.     else
  1779.       AC_MSG_RESULT([no])
  1780.     fi
  1781.     ;;
  1782.   *)
  1783.     AC_MSG_RESULT([no])
  1784.     ;;
  1785.   esac
  1786. fi
  1787. _LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
  1788. _LT_DECL([], [striplib], [1])
  1789. ])# _LT_CMD_STRIPLIB
  1790. # _LT_SYS_DYNAMIC_LINKER([TAG])
  1791. # -----------------------------
  1792. # PORTME Fill in your ld.so characteristics
  1793. m4_defun([_LT_SYS_DYNAMIC_LINKER],
  1794. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  1795. m4_require([_LT_DECL_EGREP])dnl
  1796. m4_require([_LT_FILEUTILS_DEFAULTS])dnl
  1797. m4_require([_LT_DECL_OBJDUMP])dnl
  1798. m4_require([_LT_DECL_SED])dnl
  1799. AC_MSG_CHECKING([dynamic linker characteristics])
  1800. m4_if([$1],
  1801. [], [
  1802. if test "$GCC" = yes; then
  1803.   case $host_os in
  1804.     darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
  1805.     *) lt_awk_arg="/^libraries:/" ;;
  1806.   esac
  1807.   lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  1808.   if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then
  1809.     # if the path contains ";" then we assume it to be the separator
  1810.     # otherwise default to the standard path separator (i.e. ":") - it is
  1811.     # assumed that no part of a normal pathname contains ";" but that should
  1812.     # okay in the real world where ";" in dirpaths is itself problematic.
  1813.     lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'`
  1814.   else
  1815.     lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
  1816.   fi
  1817.   # Ok, now we have the path, separated by spaces, we can step through it
  1818.   # and add multilib dir if necessary.
  1819.   lt_tmp_lt_search_path_spec=
  1820.   lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
  1821.   for lt_sys_path in $lt_search_path_spec; do
  1822.     if test -d "$lt_sys_path/$lt_multi_os_dir"; then
  1823.       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
  1824.     else
  1825.       test -d "$lt_sys_path" && 
  1826. lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
  1827.     fi
  1828.   done
  1829.   lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk '
  1830. BEGIN {RS=" "; FS="/|n";} {
  1831.   lt_foo="";
  1832.   lt_count=0;
  1833.   for (lt_i = NF; lt_i > 0; lt_i--) {
  1834.     if ($lt_i != "" && $lt_i != ".") {
  1835.       if ($lt_i == "..") {
  1836.         lt_count++;
  1837.       } else {
  1838.         if (lt_count == 0) {
  1839.           lt_foo="/" $lt_i lt_foo;
  1840.         } else {
  1841.           lt_count--;
  1842.         }
  1843.       }
  1844.     }
  1845.   }
  1846.   if (lt_foo != "") { lt_freq[[lt_foo]]++; }
  1847.   if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
  1848. }'`
  1849.   sys_lib_search_path_spec=`$ECHO $lt_search_path_spec`
  1850. else
  1851.   sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
  1852. fi])
  1853. library_names_spec=
  1854. libname_spec='lib$name'
  1855. soname_spec=
  1856. shrext_cmds=".so"
  1857. postinstall_cmds=
  1858. postuninstall_cmds=
  1859. finish_cmds=
  1860. finish_eval=
  1861. shlibpath_var=
  1862. shlibpath_overrides_runpath=unknown
  1863. version_type=none
  1864. dynamic_linker="$host_os ld.so"
  1865. sys_lib_dlsearch_path_spec="/lib /usr/lib"
  1866. need_lib_prefix=unknown
  1867. hardcode_into_libs=no
  1868. # when you set need_version to no, make sure it does not cause -set_version
  1869. # flags to be left without arguments
  1870. need_version=unknown
  1871. case $host_os in
  1872. aix3*)
  1873.   version_type=linux
  1874.   library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
  1875.   shlibpath_var=LIBPATH
  1876.   # AIX 3 has no versioning support, so we append a major version to the name.
  1877.   soname_spec='${libname}${release}${shared_ext}$major'
  1878.   ;;
  1879. aix[[4-9]]*)
  1880.   version_type=linux
  1881.   need_lib_prefix=no
  1882.   need_version=no
  1883.   hardcode_into_libs=yes
  1884.   if test "$host_cpu" = ia64; then
  1885.     # AIX 5 supports IA64
  1886.     library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
  1887.     shlibpath_var=LD_LIBRARY_PATH
  1888.   else
  1889.     # With GCC up to 2.95.x, collect2 would create an import file
  1890.     # for dependence libraries.  The import file would start with
  1891.     # the line `#! .'.  This would cause the generated library to
  1892.     # depend on `.', always an invalid library.  This was fixed in
  1893.     # development snapshots of GCC prior to 3.0.
  1894.     case $host_os in
  1895.       aix4 | aix4.[[01]] | aix4.[[01]].*)
  1896.       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
  1897.    echo ' yes '
  1898.    echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
  1899. :
  1900.       else
  1901. can_build_shared=no
  1902.       fi
  1903.       ;;
  1904.     esac
  1905.     # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
  1906.     # soname into executable. Probably we can add versioning support to
  1907.     # collect2, so additional links can be useful in future.
  1908.     if test "$aix_use_runtimelinking" = yes; then
  1909.       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
  1910.       # instead of lib<name>.a to let people know that these are not
  1911.       # typical AIX shared libraries.
  1912.       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1913.     else
  1914.       # We preserve .a as extension for shared libraries through AIX4.2
  1915.       # and later when we are not doing run time linking.
  1916.       library_names_spec='${libname}${release}.a $libname.a'
  1917.       soname_spec='${libname}${release}${shared_ext}$major'
  1918.     fi
  1919.     shlibpath_var=LIBPATH
  1920.   fi
  1921.   ;;
  1922. amigaos*)
  1923.   case $host_cpu in
  1924.   powerpc)
  1925.     # Since July 2007 AmigaOS4 officially supports .so libraries.
  1926.     # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
  1927.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1928.     ;;
  1929.   m68k)
  1930.     library_names_spec='$libname.ixlibrary $libname.a'
  1931.     # Create ${libname}_ixlibrary.a entries in /sys/libs.
  1932.     finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '''s%^.*/([[^/]]*).ixlibrary$%1%'''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done'
  1933.     ;;
  1934.   esac
  1935.   ;;
  1936. beos*)
  1937.   library_names_spec='${libname}${shared_ext}'
  1938.   dynamic_linker="$host_os ld.so"
  1939.   shlibpath_var=LIBRARY_PATH
  1940.   ;;
  1941. bsdi[[45]]*)
  1942.   version_type=linux
  1943.   need_version=no
  1944.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  1945.   soname_spec='${libname}${release}${shared_ext}$major'
  1946.   finish_cmds='PATH="$PATH:/sbin" ldconfig $libdir'
  1947.   shlibpath_var=LD_LIBRARY_PATH
  1948.   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
  1949.   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
  1950.   # the default ld.so.conf also contains /usr/contrib/lib and
  1951.   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
  1952.   # libtool to hard-code these into programs
  1953.   ;;
  1954. cygwin* | mingw* | pw32* | cegcc*)
  1955.   version_type=windows
  1956.   shrext_cmds=".dll"
  1957.   need_version=no
  1958.   need_lib_prefix=no
  1959.   case $GCC,$host_os in
  1960.   yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*)
  1961.     library_names_spec='$libname.dll.a'
  1962.     # DLL is installed to $(libdir)/../bin by postinstall_cmds
  1963.     postinstall_cmds='base_file=`basename ${file}`~
  1964.       dlpath=`$SHELL 2>&1 -c '''. $dir/'''${base_file}'''i; echo $dlname'''`~
  1965.       dldir=$destdir/`dirname $dlpath`~
  1966.       test -d $dldir || mkdir -p $dldir~
  1967.       $install_prog $dir/$dlname $dldir/$dlname~
  1968.       chmod a+x $dldir/$dlname~
  1969.       if test -n '''$stripme''' && test -n '''$striplib'''; then
  1970.         eval '''$striplib $dldir/$dlname''' || exit $?;
  1971.       fi'
  1972.     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '''. $file; echo $dlname'''`~
  1973.       dlpath=$dir/$dldll~
  1974.        $RM $dlpath'
  1975.     shlibpath_overrides_runpath=yes
  1976.     case $host_os in
  1977.     cygwin*)
  1978.       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
  1979.       #soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  1980.       soname_spec='`echo ${libname} | sed -e 's/^lib//'`${shared_ext}'
  1981.       sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
  1982.       ;;
  1983.     mingw* | cegcc*)
  1984.       # MinGW DLLs use traditional 'lib' prefix
  1985.       #soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  1986.       soname_spec='`echo ${libname} | $SED -e 's/^lib//'`${shared_ext}'
  1987.       sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
  1988.       if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
  1989.         # It is most probably a Windows format PATH printed by
  1990.         # mingw gcc, but we are running on Cygwin. Gcc prints its search
  1991.         # path with ; separators, and with drive letters. We can handle the
  1992.         # drive letters (cygwin fileutils understands them), so leave them,
  1993.         # especially as we might pass files found there to a mingw objdump,
  1994.         # which wouldn't understand a cygwinified path. Ahh.
  1995.         sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
  1996.       else
  1997.         sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
  1998.       fi
  1999.       ;;
  2000.     pw32*)
  2001.       # pw32 DLLs use 'pw' prefix rather than 'lib'
  2002.       library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
  2003.       ;;
  2004.     esac
  2005.     ;;
  2006.   *)
  2007.     library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
  2008.     ;;
  2009.   esac
  2010.   dynamic_linker='Win32 ld.exe'
  2011.   # FIXME: first we should search . and the directory the executable is in
  2012.   shlibpath_var=PATH
  2013.   ;;
  2014. darwin* | rhapsody*)
  2015.   dynamic_linker="$host_os dyld"
  2016.   version_type=darwin
  2017.   need_lib_prefix=no
  2018.   need_version=no
  2019.   library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
  2020.   soname_spec='${libname}${release}${major}$shared_ext'
  2021.   shlibpath_overrides_runpath=yes
  2022.   shlibpath_var=DYLD_LIBRARY_PATH
  2023.   shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
  2024. m4_if([$1], [],[
  2025.   sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
  2026.   sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
  2027.   ;;
  2028. dgux*)
  2029.   version_type=linux
  2030.   need_lib_prefix=no
  2031.   need_version=no
  2032.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
  2033.   soname_spec='${libname}${release}${shared_ext}$major'
  2034.   shlibpath_var=LD_LIBRARY_PATH
  2035.   ;;
  2036. freebsd1*)
  2037.   dynamic_linker=no
  2038.   ;;
  2039. freebsd* | dragonfly*)
  2040.   # DragonFly does not have aout.  When/if they implement a new
  2041.   # versioning mechanism, adjust this.
  2042.   if test -x /usr/bin/objformat; then
  2043.     objformat=`/usr/bin/objformat`
  2044.   else
  2045.     case $host_os in
  2046.     freebsd[[123]]*) objformat=aout ;;
  2047.     *) objformat=elf ;;
  2048.     esac
  2049.   fi
  2050.   version_type=freebsd-$objformat
  2051.   case $version_type in
  2052.     freebsd-elf*)
  2053.       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2054.       need_version=no
  2055.       need_lib_prefix=no
  2056.       ;;
  2057.     freebsd-*)
  2058.       library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
  2059.       need_version=yes
  2060.       ;;
  2061.   esac
  2062.   shlibpath_var=LD_LIBRARY_PATH
  2063.   case $host_os in
  2064.   freebsd2*)
  2065.     shlibpath_overrides_runpath=yes
  2066.     ;;
  2067.   freebsd3.[[01]]* | freebsdelf3.[[01]]*)
  2068.     shlibpath_overrides_runpath=yes
  2069.     hardcode_into_libs=yes
  2070.     ;;
  2071.   freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | 
  2072.   freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
  2073.     shlibpath_overrides_runpath=no
  2074.     hardcode_into_libs=yes
  2075.     ;;
  2076.   *) # from 4.6 on, and DragonFly
  2077.     shlibpath_overrides_runpath=yes
  2078.     hardcode_into_libs=yes
  2079.     ;;
  2080.   esac
  2081.   ;;
  2082. gnu*)
  2083.   version_type=linux
  2084.   need_lib_prefix=no
  2085.   need_version=no
  2086.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
  2087.   soname_spec='${libname}${release}${shared_ext}$major'
  2088.   shlibpath_var=LD_LIBRARY_PATH
  2089.   hardcode_into_libs=yes
  2090.   ;;
  2091. hpux9* | hpux10* | hpux11*)
  2092.   # Give a soname corresponding to the major version so that dld.sl refuses to
  2093.   # link against other versions.
  2094.   version_type=sunos
  2095.   need_lib_prefix=no
  2096.   need_version=no
  2097.   case $host_cpu in
  2098.   ia64*)
  2099.     shrext_cmds='.so'
  2100.     hardcode_into_libs=yes
  2101.     dynamic_linker="$host_os dld.so"
  2102.     shlibpath_var=LD_LIBRARY_PATH
  2103.     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2104.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2105.     soname_spec='${libname}${release}${shared_ext}$major'
  2106.     if test "X$HPUX_IA64_MODE" = X32; then
  2107.       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
  2108.     else
  2109.       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
  2110.     fi
  2111.     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2112.     ;;
  2113.   hppa*64*)
  2114.     shrext_cmds='.sl'
  2115.     hardcode_into_libs=yes
  2116.     dynamic_linker="$host_os dld.sl"
  2117.     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
  2118.     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
  2119.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2120.     soname_spec='${libname}${release}${shared_ext}$major'
  2121.     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
  2122.     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
  2123.     ;;
  2124.   *)
  2125.     shrext_cmds='.sl'
  2126.     dynamic_linker="$host_os dld.sl"
  2127.     shlibpath_var=SHLIB_PATH
  2128.     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
  2129.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2130.     soname_spec='${libname}${release}${shared_ext}$major'
  2131.     ;;
  2132.   esac
  2133.   # HP-UX runs *really* slowly unless shared libraries are mode 555.
  2134.   postinstall_cmds='chmod 555 $lib'
  2135.   ;;
  2136. interix[[3-9]]*)
  2137.   version_type=linux
  2138.   need_lib_prefix=no
  2139.   need_version=no
  2140.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2141.   soname_spec='${libname}${release}${shared_ext}$major'
  2142.   dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
  2143.   shlibpath_var=LD_LIBRARY_PATH
  2144.   shlibpath_overrides_runpath=no
  2145.   hardcode_into_libs=yes
  2146.   ;;
  2147. irix5* | irix6* | nonstopux*)
  2148.   case $host_os in
  2149.     nonstopux*) version_type=nonstopux ;;
  2150.     *)
  2151. if test "$lt_cv_prog_gnu_ld" = yes; then
  2152. version_type=linux
  2153. else
  2154. version_type=irix
  2155. fi ;;
  2156.   esac
  2157.   need_lib_prefix=no
  2158.   need_version=no
  2159.   soname_spec='${libname}${release}${shared_ext}$major'
  2160.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
  2161.   case $host_os in
  2162.   irix5* | nonstopux*)
  2163.     libsuff= shlibsuff=
  2164.     ;;
  2165.   *)
  2166.     case $LD in # libtool.m4 will add one of these switches to LD
  2167.     *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
  2168.       libsuff= shlibsuff= libmagic=32-bit;;
  2169.     *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
  2170.       libsuff=32 shlibsuff=N32 libmagic=N32;;
  2171.     *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
  2172.       libsuff=64 shlibsuff=64 libmagic=64-bit;;
  2173.     *) libsuff= shlibsuff= libmagic=never-match;;
  2174.     esac
  2175.     ;;
  2176.   esac
  2177.   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
  2178.   shlibpath_overrides_runpath=no
  2179.   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
  2180.   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
  2181.   hardcode_into_libs=yes
  2182.   ;;
  2183. # No shared lib support for Linux oldld, aout, or coff.
  2184. linux*oldld* | linux*aout* | linux*coff*)
  2185.   dynamic_linker=no
  2186.   ;;
  2187. # This must be Linux ELF.
  2188. linux* | k*bsd*-gnu)
  2189.   version_type=linux
  2190.   need_lib_prefix=no
  2191.   need_version=no
  2192.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2193.   soname_spec='${libname}${release}${shared_ext}$major'
  2194.   finish_cmds='PATH="$PATH:/sbin" ldconfig -n $libdir'
  2195.   shlibpath_var=LD_LIBRARY_PATH
  2196.   shlibpath_overrides_runpath=no
  2197.   # Some binutils ld are patched to set DT_RUNPATH
  2198.   save_LDFLAGS=$LDFLAGS
  2199.   save_libdir=$libdir
  2200.   eval "libdir=/foo; wl="$_LT_TAGVAR(lt_prog_compiler_wl, $1)"; 
  2201.        LDFLAGS="$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)""
  2202.   AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
  2203.     [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
  2204.        [shlibpath_overrides_runpath=yes])])
  2205.   LDFLAGS=$save_LDFLAGS
  2206.   libdir=$save_libdir
  2207.   # This implies no fast_install, which is unacceptable.
  2208.   # Some rework will be needed to allow for fast_install
  2209.   # before this can be enabled.
  2210.   hardcode_into_libs=yes
  2211.   # Append ld.so.conf contents to the search path
  2212.   if test -f /etc/ld.so.conf; then
  2213.     lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", [$]2)); skip = 1; } { if (!skip) print [$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[  ]*hwcap[  ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr 'n' ' '`
  2214.     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
  2215.   fi
  2216.   # We used to test for /lib/ld.so.1 and disable shared libraries on
  2217.   # powerpc, because MkLinux only supported shared libraries with the
  2218.   # GNU dynamic linker.  Since this was broken with cross compilers,
  2219.   # most powerpc-linux boxes support dynamic linking these days and
  2220.   # people can always --disable-shared, the test was removed, and we
  2221.   # assume the GNU/Linux dynamic linker is in use.
  2222.   dynamic_linker='GNU/Linux ld.so'
  2223.   ;;
  2224. netbsd*)
  2225.   version_type=sunos
  2226.   need_lib_prefix=no
  2227.   need_version=no
  2228.   if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
  2229.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2230.     finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  2231.     dynamic_linker='NetBSD (a.out) ld.so'
  2232.   else
  2233.     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
  2234.     soname_spec='${libname}${release}${shared_ext}$major'
  2235.     dynamic_linker='NetBSD ld.elf_so'
  2236.   fi
  2237.   shlibpath_var=LD_LIBRARY_PATH
  2238.   shlibpath_overrides_runpath=yes
  2239.   hardcode_into_libs=yes
  2240.   ;;
  2241. newsos6)
  2242.   version_type=linux
  2243.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2244.   shlibpath_var=LD_LIBRARY_PATH
  2245.   shlibpath_overrides_runpath=yes
  2246.   ;;
  2247. *nto* | *qnx*)
  2248.   version_type=qnx
  2249.   need_lib_prefix=no
  2250.   need_version=no
  2251.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2252.   soname_spec='${libname}${release}${shared_ext}$major'
  2253.   shlibpath_var=LD_LIBRARY_PATH
  2254.   shlibpath_overrides_runpath=no
  2255.   hardcode_into_libs=yes
  2256.   dynamic_linker='ldqnx.so'
  2257.   ;;
  2258. openbsd*)
  2259.   version_type=sunos
  2260.   sys_lib_dlsearch_path_spec="/usr/lib"
  2261.   need_lib_prefix=no
  2262.   # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
  2263.   case $host_os in
  2264.     openbsd3.3 | openbsd3.3.*) need_version=yes ;;
  2265.     *) need_version=no  ;;
  2266.   esac
  2267.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2268.   finish_cmds='PATH="$PATH:/sbin" ldconfig -m $libdir'
  2269.   shlibpath_var=LD_LIBRARY_PATH
  2270.   if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2271.     case $host_os in
  2272.       openbsd2.[[89]] | openbsd2.[[89]].*)
  2273. shlibpath_overrides_runpath=no
  2274. ;;
  2275.       *)
  2276. shlibpath_overrides_runpath=yes
  2277. ;;
  2278.       esac
  2279.   else
  2280.     shlibpath_overrides_runpath=yes
  2281.   fi
  2282.   ;;
  2283. os2*)
  2284.   libname_spec='$name'
  2285.   shrext_cmds=".dll"
  2286.   need_lib_prefix=no
  2287.   library_names_spec='$libname${shared_ext} $libname.a'
  2288.   dynamic_linker='OS/2 ld.exe'
  2289.   shlibpath_var=LIBPATH
  2290.   ;;
  2291. osf3* | osf4* | osf5*)
  2292.   version_type=osf
  2293.   need_lib_prefix=no
  2294.   need_version=no
  2295.   soname_spec='${libname}${release}${shared_ext}$major'
  2296.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2297.   shlibpath_var=LD_LIBRARY_PATH
  2298.   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
  2299.   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
  2300.   ;;
  2301. rdos*)
  2302.   dynamic_linker=no
  2303.   ;;
  2304. solaris*)
  2305.   version_type=linux
  2306.   need_lib_prefix=no
  2307.   need_version=no
  2308.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2309.   soname_spec='${libname}${release}${shared_ext}$major'
  2310.   shlibpath_var=LD_LIBRARY_PATH
  2311.   shlibpath_overrides_runpath=yes
  2312.   hardcode_into_libs=yes
  2313.   # ldd complains unless libraries are executable
  2314.   postinstall_cmds='chmod +x $lib'
  2315.   ;;
  2316. sunos4*)
  2317.   version_type=sunos
  2318.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
  2319.   finish_cmds='PATH="$PATH:/usr/etc" ldconfig $libdir'
  2320.   shlibpath_var=LD_LIBRARY_PATH
  2321.   shlibpath_overrides_runpath=yes
  2322.   if test "$with_gnu_ld" = yes; then
  2323.     need_lib_prefix=no
  2324.   fi
  2325.   need_version=yes
  2326.   ;;
  2327. sysv4 | sysv4.3*)
  2328.   version_type=linux
  2329.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2330.   soname_spec='${libname}${release}${shared_ext}$major'
  2331.   shlibpath_var=LD_LIBRARY_PATH
  2332.   case $host_vendor in
  2333.     sni)
  2334.       shlibpath_overrides_runpath=no
  2335.       need_lib_prefix=no
  2336.       runpath_var=LD_RUN_PATH
  2337.       ;;
  2338.     siemens)
  2339.       need_lib_prefix=no
  2340.       ;;
  2341.     motorola)
  2342.       need_lib_prefix=no
  2343.       need_version=no
  2344.       shlibpath_overrides_runpath=no
  2345.       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
  2346.       ;;
  2347.   esac
  2348.   ;;
  2349. sysv4*MP*)
  2350.   if test -d /usr/nec ;then
  2351.     version_type=linux
  2352.     library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
  2353.     soname_spec='$libname${shared_ext}.$major'
  2354.     shlibpath_var=LD_LIBRARY_PATH
  2355.   fi
  2356.   ;;
  2357. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  2358.   version_type=freebsd-elf
  2359.   need_lib_prefix=no
  2360.   need_version=no
  2361.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
  2362.   soname_spec='${libname}${release}${shared_ext}$major'
  2363.   shlibpath_var=LD_LIBRARY_PATH
  2364.   shlibpath_overrides_runpath=yes
  2365.   hardcode_into_libs=yes
  2366.   if test "$with_gnu_ld" = yes; then
  2367.     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
  2368.   else
  2369.     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
  2370.     case $host_os in
  2371.       sco3.2v5*)
  2372.         sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
  2373. ;;
  2374.     esac
  2375.   fi
  2376.   sys_lib_dlsearch_path_spec='/usr/lib'
  2377.   ;;
  2378. tpf*)
  2379.   # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
  2380.   version_type=linux
  2381.   need_lib_prefix=no
  2382.   need_version=no
  2383.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2384.   shlibpath_var=LD_LIBRARY_PATH
  2385.   shlibpath_overrides_runpath=no
  2386.   hardcode_into_libs=yes
  2387.   ;;
  2388. uts4*)
  2389.   version_type=linux
  2390.   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
  2391.   soname_spec='${libname}${release}${shared_ext}$major'
  2392.   shlibpath_var=LD_LIBRARY_PATH
  2393.   ;;
  2394. *)
  2395.   dynamic_linker=no
  2396.   ;;
  2397. esac
  2398. AC_MSG_RESULT([$dynamic_linker])
  2399. test "$dynamic_linker" = no && can_build_shared=no
  2400. variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
  2401. if test "$GCC" = yes; then
  2402.   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
  2403. fi
  2404. if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
  2405.   sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
  2406. fi
  2407. if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
  2408.   sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
  2409. fi
  2410. _LT_DECL([], [variables_saved_for_relink], [1],
  2411.     [Variables whose values should be saved in libtool wrapper scripts and
  2412.     restored at link time])
  2413. _LT_DECL([], [need_lib_prefix], [0],
  2414.     [Do we need the "lib" prefix for modules?])
  2415. _LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
  2416. _LT_DECL([], [version_type], [0], [Library versioning type])
  2417. _LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
  2418. _LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
  2419. _LT_DECL([], [shlibpath_overrides_runpath], [0],
  2420.     [Is shlibpath searched before the hard-coded library search path?])
  2421. _LT_DECL([], [libname_spec], [1], [Format of library name prefix])
  2422. _LT_DECL([], [library_names_spec], [1],
  2423.     [[List of archive names.  First name is the real one, the rest are links.
  2424.     The last name is the one that the linker finds with -lNAME]])
  2425. _LT_DECL([], [soname_spec], [1],
  2426.     [[The coded name of the library, if different from the real name]])
  2427. _LT_DECL([], [postinstall_cmds], [2],
  2428.     [Command to use after installation of a shared archive])
  2429. _LT_DECL([], [postuninstall_cmds], [2],
  2430.     [Command to use after uninstallation of a shared archive])
  2431. _LT_DECL([], [finish_cmds], [2],
  2432.     [Commands used to finish a libtool library installation in a directory])
  2433. _LT_DECL([], [finish_eval], [1],
  2434.     [[As "finish_cmds", except a single script fragment to be evaled but
  2435.     not shown]])
  2436. _LT_DECL([], [hardcode_into_libs], [0],
  2437.     [Whether we should hardcode library paths into libraries])
  2438. _LT_DECL([], [sys_lib_search_path_spec], [2],
  2439.     [Compile-time system search path for libraries])
  2440. _LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
  2441.     [Run-time system search path for libraries])
  2442. ])# _LT_SYS_DYNAMIC_LINKER
  2443. # _LT_PATH_TOOL_PREFIX(TOOL)
  2444. # --------------------------
  2445. # find a file program which can recognize shared library
  2446. AC_DEFUN([_LT_PATH_TOOL_PREFIX],
  2447. [m4_require([_LT_DECL_EGREP])dnl
  2448. AC_MSG_CHECKING([for $1])
  2449. AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
  2450. [case $MAGIC_CMD in
  2451. [[\/*] |  ?:[\/]*])
  2452.   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
  2453.   ;;
  2454. *)
  2455.   lt_save_MAGIC_CMD="$MAGIC_CMD"
  2456.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2457. dnl $ac_dummy forces splitting on constant user-supplied paths.
  2458. dnl POSIX.2 word splitting is done only on the output of word expansions,
  2459. dnl not every word.  This closes a longstanding sh security hole.
  2460.   ac_dummy="m4_if([$2], , $PATH, [$2])"
  2461.   for ac_dir in $ac_dummy; do
  2462.     IFS="$lt_save_ifs"
  2463.     test -z "$ac_dir" && ac_dir=.
  2464.     if test -f $ac_dir/$1; then
  2465.       lt_cv_path_MAGIC_CMD="$ac_dir/$1"
  2466.       if test -n "$file_magic_test_file"; then
  2467. case $deplibs_check_method in
  2468. "file_magic "*)
  2469.   file_magic_regex=`expr "$deplibs_check_method" : "file_magic (.*)"`
  2470.   MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2471.   if eval $file_magic_cmd $file_magic_test_file 2> /dev/null |
  2472.     $EGREP "$file_magic_regex" > /dev/null; then
  2473.     :
  2474.   else
  2475.     cat <<_LT_EOF 1>&2
  2476. *** Warning: the command libtool uses to detect shared libraries,
  2477. *** $file_magic_cmd, produces output that libtool cannot recognize.
  2478. *** The result is that libtool may fail to recognize shared libraries
  2479. *** as such.  This will affect the creation of libtool libraries that
  2480. *** depend on shared libraries, but programs linked with such libtool
  2481. *** libraries will work regardless of this problem.  Nevertheless, you
  2482. *** may want to report the problem to your system manager and/or to
  2483. *** bug-libtool@gnu.org
  2484. _LT_EOF
  2485.   fi ;;
  2486. esac
  2487.       fi
  2488.       break
  2489.     fi
  2490.   done
  2491.   IFS="$lt_save_ifs"
  2492.   MAGIC_CMD="$lt_save_MAGIC_CMD"
  2493.   ;;
  2494. esac])
  2495. MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
  2496. if test -n "$MAGIC_CMD"; then
  2497.   AC_MSG_RESULT($MAGIC_CMD)
  2498. else
  2499.   AC_MSG_RESULT(no)
  2500. fi
  2501. _LT_DECL([], [MAGIC_CMD], [0],
  2502.  [Used to examine libraries when file_magic_cmd begins with "file"])dnl
  2503. ])# _LT_PATH_TOOL_PREFIX
  2504. # Old name:
  2505. AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
  2506. dnl aclocal-1.4 backwards compatibility:
  2507. dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
  2508. # _LT_PATH_MAGIC
  2509. # --------------
  2510. # find a file program which can recognize a shared library
  2511. m4_defun([_LT_PATH_MAGIC],
  2512. [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
  2513. if test -z "$lt_cv_path_MAGIC_CMD"; then
  2514.   if test -n "$ac_tool_prefix"; then
  2515.     _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
  2516.   else
  2517.     MAGIC_CMD=:
  2518.   fi
  2519. fi
  2520. ])# _LT_PATH_MAGIC
  2521. # LT_PATH_LD
  2522. # ----------
  2523. # find the pathname to the GNU or non-GNU linker
  2524. AC_DEFUN([LT_PATH_LD],
  2525. [AC_REQUIRE([AC_PROG_CC])dnl
  2526. AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2527. AC_REQUIRE([AC_CANONICAL_BUILD])dnl
  2528. m4_require([_LT_DECL_SED])dnl
  2529. m4_require([_LT_DECL_EGREP])dnl
  2530. AC_ARG_WITH([gnu-ld],
  2531.     [AS_HELP_STRING([--with-gnu-ld],
  2532. [assume the C compiler uses GNU ld @<:@default=no@:>@])],
  2533.     [test "$withval" = no || with_gnu_ld=yes],
  2534.     [with_gnu_ld=no])dnl
  2535. ac_prog=ld
  2536. if test "$GCC" = yes; then
  2537.   # Check if gcc -print-prog-name=ld gives a path.
  2538.   AC_MSG_CHECKING([for ld used by $CC])
  2539.   case $host in
  2540.   *-*-mingw*)
  2541.     # gcc leaves a trailing carriage return which upsets mingw
  2542.     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '15'` ;;
  2543.   *)
  2544.     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
  2545.   esac
  2546.   case $ac_prog in
  2547.     # Accept absolute paths.
  2548.     [[\/]]* | ?:[[\/]]*)
  2549.       re_direlt='/[[^/]][[^/]]*/../'
  2550.       # Canonicalize the pathname of ld
  2551.       ac_prog=`$ECHO "$ac_prog"| $SED 's%\\%/%g'`
  2552.       while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
  2553. ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
  2554.       done
  2555.       test -z "$LD" && LD="$ac_prog"
  2556.       ;;
  2557.   "")
  2558.     # If it fails, then pretend we aren't using GCC.
  2559.     ac_prog=ld
  2560.     ;;
  2561.   *)
  2562.     # If it is relative, then search for the first ld in PATH.
  2563.     with_gnu_ld=unknown
  2564.     ;;
  2565.   esac
  2566. elif test "$with_gnu_ld" = yes; then
  2567.   AC_MSG_CHECKING([for GNU ld])
  2568. else
  2569.   AC_MSG_CHECKING([for non-GNU ld])
  2570. fi
  2571. AC_CACHE_VAL(lt_cv_path_LD,
  2572. [if test -z "$LD"; then
  2573.   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2574.   for ac_dir in $PATH; do
  2575.     IFS="$lt_save_ifs"
  2576.     test -z "$ac_dir" && ac_dir=.
  2577.     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
  2578.       lt_cv_path_LD="$ac_dir/$ac_prog"
  2579.       # Check to see if the program is GNU ld.  I'd rather use --version,
  2580.       # but apparently some variants of GNU ld only accept -v.
  2581.       # Break only if it was the GNU/non-GNU ld that we prefer.
  2582.       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
  2583.       *GNU* | *'with BFD'*)
  2584. test "$with_gnu_ld" != no && break
  2585. ;;
  2586.       *)
  2587. test "$with_gnu_ld" != yes && break
  2588. ;;
  2589.       esac
  2590.     fi
  2591.   done
  2592.   IFS="$lt_save_ifs"
  2593. else
  2594.   lt_cv_path_LD="$LD" # Let the user override the test with a path.
  2595. fi])
  2596. LD="$lt_cv_path_LD"
  2597. if test -n "$LD"; then
  2598.   AC_MSG_RESULT($LD)
  2599. else
  2600.   AC_MSG_RESULT(no)
  2601. fi
  2602. test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in $PATH])
  2603. _LT_PATH_LD_GNU
  2604. AC_SUBST([LD])
  2605. _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
  2606. ])# LT_PATH_LD
  2607. # Old names:
  2608. AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
  2609. AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
  2610. dnl aclocal-1.4 backwards compatibility:
  2611. dnl AC_DEFUN([AM_PROG_LD], [])
  2612. dnl AC_DEFUN([AC_PROG_LD], [])
  2613. # _LT_PATH_LD_GNU
  2614. #- --------------
  2615. m4_defun([_LT_PATH_LD_GNU],
  2616. [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
  2617. [# I'd rather use --version here, but apparently some GNU lds only accept -v.
  2618. case `$LD -v 2>&1 </dev/null` in
  2619. *GNU* | *'with BFD'*)
  2620.   lt_cv_prog_gnu_ld=yes
  2621.   ;;
  2622. *)
  2623.   lt_cv_prog_gnu_ld=no
  2624.   ;;
  2625. esac])
  2626. with_gnu_ld=$lt_cv_prog_gnu_ld
  2627. ])# _LT_PATH_LD_GNU
  2628. # _LT_CMD_RELOAD
  2629. # --------------
  2630. # find reload flag for linker
  2631. #   -- PORTME Some linkers may need a different reload flag.
  2632. m4_defun([_LT_CMD_RELOAD],
  2633. [AC_CACHE_CHECK([for $LD option to reload object files],
  2634.   lt_cv_ld_reload_flag,
  2635.   [lt_cv_ld_reload_flag='-r'])
  2636. reload_flag=$lt_cv_ld_reload_flag
  2637. case $reload_flag in
  2638. "" | " "*) ;;
  2639. *) reload_flag=" $reload_flag" ;;
  2640. esac
  2641. reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2642. case $host_os in
  2643.   darwin*)
  2644.     if test "$GCC" = yes; then
  2645.       reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
  2646.     else
  2647.       reload_cmds='$LD$reload_flag -o $output$reload_objs'
  2648.     fi
  2649.     ;;
  2650. esac
  2651. _LT_DECL([], [reload_flag], [1], [How to create reloadable object files])dnl
  2652. _LT_DECL([], [reload_cmds], [2])dnl
  2653. ])# _LT_CMD_RELOAD
  2654. # _LT_CHECK_MAGIC_METHOD
  2655. # ----------------------
  2656. # how to check for library dependencies
  2657. #  -- PORTME fill in with the dynamic library characteristics
  2658. m4_defun([_LT_CHECK_MAGIC_METHOD],
  2659. [m4_require([_LT_DECL_EGREP])
  2660. m4_require([_LT_DECL_OBJDUMP])
  2661. AC_CACHE_CHECK([how to recognize dependent libraries],
  2662. lt_cv_deplibs_check_method,
  2663. [lt_cv_file_magic_cmd='$MAGIC_CMD'
  2664. lt_cv_file_magic_test_file=
  2665. lt_cv_deplibs_check_method='unknown'
  2666. # Need to set the preceding variable on all platforms that support
  2667. # interlibrary dependencies.
  2668. # 'none' -- dependencies not supported.
  2669. # `unknown' -- same as none, but documents that we really don't know.
  2670. # 'pass_all' -- all dependencies passed with no checks.
  2671. # 'test_compile' -- check by making test program.
  2672. # 'file_magic [[regex]]' -- check by looking for files in library path
  2673. # which responds to the $file_magic_cmd with a given extended regex.
  2674. # If you have `file' or equivalent on your system and you're not sure
  2675. # whether `pass_all' will *always* work, you probably want this one.
  2676. case $host_os in
  2677. aix[[4-9]]*)
  2678.   lt_cv_deplibs_check_method=pass_all
  2679.   ;;
  2680. beos*)
  2681.   lt_cv_deplibs_check_method=pass_all
  2682.   ;;
  2683. bsdi[[45]]*)
  2684.   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
  2685.   lt_cv_file_magic_cmd='/usr/bin/file -L'
  2686.   lt_cv_file_magic_test_file=/shlib/libc.so
  2687.   ;;
  2688. cygwin*)
  2689.   # func_win32_libid is a shell function defined in ltmain.sh
  2690.   lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2691.   lt_cv_deplibs_check_method=pass_all
  2692.   lt_cv_file_magic_cmd='func_win32_libid'
  2693.   ;;
  2694. mingw* | pw32*)
  2695.   # Base MSYS/MinGW do not provide the 'file' command needed by
  2696.   # func_win32_libid shell function, so use a weaker test based on 'objdump',
  2697.   # unless we find 'file', for example because we are cross-compiling.
  2698.   if ( file / ) >/dev/null 2>&1; then
  2699.     lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
  2700.     lt_cv_file_magic_cmd='func_win32_libid'
  2701.   else
  2702.     lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
  2703.     lt_cv_file_magic_cmd='$OBJDUMP -f'
  2704.   fi
  2705.   lt_cv_deplibs_check_method=pass_all
  2706.   ;;
  2707. cegcc)
  2708.   # use the weaker test based on 'objdump'. See mingw*.
  2709.   lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
  2710.   lt_cv_file_magic_cmd='$OBJDUMP -f'
  2711.   ;;
  2712. darwin* | rhapsody*)
  2713.   lt_cv_deplibs_check_method=pass_all
  2714.   ;;
  2715. freebsd* | dragonfly*)
  2716.   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2717.     case $host_cpu in
  2718.     i*86 )
  2719.       # Not sure whether the presence of OpenBSD here was a mistake.
  2720.       # Let's accept both of them until this is cleared up.
  2721.       lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
  2722.       lt_cv_file_magic_cmd=/usr/bin/file
  2723.       lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
  2724.       ;;
  2725.     esac
  2726.   else
  2727.     lt_cv_deplibs_check_method=pass_all
  2728.   fi
  2729.   ;;
  2730. gnu*)
  2731.   lt_cv_deplibs_check_method=pass_all
  2732.   ;;
  2733. hpux10.20* | hpux11*)
  2734.   lt_cv_file_magic_cmd=/usr/bin/file
  2735.   case $host_cpu in
  2736.   ia64*)
  2737.     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
  2738.     lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
  2739.     ;;
  2740.   hppa*64*)
  2741.     [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]']
  2742.     lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
  2743.     ;;
  2744.   *)
  2745.     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
  2746.     lt_cv_file_magic_test_file=/usr/lib/libc.sl
  2747.     ;;
  2748.   esac
  2749.   ;;
  2750. interix[[3-9]]*)
  2751.   # PIC code is broken on Interix 3.x, that's why |.a not |_pic.a here
  2752.   lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so|.a)$'
  2753.   ;;
  2754. irix5* | irix6* | nonstopux*)
  2755.   case $LD in
  2756.   *-32|*"-32 ") libmagic=32-bit;;
  2757.   *-n32|*"-n32 ") libmagic=N32;;
  2758.   *-64|*"-64 ") libmagic=64-bit;;
  2759.   *) libmagic=never-match;;
  2760.   esac
  2761.   lt_cv_deplibs_check_method=pass_all
  2762.   ;;
  2763. # This must be Linux ELF.
  2764. linux* | k*bsd*-gnu)
  2765.   lt_cv_deplibs_check_method=pass_all
  2766.   ;;
  2767. netbsd*)
  2768.   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
  2769.     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so.[[0-9]]+.[[0-9]]+|_pic.a)$'
  2770.   else
  2771.     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so|_pic.a)$'
  2772.   fi
  2773.   ;;
  2774. newos6*)
  2775.   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
  2776.   lt_cv_file_magic_cmd=/usr/bin/file
  2777.   lt_cv_file_magic_test_file=/usr/lib/libnls.so
  2778.   ;;
  2779. *nto* | *qnx*)
  2780.   lt_cv_deplibs_check_method=pass_all
  2781.   ;;
  2782. openbsd*)
  2783.   if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
  2784.     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so.[[0-9]]+.[[0-9]]+|.so|_pic.a)$'
  2785.   else
  2786.     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(.so.[[0-9]]+.[[0-9]]+|_pic.a)$'
  2787.   fi
  2788.   ;;
  2789. osf3* | osf4* | osf5*)
  2790.   lt_cv_deplibs_check_method=pass_all
  2791.   ;;
  2792. rdos*)
  2793.   lt_cv_deplibs_check_method=pass_all
  2794.   ;;
  2795. solaris*)
  2796.   lt_cv_deplibs_check_method=pass_all
  2797.   ;;
  2798. sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
  2799.   lt_cv_deplibs_check_method=pass_all
  2800.   ;;
  2801. sysv4 | sysv4.3*)
  2802.   case $host_vendor in
  2803.   motorola)
  2804.     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]'
  2805.     lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
  2806.     ;;
  2807.   ncr)
  2808.     lt_cv_deplibs_check_method=pass_all
  2809.     ;;
  2810.   sequent)
  2811.     lt_cv_file_magic_cmd='/bin/file'
  2812.     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
  2813.     ;;
  2814.   sni)
  2815.     lt_cv_file_magic_cmd='/bin/file'
  2816.     lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
  2817.     lt_cv_file_magic_test_file=/lib/libc.so
  2818.     ;;
  2819.   siemens)
  2820.     lt_cv_deplibs_check_method=pass_all
  2821.     ;;
  2822.   pc)
  2823.     lt_cv_deplibs_check_method=pass_all
  2824.     ;;
  2825.   esac
  2826.   ;;
  2827. tpf*)
  2828.   lt_cv_deplibs_check_method=pass_all
  2829.   ;;
  2830. esac
  2831. ])
  2832. file_magic_cmd=$lt_cv_file_magic_cmd
  2833. deplibs_check_method=$lt_cv_deplibs_check_method
  2834. test -z "$deplibs_check_method" && deplibs_check_method=unknown
  2835. _LT_DECL([], [deplibs_check_method], [1],
  2836.     [Method to check whether dependent libraries are shared objects])
  2837. _LT_DECL([], [file_magic_cmd], [1],
  2838.     [Command to use when deplibs_check_method == "file_magic"])
  2839. ])# _LT_CHECK_MAGIC_METHOD
  2840. # LT_PATH_NM
  2841. # ----------
  2842. # find the pathname to a BSD- or MS-compatible name lister
  2843. AC_DEFUN([LT_PATH_NM],
  2844. [AC_REQUIRE([AC_PROG_CC])dnl
  2845. AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
  2846. [if test -n "$NM"; then
  2847.   # Let the user override the test.
  2848.   lt_cv_path_NM="$NM"
  2849. else
  2850.   lt_nm_to_check="${ac_tool_prefix}nm"
  2851.   if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
  2852.     lt_nm_to_check="$lt_nm_to_check nm"
  2853.   fi
  2854.   for lt_tmp_nm in $lt_nm_to_check; do
  2855.     lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
  2856.     for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
  2857.       IFS="$lt_save_ifs"
  2858.       test -z "$ac_dir" && ac_dir=.
  2859.       tmp_nm="$ac_dir/$lt_tmp_nm"
  2860.       if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
  2861. # Check to see if the nm accepts a BSD-compat flag.
  2862. # Adding the `sed 1q' prevents false positives on HP-UX, which says:
  2863. #   nm: unknown option "B" ignored
  2864. # Tru64's nm complains that /dev/null is an invalid object file
  2865. case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
  2866. */dev/null* | *'Invalid file or object type'*)
  2867.   lt_cv_path_NM="$tmp_nm -B"
  2868.   break
  2869.   ;;
  2870. *)
  2871.   case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
  2872.   */dev/null*)
  2873.     lt_cv_path_NM="$tmp_nm -p"
  2874.     break
  2875.     ;;
  2876.   *)
  2877.     lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
  2878.     continue # so that we can try to find one that supports BSD flags
  2879.     ;;
  2880.   esac
  2881.   ;;
  2882. esac
  2883.       fi
  2884.     done
  2885.     IFS="$lt_save_ifs"
  2886.   done
  2887.   : ${lt_cv_path_NM=no}
  2888. fi])
  2889. if test "$lt_cv_path_NM" != "no"; then
  2890.   NM="$lt_cv_path_NM"
  2891. else
  2892.   # Didn't find any BSD compatible name lister, look for dumpbin.
  2893.   AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
  2894.   AC_SUBST([DUMPBIN])
  2895.   if test "$DUMPBIN" != ":"; then
  2896.     NM="$DUMPBIN"
  2897.   fi
  2898. fi
  2899. test -z "$NM" && NM=nm
  2900. AC_SUBST([NM])
  2901. _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
  2902. AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
  2903.   [lt_cv_nm_interface="BSD nm"
  2904.   echo "int some_variable = 0;" > conftest.$ac_ext
  2905.   (eval echo ""$as_me:__oline__: $ac_compile"" >&AS_MESSAGE_LOG_FD)
  2906.   (eval "$ac_compile" 2>conftest.err)
  2907.   cat conftest.err >&AS_MESSAGE_LOG_FD
  2908.   (eval echo ""$as_me:__oline__: $NM \"conftest.$ac_objext\""" >&AS_MESSAGE_LOG_FD)
  2909.   (eval "$NM "conftest.$ac_objext"" 2>conftest.err > conftest.out)
  2910.   cat conftest.err >&AS_MESSAGE_LOG_FD
  2911.   (eval echo ""$as_me:__oline__: output"" >&AS_MESSAGE_LOG_FD)
  2912.   cat conftest.out >&AS_MESSAGE_LOG_FD
  2913.   if $GREP 'External.*some_variable' conftest.out > /dev/null; then
  2914.     lt_cv_nm_interface="MS dumpbin"
  2915.   fi
  2916.   rm -f conftest*])
  2917. ])# LT_PATH_NM
  2918. # Old names:
  2919. AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
  2920. AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
  2921. dnl aclocal-1.4 backwards compatibility:
  2922. dnl AC_DEFUN([AM_PROG_NM], [])
  2923. dnl AC_DEFUN([AC_PROG_NM], [])
  2924. # LT_LIB_M
  2925. # --------
  2926. # check for math library
  2927. AC_DEFUN([LT_LIB_M],
  2928. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2929. LIBM=
  2930. case $host in
  2931. *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
  2932.   # These system don't have libm, or don't need it
  2933.   ;;
  2934. *-ncr-sysv4.3*)
  2935.   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
  2936.   AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
  2937.   ;;
  2938. *)
  2939.   AC_CHECK_LIB(m, cos, LIBM="-lm")
  2940.   ;;
  2941. esac
  2942. AC_SUBST([LIBM])
  2943. ])# LT_LIB_M
  2944. # Old name:
  2945. AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
  2946. dnl aclocal-1.4 backwards compatibility:
  2947. dnl AC_DEFUN([AC_CHECK_LIBM], [])
  2948. # _LT_COMPILER_NO_RTTI([TAGNAME])
  2949. # -------------------------------
  2950. m4_defun([_LT_COMPILER_NO_RTTI],
  2951. [m4_require([_LT_TAG_COMPILER])dnl
  2952. _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
  2953. if test "$GCC" = yes; then
  2954.   _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
  2955.   _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
  2956.     lt_cv_prog_compiler_rtti_exceptions,
  2957.     [-fno-rtti -fno-exceptions], [],
  2958.     [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
  2959. fi
  2960. _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
  2961. [Compiler flag to turn off builtin functions])
  2962. ])# _LT_COMPILER_NO_RTTI
  2963. # _LT_CMD_GLOBAL_SYMBOLS
  2964. # ----------------------
  2965. m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
  2966. [AC_REQUIRE([AC_CANONICAL_HOST])dnl
  2967. AC_REQUIRE([AC_PROG_CC])dnl
  2968. AC_REQUIRE([LT_PATH_NM])dnl
  2969. AC_REQUIRE([LT_PATH_LD])dnl
  2970. m4_require([_LT_DECL_SED])dnl
  2971. m4_require([_LT_DECL_EGREP])dnl
  2972. m4_require([_LT_TAG_COMPILER])dnl
  2973. # Check for command to grab the raw symbol name followed by C symbol from nm.
  2974. AC_MSG_CHECKING([command to parse $NM output from $compiler object])
  2975. AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
  2976. [
  2977. # These are sane defaults that work on at least a few old systems.
  2978. # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
  2979. # Character class describing NM global symbol codes.
  2980. symcode='[[BCDEGRST]]'
  2981. # Regexp to match symbols that can be accessed directly from C.
  2982. sympat='([[_A-Za-z]][[_A-Za-z0-9]]*)'
  2983. # Define system-specific variables.
  2984. case $host_os in
  2985. aix*)
  2986.   symcode='[[BCDT]]'
  2987.   ;;
  2988. cygwin* | mingw* | pw32* | cegcc*)
  2989.   symcode='[[ABCDGISTW]]'
  2990.   ;;
  2991. hpux*)
  2992.   if test "$host_cpu" = ia64; then
  2993.     symcode='[[ABCDEGRST]]'
  2994.   fi
  2995.   ;;
  2996. irix* | nonstopux*)
  2997.   symcode='[[BCDEGRST]]'
  2998.   ;;
  2999. osf*)
  3000.   symcode='[[BCDEGQRST]]'
  3001.   ;;
  3002. solaris*)
  3003.   symcode='[[BDRT]]'
  3004.   ;;
  3005. sco3.2v5*)
  3006.   symcode='[[DT]]'
  3007.   ;;
  3008. sysv4.2uw2*)
  3009.   symcode='[[DT]]'
  3010.   ;;
  3011. sysv5* | sco5v6* | unixware* | OpenUNIX*)
  3012.   symcode='[[ABDT]]'
  3013.   ;;
  3014. sysv4)
  3015.   symcode='[[DFNSTU]]'
  3016.   ;;
  3017. esac
  3018. # If we're using GNU nm, then use its standard symbol codes.
  3019. case `$NM -V 2>&1` in
  3020. *GNU* | *'with BFD'*)
  3021.   symcode='[[ABCDGIRSTW]]' ;;
  3022. esac
  3023. # Transform an extracted symbol line into a proper C declaration.
  3024. # Some systems (esp. on ia64) link data and code symbols differently,
  3025. # so use this general approach.
  3026. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* (.*)$/extern int 1();/p' -e 's/^$symcode* .* (.*)$/extern char 1;/p'"
  3027. # Transform an extracted symbol line into symbol name and symbol address
  3028. lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: ([[^ ]]*) $/  {\"1\", (void *) 0},/p' -e 's/^$symcode* ([[^ ]]*) ([[^ ]]*)$/  {"2", (void *) &2},/p'"
  3029. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: ([[^ ]]*) $/  {\"1\", (void *) 0},/p' -e 's/^$symcode* ([[^ ]]*) (lib[[^ ]]*)$/  {"2", (void *) &2},/p' -e 's/^$symcode* ([[^ ]]*) ([[^ ]]*)$/  {"lib2", (void *) &2},/p'"
  3030. # Handle CRLF in mingw tool chain
  3031. opt_cr=
  3032. case $build_os in
  3033. mingw*)
  3034.   opt_cr=`$ECHO 'x{0,1}' | tr x '15'` # option cr in regexp
  3035.   ;;
  3036. esac
  3037. # Try without a prefix underscore, then with it.
  3038. for ac_symprfx in "" "_"; do
  3039.   # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
  3040.   symxfrm="\1 $ac_symprfx\2 \2"
  3041.   # Write the raw and C identifiers.
  3042.   if test "$lt_cv_nm_interface" = "MS dumpbin"; then
  3043.     # Fake it for dumpbin and say T for any non-static function
  3044.     # and D for any global variable.
  3045.     # Also find C++ and __fastcall symbols from MSVC++,
  3046.     # which start with @ or ?.
  3047.     lt_cv_sys_global_symbol_pipe="$AWK ['"
  3048. "     {last_section=section; section=$ 3};"
  3049. "     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"
  3050. "     $ 0!~/External *|/{next};"
  3051. "     / 0+ UNDEF /{next}; / UNDEF ([^|])*()/{next};"
  3052. "     {if(hide[section]) next};"
  3053. "     {f=0}; $ 0~/().*|/{f=1}; {printf f ? "T " : "D "};"
  3054. "     {split($ 0, a, /||r/); split(a[2], s)};"
  3055. "     s[1]~/^[@?]/{print s[1], s[1]; next};"
  3056. "     s[1]~prfx {split(s[1],t,"@"); print t[1], substr(t[1],length(prfx))}"
  3057. "     ' prfx=^$ac_symprfx]"
  3058.   else
  3059.     lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[  ]]($symcode$symcode*)[[  ]][[  ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
  3060.   fi
  3061.   # Check to see that the pipe works correctly.
  3062.   pipe_works=no
  3063.   rm -f conftest*
  3064.   cat > conftest.$ac_ext <<_LT_EOF
  3065. #ifdef __cplusplus
  3066. extern "C" {
  3067. #endif
  3068. char nm_test_var;
  3069. void nm_test_func(void);
  3070. void nm_test_func(void){}
  3071. #ifdef __cplusplus
  3072. }
  3073. #endif
  3074. int main(){nm_test_var='a';nm_test_func();return(0);}
  3075. _LT_EOF
  3076.   if AC_TRY_EVAL(ac_compile); then
  3077.     # Now try to grab the symbols.
  3078.     nlist=conftest.nm
  3079.     if AC_TRY_EVAL(NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist) && test -s "$nlist"; then
  3080.       # Try sorting and uniquifying the output.
  3081.       if sort "$nlist" | uniq > "$nlist"T; then
  3082. mv -f "$nlist"T "$nlist"
  3083.       else
  3084. rm -f "$nlist"T
  3085.       fi
  3086.       # Make sure that we snagged all the symbols we need.
  3087.       if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
  3088. if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
  3089.   cat <<_LT_EOF > conftest.$ac_ext
  3090. #ifdef __cplusplus
  3091. extern "C" {
  3092. #endif
  3093. _LT_EOF
  3094.   # Now generate the symbol file.
  3095.   eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
  3096.   cat <<_LT_EOF >> conftest.$ac_ext
  3097. /* The mapping between symbol names and symbols.  */
  3098. const struct {
  3099.   const char *name;
  3100.   void       *address;
  3101. }
  3102. lt__PROGRAM__LTX_preloaded_symbols[[]] =
  3103. {
  3104.   { "@PROGRAM@", (void *) 0 },
  3105. _LT_EOF
  3106.   $SED "s/^$symcode$symcode* (.*) (.*)$/  {"2", (void *) &2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
  3107.   cat <<_LT_EOF >> conftest.$ac_ext
  3108.   {0, (void *) 0}
  3109. };
  3110. /* This works around a problem in FreeBSD linker */
  3111. #ifdef FREEBSD_WORKAROUND
  3112. static const void *lt_preloaded_setup() {
  3113.   return lt__PROGRAM__LTX_preloaded_symbols;
  3114. }
  3115. #endif
  3116. #ifdef __cplusplus
  3117. }
  3118. #endif
  3119. _LT_EOF
  3120.   # Now try linking the two files.
  3121.   mv conftest.$ac_objext conftstm.$ac_objext
  3122.   lt_save_LIBS="$LIBS"
  3123.   lt_save_CFLAGS="$CFLAGS"
  3124.   LIBS="conftstm.$ac_objext"
  3125.   CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
  3126.   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
  3127.     pipe_works=yes
  3128.   fi
  3129.   LIBS="$lt_save_LIBS"
  3130.   CFLAGS="$lt_save_CFLAGS"
  3131. else
  3132.   echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
  3133. fi
  3134.       else
  3135. echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
  3136.       fi
  3137.     else
  3138.       echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
  3139.     fi
  3140.   else
  3141.     echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
  3142.     cat conftest.$ac_ext >&5
  3143.   fi
  3144.   rm -rf conftest* conftst*
  3145.   # Do not use the global_symbol_pipe unless it works.
  3146.   if test "$pipe_works" = yes; then
  3147.     break
  3148.   else
  3149.     lt_cv_sys_global_symbol_pipe=
  3150.   fi
  3151. done
  3152. ])
  3153. if test -z "$lt_cv_sys_global_symbol_pipe"; then
  3154.   lt_cv_sys_global_symbol_to_cdecl=
  3155. fi
  3156. if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
  3157.   AC_MSG_RESULT(failed)
  3158. else
  3159.   AC_MSG_RESULT(ok)
  3160. fi
  3161. _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
  3162.     [Take the output of nm and produce a listing of raw symbols and C names])
  3163. _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
  3164.     [Transform the output of nm in a proper C declaration])
  3165. _LT_DECL([global_symbol_to_c_name_address],
  3166.     [lt_cv_sys_global_symbol_to_c_name_address], [1],
  3167.     [Transform the output of nm in a C name address pair])
  3168. _LT_DECL([global_symbol_to_c_name_address_lib_prefix],
  3169.     [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
  3170.     [Transform the output of nm in a C name address pair when lib prefix is needed])
  3171. ]) # _LT_CMD_GLOBAL_SYMBOLS
  3172. # _LT_COMPILER_PIC([TAGNAME])
  3173. # ---------------------------
  3174. m4_defun([_LT_COMPILER_PIC],
  3175. [m4_require([_LT_TAG_COMPILER])dnl
  3176. _LT_TAGVAR(lt_prog_compiler_wl, $1)=
  3177. _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3178. _LT_TAGVAR(lt_prog_compiler_static, $1)=
  3179. AC_MSG_CHECKING([for $compiler option to produce PIC])
  3180. m4_if([$1], [CXX], [
  3181.   # C++ specific cases for pic, static, wl, etc.
  3182.   if test "$GXX" = yes; then
  3183.     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3184.     _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
  3185.     case $host_os in
  3186.     aix*)
  3187.       # All AIX code is PIC.
  3188.       if test "$host_cpu" = ia64; then
  3189. # AIX 5 now supports IA64 processor
  3190. _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3191.       fi
  3192.       ;;
  3193.     amigaos*)
  3194.       case $host_cpu in
  3195.       powerpc)
  3196.             # see comment about AmigaOS4 .so support
  3197.             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3198.         ;;
  3199.       m68k)
  3200.             # FIXME: we need at least 68020 code to build shared libraries, but
  3201.             # adding the `-m68020' flag to GCC prevents building anything better,
  3202.             # like `-m68040'.
  3203.             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
  3204.         ;;
  3205.       esac
  3206.       ;;
  3207.     beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
  3208.       # PIC is the default for these OSes.
  3209.       ;;
  3210.     mingw* | cygwin* | os2* | pw32* | cegcc*)
  3211.       # This hack is so that the source file can tell whether it is being
  3212.       # built for inclusion in a dll (and should export symbols for example).
  3213.       # Although the cygwin gcc ignores -fPIC, still need this for old-style
  3214.       # (--disable-auto-import) libraries
  3215.       m4_if([$1], [GCJ], [],
  3216. [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
  3217.       ;;
  3218.     darwin* | rhapsody*)
  3219.       # PIC is the default on this platform
  3220.       # Common symbols not allowed in MH_DYLIB files
  3221.       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
  3222.       ;;
  3223.     *djgpp*)
  3224.       # DJGPP does not support shared libraries at all
  3225.       _LT_TAGVAR(lt_prog_compiler_pic, $1)=
  3226.       ;;
  3227.     interix[[3-9]]*)
  3228.       # Interix 3.x gcc -fpic/-fPIC options generate broken code.
  3229.       # Instead, we relocate shared libraries at runtime.
  3230.       ;;
  3231.     sysv4*MP*)
  3232.       if test -d /usr/nec; then
  3233. _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
  3234.       fi
  3235.       ;;
  3236.     hpux*)
  3237.       # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
  3238.       # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
  3239.       # sets the default TLS model and affects inlining.
  3240.       case $host_cpu in
  3241.       hppa*64*)
  3242. ;;
  3243.       *)
  3244. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3245. ;;
  3246.       esac
  3247.       ;;
  3248.     *qnx* | *nto*)
  3249.       # QNX uses GNU C++, but need to define -shared option too, otherwise
  3250.       # it will coredump.
  3251.       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
  3252.       ;;
  3253.     *)
  3254.       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
  3255.       ;;
  3256.     esac
  3257.   else
  3258.     case $host_os in
  3259.       aix[[4-9]]*)
  3260. # All AIX code is PIC.
  3261. if test "$host_cpu" = ia64; then
  3262.   # AIX 5 now supports IA64 processor
  3263.   _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
  3264. else
  3265.   _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
  3266. fi
  3267. ;;
  3268.       chorus*)
  3269. case $cc_basename in
  3270. cxch68*)
  3271.   # Green Hills C++ Compiler
  3272.   # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a"
  3273.   ;;
  3274. esac
  3275. ;;
  3276.       dgux*)
  3277. case $cc_basename in
  3278.   ec++*)
  3279.     _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
  3280.     ;;
  3281.   ghcx*)
  3282.     # Green Hills C++ Compiler
  3283.     _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
  3284.     ;;
  3285.   *)
  3286.     ;;
  3287. esac
  3288. ;;
  3289.       freebsd* | dragonfly*)
  3290. # FreeBSD uses GNU C++
  3291. ;;
  3292.       hpux9* | hpux10* | hpux11*)
  3293. case $cc_basename in
  3294.   CC*)
  3295.     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3296.     _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3297.     if test "$host_cpu" != ia64; then
  3298.       _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3299.     fi
  3300.     ;;
  3301.   aCC*)
  3302.     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
  3303.     _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
  3304.     case $host_cpu in
  3305.     hppa*64*|ia64*)
  3306.       # +Z the default
  3307.       ;;
  3308.     *)
  3309.       _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
  3310.       ;;