libtool.m4
上传用户:quxuerui
上传日期:2018-01-08
资源大小:41811k
文件大小:251k
源码类别:

网格计算

开发平台:

Java

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