Sync with binutils: GCC: Pass --plugin to AR and RANLIB
[platform/upstream/gcc.git] / libtool.m4
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, 2009 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
11 m4_define([_LT_COPYING], [dnl
12 #   Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005,
13 #                 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
14 #   Written by Gordon Matzigkeit, 1996
15 #
16 #   This file is part of GNU Libtool.
17 #
18 # GNU Libtool is free software; you can redistribute it and/or
19 # modify it under the terms of the GNU General Public License as
20 # published by the Free Software Foundation; either version 2 of
21 # the License, or (at your option) any later version.
22 #
23 # As a special exception to the GNU General Public License,
24 # if you distribute this file as part of a program or library that
25 # is built using GNU Libtool, you may include this file under the
26 # same distribution terms that you use for the rest of that program.
27 #
28 # GNU Libtool is distributed in the hope that it will be useful,
29 # but WITHOUT ANY WARRANTY; without even the implied warranty of
30 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
31 # GNU General Public License for more details.
32 #
33 # You should have received a copy of the GNU General Public License
34 # along with GNU Libtool; see the file COPYING.  If not, a copy
35 # can be downloaded from http://www.gnu.org/licenses/gpl.html, or
36 # obtained by writing to the Free Software Foundation, Inc.,
37 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
38 ])
39
40 # serial 56 LT_INIT
41
42
43 # LT_PREREQ(VERSION)
44 # ------------------
45 # Complain and exit if this libtool version is less that VERSION.
46 m4_defun([LT_PREREQ],
47 [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
48        [m4_default([$3],
49                    [m4_fatal([Libtool version $1 or higher is required],
50                              63)])],
51        [$2])])
52
53
54 # _LT_CHECK_BUILDDIR
55 # ------------------
56 # Complain if the absolute build directory name contains unusual characters
57 m4_defun([_LT_CHECK_BUILDDIR],
58 [case `pwd` in
59   *\ * | *\     *)
60     AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
61 esac
62 ])
63
64
65 # LT_INIT([OPTIONS])
66 # ------------------
67 AC_DEFUN([LT_INIT],
68 [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
69 AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
70 AC_BEFORE([$0], [LT_LANG])dnl
71 AC_BEFORE([$0], [LT_OUTPUT])dnl
72 AC_BEFORE([$0], [LTDL_INIT])dnl
73 m4_require([_LT_CHECK_BUILDDIR])dnl
74
75 dnl Autoconf doesn't catch unexpanded LT_ macros by default:
76 m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
77 m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
78 dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
79 dnl unless we require an AC_DEFUNed macro:
80 AC_REQUIRE([LTOPTIONS_VERSION])dnl
81 AC_REQUIRE([LTSUGAR_VERSION])dnl
82 AC_REQUIRE([LTVERSION_VERSION])dnl
83 AC_REQUIRE([LTOBSOLETE_VERSION])dnl
84 m4_require([_LT_PROG_LTMAIN])dnl
85
86 _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
87
88 dnl Parse OPTIONS
89 _LT_SET_OPTIONS([$0], [$1])
90
91 # This can be used to rebuild libtool when needed
92 LIBTOOL_DEPS="$ltmain"
93
94 # Always use our own libtool.
95 LIBTOOL='$(SHELL) $(top_builddir)/libtool'
96 AC_SUBST(LIBTOOL)dnl
97
98 _LT_SETUP
99
100 # Only expand once:
101 m4_define([LT_INIT])
102 ])# LT_INIT
103
104 # Old names:
105 AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
106 AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
107 dnl aclocal-1.4 backwards compatibility:
108 dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
109 dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
110
111
112 # _LT_CC_BASENAME(CC)
113 # -------------------
114 # Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
115 m4_defun([_LT_CC_BASENAME],
116 [for cc_temp in $1""; do
117   case $cc_temp in
118     compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
119     distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
120     \-*) ;;
121     *) break;;
122   esac
123 done
124 cc_basename=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
125 ])
126
127
128 # _LT_FILEUTILS_DEFAULTS
129 # ----------------------
130 # It is okay to use these file commands and assume they have been set
131 # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'.
132 m4_defun([_LT_FILEUTILS_DEFAULTS],
133 [: ${CP="cp -f"}
134 : ${MV="mv -f"}
135 : ${RM="rm -f"}
136 ])# _LT_FILEUTILS_DEFAULTS
137
138
139 # _LT_SETUP
140 # ---------
141 m4_defun([_LT_SETUP],
142 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
143 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
144 AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
145 AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
146
147 _LT_DECL([], [host_alias], [0], [The host system])dnl
148 _LT_DECL([], [host], [0])dnl
149 _LT_DECL([], [host_os], [0])dnl
150 dnl
151 _LT_DECL([], [build_alias], [0], [The build system])dnl
152 _LT_DECL([], [build], [0])dnl
153 _LT_DECL([], [build_os], [0])dnl
154 dnl
155 AC_REQUIRE([AC_PROG_CC])dnl
156 AC_REQUIRE([LT_PATH_LD])dnl
157 AC_REQUIRE([LT_PATH_NM])dnl
158 dnl
159 AC_REQUIRE([AC_PROG_LN_S])dnl
160 test -z "$LN_S" && LN_S="ln -s"
161 _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
162 dnl
163 AC_REQUIRE([LT_CMD_MAX_LEN])dnl
164 _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
165 _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
166 dnl
167 m4_require([_LT_FILEUTILS_DEFAULTS])dnl
168 m4_require([_LT_CHECK_SHELL_FEATURES])dnl
169 m4_require([_LT_CMD_RELOAD])dnl
170 m4_require([_LT_CHECK_MAGIC_METHOD])dnl
171 m4_require([_LT_CMD_OLD_ARCHIVE])dnl
172 m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
173
174 _LT_CONFIG_LIBTOOL_INIT([
175 # See if we are running on zsh, and set the options which allow our
176 # commands through without removal of \ escapes INIT.
177 if test -n "\${ZSH_VERSION+set}" ; then
178    setopt NO_GLOB_SUBST
179 fi
180 ])
181 if test -n "${ZSH_VERSION+set}" ; then
182    setopt NO_GLOB_SUBST
183 fi
184
185 _LT_CHECK_OBJDIR
186
187 m4_require([_LT_TAG_COMPILER])dnl
188
189 case $host_os in
190 aix3*)
191   # AIX sometimes has problems with the GCC collect2 program.  For some
192   # reason, if we set the COLLECT_NAMES environment variable, the problems
193   # vanish in a puff of smoke.
194   if test "X${COLLECT_NAMES+set}" != Xset; then
195     COLLECT_NAMES=
196     export COLLECT_NAMES
197   fi
198   ;;
199 esac
200
201 # Global variables:
202 ofile=libtool
203 can_build_shared=yes
204
205 # All known linkers require a `.a' archive for static linking (except MSVC,
206 # which needs '.lib').
207 libext=a
208
209 with_gnu_ld="$lt_cv_prog_gnu_ld"
210
211 old_CC="$CC"
212 old_CFLAGS="$CFLAGS"
213
214 # Set sane defaults for various variables
215 test -z "$CC" && CC=cc
216 test -z "$LTCC" && LTCC=$CC
217 test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
218 test -z "$LD" && LD=ld
219 test -z "$ac_objext" && ac_objext=o
220
221 _LT_CC_BASENAME([$compiler])
222
223 # Only perform the check for file, if the check method requires it
224 test -z "$MAGIC_CMD" && MAGIC_CMD=file
225 case $deplibs_check_method in
226 file_magic*)
227   if test "$file_magic_cmd" = '$MAGIC_CMD'; then
228     _LT_PATH_MAGIC
229   fi
230   ;;
231 esac
232
233 # Use C for the default configuration in the libtool script
234 LT_SUPPORTED_TAG([CC])
235 _LT_LANG_C_CONFIG
236 _LT_LANG_DEFAULT_CONFIG
237 _LT_CONFIG_COMMANDS
238 ])# _LT_SETUP
239
240
241 # _LT_PREPARE_SED_QUOTE_VARS
242 # --------------------------
243 # Define a few sed substitution that help us do robust quoting.
244 m4_defun([_LT_PREPARE_SED_QUOTE_VARS],
245 [# Backslashify metacharacters that are still active within
246 # double-quoted strings.
247 sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
248
249 # Same as above, but do not quote variable references.
250 double_quote_subst='s/\([["`\\]]\)/\\\1/g'
251
252 # Sed substitution to delay expansion of an escaped shell variable in a
253 # double_quote_subst'ed string.
254 delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
255
256 # Sed substitution to delay expansion of an escaped single quote.
257 delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
258
259 # Sed substitution to avoid accidental globbing in evaled expressions
260 no_glob_subst='s/\*/\\\*/g'
261 ])
262
263 # _LT_PROG_LTMAIN
264 # ---------------
265 # Note that this code is called both from `configure', and `config.status'
266 # now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,
267 # `config.status' has no value for ac_aux_dir unless we are using Automake,
268 # so we pass a copy along to make sure it has a sensible value anyway.
269 m4_defun([_LT_PROG_LTMAIN],
270 [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
271 _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
272 ltmain="$ac_aux_dir/ltmain.sh"
273 ])# _LT_PROG_LTMAIN
274
275
276 ## ------------------------------------- ##
277 ## Accumulate code for creating libtool. ##
278 ## ------------------------------------- ##
279
280 # So that we can recreate a full libtool script including additional
281 # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
282 # in macros and then make a single call at the end using the `libtool'
283 # label.
284
285
286 # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
287 # ----------------------------------------
288 # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
289 m4_define([_LT_CONFIG_LIBTOOL_INIT],
290 [m4_ifval([$1],
291           [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
292                      [$1
293 ])])])
294
295 # Initialize.
296 m4_define([_LT_OUTPUT_LIBTOOL_INIT])
297
298
299 # _LT_CONFIG_LIBTOOL([COMMANDS])
300 # ------------------------------
301 # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
302 m4_define([_LT_CONFIG_LIBTOOL],
303 [m4_ifval([$1],
304           [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
305                      [$1
306 ])])])
307
308 # Initialize.
309 m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
310
311
312 # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
313 # -----------------------------------------------------
314 m4_defun([_LT_CONFIG_SAVE_COMMANDS],
315 [_LT_CONFIG_LIBTOOL([$1])
316 _LT_CONFIG_LIBTOOL_INIT([$2])
317 ])
318
319
320 # _LT_FORMAT_COMMENT([COMMENT])
321 # -----------------------------
322 # Add leading comment marks to the start of each line, and a trailing
323 # full-stop to the whole comment if one is not present already.
324 m4_define([_LT_FORMAT_COMMENT],
325 [m4_ifval([$1], [
326 m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
327               [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
328 )])
329
330
331
332 ## ------------------------ ##
333 ## FIXME: Eliminate VARNAME ##
334 ## ------------------------ ##
335
336
337 # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
338 # -------------------------------------------------------------------
339 # CONFIGNAME is the name given to the value in the libtool script.
340 # VARNAME is the (base) name used in the configure script.
341 # VALUE may be 0, 1 or 2 for a computed quote escaped value based on
342 # VARNAME.  Any other value will be used directly.
343 m4_define([_LT_DECL],
344 [lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
345     [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
346         [m4_ifval([$1], [$1], [$2])])
347     lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
348     m4_ifval([$4],
349         [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
350     lt_dict_add_subkey([lt_decl_dict], [$2],
351         [tagged?], [m4_ifval([$5], [yes], [no])])])
352 ])
353
354
355 # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
356 # --------------------------------------------------------
357 m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
358
359
360 # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
361 # ------------------------------------------------
362 m4_define([lt_decl_tag_varnames],
363 [_lt_decl_filter([tagged?], [yes], $@)])
364
365
366 # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
367 # ---------------------------------------------------------
368 m4_define([_lt_decl_filter],
369 [m4_case([$#],
370   [0], [m4_fatal([$0: too few arguments: $#])],
371   [1], [m4_fatal([$0: too few arguments: $#: $1])],
372   [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
373   [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
374   [lt_dict_filter([lt_decl_dict], $@)])[]dnl
375 ])
376
377
378 # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
379 # --------------------------------------------------
380 m4_define([lt_decl_quote_varnames],
381 [_lt_decl_filter([value], [1], $@)])
382
383
384 # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
385 # ---------------------------------------------------
386 m4_define([lt_decl_dquote_varnames],
387 [_lt_decl_filter([value], [2], $@)])
388
389
390 # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
391 # ---------------------------------------------------
392 m4_define([lt_decl_varnames_tagged],
393 [m4_assert([$# <= 2])dnl
394 _$0(m4_quote(m4_default([$1], [[, ]])),
395     m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
396     m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
397 m4_define([_lt_decl_varnames_tagged],
398 [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
399
400
401 # lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
402 # ------------------------------------------------
403 m4_define([lt_decl_all_varnames],
404 [_$0(m4_quote(m4_default([$1], [[, ]])),
405      m4_if([$2], [],
406            m4_quote(lt_decl_varnames),
407         m4_quote(m4_shift($@))))[]dnl
408 ])
409 m4_define([_lt_decl_all_varnames],
410 [lt_join($@, lt_decl_varnames_tagged([$1],
411                         lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
412 ])
413
414
415 # _LT_CONFIG_STATUS_DECLARE([VARNAME])
416 # ------------------------------------
417 # Quote a variable value, and forward it to `config.status' so that its
418 # declaration there will have the same value as in `configure'.  VARNAME
419 # must have a single quote delimited value for this to work.
420 m4_define([_LT_CONFIG_STATUS_DECLARE],
421 [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
422
423
424 # _LT_CONFIG_STATUS_DECLARATIONS
425 # ------------------------------
426 # We delimit libtool config variables with single quotes, so when
427 # we write them to config.status, we have to be sure to quote all
428 # embedded single quotes properly.  In configure, this macro expands
429 # each variable declared with _LT_DECL (and _LT_TAGDECL) into:
430 #
431 #    <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
432 m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
433 [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
434     [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
435
436
437 # _LT_LIBTOOL_TAGS
438 # ----------------
439 # Output comment and list of tags supported by the script
440 m4_defun([_LT_LIBTOOL_TAGS],
441 [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
442 available_tags="_LT_TAGS"dnl
443 ])
444
445
446 # _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
447 # -----------------------------------
448 # Extract the dictionary values for VARNAME (optionally with TAG) and
449 # expand to a commented shell variable setting:
450 #
451 #    # Some comment about what VAR is for.
452 #    visible_name=$lt_internal_name
453 m4_define([_LT_LIBTOOL_DECLARE],
454 [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
455                                            [description])))[]dnl
456 m4_pushdef([_libtool_name],
457     m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
458 m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
459     [0], [_libtool_name=[$]$1],
460     [1], [_libtool_name=$lt_[]$1],
461     [2], [_libtool_name=$lt_[]$1],
462     [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
463 m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
464 ])
465
466
467 # _LT_LIBTOOL_CONFIG_VARS
468 # -----------------------
469 # Produce commented declarations of non-tagged libtool config variables
470 # suitable for insertion in the LIBTOOL CONFIG section of the `libtool'
471 # script.  Tagged libtool config variables (even for the LIBTOOL CONFIG
472 # section) are produced by _LT_LIBTOOL_TAG_VARS.
473 m4_defun([_LT_LIBTOOL_CONFIG_VARS],
474 [m4_foreach([_lt_var],
475     m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
476     [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
477
478
479 # _LT_LIBTOOL_TAG_VARS(TAG)
480 # -------------------------
481 m4_define([_LT_LIBTOOL_TAG_VARS],
482 [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
483     [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
484
485
486 # _LT_TAGVAR(VARNAME, [TAGNAME])
487 # ------------------------------
488 m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
489
490
491 # _LT_CONFIG_COMMANDS
492 # -------------------
493 # Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of
494 # variables for single and double quote escaping we saved from calls
495 # to _LT_DECL, we can put quote escaped variables declarations
496 # into `config.status', and then the shell code to quote escape them in
497 # for loops in `config.status'.  Finally, any additional code accumulated
498 # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
499 m4_defun([_LT_CONFIG_COMMANDS],
500 [AC_PROVIDE_IFELSE([LT_OUTPUT],
501         dnl If the libtool generation code has been placed in $CONFIG_LT,
502         dnl instead of duplicating it all over again into config.status,
503         dnl then we will have config.status run $CONFIG_LT later, so it
504         dnl needs to know what name is stored there:
505         [AC_CONFIG_COMMANDS([libtool],
506             [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
507     dnl If the libtool generation code is destined for config.status,
508     dnl expand the accumulated commands and init code now:
509     [AC_CONFIG_COMMANDS([libtool],
510         [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
511 ])#_LT_CONFIG_COMMANDS
512
513
514 # Initialize.
515 m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
516 [
517
518 # The HP-UX ksh and POSIX shell print the target directory to stdout
519 # if CDPATH is set.
520 (unset CDPATH) >/dev/null 2>&1 && unset CDPATH
521
522 sed_quote_subst='$sed_quote_subst'
523 double_quote_subst='$double_quote_subst'
524 delay_variable_subst='$delay_variable_subst'
525 _LT_CONFIG_STATUS_DECLARATIONS
526 LTCC='$LTCC'
527 LTCFLAGS='$LTCFLAGS'
528 compiler='$compiler_DEFAULT'
529
530 # A function that is used when there is no print builtin or printf.
531 func_fallback_echo ()
532 {
533   eval 'cat <<_LTECHO_EOF
534 \$[]1
535 _LTECHO_EOF'
536 }
537
538 # Quote evaled strings.
539 for var in lt_decl_all_varnames([[ \
540 ]], lt_decl_quote_varnames); do
541     case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
542     *[[\\\\\\\`\\"\\\$]]*)
543       eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\""
544       ;;
545     *)
546       eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
547       ;;
548     esac
549 done
550
551 # Double-quote double-evaled strings.
552 for var in lt_decl_all_varnames([[ \
553 ]], lt_decl_dquote_varnames); do
554     case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
555     *[[\\\\\\\`\\"\\\$]]*)
556       eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\""
557       ;;
558     *)
559       eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
560       ;;
561     esac
562 done
563
564 _LT_OUTPUT_LIBTOOL_INIT
565 ])
566
567 # _LT_GENERATED_FILE_INIT(FILE, [COMMENT])
568 # ------------------------------------
569 # Generate a child script FILE with all initialization necessary to
570 # reuse the environment learned by the parent script, and make the
571 # file executable.  If COMMENT is supplied, it is inserted after the
572 # `#!' sequence but before initialization text begins.  After this
573 # macro, additional text can be appended to FILE to form the body of
574 # the child script.  The macro ends with non-zero status if the
575 # file could not be fully written (such as if the disk is full).
576 m4_ifdef([AS_INIT_GENERATED],
577 [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],
578 [m4_defun([_LT_GENERATED_FILE_INIT],
579 [m4_require([AS_PREPARE])]dnl
580 [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl
581 [lt_write_fail=0
582 cat >$1 <<_ASEOF || lt_write_fail=1
583 #! $SHELL
584 # Generated by $as_me.
585 $2
586 SHELL=\${CONFIG_SHELL-$SHELL}
587 export SHELL
588 _ASEOF
589 cat >>$1 <<\_ASEOF || lt_write_fail=1
590 AS_SHELL_SANITIZE
591 _AS_PREPARE
592 exec AS_MESSAGE_FD>&1
593 _ASEOF
594 test $lt_write_fail = 0 && chmod +x $1[]dnl
595 m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
596
597 # LT_OUTPUT
598 # ---------
599 # This macro allows early generation of the libtool script (before
600 # AC_OUTPUT is called), incase it is used in configure for compilation
601 # tests.
602 AC_DEFUN([LT_OUTPUT],
603 [: ${CONFIG_LT=./config.lt}
604 AC_MSG_NOTICE([creating $CONFIG_LT])
605 _LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
606 [# Run this file to recreate a libtool stub with the current configuration.])
607
608 cat >>"$CONFIG_LT" <<\_LTEOF
609 lt_cl_silent=false
610 exec AS_MESSAGE_LOG_FD>>config.log
611 {
612   echo
613   AS_BOX([Running $as_me.])
614 } >&AS_MESSAGE_LOG_FD
615
616 lt_cl_help="\
617 \`$as_me' creates a local libtool stub from the current configuration,
618 for use in further configure time tests before the real libtool is
619 generated.
620
621 Usage: $[0] [[OPTIONS]]
622
623   -h, --help      print this help, then exit
624   -V, --version   print version number, then exit
625   -q, --quiet     do not print progress messages
626   -d, --debug     don't remove temporary files
627
628 Report bugs to <bug-libtool@gnu.org>."
629
630 lt_cl_version="\
631 m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
632 m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
633 configured by $[0], generated by m4_PACKAGE_STRING.
634
635 Copyright (C) 2009 Free Software Foundation, Inc.
636 This config.lt script is free software; the Free Software Foundation
637 gives unlimited permision to copy, distribute and modify it."
638
639 while test $[#] != 0
640 do
641   case $[1] in
642     --version | --v* | -V )
643       echo "$lt_cl_version"; exit 0 ;;
644     --help | --h* | -h )
645       echo "$lt_cl_help"; exit 0 ;;
646     --debug | --d* | -d )
647       debug=: ;;
648     --quiet | --q* | --silent | --s* | -q )
649       lt_cl_silent=: ;;
650
651     -*) AC_MSG_ERROR([unrecognized option: $[1]
652 Try \`$[0] --help' for more information.]) ;;
653
654     *) AC_MSG_ERROR([unrecognized argument: $[1]
655 Try \`$[0] --help' for more information.]) ;;
656   esac
657   shift
658 done
659
660 if $lt_cl_silent; then
661   exec AS_MESSAGE_FD>/dev/null
662 fi
663 _LTEOF
664
665 cat >>"$CONFIG_LT" <<_LTEOF
666 _LT_OUTPUT_LIBTOOL_COMMANDS_INIT
667 _LTEOF
668
669 cat >>"$CONFIG_LT" <<\_LTEOF
670 AC_MSG_NOTICE([creating $ofile])
671 _LT_OUTPUT_LIBTOOL_COMMANDS
672 AS_EXIT(0)
673 _LTEOF
674 chmod +x "$CONFIG_LT"
675
676 # configure is writing to config.log, but config.lt does its own redirection,
677 # appending to config.log, which fails on DOS, as config.log is still kept
678 # open by configure.  Here we exec the FD to /dev/null, effectively closing
679 # config.log, so it can be properly (re)opened and appended to by config.lt.
680 lt_cl_success=:
681 test "$silent" = yes &&
682   lt_config_lt_args="$lt_config_lt_args --quiet"
683 exec AS_MESSAGE_LOG_FD>/dev/null
684 $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
685 exec AS_MESSAGE_LOG_FD>>config.log
686 $lt_cl_success || AS_EXIT(1)
687 ])# LT_OUTPUT
688
689
690 # _LT_CONFIG(TAG)
691 # ---------------
692 # If TAG is the built-in tag, create an initial libtool script with a
693 # default configuration from the untagged config vars.  Otherwise add code
694 # to config.status for appending the configuration named by TAG from the
695 # matching tagged config vars.
696 m4_defun([_LT_CONFIG],
697 [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
698 _LT_CONFIG_SAVE_COMMANDS([
699   m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
700   m4_if(_LT_TAG, [C], [
701     # See if we are running on zsh, and set the options which allow our
702     # commands through without removal of \ escapes.
703     if test -n "${ZSH_VERSION+set}" ; then
704       setopt NO_GLOB_SUBST
705     fi
706
707     cfgfile="${ofile}T"
708     trap "$RM \"$cfgfile\"; exit 1" 1 2 15
709     $RM "$cfgfile"
710
711     cat <<_LT_EOF >> "$cfgfile"
712 #! $SHELL
713
714 # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
715 # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION
716 # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
717 # NOTE: Changes made to this file will be lost: look at ltmain.sh.
718 #
719 _LT_COPYING
720 _LT_LIBTOOL_TAGS
721
722 # ### BEGIN LIBTOOL CONFIG
723 _LT_LIBTOOL_CONFIG_VARS
724 _LT_LIBTOOL_TAG_VARS
725 # ### END LIBTOOL CONFIG
726
727 _LT_EOF
728
729   case $host_os in
730   aix3*)
731     cat <<\_LT_EOF >> "$cfgfile"
732 # AIX sometimes has problems with the GCC collect2 program.  For some
733 # reason, if we set the COLLECT_NAMES environment variable, the problems
734 # vanish in a puff of smoke.
735 if test "X${COLLECT_NAMES+set}" != Xset; then
736   COLLECT_NAMES=
737   export COLLECT_NAMES
738 fi
739 _LT_EOF
740     ;;
741   esac
742
743   _LT_PROG_LTMAIN
744
745   # We use sed instead of cat because bash on DJGPP gets confused if
746   # if finds mixed CR/LF and LF-only lines.  Since sed operates in
747   # text mode, it properly converts lines to CR/LF.  This bash problem
748   # is reportedly fixed, but why not run on old versions too?
749   sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \
750     || (rm -f "$cfgfile"; exit 1)
751
752   _LT_PROG_XSI_SHELLFNS
753
754   sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \
755     || (rm -f "$cfgfile"; exit 1)
756
757   mv -f "$cfgfile" "$ofile" ||
758     (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
759   chmod +x "$ofile"
760 ],
761 [cat <<_LT_EOF >> "$ofile"
762
763 dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
764 dnl in a comment (ie after a #).
765 # ### BEGIN LIBTOOL TAG CONFIG: $1
766 _LT_LIBTOOL_TAG_VARS(_LT_TAG)
767 # ### END LIBTOOL TAG CONFIG: $1
768 _LT_EOF
769 ])dnl /m4_if
770 ],
771 [m4_if([$1], [], [
772     PACKAGE='$PACKAGE'
773     VERSION='$VERSION'
774     TIMESTAMP='$TIMESTAMP'
775     RM='$RM'
776     ofile='$ofile'], [])
777 ])dnl /_LT_CONFIG_SAVE_COMMANDS
778 ])# _LT_CONFIG
779
780
781 # LT_SUPPORTED_TAG(TAG)
782 # ---------------------
783 # Trace this macro to discover what tags are supported by the libtool
784 # --tag option, using:
785 #    autoconf --trace 'LT_SUPPORTED_TAG:$1'
786 AC_DEFUN([LT_SUPPORTED_TAG], [])
787
788
789 # C support is built-in for now
790 m4_define([_LT_LANG_C_enabled], [])
791 m4_define([_LT_TAGS], [])
792
793
794 # LT_LANG(LANG)
795 # -------------
796 # Enable libtool support for the given language if not already enabled.
797 AC_DEFUN([LT_LANG],
798 [AC_BEFORE([$0], [LT_OUTPUT])dnl
799 m4_case([$1],
800   [C],                  [_LT_LANG(C)],
801   [C++],                [_LT_LANG(CXX)],
802   [Java],               [_LT_LANG(GCJ)],
803   [Fortran 77],         [_LT_LANG(F77)],
804   [Fortran],            [_LT_LANG(FC)],
805   [Windows Resource],   [_LT_LANG(RC)],
806   [m4_ifdef([_LT_LANG_]$1[_CONFIG],
807     [_LT_LANG($1)],
808     [m4_fatal([$0: unsupported language: "$1"])])])dnl
809 ])# LT_LANG
810
811
812 # _LT_LANG(LANGNAME)
813 # ------------------
814 m4_defun([_LT_LANG],
815 [m4_ifdef([_LT_LANG_]$1[_enabled], [],
816   [LT_SUPPORTED_TAG([$1])dnl
817   m4_append([_LT_TAGS], [$1 ])dnl
818   m4_define([_LT_LANG_]$1[_enabled], [])dnl
819   _LT_LANG_$1_CONFIG($1)])dnl
820 ])# _LT_LANG
821
822
823 # _LT_LANG_DEFAULT_CONFIG
824 # -----------------------
825 m4_defun([_LT_LANG_DEFAULT_CONFIG],
826 [AC_PROVIDE_IFELSE([AC_PROG_CXX],
827   [LT_LANG(CXX)],
828   [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
829
830 AC_PROVIDE_IFELSE([AC_PROG_F77],
831   [LT_LANG(F77)],
832   [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
833
834 AC_PROVIDE_IFELSE([AC_PROG_FC],
835   [LT_LANG(FC)],
836   [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
837
838 dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
839 dnl pulling things in needlessly.
840 AC_PROVIDE_IFELSE([AC_PROG_GCJ],
841   [LT_LANG(GCJ)],
842   [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
843     [LT_LANG(GCJ)],
844     [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
845       [LT_LANG(GCJ)],
846       [m4_ifdef([AC_PROG_GCJ],
847         [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
848        m4_ifdef([A][M_PROG_GCJ],
849         [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
850        m4_ifdef([LT_PROG_GCJ],
851         [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
852
853 AC_PROVIDE_IFELSE([LT_PROG_RC],
854   [LT_LANG(RC)],
855   [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
856 ])# _LT_LANG_DEFAULT_CONFIG
857
858 # Obsolete macros:
859 AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
860 AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
861 AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
862 AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
863 AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
864 dnl aclocal-1.4 backwards compatibility:
865 dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
866 dnl AC_DEFUN([AC_LIBTOOL_F77], [])
867 dnl AC_DEFUN([AC_LIBTOOL_FC], [])
868 dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
869 dnl AC_DEFUN([AC_LIBTOOL_RC], [])
870
871
872 # _LT_TAG_COMPILER
873 # ----------------
874 m4_defun([_LT_TAG_COMPILER],
875 [AC_REQUIRE([AC_PROG_CC])dnl
876
877 _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
878 _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
879 _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
880 _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
881
882 # If no C compiler was specified, use CC.
883 LTCC=${LTCC-"$CC"}
884
885 # If no C compiler flags were specified, use CFLAGS.
886 LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
887
888 # Allow CC to be a program name with arguments.
889 compiler=$CC
890 ])# _LT_TAG_COMPILER
891
892
893 # _LT_COMPILER_BOILERPLATE
894 # ------------------------
895 # Check for compiler boilerplate output or warnings with
896 # the simple compiler test code.
897 m4_defun([_LT_COMPILER_BOILERPLATE],
898 [m4_require([_LT_DECL_SED])dnl
899 ac_outfile=conftest.$ac_objext
900 echo "$lt_simple_compile_test_code" >conftest.$ac_ext
901 eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
902 _lt_compiler_boilerplate=`cat conftest.err`
903 $RM conftest*
904 ])# _LT_COMPILER_BOILERPLATE
905
906
907 # _LT_LINKER_BOILERPLATE
908 # ----------------------
909 # Check for linker boilerplate output or warnings with
910 # the simple link test code.
911 m4_defun([_LT_LINKER_BOILERPLATE],
912 [m4_require([_LT_DECL_SED])dnl
913 ac_outfile=conftest.$ac_objext
914 echo "$lt_simple_link_test_code" >conftest.$ac_ext
915 eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
916 _lt_linker_boilerplate=`cat conftest.err`
917 $RM -r conftest*
918 ])# _LT_LINKER_BOILERPLATE
919
920 # _LT_REQUIRED_DARWIN_CHECKS
921 # -------------------------
922 m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
923   case $host_os in
924     rhapsody* | darwin*)
925     AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
926     AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
927     AC_CHECK_TOOL([LIPO], [lipo], [:])
928     AC_CHECK_TOOL([OTOOL], [otool], [:])
929     AC_CHECK_TOOL([OTOOL64], [otool64], [:])
930     _LT_DECL([], [DSYMUTIL], [1],
931       [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
932     _LT_DECL([], [NMEDIT], [1],
933       [Tool to change global to local symbols on Mac OS X])
934     _LT_DECL([], [LIPO], [1],
935       [Tool to manipulate fat objects and archives on Mac OS X])
936     _LT_DECL([], [OTOOL], [1],
937       [ldd/readelf like tool for Mach-O binaries on Mac OS X])
938     _LT_DECL([], [OTOOL64], [1],
939       [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
940
941     AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
942       [lt_cv_apple_cc_single_mod=no
943       if test -z "${LT_MULTI_MODULE}"; then
944         # By default we will add the -single_module flag. You can override
945         # by either setting the environment variable LT_MULTI_MODULE
946         # non-empty at configure time, or by adding -multi_module to the
947         # link flags.
948         rm -rf libconftest.dylib*
949         echo "int foo(void){return 1;}" > conftest.c
950         echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
951 -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
952         $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
953           -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
954         _lt_result=$?
955         if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then
956           lt_cv_apple_cc_single_mod=yes
957         else
958           cat conftest.err >&AS_MESSAGE_LOG_FD
959         fi
960         rm -rf libconftest.dylib*
961         rm -f conftest.*
962       fi])
963     AC_CACHE_CHECK([for -exported_symbols_list linker flag],
964       [lt_cv_ld_exported_symbols_list],
965       [lt_cv_ld_exported_symbols_list=no
966       save_LDFLAGS=$LDFLAGS
967       echo "_main" > conftest.sym
968       LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
969       AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
970         [lt_cv_ld_exported_symbols_list=yes],
971         [lt_cv_ld_exported_symbols_list=no])
972         LDFLAGS="$save_LDFLAGS"
973     ])
974     AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
975       [lt_cv_ld_force_load=no
976       cat > conftest.c << _LT_EOF
977 int forced_loaded() { return 2;}
978 _LT_EOF
979       echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
980       $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
981       echo "$AR cru libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
982       $AR cru libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
983       cat > conftest.c << _LT_EOF
984 int main() { return 0;}
985 _LT_EOF
986       echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
987       $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
988       _lt_result=$?
989       if test -f conftest && test ! -s conftest.err && test $_lt_result = 0 && $GREP forced_load conftest 2>&1 >/dev/null; then
990         lt_cv_ld_force_load=yes
991       else
992         cat conftest.err >&AS_MESSAGE_LOG_FD
993       fi
994         rm -f conftest.err libconftest.a conftest conftest.c
995         rm -rf conftest.dSYM
996     ])
997     # Allow for Darwin 4-7 (macOS 10.0-10.3) although these are not expect to
998     # build without first building modern cctools / linker.
999     case $host_cpu-$host_os in
1000     *-rhapsody* | *-darwin1.[[012]])
1001       _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
1002     *-darwin1.*)
1003       _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
1004     *-darwin*)
1005       # darwin 5.x (macOS 10.1) onwards we only need to adjust when the
1006       # deployment target is forced to an earlier version.
1007       case ${MACOSX_DEPLOYMENT_TARGET-UNSET},$host in
1008         UNSET,*-darwin[[89]]*|UNSET,*-darwin[[12]][[0123456789]]*)
1009           ;;
1010         10.[[012]][[,.]]*)
1011           _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
1012           ;;
1013         *)
1014           ;;
1015      esac
1016     ;;
1017   esac
1018     if test "$lt_cv_apple_cc_single_mod" = "yes"; then
1019       _lt_dar_single_mod='$single_module'
1020     fi
1021     if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
1022       _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
1023     else
1024       _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}'
1025     fi
1026     if test "$DSYMUTIL" != ":" && test "$lt_cv_ld_force_load" = "no"; then
1027       _lt_dsymutil='~$DSYMUTIL $lib || :'
1028     else
1029       _lt_dsymutil=
1030     fi
1031     ;;
1032   esac
1033 ])
1034
1035
1036 # _LT_DARWIN_LINKER_FEATURES
1037 # --------------------------
1038 # Checks for linker and compiler features on Darwin / macOS / iOS
1039 m4_defun([_LT_DARWIN_LINKER_FEATURES],
1040 [
1041   m4_require([_LT_REQUIRED_DARWIN_CHECKS])
1042   _LT_TAGVAR(archive_cmds_need_lc, $1)=no
1043   _LT_TAGVAR(hardcode_direct, $1)=no
1044   _LT_TAGVAR(hardcode_automatic, $1)=yes
1045   _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
1046   if test "$lt_cv_ld_force_load" = "yes"; then
1047     _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience ${wl}-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`'
1048   else
1049     _LT_TAGVAR(whole_archive_flag_spec, $1)=''
1050   fi
1051   _LT_TAGVAR(link_all_deplibs, $1)=yes
1052   _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
1053   case $cc_basename in
1054      ifort*) _lt_dar_can_shared=yes ;;
1055      *) _lt_dar_can_shared=$GCC ;;
1056   esac
1057   if test "$_lt_dar_can_shared" = "yes"; then
1058     output_verbose_link_cmd=func_echo_all
1059     _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}"
1060     _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
1061     _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}"
1062     _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}"
1063     m4_if([$1], [CXX],
1064 [   if test "$lt_cv_apple_cc_single_mod" != "yes"; then
1065       _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}"
1066       _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}"
1067     fi
1068 ],[])
1069   else
1070   _LT_TAGVAR(ld_shlibs, $1)=no
1071   fi
1072 ])
1073
1074 # _LT_SYS_MODULE_PATH_AIX
1075 # -----------------------
1076 # Links a minimal program and checks the executable
1077 # for the system default hardcoded library path. In most cases,
1078 # this is /usr/lib:/lib, but when the MPI compilers are used
1079 # the location of the communication and MPI libs are included too.
1080 # If we don't find anything, use the default library path according
1081 # to the aix ld manual.
1082 m4_defun([_LT_SYS_MODULE_PATH_AIX],
1083 [m4_require([_LT_DECL_SED])dnl
1084 AC_LINK_IFELSE([AC_LANG_SOURCE([AC_LANG_PROGRAM])],[
1085 lt_aix_libpath_sed='
1086     /Import File Strings/,/^$/ {
1087         /^0/ {
1088             s/^0  *\(.*\)$/\1/
1089             p
1090         }
1091     }'
1092 aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
1093 # Check for a 64-bit object if we didn't find anything.
1094 if test -z "$aix_libpath"; then
1095   aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
1096 fi],[])
1097 if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
1098 ])# _LT_SYS_MODULE_PATH_AIX
1099
1100
1101 # _LT_SHELL_INIT(ARG)
1102 # -------------------
1103 m4_define([_LT_SHELL_INIT],
1104 [m4_divert_text([M4SH-INIT], [$1
1105 ])])# _LT_SHELL_INIT
1106
1107
1108
1109 # _LT_PROG_ECHO_BACKSLASH
1110 # -----------------------
1111 # Find how we can fake an echo command that does not interpret backslash.
1112 # In particular, with Autoconf 2.60 or later we add some code to the start
1113 # of the generated configure script which will find a shell with a builtin
1114 # printf (which we can use as an echo command).
1115 m4_defun([_LT_PROG_ECHO_BACKSLASH],
1116 [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
1117 ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
1118 ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
1119
1120 AC_MSG_CHECKING([how to print strings])
1121 # Test print first, because it will be a builtin if present.
1122 if test "X`print -r -- -n 2>/dev/null`" = X-n && \
1123    test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
1124   ECHO='print -r --'
1125 elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
1126   ECHO='printf %s\n'
1127 else
1128   # Use this function as a fallback that always works.
1129   func_fallback_echo ()
1130   {
1131     eval 'cat <<_LTECHO_EOF
1132 $[]1
1133 _LTECHO_EOF'
1134   }
1135   ECHO='func_fallback_echo'
1136 fi
1137
1138 # func_echo_all arg...
1139 # Invoke $ECHO with all args, space-separated.
1140 func_echo_all ()
1141 {
1142     $ECHO "$*" 
1143 }
1144
1145 case "$ECHO" in
1146   printf*) AC_MSG_RESULT([printf]) ;;
1147   print*) AC_MSG_RESULT([print -r]) ;;
1148   *) AC_MSG_RESULT([cat]) ;;
1149 esac
1150
1151 m4_ifdef([_AS_DETECT_SUGGESTED],
1152 [_AS_DETECT_SUGGESTED([
1153   test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || (
1154     ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
1155     ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
1156     ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
1157     PATH=/empty FPATH=/empty; export PATH FPATH
1158     test "X`printf %s $ECHO`" = "X$ECHO" \
1159       || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
1160
1161 _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
1162 _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
1163 ])# _LT_PROG_ECHO_BACKSLASH
1164
1165
1166 # _LT_ENABLE_LOCK
1167 # ---------------
1168 m4_defun([_LT_ENABLE_LOCK],
1169 [AC_ARG_ENABLE([libtool-lock],
1170   [AS_HELP_STRING([--disable-libtool-lock],
1171     [avoid locking (might break parallel builds)])])
1172 test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
1173
1174 # Some flags need to be propagated to the compiler or linker for good
1175 # libtool support.
1176 case $host in
1177 ia64-*-hpux*)
1178   # Find out which ABI we are using.
1179   echo 'int i;' > conftest.$ac_ext
1180   if AC_TRY_EVAL(ac_compile); then
1181     case `/usr/bin/file conftest.$ac_objext` in
1182       *ELF-32*)
1183         HPUX_IA64_MODE="32"
1184         ;;
1185       *ELF-64*)
1186         HPUX_IA64_MODE="64"
1187         ;;
1188     esac
1189   fi
1190   rm -rf conftest*
1191   ;;
1192 *-*-irix6*)
1193   # Find out which ABI we are using.
1194   echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
1195   if AC_TRY_EVAL(ac_compile); then
1196     if test "$lt_cv_prog_gnu_ld" = yes; then
1197       case `/usr/bin/file conftest.$ac_objext` in
1198         *32-bit*)
1199           LD="${LD-ld} -melf32bsmip"
1200           ;;
1201         *N32*)
1202           LD="${LD-ld} -melf32bmipn32"
1203           ;;
1204         *64-bit*)
1205           LD="${LD-ld} -melf64bmip"
1206         ;;
1207       esac
1208     else
1209       case `/usr/bin/file conftest.$ac_objext` in
1210         *32-bit*)
1211           LD="${LD-ld} -32"
1212           ;;
1213         *N32*)
1214           LD="${LD-ld} -n32"
1215           ;;
1216         *64-bit*)
1217           LD="${LD-ld} -64"
1218           ;;
1219       esac
1220     fi
1221   fi
1222   rm -rf conftest*
1223   ;;
1224
1225 x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
1226 s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
1227   # Find out which ABI we are using.
1228   echo 'int i;' > conftest.$ac_ext
1229   if AC_TRY_EVAL(ac_compile); then
1230     case `/usr/bin/file conftest.o` in
1231       *32-bit*)
1232         case $host in
1233           x86_64-*kfreebsd*-gnu)
1234             LD="${LD-ld} -m elf_i386_fbsd"
1235             ;;
1236           x86_64-*linux*)
1237             case `/usr/bin/file conftest.o` in
1238               *x86-64*)
1239                 LD="${LD-ld} -m elf32_x86_64"
1240                 ;;
1241               *)
1242                 LD="${LD-ld} -m elf_i386"
1243                 ;;
1244             esac
1245             ;;
1246           powerpc64le-*linux*)
1247             LD="${LD-ld} -m elf32lppclinux"
1248             ;;
1249           powerpc64-*linux*)
1250             LD="${LD-ld} -m elf32ppclinux"
1251             ;;
1252           s390x-*linux*)
1253             LD="${LD-ld} -m elf_s390"
1254             ;;
1255           sparc64-*linux*)
1256             LD="${LD-ld} -m elf32_sparc"
1257             ;;
1258         esac
1259         ;;
1260       *64-bit*)
1261         case $host in
1262           x86_64-*kfreebsd*-gnu)
1263             LD="${LD-ld} -m elf_x86_64_fbsd"
1264             ;;
1265           x86_64-*linux*)
1266             LD="${LD-ld} -m elf_x86_64"
1267             ;;
1268           powerpcle-*linux*)
1269             LD="${LD-ld} -m elf64lppc"
1270             ;;
1271           powerpc-*linux*)
1272             LD="${LD-ld} -m elf64ppc"
1273             ;;
1274           s390*-*linux*|s390*-*tpf*)
1275             LD="${LD-ld} -m elf64_s390"
1276             ;;
1277           sparc*-*linux*)
1278             LD="${LD-ld} -m elf64_sparc"
1279             ;;
1280         esac
1281         ;;
1282     esac
1283   fi
1284   rm -rf conftest*
1285   ;;
1286
1287 *-*-sco3.2v5*)
1288   # On SCO OpenServer 5, we need -belf to get full-featured binaries.
1289   SAVE_CFLAGS="$CFLAGS"
1290   CFLAGS="$CFLAGS -belf"
1291   AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
1292     [AC_LANG_PUSH(C)
1293      AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
1294      AC_LANG_POP])
1295   if test x"$lt_cv_cc_needs_belf" != x"yes"; then
1296     # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
1297     CFLAGS="$SAVE_CFLAGS"
1298   fi
1299   ;;
1300 sparc*-*solaris*)
1301   # Find out which ABI we are using.
1302   echo 'int i;' > conftest.$ac_ext
1303   if AC_TRY_EVAL(ac_compile); then
1304     case `/usr/bin/file conftest.o` in
1305     *64-bit*)
1306       case $lt_cv_prog_gnu_ld in
1307       yes*) LD="${LD-ld} -m elf64_sparc" ;;
1308       *)
1309         if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
1310           LD="${LD-ld} -64"
1311         fi
1312         ;;
1313       esac
1314       ;;
1315     esac
1316   fi
1317   rm -rf conftest*
1318   ;;
1319 esac
1320
1321 need_locks="$enable_libtool_lock"
1322 ])# _LT_ENABLE_LOCK
1323
1324
1325 # _LT_CMD_OLD_ARCHIVE
1326 # -------------------
1327 m4_defun([_LT_CMD_OLD_ARCHIVE],
1328 [plugin_option=
1329 plugin_names="liblto_plugin.so liblto_plugin-0.dll cyglto_plugin-0.dll"
1330 for plugin in $plugin_names; do
1331   plugin_so=`${CC} ${CFLAGS} --print-prog-name $plugin`
1332   if test x$plugin_so = x$plugin; then
1333     plugin_so=`${CC} ${CFLAGS} --print-file-name $plugin`
1334   fi
1335   if test x$plugin_so != x$plugin; then
1336     plugin_option="--plugin $plugin_so"
1337     break
1338   fi
1339 done
1340
1341 AC_CHECK_TOOL(AR, ar, false)
1342 test -z "$AR" && AR=ar
1343 if test -n "$plugin_option"; then
1344   if $AR --help 2>&1 | grep -q "\--plugin"; then
1345     AR="$AR $plugin_option"
1346   fi
1347 fi
1348 test -z "$AR_FLAGS" && AR_FLAGS=cru
1349 _LT_DECL([], [AR], [1], [The archiver])
1350 _LT_DECL([], [AR_FLAGS], [1])
1351
1352 AC_CHECK_TOOL(STRIP, strip, :)
1353 test -z "$STRIP" && STRIP=:
1354 _LT_DECL([], [STRIP], [1], [A symbol stripping program])
1355
1356 AC_CHECK_TOOL(RANLIB, ranlib, :)
1357 test -z "$RANLIB" && RANLIB=:
1358 if test -n "$plugin_option" && test "$RANLIB" != ":"; then
1359   if $RANLIB --help 2>&1 | grep -q "\--plugin"; then
1360     RANLIB="$RANLIB $plugin_option"
1361   fi
1362 fi
1363 _LT_DECL([], [RANLIB], [1],
1364     [Commands used to install an old-style archive])
1365
1366 # Determine commands to create old-style static archives.
1367 old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
1368 old_postinstall_cmds='chmod 644 $oldlib'
1369 old_postuninstall_cmds=
1370
1371 if test -n "$RANLIB"; then
1372   case $host_os in
1373   openbsd*)
1374     old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
1375     ;;
1376   *)
1377     old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
1378     ;;
1379   esac
1380   old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
1381 fi
1382
1383 case $host_os in
1384   darwin*)
1385     lock_old_archive_extraction=yes ;;
1386   *)
1387     lock_old_archive_extraction=no ;;
1388 esac
1389 _LT_DECL([], [old_postinstall_cmds], [2])
1390 _LT_DECL([], [old_postuninstall_cmds], [2])
1391 _LT_TAGDECL([], [old_archive_cmds], [2],
1392     [Commands used to build an old-style archive])
1393 _LT_DECL([], [lock_old_archive_extraction], [0],
1394     [Whether to use a lock for old archive extraction])
1395 ])# _LT_CMD_OLD_ARCHIVE
1396
1397
1398 # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
1399 #               [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
1400 # ----------------------------------------------------------------
1401 # Check whether the given compiler option works
1402 AC_DEFUN([_LT_COMPILER_OPTION],
1403 [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1404 m4_require([_LT_DECL_SED])dnl
1405 AC_CACHE_CHECK([$1], [$2],
1406   [$2=no
1407    m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
1408    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
1409    lt_compiler_flag="$3"
1410    # Insert the option either (1) after the last *FLAGS variable, or
1411    # (2) before a word containing "conftest.", or (3) at the end.
1412    # Note that $ac_compile itself does not contain backslashes and begins
1413    # with a dollar sign (not a hyphen), so the echo should work correctly.
1414    # The option is referenced via a variable to avoid confusing sed.
1415    lt_compile=`echo "$ac_compile" | $SED \
1416    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1417    -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
1418    -e 's:$: $lt_compiler_flag:'`
1419    (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
1420    (eval "$lt_compile" 2>conftest.err)
1421    ac_status=$?
1422    cat conftest.err >&AS_MESSAGE_LOG_FD
1423    echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1424    if (exit $ac_status) && test -s "$ac_outfile"; then
1425      # The compiler can only warn and ignore the option if not recognized
1426      # So say no if there are warnings other than the usual output.
1427      $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
1428      $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1429      if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
1430        $2=yes
1431      fi
1432    fi
1433    $RM conftest*
1434 ])
1435
1436 if test x"[$]$2" = xyes; then
1437     m4_if([$5], , :, [$5])
1438 else
1439     m4_if([$6], , :, [$6])
1440 fi
1441 ])# _LT_COMPILER_OPTION
1442
1443 # Old name:
1444 AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
1445 dnl aclocal-1.4 backwards compatibility:
1446 dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
1447
1448
1449 # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
1450 #                  [ACTION-SUCCESS], [ACTION-FAILURE])
1451 # ----------------------------------------------------
1452 # Check whether the given linker option works
1453 AC_DEFUN([_LT_LINKER_OPTION],
1454 [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1455 m4_require([_LT_DECL_SED])dnl
1456 AC_CACHE_CHECK([$1], [$2],
1457   [$2=no
1458    save_LDFLAGS="$LDFLAGS"
1459    LDFLAGS="$LDFLAGS $3"
1460    echo "$lt_simple_link_test_code" > conftest.$ac_ext
1461    if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
1462      # The linker can only warn and ignore the option if not recognized
1463      # So say no if there are warnings
1464      if test -s conftest.err; then
1465        # Append any errors to the config.log.
1466        cat conftest.err 1>&AS_MESSAGE_LOG_FD
1467        $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
1468        $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1469        if diff conftest.exp conftest.er2 >/dev/null; then
1470          $2=yes
1471        fi
1472      else
1473        $2=yes
1474      fi
1475    fi
1476    $RM -r conftest*
1477    LDFLAGS="$save_LDFLAGS"
1478 ])
1479
1480 if test x"[$]$2" = xyes; then
1481     m4_if([$4], , :, [$4])
1482 else
1483     m4_if([$5], , :, [$5])
1484 fi
1485 ])# _LT_LINKER_OPTION
1486
1487 # Old name:
1488 AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
1489 dnl aclocal-1.4 backwards compatibility:
1490 dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
1491
1492
1493 # LT_CMD_MAX_LEN
1494 #---------------
1495 AC_DEFUN([LT_CMD_MAX_LEN],
1496 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1497 # find the maximum length of command line arguments
1498 AC_MSG_CHECKING([the maximum length of command line arguments])
1499 AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
1500   i=0
1501   teststring="ABCD"
1502
1503   case $build_os in
1504   msdosdjgpp*)
1505     # On DJGPP, this test can blow up pretty badly due to problems in libc
1506     # (any single argument exceeding 2000 bytes causes a buffer overrun
1507     # during glob expansion).  Even if it were fixed, the result of this
1508     # check would be larger than it should be.
1509     lt_cv_sys_max_cmd_len=12288;    # 12K is about right
1510     ;;
1511
1512   gnu*)
1513     # Under GNU Hurd, this test is not required because there is
1514     # no limit to the length of command line arguments.
1515     # Libtool will interpret -1 as no limit whatsoever
1516     lt_cv_sys_max_cmd_len=-1;
1517     ;;
1518
1519   cygwin* | mingw* | cegcc*)
1520     # On Win9x/ME, this test blows up -- it succeeds, but takes
1521     # about 5 minutes as the teststring grows exponentially.
1522     # Worse, since 9x/ME are not pre-emptively multitasking,
1523     # you end up with a "frozen" computer, even though with patience
1524     # the test eventually succeeds (with a max line length of 256k).
1525     # Instead, let's just punt: use the minimum linelength reported by
1526     # all of the supported platforms: 8192 (on NT/2K/XP).
1527     lt_cv_sys_max_cmd_len=8192;
1528     ;;
1529
1530   mint*)
1531     # On MiNT this can take a long time and run out of memory.
1532     lt_cv_sys_max_cmd_len=8192;
1533     ;;
1534
1535   amigaos*)
1536     # On AmigaOS with pdksh, this test takes hours, literally.
1537     # So we just punt and use a minimum line length of 8192.
1538     lt_cv_sys_max_cmd_len=8192;
1539     ;;
1540
1541   netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
1542     # This has been around since 386BSD, at least.  Likely further.
1543     if test -x /sbin/sysctl; then
1544       lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
1545     elif test -x /usr/sbin/sysctl; then
1546       lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
1547     else
1548       lt_cv_sys_max_cmd_len=65536       # usable default for all BSDs
1549     fi
1550     # And add a safety zone
1551     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1552     lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1553     ;;
1554
1555   interix*)
1556     # We know the value 262144 and hardcode it with a safety zone (like BSD)
1557     lt_cv_sys_max_cmd_len=196608
1558     ;;
1559
1560   osf*)
1561     # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
1562     # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
1563     # nice to cause kernel panics so lets avoid the loop below.
1564     # First set a reasonable default.
1565     lt_cv_sys_max_cmd_len=16384
1566     #
1567     if test -x /sbin/sysconfig; then
1568       case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
1569         *1*) lt_cv_sys_max_cmd_len=-1 ;;
1570       esac
1571     fi
1572     ;;
1573   sco3.2v5*)
1574     lt_cv_sys_max_cmd_len=102400
1575     ;;
1576   sysv5* | sco5v6* | sysv4.2uw2*)
1577     kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
1578     if test -n "$kargmax"; then
1579       lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[         ]]//'`
1580     else
1581       lt_cv_sys_max_cmd_len=32768
1582     fi
1583     ;;
1584   *)
1585     lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
1586     if test -n "$lt_cv_sys_max_cmd_len"; then
1587       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1588       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1589     else
1590       # Make teststring a little bigger before we do anything with it.
1591       # a 1K string should be a reasonable start.
1592       for i in 1 2 3 4 5 6 7 8 ; do
1593         teststring=$teststring$teststring
1594       done
1595       SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
1596       # If test is not a shell built-in, we'll probably end up computing a
1597       # maximum length that is only half of the actual maximum length, but
1598       # we can't tell.
1599       while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \
1600                  = "X$teststring$teststring"; } >/dev/null 2>&1 &&
1601               test $i != 17 # 1/2 MB should be enough
1602       do
1603         i=`expr $i + 1`
1604         teststring=$teststring$teststring
1605       done
1606       # Only check the string length outside the loop.
1607       lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
1608       teststring=
1609       # Add a significant safety factor because C++ compilers can tack on
1610       # massive amounts of additional arguments before passing them to the
1611       # linker.  It appears as though 1/2 is a usable value.
1612       lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
1613     fi
1614     ;;
1615   esac
1616 ])
1617 if test -n $lt_cv_sys_max_cmd_len ; then
1618   AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
1619 else
1620   AC_MSG_RESULT(none)
1621 fi
1622 max_cmd_len=$lt_cv_sys_max_cmd_len
1623 _LT_DECL([], [max_cmd_len], [0],
1624     [What is the maximum length of a command?])
1625 ])# LT_CMD_MAX_LEN
1626
1627 # Old name:
1628 AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
1629 dnl aclocal-1.4 backwards compatibility:
1630 dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
1631
1632
1633 # _LT_HEADER_DLFCN
1634 # ----------------
1635 m4_defun([_LT_HEADER_DLFCN],
1636 [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
1637 ])# _LT_HEADER_DLFCN
1638
1639
1640 # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
1641 #                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
1642 # ----------------------------------------------------------------
1643 m4_defun([_LT_TRY_DLOPEN_SELF],
1644 [m4_require([_LT_HEADER_DLFCN])dnl
1645 if test "$cross_compiling" = yes; then :
1646   [$4]
1647 else
1648   lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1649   lt_status=$lt_dlunknown
1650   cat > conftest.$ac_ext <<_LT_EOF
1651 [#line __oline__ "configure"
1652 #include "confdefs.h"
1653
1654 #if HAVE_DLFCN_H
1655 #include <dlfcn.h>
1656 #endif
1657
1658 #include <stdio.h>
1659
1660 #ifdef RTLD_GLOBAL
1661 #  define LT_DLGLOBAL           RTLD_GLOBAL
1662 #else
1663 #  ifdef DL_GLOBAL
1664 #    define LT_DLGLOBAL         DL_GLOBAL
1665 #  else
1666 #    define LT_DLGLOBAL         0
1667 #  endif
1668 #endif
1669
1670 /* We may have to define LT_DLLAZY_OR_NOW in the command line if we
1671    find out it does not work in some platform. */
1672 #ifndef LT_DLLAZY_OR_NOW
1673 #  ifdef RTLD_LAZY
1674 #    define LT_DLLAZY_OR_NOW            RTLD_LAZY
1675 #  else
1676 #    ifdef DL_LAZY
1677 #      define LT_DLLAZY_OR_NOW          DL_LAZY
1678 #    else
1679 #      ifdef RTLD_NOW
1680 #        define LT_DLLAZY_OR_NOW        RTLD_NOW
1681 #      else
1682 #        ifdef DL_NOW
1683 #          define LT_DLLAZY_OR_NOW      DL_NOW
1684 #        else
1685 #          define LT_DLLAZY_OR_NOW      0
1686 #        endif
1687 #      endif
1688 #    endif
1689 #  endif
1690 #endif
1691
1692 /* When -fvisbility=hidden is used, assume the code has been annotated
1693    correspondingly for the symbols needed.  */
1694 #if defined(__GNUC__) && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
1695 void fnord () __attribute__((visibility("default")));
1696 #endif
1697
1698 void fnord () { int i=42; }
1699 int main ()
1700 {
1701   void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
1702   int status = $lt_dlunknown;
1703
1704   if (self)
1705     {
1706       if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
1707       else
1708         {
1709           if (dlsym( self,"_fnord"))  status = $lt_dlneed_uscore;
1710           else puts (dlerror ());
1711         }
1712       /* dlclose (self); */
1713     }
1714   else
1715     puts (dlerror ());
1716
1717   return status;
1718 }]
1719 _LT_EOF
1720   if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
1721     (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1722     lt_status=$?
1723     case x$lt_status in
1724       x$lt_dlno_uscore) $1 ;;
1725       x$lt_dlneed_uscore) $2 ;;
1726       x$lt_dlunknown|x*) $3 ;;
1727     esac
1728   else :
1729     # compilation failed
1730     $3
1731   fi
1732 fi
1733 rm -fr conftest*
1734 ])# _LT_TRY_DLOPEN_SELF
1735
1736
1737 # LT_SYS_DLOPEN_SELF
1738 # ------------------
1739 AC_DEFUN([LT_SYS_DLOPEN_SELF],
1740 [m4_require([_LT_HEADER_DLFCN])dnl
1741 if test "x$enable_dlopen" != xyes; then
1742   enable_dlopen=unknown
1743   enable_dlopen_self=unknown
1744   enable_dlopen_self_static=unknown
1745 else
1746   lt_cv_dlopen=no
1747   lt_cv_dlopen_libs=
1748
1749   case $host_os in
1750   beos*)
1751     lt_cv_dlopen="load_add_on"
1752     lt_cv_dlopen_libs=
1753     lt_cv_dlopen_self=yes
1754     ;;
1755
1756   mingw* | pw32* | cegcc*)
1757     lt_cv_dlopen="LoadLibrary"
1758     lt_cv_dlopen_libs=
1759     ;;
1760
1761   cygwin*)
1762     lt_cv_dlopen="dlopen"
1763     lt_cv_dlopen_libs=
1764     ;;
1765
1766   darwin*)
1767   # if libdl is installed we need to link against it
1768     AC_CHECK_LIB([dl], [dlopen],
1769                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
1770     lt_cv_dlopen="dyld"
1771     lt_cv_dlopen_libs=
1772     lt_cv_dlopen_self=yes
1773     ])
1774     ;;
1775
1776   *)
1777     AC_CHECK_FUNC([shl_load],
1778           [lt_cv_dlopen="shl_load"],
1779       [AC_CHECK_LIB([dld], [shl_load],
1780             [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
1781         [AC_CHECK_FUNC([dlopen],
1782               [lt_cv_dlopen="dlopen"],
1783           [AC_CHECK_LIB([dl], [dlopen],
1784                 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
1785             [AC_CHECK_LIB([svld], [dlopen],
1786                   [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
1787               [AC_CHECK_LIB([dld], [dld_link],
1788                     [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
1789               ])
1790             ])
1791           ])
1792         ])
1793       ])
1794     ;;
1795   esac
1796
1797   if test "x$lt_cv_dlopen" != xno; then
1798     enable_dlopen=yes
1799   else
1800     enable_dlopen=no
1801   fi
1802
1803   case $lt_cv_dlopen in
1804   dlopen)
1805     save_CPPFLAGS="$CPPFLAGS"
1806     test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
1807
1808     save_LDFLAGS="$LDFLAGS"
1809     wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
1810
1811     save_LIBS="$LIBS"
1812     LIBS="$lt_cv_dlopen_libs $LIBS"
1813
1814     AC_CACHE_CHECK([whether a program can dlopen itself],
1815           lt_cv_dlopen_self, [dnl
1816           _LT_TRY_DLOPEN_SELF(
1817             lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
1818             lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
1819     ])
1820
1821     if test "x$lt_cv_dlopen_self" = xyes; then
1822       wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
1823       AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
1824           lt_cv_dlopen_self_static, [dnl
1825           _LT_TRY_DLOPEN_SELF(
1826             lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
1827             lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
1828       ])
1829     fi
1830
1831     CPPFLAGS="$save_CPPFLAGS"
1832     LDFLAGS="$save_LDFLAGS"
1833     LIBS="$save_LIBS"
1834     ;;
1835   esac
1836
1837   case $lt_cv_dlopen_self in
1838   yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
1839   *) enable_dlopen_self=unknown ;;
1840   esac
1841
1842   case $lt_cv_dlopen_self_static in
1843   yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
1844   *) enable_dlopen_self_static=unknown ;;
1845   esac
1846 fi
1847 _LT_DECL([dlopen_support], [enable_dlopen], [0],
1848          [Whether dlopen is supported])
1849 _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
1850          [Whether dlopen of programs is supported])
1851 _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
1852          [Whether dlopen of statically linked programs is supported])
1853 ])# LT_SYS_DLOPEN_SELF
1854
1855 # Old name:
1856 AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
1857 dnl aclocal-1.4 backwards compatibility:
1858 dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
1859
1860
1861 # _LT_COMPILER_C_O([TAGNAME])
1862 # ---------------------------
1863 # Check to see if options -c and -o are simultaneously supported by compiler.
1864 # This macro does not hard code the compiler like AC_PROG_CC_C_O.
1865 m4_defun([_LT_COMPILER_C_O],
1866 [m4_require([_LT_DECL_SED])dnl
1867 m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1868 m4_require([_LT_TAG_COMPILER])dnl
1869 AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
1870   [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
1871   [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
1872    $RM -r conftest 2>/dev/null
1873    mkdir conftest
1874    cd conftest
1875    mkdir out
1876    echo "$lt_simple_compile_test_code" > conftest.$ac_ext
1877
1878    lt_compiler_flag="-o out/conftest2.$ac_objext"
1879    # Insert the option either (1) after the last *FLAGS variable, or
1880    # (2) before a word containing "conftest.", or (3) at the end.
1881    # Note that $ac_compile itself does not contain backslashes and begins
1882    # with a dollar sign (not a hyphen), so the echo should work correctly.
1883    lt_compile=`echo "$ac_compile" | $SED \
1884    -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1885    -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
1886    -e 's:$: $lt_compiler_flag:'`
1887    (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
1888    (eval "$lt_compile" 2>out/conftest.err)
1889    ac_status=$?
1890    cat out/conftest.err >&AS_MESSAGE_LOG_FD
1891    echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1892    if (exit $ac_status) && test -s out/conftest2.$ac_objext
1893    then
1894      # The compiler can only warn and ignore the option if not recognized
1895      # So say no if there are warnings
1896      $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
1897      $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
1898      if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
1899        _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
1900      fi
1901    fi
1902    chmod u+w . 2>&AS_MESSAGE_LOG_FD
1903    $RM conftest*
1904    # SGI C++ compiler will create directory out/ii_files/ for
1905    # template instantiation
1906    test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
1907    $RM out/* && rmdir out
1908    cd ..
1909    $RM -r conftest
1910    $RM conftest*
1911 ])
1912 _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
1913         [Does compiler simultaneously support -c and -o options?])
1914 ])# _LT_COMPILER_C_O
1915
1916
1917 # _LT_COMPILER_FILE_LOCKS([TAGNAME])
1918 # ----------------------------------
1919 # Check to see if we can do hard links to lock some files if needed
1920 m4_defun([_LT_COMPILER_FILE_LOCKS],
1921 [m4_require([_LT_ENABLE_LOCK])dnl
1922 m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1923 _LT_COMPILER_C_O([$1])
1924
1925 hard_links="nottested"
1926 if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
1927   # do not overwrite the value of need_locks provided by the user
1928   AC_MSG_CHECKING([if we can lock with hard links])
1929   hard_links=yes
1930   $RM conftest*
1931   ln conftest.a conftest.b 2>/dev/null && hard_links=no
1932   touch conftest.a
1933   ln conftest.a conftest.b 2>&5 || hard_links=no
1934   ln conftest.a conftest.b 2>/dev/null && hard_links=no
1935   AC_MSG_RESULT([$hard_links])
1936   if test "$hard_links" = no; then
1937     AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
1938     need_locks=warn
1939   fi
1940 else
1941   need_locks=no
1942 fi
1943 _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
1944 ])# _LT_COMPILER_FILE_LOCKS
1945
1946
1947 # _LT_CHECK_OBJDIR
1948 # ----------------
1949 m4_defun([_LT_CHECK_OBJDIR],
1950 [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
1951 [rm -f .libs 2>/dev/null
1952 mkdir .libs 2>/dev/null
1953 if test -d .libs; then
1954   lt_cv_objdir=.libs
1955 else
1956   # MS-DOS does not allow filenames that begin with a dot.
1957   lt_cv_objdir=_libs
1958 fi
1959 rmdir .libs 2>/dev/null])
1960 objdir=$lt_cv_objdir
1961 _LT_DECL([], [objdir], [0],
1962          [The name of the directory that contains temporary libtool files])dnl
1963 m4_pattern_allow([LT_OBJDIR])dnl
1964 AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/",
1965   [Define to the sub-directory in which libtool stores uninstalled libraries.])
1966 ])# _LT_CHECK_OBJDIR
1967
1968
1969 # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
1970 # --------------------------------------
1971 # Check hardcoding attributes.
1972 m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
1973 [AC_MSG_CHECKING([how to hardcode library paths into programs])
1974 _LT_TAGVAR(hardcode_action, $1)=
1975 if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
1976    test -n "$_LT_TAGVAR(runpath_var, $1)" ||
1977    test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
1978
1979   # We can hardcode non-existent directories.
1980   if test "$_LT_TAGVAR(hardcode_direct, $1)" != no &&
1981      # If the only mechanism to avoid hardcoding is shlibpath_var, we
1982      # have to relink, otherwise we might link with an installed library
1983      # when we should be linking with a yet-to-be-installed one
1984      ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
1985      test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then
1986     # Linking always hardcodes the temporary library directory.
1987     _LT_TAGVAR(hardcode_action, $1)=relink
1988   else
1989     # We can link without hardcoding, and we can hardcode nonexisting dirs.
1990     _LT_TAGVAR(hardcode_action, $1)=immediate
1991   fi
1992 else
1993   # We cannot hardcode anything, or else we can only hardcode existing
1994   # directories.
1995   _LT_TAGVAR(hardcode_action, $1)=unsupported
1996 fi
1997 AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
1998
1999 if test "$_LT_TAGVAR(hardcode_action, $1)" = relink ||
2000    test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then
2001   # Fast installation is not supported
2002   enable_fast_install=no
2003 elif test "$shlibpath_overrides_runpath" = yes ||
2004      test "$enable_shared" = no; then
2005   # Fast installation is not necessary
2006   enable_fast_install=needless
2007 fi
2008 _LT_TAGDECL([], [hardcode_action], [0],
2009     [How to hardcode a shared library path into an executable])
2010 ])# _LT_LINKER_HARDCODE_LIBPATH
2011
2012
2013 # _LT_CMD_STRIPLIB
2014 # ----------------
2015 m4_defun([_LT_CMD_STRIPLIB],
2016 [m4_require([_LT_DECL_EGREP])
2017 striplib=
2018 old_striplib=
2019 AC_MSG_CHECKING([whether stripping libraries is possible])
2020 if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
2021   test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
2022   test -z "$striplib" && striplib="$STRIP --strip-unneeded"
2023   AC_MSG_RESULT([yes])
2024 else
2025 # FIXME - insert some real tests, host_os isn't really good enough
2026   case $host_os in
2027   darwin*)
2028     if test -n "$STRIP" ; then
2029       striplib="$STRIP -x"
2030       old_striplib="$STRIP -S"
2031       AC_MSG_RESULT([yes])
2032     else
2033       AC_MSG_RESULT([no])
2034     fi
2035     ;;
2036   *)
2037     AC_MSG_RESULT([no])
2038     ;;
2039   esac
2040 fi
2041 _LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
2042 _LT_DECL([], [striplib], [1])
2043 ])# _LT_CMD_STRIPLIB
2044
2045
2046 # _LT_SYS_DYNAMIC_LINKER([TAG])
2047 # -----------------------------
2048 # PORTME Fill in your ld.so characteristics
2049 m4_defun([_LT_SYS_DYNAMIC_LINKER],
2050 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
2051 m4_require([_LT_DECL_EGREP])dnl
2052 m4_require([_LT_FILEUTILS_DEFAULTS])dnl
2053 m4_require([_LT_DECL_OBJDUMP])dnl
2054 m4_require([_LT_DECL_SED])dnl
2055 m4_require([_LT_CHECK_SHELL_FEATURES])dnl
2056 AC_MSG_CHECKING([dynamic linker characteristics])
2057 m4_if([$1],
2058         [], [
2059 if test "$GCC" = yes; then
2060   case $host_os in
2061     darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
2062     *) lt_awk_arg="/^libraries:/" ;;
2063   esac
2064   case $host_os in
2065     mingw* | cegcc*) lt_sed_strip_eq="s,=\([[A-Za-z]]:\),\1,g" ;;
2066     *) lt_sed_strip_eq="s,=/,/,g" ;;
2067   esac
2068   lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
2069   case $lt_search_path_spec in
2070   *\;*)
2071     # if the path contains ";" then we assume it to be the separator
2072     # otherwise default to the standard path separator (i.e. ":") - it is
2073     # assumed that no part of a normal pathname contains ";" but that should
2074     # okay in the real world where ";" in dirpaths is itself problematic.
2075     lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
2076     ;;
2077   *)
2078     lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
2079     ;;
2080   esac
2081   # Ok, now we have the path, separated by spaces, we can step through it
2082   # and add multilib dir if necessary.
2083   lt_tmp_lt_search_path_spec=
2084   lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
2085   for lt_sys_path in $lt_search_path_spec; do
2086     if test -d "$lt_sys_path/$lt_multi_os_dir"; then
2087       lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
2088     else
2089       test -d "$lt_sys_path" && \
2090         lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
2091     fi
2092   done
2093   lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
2094 BEGIN {RS=" "; FS="/|\n";} {
2095   lt_foo="";
2096   lt_count=0;
2097   for (lt_i = NF; lt_i > 0; lt_i--) {
2098     if ($lt_i != "" && $lt_i != ".") {
2099       if ($lt_i == "..") {
2100         lt_count++;
2101       } else {
2102         if (lt_count == 0) {
2103           lt_foo="/" $lt_i lt_foo;
2104         } else {
2105           lt_count--;
2106         }
2107       }
2108     }
2109   }
2110   if (lt_foo != "") { lt_freq[[lt_foo]]++; }
2111   if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
2112 }'`
2113   # AWK program above erroneously prepends '/' to C:/dos/paths
2114   # for these hosts.
2115   case $host_os in
2116     mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
2117       $SED 's,/\([[A-Za-z]]:\),\1,g'` ;;
2118   esac
2119   sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
2120 else
2121   sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
2122 fi])
2123 library_names_spec=
2124 libname_spec='lib$name'
2125 soname_spec=
2126 shrext_cmds=".so"
2127 postinstall_cmds=
2128 postuninstall_cmds=
2129 finish_cmds=
2130 finish_eval=
2131 shlibpath_var=
2132 shlibpath_overrides_runpath=unknown
2133 version_type=none
2134 dynamic_linker="$host_os ld.so"
2135 sys_lib_dlsearch_path_spec="/lib /usr/lib"
2136 need_lib_prefix=unknown
2137 hardcode_into_libs=no
2138
2139 # when you set need_version to no, make sure it does not cause -set_version
2140 # flags to be left without arguments
2141 need_version=unknown
2142
2143 case $host_os in
2144 aix3*)
2145   version_type=linux
2146   library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
2147   shlibpath_var=LIBPATH
2148
2149   # AIX 3 has no versioning support, so we append a major version to the name.
2150   soname_spec='${libname}${release}${shared_ext}$major'
2151   ;;
2152
2153 aix[[4-9]]*)
2154   version_type=linux
2155   need_lib_prefix=no
2156   need_version=no
2157   hardcode_into_libs=yes
2158   if test "$host_cpu" = ia64; then
2159     # AIX 5 supports IA64
2160     library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
2161     shlibpath_var=LD_LIBRARY_PATH
2162   else
2163     # With GCC up to 2.95.x, collect2 would create an import file
2164     # for dependence libraries.  The import file would start with
2165     # the line `#! .'.  This would cause the generated library to
2166     # depend on `.', always an invalid library.  This was fixed in
2167     # development snapshots of GCC prior to 3.0.
2168     case $host_os in
2169       aix4 | aix4.[[01]] | aix4.[[01]].*)
2170       if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
2171            echo ' yes '
2172            echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then
2173         :
2174       else
2175         can_build_shared=no
2176       fi
2177       ;;
2178     esac
2179     # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
2180     # soname into executable. Probably we can add versioning support to
2181     # collect2, so additional links can be useful in future.
2182     if test "$aix_use_runtimelinking" = yes; then
2183       # If using run time linking (on AIX 4.2 or later) use lib<name>.so
2184       # instead of lib<name>.a to let people know that these are not
2185       # typical AIX shared libraries.
2186       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2187     else
2188       # We preserve .a as extension for shared libraries through AIX4.2
2189       # and later when we are not doing run time linking.
2190       library_names_spec='${libname}${release}.a $libname.a'
2191       soname_spec='${libname}${release}${shared_ext}$major'
2192     fi
2193     shlibpath_var=LIBPATH
2194   fi
2195   ;;
2196
2197 amigaos*)
2198   case $host_cpu in
2199   powerpc)
2200     # Since July 2007 AmigaOS4 officially supports .so libraries.
2201     # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
2202     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2203     ;;
2204   m68k)
2205     library_names_spec='$libname.ixlibrary $libname.a'
2206     # Create ${libname}_ixlibrary.a entries in /sys/libs.
2207     finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''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'
2208     ;;
2209   esac
2210   ;;
2211
2212 beos*)
2213   library_names_spec='${libname}${shared_ext}'
2214   dynamic_linker="$host_os ld.so"
2215   shlibpath_var=LIBRARY_PATH
2216   ;;
2217
2218 bsdi[[45]]*)
2219   version_type=linux
2220   need_version=no
2221   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2222   soname_spec='${libname}${release}${shared_ext}$major'
2223   finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
2224   shlibpath_var=LD_LIBRARY_PATH
2225   sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
2226   sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
2227   # the default ld.so.conf also contains /usr/contrib/lib and
2228   # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
2229   # libtool to hard-code these into programs
2230   ;;
2231
2232 cygwin* | mingw* | pw32* | cegcc*)
2233   version_type=windows
2234   shrext_cmds=".dll"
2235   need_version=no
2236   need_lib_prefix=no
2237
2238   case $GCC,$host_os in
2239   yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*)
2240     library_names_spec='$libname.dll.a'
2241     # DLL is installed to $(libdir)/../bin by postinstall_cmds
2242     postinstall_cmds='base_file=`basename \${file}`~
2243       dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~
2244       dldir=$destdir/`dirname \$dlpath`~
2245       test -d \$dldir || mkdir -p \$dldir~
2246       $install_prog $dir/$dlname \$dldir/$dlname~
2247       chmod a+x \$dldir/$dlname~
2248       if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
2249         eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
2250       fi'
2251     postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
2252       dlpath=$dir/\$dldll~
2253        $RM \$dlpath'
2254     shlibpath_overrides_runpath=yes
2255
2256     case $host_os in
2257     cygwin*)
2258       # Cygwin DLLs use 'cyg' prefix rather than 'lib'
2259       soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
2260 m4_if([$1], [],[
2261       sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
2262       ;;
2263     mingw* | cegcc*)
2264       # MinGW DLLs use traditional 'lib' prefix
2265       soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
2266       ;;
2267     pw32*)
2268       # pw32 DLLs use 'pw' prefix rather than 'lib'
2269       library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
2270       ;;
2271     esac
2272     ;;
2273
2274   *)
2275     library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
2276     ;;
2277   esac
2278   dynamic_linker='Win32 ld.exe'
2279   # FIXME: first we should search . and the directory the executable is in
2280   shlibpath_var=PATH
2281   ;;
2282
2283 darwin* | rhapsody*)
2284   dynamic_linker="$host_os dyld"
2285   version_type=darwin
2286   need_lib_prefix=no
2287   need_version=no
2288   library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext'
2289   soname_spec='${libname}${release}${major}$shared_ext'
2290   shlibpath_overrides_runpath=yes
2291   shlibpath_var=DYLD_LIBRARY_PATH
2292   shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
2293 m4_if([$1], [],[
2294   sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
2295   sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
2296   ;;
2297
2298 dgux*)
2299   version_type=linux
2300   need_lib_prefix=no
2301   need_version=no
2302   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
2303   soname_spec='${libname}${release}${shared_ext}$major'
2304   shlibpath_var=LD_LIBRARY_PATH
2305   ;;
2306
2307 freebsd* | dragonfly*)
2308   # DragonFly does not have aout.  When/if they implement a new
2309   # versioning mechanism, adjust this.
2310   if test -x /usr/bin/objformat; then
2311     objformat=`/usr/bin/objformat`
2312   else
2313     case $host_os in
2314     freebsd[[23]].*) objformat=aout ;;
2315     *) objformat=elf ;;
2316     esac
2317   fi
2318   version_type=freebsd-$objformat
2319   case $version_type in
2320     freebsd-elf*)
2321       library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
2322       need_version=no
2323       need_lib_prefix=no
2324       ;;
2325     freebsd-*)
2326       library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
2327       need_version=yes
2328       ;;
2329   esac
2330   shlibpath_var=LD_LIBRARY_PATH
2331   case $host_os in
2332   freebsd2.*)
2333     shlibpath_overrides_runpath=yes
2334     ;;
2335   freebsd3.[[01]]* | freebsdelf3.[[01]]*)
2336     shlibpath_overrides_runpath=yes
2337     hardcode_into_libs=yes
2338     ;;
2339   freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
2340   freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
2341     shlibpath_overrides_runpath=no
2342     hardcode_into_libs=yes
2343     ;;
2344   *) # from 4.6 on, and DragonFly
2345     shlibpath_overrides_runpath=yes
2346     hardcode_into_libs=yes
2347     ;;
2348   esac
2349   ;;
2350
2351 haiku*)
2352   version_type=linux
2353   need_lib_prefix=no
2354   need_version=no
2355   dynamic_linker="$host_os runtime_loader"
2356   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
2357   soname_spec='${libname}${release}${shared_ext}$major'
2358   shlibpath_var=LIBRARY_PATH
2359   shlibpath_overrides_runpath=yes
2360   sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/beos/system/lib'
2361   hardcode_into_libs=yes
2362   ;;
2363
2364 hpux9* | hpux10* | hpux11*)
2365   # Give a soname corresponding to the major version so that dld.sl refuses to
2366   # link against other versions.
2367   version_type=sunos
2368   need_lib_prefix=no
2369   need_version=no
2370   case $host_cpu in
2371   ia64*)
2372     shrext_cmds='.so'
2373     hardcode_into_libs=yes
2374     dynamic_linker="$host_os dld.so"
2375     shlibpath_var=LD_LIBRARY_PATH
2376     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
2377     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2378     soname_spec='${libname}${release}${shared_ext}$major'
2379     if test "X$HPUX_IA64_MODE" = X32; then
2380       sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
2381     else
2382       sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
2383     fi
2384     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
2385     ;;
2386   hppa*64*)
2387     shrext_cmds='.sl'
2388     hardcode_into_libs=yes
2389     dynamic_linker="$host_os dld.sl"
2390     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
2391     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
2392     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2393     soname_spec='${libname}${release}${shared_ext}$major'
2394     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
2395     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
2396     ;;
2397   *)
2398     shrext_cmds='.sl'
2399     dynamic_linker="$host_os dld.sl"
2400     shlibpath_var=SHLIB_PATH
2401     shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
2402     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2403     soname_spec='${libname}${release}${shared_ext}$major'
2404     ;;
2405   esac
2406   # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
2407   postinstall_cmds='chmod 555 $lib'
2408   # or fails outright, so override atomically:
2409   install_override_mode=555
2410   ;;
2411
2412 interix[[3-9]]*)
2413   version_type=linux
2414   need_lib_prefix=no
2415   need_version=no
2416   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
2417   soname_spec='${libname}${release}${shared_ext}$major'
2418   dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
2419   shlibpath_var=LD_LIBRARY_PATH
2420   shlibpath_overrides_runpath=no
2421   hardcode_into_libs=yes
2422   ;;
2423
2424 irix5* | irix6* | nonstopux*)
2425   case $host_os in
2426     nonstopux*) version_type=nonstopux ;;
2427     *)
2428         if test "$lt_cv_prog_gnu_ld" = yes; then
2429                 version_type=linux
2430         else
2431                 version_type=irix
2432         fi ;;
2433   esac
2434   need_lib_prefix=no
2435   need_version=no
2436   soname_spec='${libname}${release}${shared_ext}$major'
2437   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
2438   case $host_os in
2439   irix5* | nonstopux*)
2440     libsuff= shlibsuff=
2441     ;;
2442   *)
2443     case $LD in # libtool.m4 will add one of these switches to LD
2444     *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
2445       libsuff= shlibsuff= libmagic=32-bit;;
2446     *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
2447       libsuff=32 shlibsuff=N32 libmagic=N32;;
2448     *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
2449       libsuff=64 shlibsuff=64 libmagic=64-bit;;
2450     *) libsuff= shlibsuff= libmagic=never-match;;
2451     esac
2452     ;;
2453   esac
2454   shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
2455   shlibpath_overrides_runpath=no
2456   sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
2457   sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
2458   hardcode_into_libs=yes
2459   ;;
2460
2461 # No shared lib support for Linux oldld, aout, or coff.
2462 linux*oldld* | linux*aout* | linux*coff*)
2463   dynamic_linker=no
2464   ;;
2465
2466 # This must be Linux ELF.
2467
2468 # uclinux* changes (here and below) have been submitted to the libtool
2469 # project, but have not yet been accepted: they are GCC-local changes
2470 # for the time being.  (See
2471 # https://lists.gnu.org/archive/html/libtool-patches/2018-05/msg00000.html)
2472 linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu* | uclinuxfdpiceabi)
2473   version_type=linux
2474   need_lib_prefix=no
2475   need_version=no
2476   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2477   soname_spec='${libname}${release}${shared_ext}$major'
2478   finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
2479   shlibpath_var=LD_LIBRARY_PATH
2480   shlibpath_overrides_runpath=no
2481
2482   # Some binutils ld are patched to set DT_RUNPATH
2483   AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],
2484     [lt_cv_shlibpath_overrides_runpath=no
2485     save_LDFLAGS=$LDFLAGS
2486     save_libdir=$libdir
2487     eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
2488          LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
2489     AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
2490       [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
2491          [lt_cv_shlibpath_overrides_runpath=yes])])
2492     LDFLAGS=$save_LDFLAGS
2493     libdir=$save_libdir
2494     ])
2495   shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
2496
2497   # This implies no fast_install, which is unacceptable.
2498   # Some rework will be needed to allow for fast_install
2499   # before this can be enabled.
2500   hardcode_into_libs=yes
2501
2502   # Append ld.so.conf contents to the search path
2503   if test -f /etc/ld.so.conf; then
2504     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;s/"//g;/^$/d' | tr '\n' ' '`
2505     sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
2506   fi
2507
2508   # We used to test for /lib/ld.so.1 and disable shared libraries on
2509   # powerpc, because MkLinux only supported shared libraries with the
2510   # GNU dynamic linker.  Since this was broken with cross compilers,
2511   # most powerpc-linux boxes support dynamic linking these days and
2512   # people can always --disable-shared, the test was removed, and we
2513   # assume the GNU/Linux dynamic linker is in use.
2514   dynamic_linker='GNU/Linux ld.so'
2515   ;;
2516
2517 netbsd*)
2518   version_type=sunos
2519   need_lib_prefix=no
2520   need_version=no
2521   if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
2522     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
2523     finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2524     dynamic_linker='NetBSD (a.out) ld.so'
2525   else
2526     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
2527     soname_spec='${libname}${release}${shared_ext}$major'
2528     dynamic_linker='NetBSD ld.elf_so'
2529   fi
2530   shlibpath_var=LD_LIBRARY_PATH
2531   shlibpath_overrides_runpath=yes
2532   hardcode_into_libs=yes
2533   ;;
2534
2535 newsos6)
2536   version_type=linux
2537   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2538   shlibpath_var=LD_LIBRARY_PATH
2539   shlibpath_overrides_runpath=yes
2540   ;;
2541
2542 *nto* | *qnx*)
2543   version_type=qnx
2544   need_lib_prefix=no
2545   need_version=no
2546   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2547   soname_spec='${libname}${release}${shared_ext}$major'
2548   shlibpath_var=LD_LIBRARY_PATH
2549   shlibpath_overrides_runpath=no
2550   hardcode_into_libs=yes
2551   dynamic_linker='ldqnx.so'
2552   ;;
2553
2554 openbsd*)
2555   version_type=sunos
2556   sys_lib_dlsearch_path_spec="/usr/lib"
2557   need_lib_prefix=no
2558   # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
2559   case $host_os in
2560     openbsd3.3 | openbsd3.3.*)  need_version=yes ;;
2561     *)                          need_version=no  ;;
2562   esac
2563   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
2564   finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2565   shlibpath_var=LD_LIBRARY_PATH
2566   if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
2567     case $host_os in
2568       openbsd2.[[89]] | openbsd2.[[89]].*)
2569         shlibpath_overrides_runpath=no
2570         ;;
2571       *)
2572         shlibpath_overrides_runpath=yes
2573         ;;
2574       esac
2575   else
2576     shlibpath_overrides_runpath=yes
2577   fi
2578   ;;
2579
2580 os2*)
2581   libname_spec='$name'
2582   shrext_cmds=".dll"
2583   need_lib_prefix=no
2584   library_names_spec='$libname${shared_ext} $libname.a'
2585   dynamic_linker='OS/2 ld.exe'
2586   shlibpath_var=LIBPATH
2587   ;;
2588
2589 osf3* | osf4* | osf5*)
2590   version_type=osf
2591   need_lib_prefix=no
2592   need_version=no
2593   soname_spec='${libname}${release}${shared_ext}$major'
2594   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2595   shlibpath_var=LD_LIBRARY_PATH
2596   sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
2597   sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
2598   ;;
2599
2600 rdos*)
2601   dynamic_linker=no
2602   ;;
2603
2604 solaris*)
2605   version_type=linux
2606   need_lib_prefix=no
2607   need_version=no
2608   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2609   soname_spec='${libname}${release}${shared_ext}$major'
2610   shlibpath_var=LD_LIBRARY_PATH
2611   shlibpath_overrides_runpath=yes
2612   hardcode_into_libs=yes
2613   # ldd complains unless libraries are executable
2614   postinstall_cmds='chmod +x $lib'
2615   ;;
2616
2617 sunos4*)
2618   version_type=sunos
2619   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
2620   finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
2621   shlibpath_var=LD_LIBRARY_PATH
2622   shlibpath_overrides_runpath=yes
2623   if test "$with_gnu_ld" = yes; then
2624     need_lib_prefix=no
2625   fi
2626   need_version=yes
2627   ;;
2628
2629 sysv4 | sysv4.3*)
2630   version_type=linux
2631   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2632   soname_spec='${libname}${release}${shared_ext}$major'
2633   shlibpath_var=LD_LIBRARY_PATH
2634   case $host_vendor in
2635     sni)
2636       shlibpath_overrides_runpath=no
2637       need_lib_prefix=no
2638       runpath_var=LD_RUN_PATH
2639       ;;
2640     siemens)
2641       need_lib_prefix=no
2642       ;;
2643     motorola)
2644       need_lib_prefix=no
2645       need_version=no
2646       shlibpath_overrides_runpath=no
2647       sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
2648       ;;
2649   esac
2650   ;;
2651
2652 sysv4*MP*)
2653   if test -d /usr/nec ;then
2654     version_type=linux
2655     library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
2656     soname_spec='$libname${shared_ext}.$major'
2657     shlibpath_var=LD_LIBRARY_PATH
2658   fi
2659   ;;
2660
2661 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
2662   version_type=freebsd-elf
2663   need_lib_prefix=no
2664   need_version=no
2665   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
2666   soname_spec='${libname}${release}${shared_ext}$major'
2667   shlibpath_var=LD_LIBRARY_PATH
2668   shlibpath_overrides_runpath=yes
2669   hardcode_into_libs=yes
2670   if test "$with_gnu_ld" = yes; then
2671     sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
2672   else
2673     sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
2674     case $host_os in
2675       sco3.2v5*)
2676         sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
2677         ;;
2678     esac
2679   fi
2680   sys_lib_dlsearch_path_spec='/usr/lib'
2681   ;;
2682
2683 tpf*)
2684   # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
2685   version_type=linux
2686   need_lib_prefix=no
2687   need_version=no
2688   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2689   shlibpath_var=LD_LIBRARY_PATH
2690   shlibpath_overrides_runpath=no
2691   hardcode_into_libs=yes
2692   ;;
2693
2694 uts4*)
2695   version_type=linux
2696   library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2697   soname_spec='${libname}${release}${shared_ext}$major'
2698   shlibpath_var=LD_LIBRARY_PATH
2699   ;;
2700
2701 *)
2702   dynamic_linker=no
2703   ;;
2704 esac
2705 AC_MSG_RESULT([$dynamic_linker])
2706 test "$dynamic_linker" = no && can_build_shared=no
2707
2708 variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
2709 if test "$GCC" = yes; then
2710   variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
2711 fi
2712
2713 if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then
2714   sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
2715 fi
2716 if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then
2717   sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
2718 fi
2719
2720 _LT_DECL([], [variables_saved_for_relink], [1],
2721     [Variables whose values should be saved in libtool wrapper scripts and
2722     restored at link time])
2723 _LT_DECL([], [need_lib_prefix], [0],
2724     [Do we need the "lib" prefix for modules?])
2725 _LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
2726 _LT_DECL([], [version_type], [0], [Library versioning type])
2727 _LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
2728 _LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
2729 _LT_DECL([], [shlibpath_overrides_runpath], [0],
2730     [Is shlibpath searched before the hard-coded library search path?])
2731 _LT_DECL([], [libname_spec], [1], [Format of library name prefix])
2732 _LT_DECL([], [library_names_spec], [1],
2733     [[List of archive names.  First name is the real one, the rest are links.
2734     The last name is the one that the linker finds with -lNAME]])
2735 _LT_DECL([], [soname_spec], [1],
2736     [[The coded name of the library, if different from the real name]])
2737 _LT_DECL([], [install_override_mode], [1],
2738     [Permission mode override for installation of shared libraries])
2739 _LT_DECL([], [postinstall_cmds], [2],
2740     [Command to use after installation of a shared archive])
2741 _LT_DECL([], [postuninstall_cmds], [2],
2742     [Command to use after uninstallation of a shared archive])
2743 _LT_DECL([], [finish_cmds], [2],
2744     [Commands used to finish a libtool library installation in a directory])
2745 _LT_DECL([], [finish_eval], [1],
2746     [[As "finish_cmds", except a single script fragment to be evaled but
2747     not shown]])
2748 _LT_DECL([], [hardcode_into_libs], [0],
2749     [Whether we should hardcode library paths into libraries])
2750 _LT_DECL([], [sys_lib_search_path_spec], [2],
2751     [Compile-time system search path for libraries])
2752 _LT_DECL([], [sys_lib_dlsearch_path_spec], [2],
2753     [Run-time system search path for libraries])
2754 ])# _LT_SYS_DYNAMIC_LINKER
2755
2756
2757 # _LT_PATH_TOOL_PREFIX(TOOL)
2758 # --------------------------
2759 # find a file program which can recognize shared library
2760 AC_DEFUN([_LT_PATH_TOOL_PREFIX],
2761 [m4_require([_LT_DECL_EGREP])dnl
2762 AC_MSG_CHECKING([for $1])
2763 AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
2764 [case $MAGIC_CMD in
2765 [[\\/*] |  ?:[\\/]*])
2766   lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
2767   ;;
2768 *)
2769   lt_save_MAGIC_CMD="$MAGIC_CMD"
2770   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2771 dnl $ac_dummy forces splitting on constant user-supplied paths.
2772 dnl POSIX.2 word splitting is done only on the output of word expansions,
2773 dnl not every word.  This closes a longstanding sh security hole.
2774   ac_dummy="m4_if([$2], , $PATH, [$2])"
2775   for ac_dir in $ac_dummy; do
2776     IFS="$lt_save_ifs"
2777     test -z "$ac_dir" && ac_dir=.
2778     if test -f $ac_dir/$1; then
2779       lt_cv_path_MAGIC_CMD="$ac_dir/$1"
2780       if test -n "$file_magic_test_file"; then
2781         case $deplibs_check_method in
2782         "file_magic "*)
2783           file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
2784           MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
2785           if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
2786             $EGREP "$file_magic_regex" > /dev/null; then
2787             :
2788           else
2789             cat <<_LT_EOF 1>&2
2790
2791 *** Warning: the command libtool uses to detect shared libraries,
2792 *** $file_magic_cmd, produces output that libtool cannot recognize.
2793 *** The result is that libtool may fail to recognize shared libraries
2794 *** as such.  This will affect the creation of libtool libraries that
2795 *** depend on shared libraries, but programs linked with such libtool
2796 *** libraries will work regardless of this problem.  Nevertheless, you
2797 *** may want to report the problem to your system manager and/or to
2798 *** bug-libtool@gnu.org
2799
2800 _LT_EOF
2801           fi ;;
2802         esac
2803       fi
2804       break
2805     fi
2806   done
2807   IFS="$lt_save_ifs"
2808   MAGIC_CMD="$lt_save_MAGIC_CMD"
2809   ;;
2810 esac])
2811 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
2812 if test -n "$MAGIC_CMD"; then
2813   AC_MSG_RESULT($MAGIC_CMD)
2814 else
2815   AC_MSG_RESULT(no)
2816 fi
2817 _LT_DECL([], [MAGIC_CMD], [0],
2818          [Used to examine libraries when file_magic_cmd begins with "file"])dnl
2819 ])# _LT_PATH_TOOL_PREFIX
2820
2821 # Old name:
2822 AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
2823 dnl aclocal-1.4 backwards compatibility:
2824 dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
2825
2826
2827 # _LT_PATH_MAGIC
2828 # --------------
2829 # find a file program which can recognize a shared library
2830 m4_defun([_LT_PATH_MAGIC],
2831 [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
2832 if test -z "$lt_cv_path_MAGIC_CMD"; then
2833   if test -n "$ac_tool_prefix"; then
2834     _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
2835   else
2836     MAGIC_CMD=:
2837   fi
2838 fi
2839 ])# _LT_PATH_MAGIC
2840
2841
2842 # LT_PATH_LD
2843 # ----------
2844 # find the pathname to the GNU or non-GNU linker
2845 AC_DEFUN([LT_PATH_LD],
2846 [AC_REQUIRE([AC_PROG_CC])dnl
2847 AC_REQUIRE([AC_CANONICAL_HOST])dnl
2848 AC_REQUIRE([AC_CANONICAL_BUILD])dnl
2849 m4_require([_LT_DECL_SED])dnl
2850 m4_require([_LT_DECL_EGREP])dnl
2851 m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
2852
2853 AC_ARG_WITH([gnu-ld],
2854     [AS_HELP_STRING([--with-gnu-ld],
2855         [assume the C compiler uses GNU ld @<:@default=no@:>@])],
2856     [test "$withval" = no || with_gnu_ld=yes],
2857     [with_gnu_ld=no])dnl
2858
2859 ac_prog=ld
2860 if test "$GCC" = yes; then
2861   # Check if gcc -print-prog-name=ld gives a path.
2862   AC_MSG_CHECKING([for ld used by $CC])
2863   case $host in
2864   *-*-mingw*)
2865     # gcc leaves a trailing carriage return which upsets mingw
2866     ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
2867   *)
2868     ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
2869   esac
2870   case $ac_prog in
2871     # Accept absolute paths.
2872     [[\\/]]* | ?:[[\\/]]*)
2873       re_direlt='/[[^/]][[^/]]*/\.\./'
2874       # Canonicalize the pathname of ld
2875       ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
2876       while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
2877         ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
2878       done
2879       test -z "$LD" && LD="$ac_prog"
2880       ;;
2881   "")
2882     # If it fails, then pretend we aren't using GCC.
2883     ac_prog=ld
2884     ;;
2885   *)
2886     # If it is relative, then search for the first ld in PATH.
2887     with_gnu_ld=unknown
2888     ;;
2889   esac
2890 elif test "$with_gnu_ld" = yes; then
2891   AC_MSG_CHECKING([for GNU ld])
2892 else
2893   AC_MSG_CHECKING([for non-GNU ld])
2894 fi
2895 AC_CACHE_VAL(lt_cv_path_LD,
2896 [if test -z "$LD"; then
2897   lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2898   for ac_dir in $PATH; do
2899     IFS="$lt_save_ifs"
2900     test -z "$ac_dir" && ac_dir=.
2901     if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
2902       lt_cv_path_LD="$ac_dir/$ac_prog"
2903       # Check to see if the program is GNU ld.  I'd rather use --version,
2904       # but apparently some variants of GNU ld only accept -v.
2905       # Break only if it was the GNU/non-GNU ld that we prefer.
2906       case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
2907       *GNU* | *'with BFD'*)
2908         test "$with_gnu_ld" != no && break
2909         ;;
2910       *)
2911         test "$with_gnu_ld" != yes && break
2912         ;;
2913       esac
2914     fi
2915   done
2916   IFS="$lt_save_ifs"
2917 else
2918   lt_cv_path_LD="$LD" # Let the user override the test with a path.
2919 fi])
2920 LD="$lt_cv_path_LD"
2921 if test -n "$LD"; then
2922   AC_MSG_RESULT($LD)
2923 else
2924   AC_MSG_RESULT(no)
2925 fi
2926 test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
2927 _LT_PATH_LD_GNU
2928 AC_SUBST([LD])
2929
2930 _LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
2931 ])# LT_PATH_LD
2932
2933 # Old names:
2934 AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
2935 AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
2936 dnl aclocal-1.4 backwards compatibility:
2937 dnl AC_DEFUN([AM_PROG_LD], [])
2938 dnl AC_DEFUN([AC_PROG_LD], [])
2939
2940
2941 # _LT_PATH_LD_GNU
2942 #- --------------
2943 m4_defun([_LT_PATH_LD_GNU],
2944 [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
2945 [# I'd rather use --version here, but apparently some GNU lds only accept -v.
2946 case `$LD -v 2>&1 </dev/null` in
2947 *GNU* | *'with BFD'*)
2948   lt_cv_prog_gnu_ld=yes
2949   ;;
2950 *)
2951   lt_cv_prog_gnu_ld=no
2952   ;;
2953 esac])
2954 with_gnu_ld=$lt_cv_prog_gnu_ld
2955 ])# _LT_PATH_LD_GNU
2956
2957
2958 # _LT_CMD_RELOAD
2959 # --------------
2960 # find reload flag for linker
2961 #   -- PORTME Some linkers may need a different reload flag.
2962 m4_defun([_LT_CMD_RELOAD],
2963 [AC_CACHE_CHECK([for $LD option to reload object files],
2964   lt_cv_ld_reload_flag,
2965   [lt_cv_ld_reload_flag='-r'])
2966 reload_flag=$lt_cv_ld_reload_flag
2967 case $reload_flag in
2968 "" | " "*) ;;
2969 *) reload_flag=" $reload_flag" ;;
2970 esac
2971 reload_cmds='$LD$reload_flag -o $output$reload_objs'
2972 case $host_os in
2973   darwin*)
2974     if test "$GCC" = yes; then
2975       reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
2976     else
2977       reload_cmds='$LD$reload_flag -o $output$reload_objs'
2978     fi
2979     ;;
2980 esac
2981 _LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl
2982 _LT_TAGDECL([], [reload_cmds], [2])dnl
2983 ])# _LT_CMD_RELOAD
2984
2985
2986 # _LT_CHECK_MAGIC_METHOD
2987 # ----------------------
2988 # how to check for library dependencies
2989 #  -- PORTME fill in with the dynamic library characteristics
2990 m4_defun([_LT_CHECK_MAGIC_METHOD],
2991 [m4_require([_LT_DECL_EGREP])
2992 m4_require([_LT_DECL_OBJDUMP])
2993 AC_CACHE_CHECK([how to recognize dependent libraries],
2994 lt_cv_deplibs_check_method,
2995 [lt_cv_file_magic_cmd='$MAGIC_CMD'
2996 lt_cv_file_magic_test_file=
2997 lt_cv_deplibs_check_method='unknown'
2998 # Need to set the preceding variable on all platforms that support
2999 # interlibrary dependencies.
3000 # 'none' -- dependencies not supported.
3001 # `unknown' -- same as none, but documents that we really don't know.
3002 # 'pass_all' -- all dependencies passed with no checks.
3003 # 'test_compile' -- check by making test program.
3004 # 'file_magic [[regex]]' -- check by looking for files in library path
3005 # which responds to the $file_magic_cmd with a given extended regex.
3006 # If you have `file' or equivalent on your system and you're not sure
3007 # whether `pass_all' will *always* work, you probably want this one.
3008
3009 case $host_os in
3010 aix[[4-9]]*)
3011   lt_cv_deplibs_check_method=pass_all
3012   ;;
3013
3014 beos*)
3015   lt_cv_deplibs_check_method=pass_all
3016   ;;
3017
3018 bsdi[[45]]*)
3019   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
3020   lt_cv_file_magic_cmd='/usr/bin/file -L'
3021   lt_cv_file_magic_test_file=/shlib/libc.so
3022   ;;
3023
3024 cygwin*)
3025   # func_win32_libid is a shell function defined in ltmain.sh
3026   lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
3027   lt_cv_file_magic_cmd='func_win32_libid'
3028   ;;
3029
3030 mingw* | pw32*)
3031   # Base MSYS/MinGW do not provide the 'file' command needed by
3032   # func_win32_libid shell function, so use a weaker test based on 'objdump',
3033   # unless we find 'file', for example because we are cross-compiling.
3034   # func_win32_libid assumes BSD nm, so disallow it if using MS dumpbin.
3035   if ( test "$lt_cv_nm_interface" = "BSD nm" && file / ) >/dev/null 2>&1; then
3036     lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
3037     lt_cv_file_magic_cmd='func_win32_libid'
3038   else
3039     lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
3040     lt_cv_file_magic_cmd='$OBJDUMP -f'
3041   fi
3042   ;;
3043
3044 cegcc*)
3045   # use the weaker test based on 'objdump'. See mingw*.
3046   lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
3047   lt_cv_file_magic_cmd='$OBJDUMP -f'
3048   ;;
3049
3050 darwin* | rhapsody*)
3051   lt_cv_deplibs_check_method=pass_all
3052   ;;
3053
3054 freebsd* | dragonfly*)
3055   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3056     case $host_cpu in
3057     i*86 )
3058       # Not sure whether the presence of OpenBSD here was a mistake.
3059       # Let's accept both of them until this is cleared up.
3060       lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
3061       lt_cv_file_magic_cmd=/usr/bin/file
3062       lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3063       ;;
3064     esac
3065   else
3066     lt_cv_deplibs_check_method=pass_all
3067   fi
3068   ;;
3069
3070 gnu*)
3071   lt_cv_deplibs_check_method=pass_all
3072   ;;
3073
3074 haiku*)
3075   lt_cv_deplibs_check_method=pass_all
3076   ;;
3077
3078 hpux10.20* | hpux11*)
3079   lt_cv_file_magic_cmd=/usr/bin/file
3080   case $host_cpu in
3081   ia64*)
3082     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
3083     lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
3084     ;;
3085   hppa*64*)
3086     [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF[ -][0-9][0-9])(-bit)?( [LM]SB)? shared object( file)?[, -]* PA-RISC [0-9]\.[0-9]']
3087     lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
3088     ;;
3089   *)
3090     lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library'
3091     lt_cv_file_magic_test_file=/usr/lib/libc.sl
3092     ;;
3093   esac
3094   ;;
3095
3096 interix[[3-9]]*)
3097   # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
3098   lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
3099   ;;
3100
3101 irix5* | irix6* | nonstopux*)
3102   case $LD in
3103   *-32|*"-32 ") libmagic=32-bit;;
3104   *-n32|*"-n32 ") libmagic=N32;;
3105   *-64|*"-64 ") libmagic=64-bit;;
3106   *) libmagic=never-match;;
3107   esac
3108   lt_cv_deplibs_check_method=pass_all
3109   ;;
3110
3111 # This must be Linux ELF.
3112 linux* | k*bsd*-gnu | kopensolaris*-gnu | uclinuxfdpiceabi)
3113   lt_cv_deplibs_check_method=pass_all
3114   ;;
3115
3116 netbsd*)
3117   if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3118     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3119   else
3120     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
3121   fi
3122   ;;
3123
3124 newos6*)
3125   lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
3126   lt_cv_file_magic_cmd=/usr/bin/file
3127   lt_cv_file_magic_test_file=/usr/lib/libnls.so
3128   ;;
3129
3130 *nto* | *qnx*)
3131   lt_cv_deplibs_check_method=pass_all
3132   ;;
3133
3134 openbsd*)
3135   if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3136     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
3137   else
3138     lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3139   fi
3140   ;;
3141
3142 osf3* | osf4* | osf5*)
3143   lt_cv_deplibs_check_method=pass_all
3144   ;;
3145
3146 rdos*)
3147   lt_cv_deplibs_check_method=pass_all
3148   ;;
3149
3150 solaris*)
3151   lt_cv_deplibs_check_method=pass_all
3152   ;;
3153
3154 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
3155   lt_cv_deplibs_check_method=pass_all
3156   ;;
3157
3158 sysv4 | sysv4.3*)
3159   case $host_vendor in
3160   motorola)
3161     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]]'
3162     lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
3163     ;;
3164   ncr)
3165     lt_cv_deplibs_check_method=pass_all
3166     ;;
3167   sequent)
3168     lt_cv_file_magic_cmd='/bin/file'
3169     lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
3170     ;;
3171   sni)
3172     lt_cv_file_magic_cmd='/bin/file'
3173     lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
3174     lt_cv_file_magic_test_file=/lib/libc.so
3175     ;;
3176   siemens)
3177     lt_cv_deplibs_check_method=pass_all
3178     ;;
3179   pc)
3180     lt_cv_deplibs_check_method=pass_all
3181     ;;
3182   esac
3183   ;;
3184
3185 tpf*)
3186   lt_cv_deplibs_check_method=pass_all
3187   ;;
3188 esac
3189 ])
3190 file_magic_cmd=$lt_cv_file_magic_cmd
3191 deplibs_check_method=$lt_cv_deplibs_check_method
3192 test -z "$deplibs_check_method" && deplibs_check_method=unknown
3193
3194 _LT_DECL([], [deplibs_check_method], [1],
3195     [Method to check whether dependent libraries are shared objects])
3196 _LT_DECL([], [file_magic_cmd], [1],
3197     [Command to use when deplibs_check_method == "file_magic"])
3198 ])# _LT_CHECK_MAGIC_METHOD
3199
3200
3201 # LT_PATH_NM
3202 # ----------
3203 # find the pathname to a BSD- or MS-compatible name lister
3204 AC_DEFUN([LT_PATH_NM],
3205 [AC_REQUIRE([AC_PROG_CC])dnl
3206 AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
3207 [if test -n "$NM"; then
3208   # Let the user override the test.
3209   lt_cv_path_NM="$NM"
3210 else
3211   lt_nm_to_check="${ac_tool_prefix}nm"
3212   if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
3213     lt_nm_to_check="$lt_nm_to_check nm"
3214   fi
3215   for lt_tmp_nm in $lt_nm_to_check; do
3216     lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3217     for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
3218       IFS="$lt_save_ifs"
3219       test -z "$ac_dir" && ac_dir=.
3220       tmp_nm="$ac_dir/$lt_tmp_nm"
3221       if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
3222         # Check to see if the nm accepts a BSD-compat flag.
3223         # Adding the `sed 1q' prevents false positives on HP-UX, which says:
3224         #   nm: unknown option "B" ignored
3225         # Tru64's nm complains that /dev/null is an invalid object file
3226         case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
3227         */dev/null* | *'Invalid file or object type'*)
3228           lt_cv_path_NM="$tmp_nm -B"
3229           break
3230           ;;
3231         *)
3232           case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
3233           */dev/null*)
3234             lt_cv_path_NM="$tmp_nm -p"
3235             break
3236             ;;
3237           *)
3238             lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
3239             continue # so that we can try to find one that supports BSD flags
3240             ;;
3241           esac
3242           ;;
3243         esac
3244       fi
3245     done
3246     IFS="$lt_save_ifs"
3247   done
3248   : ${lt_cv_path_NM=no}
3249 fi])
3250 if test "$lt_cv_path_NM" != "no"; then
3251   NM="$lt_cv_path_NM"
3252 else
3253   # Didn't find any BSD compatible name lister, look for dumpbin.
3254   if test -n "$DUMPBIN"; then :
3255     # Let the user override the test.
3256   else
3257     AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
3258     case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
3259     *COFF*)
3260       DUMPBIN="$DUMPBIN -symbols"
3261       ;;
3262     *)
3263       DUMPBIN=:
3264       ;;
3265     esac
3266   fi
3267   AC_SUBST([DUMPBIN])
3268   if test "$DUMPBIN" != ":"; then
3269     NM="$DUMPBIN"
3270   fi
3271 fi
3272 test -z "$NM" && NM=nm
3273 AC_SUBST([NM])
3274 _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
3275
3276 AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
3277   [lt_cv_nm_interface="BSD nm"
3278   echo "int some_variable = 0;" > conftest.$ac_ext
3279   (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
3280   (eval "$ac_compile" 2>conftest.err)
3281   cat conftest.err >&AS_MESSAGE_LOG_FD
3282   (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
3283   (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
3284   cat conftest.err >&AS_MESSAGE_LOG_FD
3285   (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
3286   cat conftest.out >&AS_MESSAGE_LOG_FD
3287   if $GREP 'External.*some_variable' conftest.out > /dev/null; then
3288     lt_cv_nm_interface="MS dumpbin"
3289   fi
3290   rm -f conftest*])
3291 ])# LT_PATH_NM
3292
3293 # Old names:
3294 AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
3295 AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
3296 dnl aclocal-1.4 backwards compatibility:
3297 dnl AC_DEFUN([AM_PROG_NM], [])
3298 dnl AC_DEFUN([AC_PROG_NM], [])
3299
3300
3301 # LT_LIB_M
3302 # --------
3303 # check for math library
3304 AC_DEFUN([LT_LIB_M],
3305 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
3306 LIBM=
3307 case $host in
3308 *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
3309   # These system don't have libm, or don't need it
3310   ;;
3311 *-ncr-sysv4.3*)
3312   AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
3313   AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
3314   ;;
3315 *)
3316   AC_CHECK_LIB(m, cos, LIBM="-lm")
3317   ;;
3318 esac
3319 AC_SUBST([LIBM])
3320 ])# LT_LIB_M
3321
3322 # Old name:
3323 AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
3324 dnl aclocal-1.4 backwards compatibility:
3325 dnl AC_DEFUN([AC_CHECK_LIBM], [])
3326
3327
3328 # _LT_COMPILER_NO_RTTI([TAGNAME])
3329 # -------------------------------
3330 m4_defun([_LT_COMPILER_NO_RTTI],
3331 [m4_require([_LT_TAG_COMPILER])dnl
3332
3333 _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
3334
3335 if test "$GCC" = yes; then
3336   case $cc_basename in
3337   nvcc*)
3338     _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
3339   *)
3340     _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;
3341   esac
3342
3343   _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
3344     lt_cv_prog_compiler_rtti_exceptions,
3345     [-fno-rtti -fno-exceptions], [],
3346     [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
3347 fi
3348 _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
3349         [Compiler flag to turn off builtin functions])
3350 ])# _LT_COMPILER_NO_RTTI
3351
3352
3353 # _LT_CMD_GLOBAL_SYMBOLS
3354 # ----------------------
3355 m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
3356 [AC_REQUIRE([AC_CANONICAL_HOST])dnl
3357 AC_REQUIRE([AC_PROG_CC])dnl
3358 AC_REQUIRE([AC_PROG_AWK])dnl
3359 AC_REQUIRE([LT_PATH_NM])dnl
3360 AC_REQUIRE([LT_PATH_LD])dnl
3361 m4_require([_LT_DECL_SED])dnl
3362 m4_require([_LT_DECL_EGREP])dnl
3363 m4_require([_LT_TAG_COMPILER])dnl
3364
3365 # Check for command to grab the raw symbol name followed by C symbol from nm.
3366 AC_MSG_CHECKING([command to parse $NM output from $compiler object])
3367 AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
3368 [
3369 # These are sane defaults that work on at least a few old systems.
3370 # [They come from Ultrix.  What could be older than Ultrix?!! ;)]
3371
3372 # Character class describing NM global symbol codes.
3373 symcode='[[BCDEGRST]]'
3374
3375 # Regexp to match symbols that can be accessed directly from C.
3376 sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
3377
3378 # Define system-specific variables.
3379 case $host_os in
3380 aix*)
3381   symcode='[[BCDT]]'
3382   ;;
3383 cygwin* | mingw* | pw32* | cegcc*)
3384   symcode='[[ABCDGISTW]]'
3385   ;;
3386 hpux*)
3387   if test "$host_cpu" = ia64; then
3388     symcode='[[ABCDEGRST]]'
3389   fi
3390   ;;
3391 irix* | nonstopux*)
3392   symcode='[[BCDEGRST]]'
3393   ;;
3394 osf*)
3395   symcode='[[BCDEGQRST]]'
3396   ;;
3397 solaris*)
3398   symcode='[[BDRT]]'
3399   ;;
3400 sco3.2v5*)
3401   symcode='[[DT]]'
3402   ;;
3403 sysv4.2uw2*)
3404   symcode='[[DT]]'
3405   ;;
3406 sysv5* | sco5v6* | unixware* | OpenUNIX*)
3407   symcode='[[ABDT]]'
3408   ;;
3409 sysv4)
3410   symcode='[[DFNSTU]]'
3411   ;;
3412 esac
3413
3414 # If we're using GNU nm, then use its standard symbol codes.
3415 case `$NM -V 2>&1` in
3416 *GNU* | *'with BFD'*)
3417   symcode='[[ABCDGIRSTW]]' ;;
3418 esac
3419
3420 # Transform an extracted symbol line into a proper C declaration.
3421 # Some systems (esp. on ia64) link data and code symbols differently,
3422 # so use this general approach.
3423 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
3424
3425 # Transform an extracted symbol line into symbol name and symbol address
3426 lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/  {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/  {\"\2\", (void *) \&\2},/p'"
3427 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* \([[^ ]]*\) \([[^ ]]*\)$/  {\"lib\2\", (void *) \&\2},/p'"
3428
3429 # Handle CRLF in mingw tool chain
3430 opt_cr=
3431 case $build_os in
3432 mingw*)
3433   opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
3434   ;;
3435 esac
3436
3437 # Try without a prefix underscore, then with it.
3438 for ac_symprfx in "" "_"; do
3439
3440   # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
3441   symxfrm="\\1 $ac_symprfx\\2 \\2"
3442
3443   # Write the raw and C identifiers.
3444   if test "$lt_cv_nm_interface" = "MS dumpbin"; then
3445     # Fake it for dumpbin and say T for any non-static function
3446     # and D for any global variable.
3447     # Also find C++ and __fastcall symbols from MSVC++,
3448     # which start with @ or ?.
3449     lt_cv_sys_global_symbol_pipe="$AWK ['"\
3450 "     {last_section=section; section=\$ 3};"\
3451 "     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
3452 "     \$ 0!~/External *\|/{next};"\
3453 "     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
3454 "     {if(hide[section]) next};"\
3455 "     {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\
3456 "     {split(\$ 0, a, /\||\r/); split(a[2], s)};"\
3457 "     s[1]~/^[@?]/{print s[1], s[1]; next};"\
3458 "     s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\
3459 "     ' prfx=^$ac_symprfx]"
3460   else
3461     lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[     ]]\($symcode$symcode*\)[[       ]][[    ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
3462   fi
3463
3464   # Check to see that the pipe works correctly.
3465   pipe_works=no
3466
3467   rm -f conftest*
3468   cat > conftest.$ac_ext <<_LT_EOF
3469 #ifdef __cplusplus
3470 extern "C" {
3471 #endif
3472 char nm_test_var;
3473 void nm_test_func(void);
3474 void nm_test_func(void){}
3475 #ifdef __cplusplus
3476 }
3477 #endif
3478 int main(){nm_test_var='a';nm_test_func();return(0);}
3479 _LT_EOF
3480
3481   if AC_TRY_EVAL(ac_compile); then
3482     # Now try to grab the symbols.
3483     nlist=conftest.nm
3484     if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
3485       # Try sorting and uniquifying the output.
3486       if sort "$nlist" | uniq > "$nlist"T; then
3487         mv -f "$nlist"T "$nlist"
3488       else
3489         rm -f "$nlist"T
3490       fi
3491
3492       # Make sure that we snagged all the symbols we need.
3493       if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
3494         if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
3495           cat <<_LT_EOF > conftest.$ac_ext
3496 #ifdef __cplusplus
3497 extern "C" {
3498 #endif
3499
3500 _LT_EOF
3501           # Now generate the symbol file.
3502           eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
3503
3504           cat <<_LT_EOF >> conftest.$ac_ext
3505
3506 /* The mapping between symbol names and symbols.  */
3507 const struct {
3508   const char *name;
3509   void       *address;
3510 }
3511 lt__PROGRAM__LTX_preloaded_symbols[[]] =
3512 {
3513   { "@PROGRAM@", (void *) 0 },
3514 _LT_EOF
3515           $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
3516           cat <<\_LT_EOF >> conftest.$ac_ext
3517   {0, (void *) 0}
3518 };
3519
3520 /* This works around a problem in FreeBSD linker */
3521 #ifdef FREEBSD_WORKAROUND
3522 static const void *lt_preloaded_setup() {
3523   return lt__PROGRAM__LTX_preloaded_symbols;
3524 }
3525 #endif
3526
3527 #ifdef __cplusplus
3528 }
3529 #endif
3530 _LT_EOF
3531           # Now try linking the two files.
3532           mv conftest.$ac_objext conftstm.$ac_objext
3533           lt_save_LIBS="$LIBS"
3534           lt_save_CFLAGS="$CFLAGS"
3535           LIBS="conftstm.$ac_objext"
3536           CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
3537           if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
3538             pipe_works=yes
3539           fi
3540           LIBS="$lt_save_LIBS"
3541           CFLAGS="$lt_save_CFLAGS"
3542         else
3543           echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
3544         fi
3545       else
3546         echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
3547       fi
3548     else
3549       echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
3550     fi
3551   else
3552     echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
3553     cat conftest.$ac_ext >&5
3554   fi
3555   rm -rf conftest* conftst*
3556
3557   # Do not use the global_symbol_pipe unless it works.
3558   if test "$pipe_works" = yes; then
3559     break
3560   else
3561     lt_cv_sys_global_symbol_pipe=
3562   fi
3563 done
3564 ])
3565 if test -z "$lt_cv_sys_global_symbol_pipe"; then
3566   lt_cv_sys_global_symbol_to_cdecl=
3567 fi
3568 if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
3569   AC_MSG_RESULT(failed)
3570 else
3571   AC_MSG_RESULT(ok)
3572 fi
3573
3574 _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
3575     [Take the output of nm and produce a listing of raw symbols and C names])
3576 _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
3577     [Transform the output of nm in a proper C declaration])
3578 _LT_DECL([global_symbol_to_c_name_address],
3579     [lt_cv_sys_global_symbol_to_c_name_address], [1],
3580     [Transform the output of nm in a C name address pair])
3581 _LT_DECL([global_symbol_to_c_name_address_lib_prefix],
3582     [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
3583     [Transform the output of nm in a C name address pair when lib prefix is needed])
3584 ]) # _LT_CMD_GLOBAL_SYMBOLS
3585
3586
3587 # _LT_COMPILER_PIC([TAGNAME])
3588 # ---------------------------
3589 m4_defun([_LT_COMPILER_PIC],
3590 [m4_require([_LT_TAG_COMPILER])dnl
3591 _LT_TAGVAR(lt_prog_compiler_wl, $1)=
3592 _LT_TAGVAR(lt_prog_compiler_pic, $1)=
3593 _LT_TAGVAR(lt_prog_compiler_static, $1)=
3594
3595 AC_MSG_CHECKING([for $compiler option to produce PIC])
3596 m4_if([$1], [CXX], [
3597   # C++ specific cases for pic, static, wl, etc.
3598   if test "$GXX" = yes; then
3599     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3600     _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
3601
3602     case $host_os in
3603     aix*)
3604       # All AIX code is PIC.
3605       if test "$host_cpu" = ia64; then
3606         # AIX 5 now supports IA64 processor
3607         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3608       fi
3609       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3610       ;;
3611
3612     amigaos*)
3613       case $host_cpu in
3614       powerpc)
3615             # see comment about AmigaOS4 .so support
3616             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3617         ;;
3618       m68k)
3619             # FIXME: we need at least 68020 code to build shared libraries, but
3620             # adding the `-m68020' flag to GCC prevents building anything better,
3621             # like `-m68040'.
3622             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
3623         ;;
3624       esac
3625       ;;
3626
3627     beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
3628       # PIC is the default for these OSes.
3629       ;;
3630     mingw* | cygwin* | os2* | pw32* | cegcc*)
3631       # This hack is so that the source file can tell whether it is being
3632       # built for inclusion in a dll (and should export symbols for example).
3633       # Although the cygwin gcc ignores -fPIC, still need this for old-style
3634       # (--disable-auto-import) libraries
3635       m4_if([$1], [GCJ], [],
3636         [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
3637       ;;
3638     darwin* | rhapsody*)
3639       # PIC is the default on this platform
3640       # Common symbols not allowed in MH_DYLIB files
3641       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
3642       ;;
3643     *djgpp*)
3644       # DJGPP does not support shared libraries at all
3645       _LT_TAGVAR(lt_prog_compiler_pic, $1)=
3646       ;;
3647     haiku*)
3648       # PIC is the default for Haiku.
3649       # The "-static" flag exists, but is broken.
3650       _LT_TAGVAR(lt_prog_compiler_static, $1)=
3651       ;;
3652     interix[[3-9]]*)
3653       # Interix 3.x gcc -fpic/-fPIC options generate broken code.
3654       # Instead, we relocate shared libraries at runtime.
3655       ;;
3656     sysv4*MP*)
3657       if test -d /usr/nec; then
3658         _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
3659       fi
3660       ;;
3661     hpux*)
3662       # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
3663       # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
3664       # sets the default TLS model and affects inlining.
3665       case $host_cpu in
3666       hppa*64*)
3667         ;;
3668       *)
3669         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3670         ;;
3671       esac
3672       ;;
3673     *qnx* | *nto*)
3674       # QNX uses GNU C++, but need to define -shared option too, otherwise
3675       # it will coredump.
3676       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
3677       ;;
3678     *)
3679       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3680       ;;
3681     esac
3682   else
3683     case $host_os in
3684       aix[[4-9]]*)
3685         # All AIX code is PIC.
3686         if test "$host_cpu" = ia64; then
3687           # AIX 5 now supports IA64 processor
3688           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3689         else
3690           _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
3691         fi
3692         ;;
3693       chorus*)
3694         case $cc_basename in
3695         cxch68*)
3696           # Green Hills C++ Compiler
3697           # _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"
3698           ;;
3699         esac
3700         ;;
3701       dgux*)
3702         case $cc_basename in
3703           ec++*)
3704             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
3705             ;;
3706           ghcx*)
3707             # Green Hills C++ Compiler
3708             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
3709             ;;
3710           *)
3711             ;;
3712         esac
3713         ;;
3714       freebsd* | dragonfly*)
3715         # FreeBSD uses GNU C++
3716         ;;
3717       hpux9* | hpux10* | hpux11*)
3718         case $cc_basename in
3719           CC*)
3720             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3721             _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
3722             if test "$host_cpu" != ia64; then
3723               _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
3724             fi
3725             ;;
3726           aCC*)
3727             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3728             _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
3729             case $host_cpu in
3730             hppa*64*|ia64*)
3731               # +Z the default
3732               ;;
3733             *)
3734               _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
3735               ;;
3736             esac
3737             ;;
3738           *)
3739             ;;
3740         esac
3741         ;;
3742       interix*)
3743         # This is c89, which is MS Visual C++ (no shared libs)
3744         # Anyone wants to do a port?
3745         ;;
3746       irix5* | irix6* | nonstopux*)
3747         case $cc_basename in
3748           CC*)
3749             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3750             _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
3751             # CC pic flag -KPIC is the default.
3752             ;;
3753           *)
3754             ;;
3755         esac
3756         ;;
3757       linux* | k*bsd*-gnu | kopensolaris*-gnu)
3758         case $cc_basename in
3759           KCC*)
3760             # KAI C++ Compiler
3761             _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
3762             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3763             ;;
3764           ecpc* )
3765             # old Intel C++ for x86_64 which still supported -KPIC.
3766             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3767             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
3768             _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
3769             ;;
3770           icpc* )
3771             # Intel C++, used to be incompatible with GCC.
3772             # ICC 10 doesn't accept -KPIC any more.
3773             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3774             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3775             _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
3776             ;;
3777           pgCC* | pgcpp*)
3778             # Portland Group C++ compiler
3779             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3780             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
3781             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3782             ;;
3783           cxx*)
3784             # Compaq C++
3785             # Make sure the PIC flag is empty.  It appears that all Alpha
3786             # Linux and Compaq Tru64 Unix objects are PIC.
3787             _LT_TAGVAR(lt_prog_compiler_pic, $1)=
3788             _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
3789             ;;
3790           xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)
3791             # IBM XL 8.0, 9.0 on PPC and BlueGene
3792             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3793             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
3794             _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
3795             ;;
3796           *)
3797             case `$CC -V 2>&1 | sed 5q` in
3798             *Sun\ C*)
3799               # Sun C++ 5.9
3800               _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
3801               _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3802               _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
3803               ;;
3804             esac
3805             ;;
3806         esac
3807         ;;
3808       lynxos*)
3809         ;;
3810       m88k*)
3811         ;;
3812       mvs*)
3813         case $cc_basename in
3814           cxx*)
3815             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
3816             ;;
3817           *)
3818             ;;
3819         esac
3820         ;;
3821       netbsd*)
3822         ;;
3823       *qnx* | *nto*)
3824         # QNX uses GNU C++, but need to define -shared option too, otherwise
3825         # it will coredump.
3826         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
3827         ;;
3828       osf3* | osf4* | osf5*)
3829         case $cc_basename in
3830           KCC*)
3831             _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
3832             ;;
3833           RCC*)
3834             # Rational C++ 2.4.1
3835             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
3836             ;;
3837           cxx*)
3838             # Digital/Compaq C++
3839             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3840             # Make sure the PIC flag is empty.  It appears that all Alpha
3841             # Linux and Compaq Tru64 Unix objects are PIC.
3842             _LT_TAGVAR(lt_prog_compiler_pic, $1)=
3843             _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
3844             ;;
3845           *)
3846             ;;
3847         esac
3848         ;;
3849       psos*)
3850         ;;
3851       solaris*)
3852         case $cc_basename in
3853           CC*)
3854             # Sun C++ 4.2, 5.x and Centerline C++
3855             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
3856             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3857             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
3858             ;;
3859           gcx*)
3860             # Green Hills C++ Compiler
3861             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
3862             ;;
3863           *)
3864             ;;
3865         esac
3866         ;;
3867       sunos4*)
3868         case $cc_basename in
3869           CC*)
3870             # Sun C++ 4.x
3871             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
3872             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3873             ;;
3874           lcc*)
3875             # Lucid
3876             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
3877             ;;
3878           *)
3879             ;;
3880         esac
3881         ;;
3882       sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
3883         case $cc_basename in
3884           CC*)
3885             _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3886             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
3887             _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3888             ;;
3889         esac
3890         ;;
3891       tandem*)
3892         case $cc_basename in
3893           NCC*)
3894             # NonStop-UX NCC 3.20
3895             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
3896             ;;
3897           *)
3898             ;;
3899         esac
3900         ;;
3901       vxworks*)
3902         ;;
3903       *)
3904         _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
3905         ;;
3906     esac
3907   fi
3908 ],
3909 [
3910   if test "$GCC" = yes; then
3911     _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
3912     _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
3913
3914     case $host_os in
3915       aix*)
3916       # All AIX code is PIC.
3917       if test "$host_cpu" = ia64; then
3918         # AIX 5 now supports IA64 processor
3919         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
3920       fi
3921       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3922       ;;
3923
3924     amigaos*)
3925       case $host_cpu in
3926       powerpc)
3927             # see comment about AmigaOS4 .so support
3928             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3929         ;;
3930       m68k)
3931             # FIXME: we need at least 68020 code to build shared libraries, but
3932             # adding the `-m68020' flag to GCC prevents building anything better,
3933             # like `-m68040'.
3934             _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
3935         ;;
3936       esac
3937       ;;
3938
3939     beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
3940       # PIC is the default for these OSes.
3941       ;;
3942
3943     mingw* | cygwin* | pw32* | os2* | cegcc*)
3944       # This hack is so that the source file can tell whether it is being
3945       # built for inclusion in a dll (and should export symbols for example).
3946       # Although the cygwin gcc ignores -fPIC, still need this for old-style
3947       # (--disable-auto-import) libraries
3948       m4_if([$1], [GCJ], [],
3949         [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
3950       ;;
3951
3952     darwin* | rhapsody*)
3953       # PIC is the default on this platform
3954       # Common symbols not allowed in MH_DYLIB files
3955       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
3956       ;;
3957
3958     haiku*)
3959       # PIC is the default for Haiku.
3960       # The "-static" flag exists, but is broken.
3961       _LT_TAGVAR(lt_prog_compiler_static, $1)=
3962       ;;
3963
3964     hpux*)
3965       # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
3966       # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
3967       # sets the default TLS model and affects inlining.
3968       case $host_cpu in
3969       hppa*64*)
3970         # +Z the default
3971         ;;
3972       *)
3973         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
3974         ;;
3975       esac
3976       ;;
3977
3978     interix[[3-9]]*)
3979       # Interix 3.x gcc -fpic/-fPIC options generate broken code.
3980       # Instead, we relocate shared libraries at runtime.
3981       ;;
3982
3983     msdosdjgpp*)
3984       # Just because we use GCC doesn't mean we suddenly get shared libraries
3985       # on systems that don't support them.
3986       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
3987       enable_shared=no
3988       ;;
3989
3990     *nto* | *qnx*)
3991       # QNX uses GNU C++, but need to define -shared option too, otherwise
3992       # it will coredump.
3993       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
3994       ;;
3995
3996     sysv4*MP*)
3997       if test -d /usr/nec; then
3998         _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
3999       fi
4000       ;;
4001
4002     *)
4003       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4004       ;;
4005     esac
4006
4007     case $cc_basename in
4008     nvcc*) # Cuda Compiler Driver 2.2
4009       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
4010       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Xcompiler -fPIC'
4011       ;;
4012     esac
4013   else
4014     # PORTME Check for flag to pass linker flags through the system compiler.
4015     case $host_os in
4016     aix*)
4017       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4018       if test "$host_cpu" = ia64; then
4019         # AIX 5 now supports IA64 processor
4020         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4021       else
4022         _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4023       fi
4024       ;;
4025
4026     mingw* | cygwin* | pw32* | os2* | cegcc*)
4027       # This hack is so that the source file can tell whether it is being
4028       # built for inclusion in a dll (and should export symbols for example).
4029       m4_if([$1], [GCJ], [],
4030         [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4031       ;;
4032
4033     hpux9* | hpux10* | hpux11*)
4034       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4035       # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4036       # not for PA HP-UX.
4037       case $host_cpu in
4038       hppa*64*|ia64*)
4039         # +Z the default
4040         ;;
4041       *)
4042         _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4043         ;;
4044       esac
4045       # Is there a better lt_prog_compiler_static that works with the bundled CC?
4046       _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4047       ;;
4048
4049     irix5* | irix6* | nonstopux*)
4050       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4051       # PIC (with -KPIC) is the default.
4052       _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4053       ;;
4054
4055     linux* | k*bsd*-gnu | kopensolaris*-gnu)
4056       case $cc_basename in
4057       # old Intel for x86_64 which still supported -KPIC.
4058       ecc*)
4059         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4060         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4061         _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4062         ;;
4063       # icc used to be incompatible with GCC.
4064       # ICC 10 doesn't accept -KPIC any more.
4065       icc* | ifort*)
4066         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4067         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4068         _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4069         ;;
4070       # Lahey Fortran 8.1.
4071       lf95*)
4072         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4073         _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
4074         _LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
4075         ;;
4076       pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
4077         # Portland Group compilers (*not* the Pentium gcc compiler,
4078         # which looks to be a dead project)
4079         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4080         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4081         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4082         ;;
4083       ccc*)
4084         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4085         # All Alpha code is PIC.
4086         _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4087         ;;
4088       xl* | bgxl* | bgf* | mpixl*)
4089         # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
4090         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4091         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
4092         _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
4093         ;;
4094       *)
4095         case `$CC -V 2>&1 | sed 5q` in
4096         *Sun\ F* | *Sun*Fortran*)
4097           # Sun Fortran 8.3 passes all unrecognized flags to the linker
4098           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4099           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4100           _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
4101           ;;
4102         *Sun\ C*)
4103           # Sun C 5.9
4104           _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4105           _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4106           _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4107           ;;
4108         esac
4109         ;;
4110       esac
4111       ;;
4112
4113     newsos6)
4114       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4115       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4116       ;;
4117
4118     *nto* | *qnx*)
4119       # QNX uses GNU C++, but need to define -shared option too, otherwise
4120       # it will coredump.
4121       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
4122       ;;
4123
4124     osf3* | osf4* | osf5*)
4125       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4126       # All OSF/1 code is PIC.
4127       _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4128       ;;
4129
4130     rdos*)
4131       _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4132       ;;
4133
4134     solaris*)
4135       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4136       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4137       case $cc_basename in
4138       f77* | f90* | f95*)
4139         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
4140       *)
4141         _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
4142       esac
4143       ;;
4144
4145     sunos4*)
4146       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4147       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4148       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4149       ;;
4150
4151     sysv4 | sysv4.2uw2* | sysv4.3*)
4152       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4153       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4154       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4155       ;;
4156
4157     sysv4*MP*)
4158       if test -d /usr/nec ;then
4159         _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
4160         _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4161       fi
4162       ;;
4163
4164     sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
4165       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4166       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4167       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4168       ;;
4169
4170     unicos*)
4171       _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4172       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4173       ;;
4174
4175     uts4*)
4176       _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4177       _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4178       ;;
4179
4180     *)
4181       _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4182       ;;
4183     esac
4184   fi
4185 ])
4186 case $host_os in
4187   # For platforms which do not support PIC, -DPIC is meaningless:
4188   *djgpp*)
4189     _LT_TAGVAR(lt_prog_compiler_pic, $1)=
4190     ;;
4191   *)
4192     _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
4193     ;;
4194 esac
4195 AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
4196 _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
4197         [How to pass a linker flag through the compiler])
4198
4199 #
4200 # Check to make sure the PIC flag actually works.
4201 #
4202 if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
4203   _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
4204     [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
4205     [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
4206     [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
4207      "" | " "*) ;;
4208      *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
4209      esac],
4210     [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
4211      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
4212 fi
4213 _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
4214         [Additional compiler flags for building library objects])
4215
4216 #
4217 # Check to make sure the static flag actually works.
4218 #
4219 wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
4220 _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
4221   _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
4222   $lt_tmp_static_flag,
4223   [],
4224   [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
4225 _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
4226         [Compiler flag to prevent dynamic linking])
4227 ])# _LT_COMPILER_PIC
4228
4229
4230 # _LT_LINKER_SHLIBS([TAGNAME])
4231 # ----------------------------
4232 # See if the linker supports building shared libraries.
4233 m4_defun([_LT_LINKER_SHLIBS],
4234 [AC_REQUIRE([LT_PATH_LD])dnl
4235 AC_REQUIRE([LT_PATH_NM])dnl
4236 m4_require([_LT_FILEUTILS_DEFAULTS])dnl
4237 m4_require([_LT_DECL_EGREP])dnl
4238 m4_require([_LT_DECL_SED])dnl
4239 m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
4240 m4_require([_LT_TAG_COMPILER])dnl
4241 AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
4242 m4_if([$1], [CXX], [
4243   _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4244   case $host_os in
4245   aix[[4-9]]*)
4246     # If we're using GNU nm, then we don't want the "-C" option.
4247     # -C means demangle to AIX nm, but means don't demangle with GNU nm
4248     # Also, AIX nm treats weak defined symbols like other global defined
4249     # symbols, whereas GNU nm marks them as "W".
4250     if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
4251       _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
4252     else
4253       _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
4254     fi
4255     ;;
4256   pw32*)
4257     _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
4258   ;;
4259   cygwin* | mingw* | cegcc*)
4260     _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
4261   ;;
4262   *)
4263     _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4264   ;;
4265   esac
4266   _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
4267 ], [
4268   runpath_var=
4269   _LT_TAGVAR(allow_undefined_flag, $1)=
4270   _LT_TAGVAR(always_export_symbols, $1)=no
4271   _LT_TAGVAR(archive_cmds, $1)=
4272   _LT_TAGVAR(archive_expsym_cmds, $1)=
4273   _LT_TAGVAR(compiler_needs_object, $1)=no
4274   _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
4275   _LT_TAGVAR(export_dynamic_flag_spec, $1)=
4276   _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4277   _LT_TAGVAR(hardcode_automatic, $1)=no
4278   _LT_TAGVAR(hardcode_direct, $1)=no
4279   _LT_TAGVAR(hardcode_direct_absolute, $1)=no
4280   _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
4281   _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
4282   _LT_TAGVAR(hardcode_libdir_separator, $1)=
4283   _LT_TAGVAR(hardcode_minus_L, $1)=no
4284   _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
4285   _LT_TAGVAR(inherit_rpath, $1)=no
4286   _LT_TAGVAR(link_all_deplibs, $1)=unknown
4287   _LT_TAGVAR(module_cmds, $1)=
4288   _LT_TAGVAR(module_expsym_cmds, $1)=
4289   _LT_TAGVAR(old_archive_from_new_cmds, $1)=
4290   _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
4291   _LT_TAGVAR(thread_safe_flag_spec, $1)=
4292   _LT_TAGVAR(whole_archive_flag_spec, $1)=
4293   # include_expsyms should be a list of space-separated symbols to be *always*
4294   # included in the symbol list
4295   _LT_TAGVAR(include_expsyms, $1)=
4296   # exclude_expsyms can be an extended regexp of symbols to exclude
4297   # it will be wrapped by ` (' and `)$', so one must not match beginning or
4298   # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
4299   # as well as any symbol that contains `d'.
4300   _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
4301   # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
4302   # platforms (ab)use it in PIC code, but their linkers get confused if
4303   # the symbol is explicitly referenced.  Since portable code cannot
4304   # rely on this symbol name, it's probably fine to never include it in
4305   # preloaded symbol tables.
4306   # Exclude shared library initialization/finalization symbols.
4307 dnl Note also adjust exclude_expsyms for C++ above.
4308   extract_expsyms_cmds=
4309
4310   case $host_os in
4311   cygwin* | mingw* | pw32* | cegcc*)
4312     # FIXME: the MSVC++ port hasn't been tested in a loooong time
4313     # When not using gcc, we currently assume that we are using
4314     # Microsoft Visual C++.
4315     if test "$GCC" != yes; then
4316       with_gnu_ld=no
4317     fi
4318     ;;
4319   interix*)
4320     # we just hope/assume this is gcc and not c89 (= MSVC++)
4321     with_gnu_ld=yes
4322     ;;
4323   openbsd*)
4324     with_gnu_ld=no
4325     ;;
4326   esac
4327
4328   _LT_TAGVAR(ld_shlibs, $1)=yes
4329
4330   # On some targets, GNU ld is compatible enough with the native linker
4331   # that we're better off using the native interface for both.
4332   lt_use_gnu_ld_interface=no
4333   if test "$with_gnu_ld" = yes; then
4334     case $host_os in
4335       aix*)
4336         # The AIX port of GNU ld has always aspired to compatibility
4337         # with the native linker.  However, as the warning in the GNU ld
4338         # block says, versions before 2.19.5* couldn't really create working
4339         # shared libraries, regardless of the interface used.
4340         case `$LD -v 2>&1` in
4341           *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
4342           *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;;
4343           *\ \(GNU\ Binutils\)\ [[3-9]]*) ;;
4344           *)
4345             lt_use_gnu_ld_interface=yes
4346             ;;
4347         esac
4348         ;;
4349       *)
4350         lt_use_gnu_ld_interface=yes
4351         ;;
4352     esac
4353   fi
4354
4355   if test "$lt_use_gnu_ld_interface" = yes; then
4356     # If archive_cmds runs LD, not CC, wlarc should be empty
4357     wlarc='${wl}'
4358
4359     # Set some defaults for GNU ld with shared library support. These
4360     # are reset later if shared libraries are not supported. Putting them
4361     # here allows them to be overridden if necessary.
4362     runpath_var=LD_RUN_PATH
4363     _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4364     _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
4365     # ancient GNU ld didn't support --whole-archive et. al.
4366     if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
4367       _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
4368     else
4369       _LT_TAGVAR(whole_archive_flag_spec, $1)=
4370     fi
4371     supports_anon_versioning=no
4372     case `$LD -v 2>&1` in
4373       *GNU\ gold*) supports_anon_versioning=yes ;;
4374       *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
4375       *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
4376       *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
4377       *\ 2.11.*) ;; # other 2.11 versions
4378       *) supports_anon_versioning=yes ;;
4379     esac
4380
4381     # See if GNU ld supports shared libraries.
4382     case $host_os in
4383     aix[[3-9]]*)
4384       # On AIX/PPC, the GNU linker is very broken
4385       if test "$host_cpu" != ia64; then
4386         _LT_TAGVAR(ld_shlibs, $1)=no
4387         cat <<_LT_EOF 1>&2
4388
4389 *** Warning: the GNU linker, at least up to release 2.19, is reported
4390 *** to be unable to reliably create shared libraries on AIX.
4391 *** Therefore, libtool is disabling shared libraries support.  If you
4392 *** really care for shared libraries, you may want to install binutils
4393 *** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
4394 *** You will then need to restart the configuration process.
4395
4396 _LT_EOF
4397       fi
4398       ;;
4399
4400     amigaos*)
4401       case $host_cpu in
4402       powerpc)
4403             # see comment about AmigaOS4 .so support
4404             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4405             _LT_TAGVAR(archive_expsym_cmds, $1)=''
4406         ;;
4407       m68k)
4408             _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
4409             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4410             _LT_TAGVAR(hardcode_minus_L, $1)=yes
4411         ;;
4412       esac
4413       ;;
4414
4415     beos*)
4416       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
4417         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
4418         # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
4419         # support --undefined.  This deserves some investigation.  FIXME
4420         _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4421       else
4422         _LT_TAGVAR(ld_shlibs, $1)=no
4423       fi
4424       ;;
4425
4426     cygwin* | mingw* | pw32* | cegcc*)
4427       # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
4428       # as there is no search path for DLLs.
4429       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4430       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
4431       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
4432       _LT_TAGVAR(always_export_symbols, $1)=no
4433       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
4434       _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
4435
4436       if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
4437         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
4438         # If the export-symbols file already is a .def file (1st line
4439         # is EXPORTS), use it as is; otherwise, prepend...
4440         _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
4441           cp $export_symbols $output_objdir/$soname.def;
4442         else
4443           echo EXPORTS > $output_objdir/$soname.def;
4444           cat $export_symbols >> $output_objdir/$soname.def;
4445         fi~
4446         $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
4447       else
4448         _LT_TAGVAR(ld_shlibs, $1)=no
4449       fi
4450       ;;
4451
4452     haiku*)
4453       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4454       _LT_TAGVAR(link_all_deplibs, $1)=yes
4455       ;;
4456
4457     interix[[3-9]]*)
4458       _LT_TAGVAR(hardcode_direct, $1)=no
4459       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4460       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
4461       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4462       # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
4463       # Instead, shared libraries are loaded at an image base (0x10000000 by
4464       # default) and relocated if they conflict, which is a slow very memory
4465       # consuming and fragmenting process.  To avoid this, we pick a random,
4466       # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
4467       # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
4468       _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
4469       _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
4470       ;;
4471
4472     gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu | uclinuxfdpiceabi)
4473       tmp_diet=no
4474       if test "$host_os" = linux-dietlibc; then
4475         case $cc_basename in
4476           diet\ *) tmp_diet=yes;;       # linux-dietlibc with static linking (!diet-dyn)
4477         esac
4478       fi
4479       if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
4480          && test "$tmp_diet" = no
4481       then
4482         tmp_addflag=' $pic_flag'
4483         tmp_sharedflag='-shared'
4484         case $cc_basename,$host_cpu in
4485         pgcc*)                          # Portland Group C compiler
4486           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
4487           tmp_addflag=' $pic_flag'
4488           ;;
4489         pgf77* | pgf90* | pgf95* | pgfortran*)
4490                                         # Portland Group f77 and f90 compilers
4491           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
4492           tmp_addflag=' $pic_flag -Mnomain' ;;
4493         ecc*,ia64* | icc*,ia64*)        # Intel C compiler on ia64
4494           tmp_addflag=' -i_dynamic' ;;
4495         efc*,ia64* | ifort*,ia64*)      # Intel Fortran compiler on ia64
4496           tmp_addflag=' -i_dynamic -nofor_main' ;;
4497         ifc* | ifort*)                  # Intel Fortran compiler
4498           tmp_addflag=' -nofor_main' ;;
4499         lf95*)                          # Lahey Fortran 8.1
4500           _LT_TAGVAR(whole_archive_flag_spec, $1)=
4501           tmp_sharedflag='--shared' ;;
4502         xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
4503           tmp_sharedflag='-qmkshrobj'
4504           tmp_addflag= ;;
4505         nvcc*)  # Cuda Compiler Driver 2.2
4506           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
4507           _LT_TAGVAR(compiler_needs_object, $1)=yes
4508           ;;
4509         esac
4510         case `$CC -V 2>&1 | sed 5q` in
4511         *Sun\ C*)                       # Sun C 5.9
4512           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
4513           _LT_TAGVAR(compiler_needs_object, $1)=yes
4514           tmp_sharedflag='-G' ;;
4515         *Sun\ F*)                       # Sun Fortran 8.3
4516           tmp_sharedflag='-G' ;;
4517         esac
4518         _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4519
4520         if test "x$supports_anon_versioning" = xyes; then
4521           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
4522             cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
4523             echo "local: *; };" >> $output_objdir/$libname.ver~
4524             $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
4525         fi
4526
4527         case $cc_basename in
4528         xlf* | bgf* | bgxlf* | mpixlf*)
4529           # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
4530           _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
4531           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
4532           _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
4533           _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib'
4534           if test "x$supports_anon_versioning" = xyes; then
4535             _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
4536               cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
4537               echo "local: *; };" >> $output_objdir/$libname.ver~
4538               $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
4539           fi
4540           ;;
4541         esac
4542       else
4543         _LT_TAGVAR(ld_shlibs, $1)=no
4544       fi
4545       ;;
4546
4547     netbsd*)
4548       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
4549         _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
4550         wlarc=
4551       else
4552         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4553         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
4554       fi
4555       ;;
4556
4557     solaris*)
4558       if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
4559         _LT_TAGVAR(ld_shlibs, $1)=no
4560         cat <<_LT_EOF 1>&2
4561
4562 *** Warning: The releases 2.8.* of the GNU linker cannot reliably
4563 *** create shared libraries on Solaris systems.  Therefore, libtool
4564 *** is disabling shared libraries support.  We urge you to upgrade GNU
4565 *** binutils to release 2.9.1 or newer.  Another option is to modify
4566 *** your PATH or compiler configuration so that the native linker is
4567 *** used, and then restart.
4568
4569 _LT_EOF
4570       elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
4571         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4572         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
4573       else
4574         _LT_TAGVAR(ld_shlibs, $1)=no
4575       fi
4576       ;;
4577
4578     sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
4579       case `$LD -v 2>&1` in
4580         *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
4581         _LT_TAGVAR(ld_shlibs, $1)=no
4582         cat <<_LT_EOF 1>&2
4583
4584 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
4585 *** reliably create shared libraries on SCO systems.  Therefore, libtool
4586 *** is disabling shared libraries support.  We urge you to upgrade GNU
4587 *** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
4588 *** your PATH or compiler configuration so that the native linker is
4589 *** used, and then restart.
4590
4591 _LT_EOF
4592         ;;
4593         *)
4594           # For security reasons, it is highly recommended that you always
4595           # use absolute paths for naming shared libraries, and exclude the
4596           # DT_RUNPATH tag from executables and libraries.  But doing so
4597           # requires that you compile everything twice, which is a pain.
4598           if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
4599             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4600             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4601             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
4602           else
4603             _LT_TAGVAR(ld_shlibs, $1)=no
4604           fi
4605         ;;
4606       esac
4607       ;;
4608
4609     sunos4*)
4610       _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
4611       wlarc=
4612       _LT_TAGVAR(hardcode_direct, $1)=yes
4613       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4614       ;;
4615
4616     *)
4617       if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
4618         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4619         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
4620       else
4621         _LT_TAGVAR(ld_shlibs, $1)=no
4622       fi
4623       ;;
4624     esac
4625
4626     if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then
4627       runpath_var=
4628       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
4629       _LT_TAGVAR(export_dynamic_flag_spec, $1)=
4630       _LT_TAGVAR(whole_archive_flag_spec, $1)=
4631     fi
4632   else
4633     # PORTME fill in a description of your system's linker (not GNU ld)
4634     case $host_os in
4635     aix3*)
4636       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
4637       _LT_TAGVAR(always_export_symbols, $1)=yes
4638       _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname'
4639       # Note: this linker hardcodes the directories in LIBPATH if there
4640       # are no directories specified by -L.
4641       _LT_TAGVAR(hardcode_minus_L, $1)=yes
4642       if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
4643         # Neither direct hardcoding nor static linking is supported with a
4644         # broken collect2.
4645         _LT_TAGVAR(hardcode_direct, $1)=unsupported
4646       fi
4647       ;;
4648
4649     aix[[4-9]]*)
4650       if test "$host_cpu" = ia64; then
4651         # On IA64, the linker does run time linking by default, so we don't
4652         # have to do anything special.
4653         aix_use_runtimelinking=no
4654         exp_sym_flag='-Bexport'
4655         no_entry_flag=""
4656       else
4657         # If we're using GNU nm, then we don't want the "-C" option.
4658         # -C means demangle to AIX nm, but means don't demangle with GNU nm
4659         # Also, AIX nm treats weak defined symbols like other global
4660         # defined symbols, whereas GNU nm marks them as "W".
4661         if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
4662           _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
4663         else
4664           _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols'
4665         fi
4666         aix_use_runtimelinking=no
4667
4668         # Test if we are trying to use run time linking or normal
4669         # AIX style linking. If -brtl is somewhere in LDFLAGS, we
4670         # need to do runtime linking.
4671         case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
4672           for ld_flag in $LDFLAGS; do
4673           if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
4674             aix_use_runtimelinking=yes
4675             break
4676           fi
4677           done
4678           ;;
4679         esac
4680
4681         exp_sym_flag='-bexport'
4682         no_entry_flag='-bnoentry'
4683       fi
4684
4685       # When large executables or shared objects are built, AIX ld can
4686       # have problems creating the table of contents.  If linking a library
4687       # or program results in "error TOC overflow" add -mminimal-toc to
4688       # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
4689       # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
4690
4691       _LT_TAGVAR(archive_cmds, $1)=''
4692       _LT_TAGVAR(hardcode_direct, $1)=yes
4693       _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
4694       _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
4695       _LT_TAGVAR(link_all_deplibs, $1)=yes
4696       _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
4697
4698       if test "$GCC" = yes; then
4699         case $host_os in aix4.[[012]]|aix4.[[012]].*)
4700         # We only want to do this on AIX 4.2 and lower, the check
4701         # below for broken collect2 doesn't work under 4.3+
4702           collect2name=`${CC} -print-prog-name=collect2`
4703           if test -f "$collect2name" &&
4704            strings "$collect2name" | $GREP resolve_lib_name >/dev/null
4705           then
4706           # We have reworked collect2
4707           :
4708           else
4709           # We have old collect2
4710           _LT_TAGVAR(hardcode_direct, $1)=unsupported
4711           # It fails to find uninstalled libraries when the uninstalled
4712           # path is not listed in the libpath.  Setting hardcode_minus_L
4713           # to unsupported forces relinking
4714           _LT_TAGVAR(hardcode_minus_L, $1)=yes
4715           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4716           _LT_TAGVAR(hardcode_libdir_separator, $1)=
4717           fi
4718           ;;
4719         esac
4720         shared_flag='-shared'
4721         if test "$aix_use_runtimelinking" = yes; then
4722           shared_flag="$shared_flag "'${wl}-G'
4723         fi
4724       else
4725         # not using gcc
4726         if test "$host_cpu" = ia64; then
4727         # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
4728         # chokes on -Wl,-G. The following line is correct:
4729           shared_flag='-G'
4730         else
4731           if test "$aix_use_runtimelinking" = yes; then
4732             shared_flag='${wl}-G'
4733           else
4734             shared_flag='${wl}-bM:SRE'
4735           fi
4736         fi
4737       fi
4738
4739       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
4740       # It seems that -bexpall does not export symbols beginning with
4741       # underscore (_), so it is better to generate a list of symbols to export.
4742       _LT_TAGVAR(always_export_symbols, $1)=yes
4743       if test "$aix_use_runtimelinking" = yes; then
4744         # Warning - without using the other runtime loading flags (-brtl),
4745         # -berok will link without error, but may produce a broken library.
4746         _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
4747         # Determine the default libpath from the value encoded in an
4748         # empty executable.
4749         _LT_SYS_MODULE_PATH_AIX
4750         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
4751         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
4752       else
4753         if test "$host_cpu" = ia64; then
4754           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
4755           _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
4756           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
4757         else
4758          # Determine the default libpath from the value encoded in an
4759          # empty executable.
4760          _LT_SYS_MODULE_PATH_AIX
4761          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
4762           # Warning - without using the other run time loading flags,
4763           # -berok will link without error, but may produce a broken library.
4764           _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
4765           _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
4766           if test "$with_gnu_ld" = yes; then
4767             # We only use this code for GNU lds that support --whole-archive.
4768             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
4769           else
4770             # Exported symbols can be pulled into shared objects from archives
4771             _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
4772           fi
4773           _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
4774           # This is similar to how AIX traditionally builds its shared libraries.
4775           _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
4776         fi
4777       fi
4778       ;;
4779
4780     amigaos*)
4781       case $host_cpu in
4782       powerpc)
4783             # see comment about AmigaOS4 .so support
4784             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4785             _LT_TAGVAR(archive_expsym_cmds, $1)=''
4786         ;;
4787       m68k)
4788             _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)'
4789             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4790             _LT_TAGVAR(hardcode_minus_L, $1)=yes
4791         ;;
4792       esac
4793       ;;
4794
4795     bsdi[[45]]*)
4796       _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
4797       ;;
4798
4799     cygwin* | mingw* | pw32* | cegcc*)
4800       # When not using gcc, we currently assume that we are using
4801       # Microsoft Visual C++.
4802       # hardcode_libdir_flag_spec is actually meaningless, as there is
4803       # no search path for DLLs.
4804       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
4805       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
4806       # Tell ltmain to make .lib files, not .a files.
4807       libext=lib
4808       # Tell ltmain to make .dll files, not .so files.
4809       shrext_cmds=".dll"
4810       # FIXME: Setting linknames here is a bad hack.
4811       _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
4812       # The linker will automatically build a .lib file if we build a DLL.
4813       _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
4814       # FIXME: Should let the user specify the lib program.
4815       _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
4816       _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
4817       _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
4818       ;;
4819
4820     darwin* | rhapsody*)
4821       _LT_DARWIN_LINKER_FEATURES($1)
4822       ;;
4823
4824     dgux*)
4825       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
4826       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4827       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4828       ;;
4829
4830     # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
4831     # support.  Future versions do this automatically, but an explicit c++rt0.o
4832     # does not break anything, and helps significantly (at the cost of a little
4833     # extra space).
4834     freebsd2.2*)
4835       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
4836       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
4837       _LT_TAGVAR(hardcode_direct, $1)=yes
4838       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4839       ;;
4840
4841     # Unfortunately, older versions of FreeBSD 2 do not have this feature.
4842     freebsd2.*)
4843       _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
4844       _LT_TAGVAR(hardcode_direct, $1)=yes
4845       _LT_TAGVAR(hardcode_minus_L, $1)=yes
4846       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4847       ;;
4848
4849     # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
4850     freebsd* | dragonfly*)
4851       _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
4852       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
4853       _LT_TAGVAR(hardcode_direct, $1)=yes
4854       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4855       ;;
4856
4857     hpux9*)
4858       if test "$GCC" = yes; then
4859         _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
4860       else
4861         _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
4862       fi
4863       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4864       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
4865       _LT_TAGVAR(hardcode_direct, $1)=yes
4866
4867       # hardcode_minus_L: Not really in the search PATH,
4868       # but as the default location of the library.
4869       _LT_TAGVAR(hardcode_minus_L, $1)=yes
4870       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4871       ;;
4872
4873     hpux10*)
4874       if test "$GCC" = yes && test "$with_gnu_ld" = no; then
4875         _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
4876       else
4877         _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
4878       fi
4879       if test "$with_gnu_ld" = no; then
4880         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4881         _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
4882         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
4883         _LT_TAGVAR(hardcode_direct, $1)=yes
4884         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
4885         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4886         # hardcode_minus_L: Not really in the search PATH,
4887         # but as the default location of the library.
4888         _LT_TAGVAR(hardcode_minus_L, $1)=yes
4889       fi
4890       ;;
4891
4892     hpux11*)
4893       if test "$GCC" = yes && test "$with_gnu_ld" = no; then
4894         case $host_cpu in
4895         hppa*64*)
4896           _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
4897           ;;
4898         ia64*)
4899           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
4900           ;;
4901         *)
4902           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
4903           ;;
4904         esac
4905       else
4906         case $host_cpu in
4907         hppa*64*)
4908           _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
4909           ;;
4910         ia64*)
4911           _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
4912           ;;
4913         *)
4914         m4_if($1, [], [
4915           # Older versions of the 11.00 compiler do not understand -b yet
4916           # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
4917           _LT_LINKER_OPTION([if $CC understands -b],
4918             _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
4919             [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
4920             [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
4921           [_LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
4922           ;;
4923         esac
4924       fi
4925       if test "$with_gnu_ld" = no; then
4926         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4927         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
4928
4929         case $host_cpu in
4930         hppa*64*|ia64*)
4931           _LT_TAGVAR(hardcode_direct, $1)=no
4932           _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4933           ;;
4934         *)
4935           _LT_TAGVAR(hardcode_direct, $1)=yes
4936           _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
4937           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4938
4939           # hardcode_minus_L: Not really in the search PATH,
4940           # but as the default location of the library.
4941           _LT_TAGVAR(hardcode_minus_L, $1)=yes
4942           ;;
4943         esac
4944       fi
4945       ;;
4946
4947     irix5* | irix6* | nonstopux*)
4948       if test "$GCC" = yes; then
4949         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
4950         # Try to use the -exported_symbol ld option, if it does not
4951         # work, assume that -exports_file does not work either and
4952         # implicitly export all symbols.
4953         save_LDFLAGS="$LDFLAGS"
4954         LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null"
4955         AC_LINK_IFELSE([AC_LANG_SOURCE([int foo(void) {}])],
4956           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib'
4957         )
4958         LDFLAGS="$save_LDFLAGS"
4959       else
4960         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
4961         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib'
4962       fi
4963       _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
4964       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4965       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
4966       _LT_TAGVAR(inherit_rpath, $1)=yes
4967       _LT_TAGVAR(link_all_deplibs, $1)=yes
4968       ;;
4969
4970     netbsd*)
4971       if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
4972         _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
4973       else
4974         _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
4975       fi
4976       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
4977       _LT_TAGVAR(hardcode_direct, $1)=yes
4978       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4979       ;;
4980
4981     newsos6)
4982       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
4983       _LT_TAGVAR(hardcode_direct, $1)=yes
4984       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4985       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
4986       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4987       ;;
4988
4989     *nto* | *qnx*)
4990       ;;
4991
4992     openbsd*)
4993       if test -f /usr/libexec/ld.so; then
4994         _LT_TAGVAR(hardcode_direct, $1)=yes
4995         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
4996         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
4997         if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
4998           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
4999           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
5000           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5001           _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5002         else
5003           case $host_os in
5004            openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
5005              _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5006              _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5007              ;;
5008            *)
5009              _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5010              _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5011              ;;
5012           esac
5013         fi
5014       else
5015         _LT_TAGVAR(ld_shlibs, $1)=no
5016       fi
5017       ;;
5018
5019     os2*)
5020       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5021       _LT_TAGVAR(hardcode_minus_L, $1)=yes
5022       _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5023       _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~echo DATA >> $output_objdir/$libname.def~echo " SINGLE NONSHARED" >> $output_objdir/$libname.def~echo EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
5024       _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
5025       ;;
5026
5027     osf3*)
5028       if test "$GCC" = yes; then
5029         _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5030         _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5031       else
5032         _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5033         _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
5034       fi
5035       _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
5036       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5037       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5038       ;;
5039
5040     osf4* | osf5*)      # as osf3* with the addition of -msym flag
5041       if test "$GCC" = yes; then
5042         _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5043         _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5044         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5045       else
5046         _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5047         _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
5048         _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~
5049         $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp'
5050
5051         # Both c and cxx compiler support -rpath directly
5052         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
5053       fi
5054       _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
5055       _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5056       ;;
5057
5058     solaris*)
5059       _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
5060       if test "$GCC" = yes; then
5061         wlarc='${wl}'
5062         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5063         _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
5064           $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
5065       else
5066         case `$CC -V 2>&1` in
5067         *"Compilers 5.0"*)
5068           wlarc=''
5069           _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
5070           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
5071           $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
5072           ;;
5073         *)
5074           wlarc='${wl}'
5075           _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags'
5076           _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
5077           $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
5078           ;;
5079         esac
5080       fi
5081       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5082       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5083       case $host_os in
5084       solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5085       *)
5086         # The compiler driver will combine and reorder linker options,
5087         # but understands `-z linker_flag'.  GCC discards it without `$wl',
5088         # but is careful enough not to reorder.
5089         # Supported since Solaris 2.6 (maybe 2.5.1?)
5090         if test "$GCC" = yes; then
5091           _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
5092         else
5093           _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
5094         fi
5095         ;;
5096       esac
5097       _LT_TAGVAR(link_all_deplibs, $1)=yes
5098       ;;
5099
5100     sunos4*)
5101       if test "x$host_vendor" = xsequent; then
5102         # Use $CC to link under sequent, because it throws in some extra .o
5103         # files that make .init and .fini sections work.
5104         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
5105       else
5106         _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
5107       fi
5108       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5109       _LT_TAGVAR(hardcode_direct, $1)=yes
5110       _LT_TAGVAR(hardcode_minus_L, $1)=yes
5111       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5112       ;;
5113
5114     sysv4)
5115       case $host_vendor in
5116         sni)
5117           _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5118           _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
5119         ;;
5120         siemens)
5121           ## LD is ld it makes a PLAMLIB
5122           ## CC just makes a GrossModule.
5123           _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
5124           _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
5125           _LT_TAGVAR(hardcode_direct, $1)=no
5126         ;;
5127         motorola)
5128           _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5129           _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
5130         ;;
5131       esac
5132       runpath_var='LD_RUN_PATH'
5133       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5134       ;;
5135
5136     sysv4.3*)
5137       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5138       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5139       _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
5140       ;;
5141
5142     sysv4*MP*)
5143       if test -d /usr/nec; then
5144         _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5145         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5146         runpath_var=LD_RUN_PATH
5147         hardcode_runpath_var=yes
5148         _LT_TAGVAR(ld_shlibs, $1)=yes
5149       fi
5150       ;;
5151
5152     sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
5153       _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5154       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
5155       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5156       runpath_var='LD_RUN_PATH'
5157
5158       if test "$GCC" = yes; then
5159         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5160         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5161       else
5162         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5163         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5164       fi
5165       ;;
5166
5167     sysv5* | sco3.2v5* | sco5v6*)
5168       # Note: We can NOT use -z defs as we might desire, because we do not
5169       # link with -lc, and that would cause any symbols used from libc to
5170       # always be unresolved, which means just about no library would
5171       # ever link correctly.  If we're not using GNU ld we use -z text
5172       # though, which does catch some bad symbols but isn't as heavy-handed
5173       # as -z defs.
5174       _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5175       _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
5176       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
5177       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5178       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
5179       _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
5180       _LT_TAGVAR(link_all_deplibs, $1)=yes
5181       _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
5182       runpath_var='LD_RUN_PATH'
5183
5184       if test "$GCC" = yes; then
5185         _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5186         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5187       else
5188         _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5189         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5190       fi
5191       ;;
5192
5193     uts4*)
5194       _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5195       _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5196       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5197       ;;
5198
5199     *)
5200       _LT_TAGVAR(ld_shlibs, $1)=no
5201       ;;
5202     esac
5203
5204     if test x$host_vendor = xsni; then
5205       case $host in
5206       sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
5207         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym'
5208         ;;
5209       esac
5210     fi
5211   fi
5212 ])
5213 AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
5214 test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
5215
5216 _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
5217
5218 _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
5219 _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
5220 _LT_DECL([], [extract_expsyms_cmds], [2],
5221     [The commands to extract the exported symbol list from a shared archive])
5222
5223 #
5224 # Do we need to explicitly link libc?
5225 #
5226 case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
5227 x|xyes)
5228   # Assume -lc should be added
5229   _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
5230
5231   if test "$enable_shared" = yes && test "$GCC" = yes; then
5232     case $_LT_TAGVAR(archive_cmds, $1) in
5233     *'~'*)
5234       # FIXME: we may have to deal with multi-command sequences.
5235       ;;
5236     '$CC '*)
5237       # Test whether the compiler implicitly links with -lc since on some
5238       # systems, -lgcc has to come before -lc. If gcc already passes -lc
5239       # to ld, don't add -lc before -lgcc.
5240       AC_CACHE_CHECK([whether -lc should be explicitly linked in],
5241         [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),
5242         [$RM conftest*
5243         echo "$lt_simple_compile_test_code" > conftest.$ac_ext
5244
5245         if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
5246           soname=conftest
5247           lib=conftest
5248           libobjs=conftest.$ac_objext
5249           deplibs=
5250           wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
5251           pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
5252           compiler_flags=-v
5253           linker_flags=-v
5254           verstring=
5255           output_objdir=.
5256           libname=conftest
5257           lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
5258           _LT_TAGVAR(allow_undefined_flag, $1)=
5259           if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
5260           then
5261             lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no
5262           else
5263             lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes
5264           fi
5265           _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
5266         else
5267           cat conftest.err 1>&5
5268         fi
5269         $RM conftest*
5270         ])
5271       _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)
5272       ;;
5273     esac
5274   fi
5275   ;;
5276 esac
5277
5278 _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
5279     [Whether or not to add -lc for building shared libraries])
5280 _LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
5281     [enable_shared_with_static_runtimes], [0],
5282     [Whether or not to disallow shared libs when runtime libs are static])
5283 _LT_TAGDECL([], [export_dynamic_flag_spec], [1],
5284     [Compiler flag to allow reflexive dlopens])
5285 _LT_TAGDECL([], [whole_archive_flag_spec], [1],
5286     [Compiler flag to generate shared objects directly from archives])
5287 _LT_TAGDECL([], [compiler_needs_object], [1],
5288     [Whether the compiler copes with passing no objects directly])
5289 _LT_TAGDECL([], [old_archive_from_new_cmds], [2],
5290     [Create an old-style archive from a shared archive])
5291 _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
5292     [Create a temporary old-style archive to link instead of a shared archive])
5293 _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
5294 _LT_TAGDECL([], [archive_expsym_cmds], [2])
5295 _LT_TAGDECL([], [module_cmds], [2],
5296     [Commands used to build a loadable module if different from building
5297     a shared archive.])
5298 _LT_TAGDECL([], [module_expsym_cmds], [2])
5299 _LT_TAGDECL([], [with_gnu_ld], [1],
5300     [Whether we are building with GNU ld or not])
5301 _LT_TAGDECL([], [allow_undefined_flag], [1],
5302     [Flag that allows shared libraries with undefined symbols to be built])
5303 _LT_TAGDECL([], [no_undefined_flag], [1],
5304     [Flag that enforces no undefined symbols])
5305 _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
5306     [Flag to hardcode $libdir into a binary during linking.
5307     This must work even if $libdir does not exist])
5308 _LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1],
5309     [[If ld is used when linking, flag to hardcode $libdir into a binary
5310     during linking.  This must work even if $libdir does not exist]])
5311 _LT_TAGDECL([], [hardcode_libdir_separator], [1],
5312     [Whether we need a single "-rpath" flag with a separated argument])
5313 _LT_TAGDECL([], [hardcode_direct], [0],
5314     [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
5315     DIR into the resulting binary])
5316 _LT_TAGDECL([], [hardcode_direct_absolute], [0],
5317     [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes
5318     DIR into the resulting binary and the resulting library dependency is
5319     "absolute", i.e impossible to change by setting ${shlibpath_var} if the
5320     library is relocated])
5321 _LT_TAGDECL([], [hardcode_minus_L], [0],
5322     [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
5323     into the resulting binary])
5324 _LT_TAGDECL([], [hardcode_shlibpath_var], [0],
5325     [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
5326     into the resulting binary])
5327 _LT_TAGDECL([], [hardcode_automatic], [0],
5328     [Set to "yes" if building a shared library automatically hardcodes DIR
5329     into the library and all subsequent libraries and executables linked
5330     against it])
5331 _LT_TAGDECL([], [inherit_rpath], [0],
5332     [Set to yes if linker adds runtime paths of dependent libraries
5333     to runtime path list])
5334 _LT_TAGDECL([], [link_all_deplibs], [0],
5335     [Whether libtool must link a program against all its dependency libraries])
5336 _LT_TAGDECL([], [fix_srcfile_path], [1],
5337     [Fix the shell variable $srcfile for the compiler])
5338 _LT_TAGDECL([], [always_export_symbols], [0],
5339     [Set to "yes" if exported symbols are required])
5340 _LT_TAGDECL([], [export_symbols_cmds], [2],
5341     [The commands to list exported symbols])
5342 _LT_TAGDECL([], [exclude_expsyms], [1],
5343     [Symbols that should not be listed in the preloaded symbols])
5344 _LT_TAGDECL([], [include_expsyms], [1],
5345     [Symbols that must always be exported])
5346 _LT_TAGDECL([], [prelink_cmds], [2],
5347     [Commands necessary for linking programs (against libraries) with templates])
5348 _LT_TAGDECL([], [file_list_spec], [1],
5349     [Specify filename containing input files])
5350 dnl FIXME: Not yet implemented
5351 dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
5352 dnl    [Compiler flag to generate thread safe objects])
5353 ])# _LT_LINKER_SHLIBS
5354
5355
5356 # _LT_LANG_C_CONFIG([TAG])
5357 # ------------------------
5358 # Ensure that the configuration variables for a C compiler are suitably
5359 # defined.  These variables are subsequently used by _LT_CONFIG to write
5360 # the compiler configuration to `libtool'.
5361 m4_defun([_LT_LANG_C_CONFIG],
5362 [m4_require([_LT_DECL_EGREP])dnl
5363 lt_save_CC="$CC"
5364 AC_LANG_PUSH(C)
5365
5366 # Source file extension for C test sources.
5367 ac_ext=c
5368
5369 # Object file extension for compiled C test sources.
5370 objext=o
5371 _LT_TAGVAR(objext, $1)=$objext
5372
5373 # Code to be used in simple compile tests
5374 lt_simple_compile_test_code="int some_variable = 0;"
5375
5376 # Code to be used in simple link tests
5377 lt_simple_link_test_code='int main(){return(0);}'
5378
5379 _LT_TAG_COMPILER
5380 # Save the default compiler, since it gets overwritten when the other
5381 # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
5382 compiler_DEFAULT=$CC
5383
5384 # save warnings/boilerplate of simple test code
5385 _LT_COMPILER_BOILERPLATE
5386 _LT_LINKER_BOILERPLATE
5387
5388 ## CAVEAT EMPTOR:
5389 ## There is no encapsulation within the following macros, do not change
5390 ## the running order or otherwise move them around unless you know exactly
5391 ## what you are doing...
5392 if test -n "$compiler"; then
5393   _LT_COMPILER_NO_RTTI($1)
5394   _LT_COMPILER_PIC($1)
5395   _LT_COMPILER_C_O($1)
5396   _LT_COMPILER_FILE_LOCKS($1)
5397   _LT_LINKER_SHLIBS($1)
5398   _LT_SYS_DYNAMIC_LINKER($1)
5399   _LT_LINKER_HARDCODE_LIBPATH($1)
5400   LT_SYS_DLOPEN_SELF
5401   _LT_CMD_STRIPLIB
5402
5403   # Report which library types will actually be built
5404   AC_MSG_CHECKING([if libtool supports shared libraries])
5405   AC_MSG_RESULT([$can_build_shared])
5406
5407   AC_MSG_CHECKING([whether to build shared libraries])
5408   test "$can_build_shared" = "no" && enable_shared=no
5409
5410   # On AIX, shared libraries and static libraries use the same namespace, and
5411   # are all built from PIC.
5412   case $host_os in
5413   aix3*)
5414     test "$enable_shared" = yes && enable_static=no
5415     if test -n "$RANLIB"; then
5416       archive_cmds="$archive_cmds~\$RANLIB \$lib"
5417       postinstall_cmds='$RANLIB $lib'
5418     fi
5419     ;;
5420
5421   aix[[4-9]]*)
5422     if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
5423       test "$enable_shared" = yes && enable_static=no
5424     fi
5425     ;;
5426   esac
5427   AC_MSG_RESULT([$enable_shared])
5428
5429   AC_MSG_CHECKING([whether to build static libraries])
5430   # Make sure either enable_shared or enable_static is yes.
5431   test "$enable_shared" = yes || enable_static=yes
5432   AC_MSG_RESULT([$enable_static])
5433
5434   _LT_CONFIG($1)
5435 fi
5436 AC_LANG_POP
5437 CC="$lt_save_CC"
5438 ])# _LT_LANG_C_CONFIG
5439
5440
5441 # _LT_LANG_CXX_CONFIG([TAG])
5442 # --------------------------
5443 # Ensure that the configuration variables for a C++ compiler are suitably
5444 # defined.  These variables are subsequently used by _LT_CONFIG to write
5445 # the compiler configuration to `libtool'.
5446 m4_defun([_LT_LANG_CXX_CONFIG],
5447 [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
5448 m4_require([_LT_DECL_EGREP])dnl
5449 if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
5450     ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
5451     (test "X$CXX" != "Xg++"))) ; then
5452   AC_PROG_CXXCPP
5453 else
5454   _lt_caught_CXX_error=yes
5455 fi
5456
5457 AC_LANG_PUSH(C++)
5458 _LT_TAGVAR(archive_cmds_need_lc, $1)=no
5459 _LT_TAGVAR(allow_undefined_flag, $1)=
5460 _LT_TAGVAR(always_export_symbols, $1)=no
5461 _LT_TAGVAR(archive_expsym_cmds, $1)=
5462 _LT_TAGVAR(compiler_needs_object, $1)=no
5463 _LT_TAGVAR(export_dynamic_flag_spec, $1)=
5464 _LT_TAGVAR(hardcode_direct, $1)=no
5465 _LT_TAGVAR(hardcode_direct_absolute, $1)=no
5466 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
5467 _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
5468 _LT_TAGVAR(hardcode_libdir_separator, $1)=
5469 _LT_TAGVAR(hardcode_minus_L, $1)=no
5470 _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5471 _LT_TAGVAR(hardcode_automatic, $1)=no
5472 _LT_TAGVAR(inherit_rpath, $1)=no
5473 _LT_TAGVAR(module_cmds, $1)=
5474 _LT_TAGVAR(module_expsym_cmds, $1)=
5475 _LT_TAGVAR(link_all_deplibs, $1)=unknown
5476 _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
5477 _LT_TAGVAR(reload_flag, $1)=$reload_flag
5478 _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
5479 _LT_TAGVAR(no_undefined_flag, $1)=
5480 _LT_TAGVAR(whole_archive_flag_spec, $1)=
5481 _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
5482
5483 # Source file extension for C++ test sources.
5484 ac_ext=cpp
5485
5486 # Object file extension for compiled C++ test sources.
5487 objext=o
5488 _LT_TAGVAR(objext, $1)=$objext
5489
5490 # No sense in running all these tests if we already determined that
5491 # the CXX compiler isn't working.  Some variables (like enable_shared)
5492 # are currently assumed to apply to all compilers on this platform,
5493 # and will be corrupted by setting them based on a non-working compiler.
5494 if test "$_lt_caught_CXX_error" != yes; then
5495   # Code to be used in simple compile tests
5496   lt_simple_compile_test_code="int some_variable = 0;"
5497
5498   # Code to be used in simple link tests
5499   lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
5500
5501   # ltmain only uses $CC for tagged configurations so make sure $CC is set.
5502   _LT_TAG_COMPILER
5503
5504   # save warnings/boilerplate of simple test code
5505   _LT_COMPILER_BOILERPLATE
5506   _LT_LINKER_BOILERPLATE
5507
5508   # Allow CC to be a program name with arguments.
5509   lt_save_CC=$CC
5510   lt_save_LD=$LD
5511   lt_save_GCC=$GCC
5512   GCC=$GXX
5513   lt_save_with_gnu_ld=$with_gnu_ld
5514   lt_save_path_LD=$lt_cv_path_LD
5515   if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
5516     lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
5517   else
5518     $as_unset lt_cv_prog_gnu_ld
5519   fi
5520   if test -n "${lt_cv_path_LDCXX+set}"; then
5521     lt_cv_path_LD=$lt_cv_path_LDCXX
5522   else
5523     $as_unset lt_cv_path_LD
5524   fi
5525   test -z "${LDCXX+set}" || LD=$LDCXX
5526   CC=${CXX-"c++"}
5527   compiler=$CC
5528   _LT_TAGVAR(compiler, $1)=$CC
5529   _LT_CC_BASENAME([$compiler])
5530
5531   if test -n "$compiler"; then
5532     # We don't want -fno-exception when compiling C++ code, so set the
5533     # no_builtin_flag separately
5534     if test "$GXX" = yes; then
5535       _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
5536     else
5537       _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
5538     fi
5539
5540     if test "$GXX" = yes; then
5541       # Set up default GNU C++ configuration
5542
5543       LT_PATH_LD
5544
5545       # Check if GNU C++ uses GNU ld as the underlying linker, since the
5546       # archiving commands below assume that GNU ld is being used.
5547       if test "$with_gnu_ld" = yes; then
5548         _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
5549         _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
5550
5551         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5552         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5553
5554         # If archive_cmds runs LD, not CC, wlarc should be empty
5555         # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
5556         #     investigate it a little bit more. (MM)
5557         wlarc='${wl}'
5558
5559         # ancient GNU ld didn't support --whole-archive et. al.
5560         if eval "`$CC -print-prog-name=ld` --help 2>&1" |
5561           $GREP 'no-whole-archive' > /dev/null; then
5562           _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
5563         else
5564           _LT_TAGVAR(whole_archive_flag_spec, $1)=
5565         fi
5566       else
5567         with_gnu_ld=no
5568         wlarc=
5569
5570         # A generic and very simple default shared library creation
5571         # command for GNU C++ for the case where it uses the native
5572         # linker, instead of GNU ld.  If possible, this setting should
5573         # overridden to take advantage of the native linker features on
5574         # the platform it is being used on.
5575         _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
5576       fi
5577
5578       # Commands to make compiler produce verbose output that lists
5579       # what "hidden" libraries, object files and flags are used when
5580       # linking a shared library.
5581       output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
5582
5583     else
5584       GXX=no
5585       with_gnu_ld=no
5586       wlarc=
5587     fi
5588
5589     # PORTME: fill in a description of your system's C++ link characteristics
5590     AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
5591     _LT_TAGVAR(ld_shlibs, $1)=yes
5592     case $host_os in
5593       aix3*)
5594         # FIXME: insert proper C++ library support
5595         _LT_TAGVAR(ld_shlibs, $1)=no
5596         ;;
5597       aix[[4-9]]*)
5598         if test "$host_cpu" = ia64; then
5599           # On IA64, the linker does run time linking by default, so we don't
5600           # have to do anything special.
5601           aix_use_runtimelinking=no
5602           exp_sym_flag='-Bexport'
5603           no_entry_flag=""
5604         else
5605           aix_use_runtimelinking=no
5606
5607           # Test if we are trying to use run time linking or normal
5608           # AIX style linking. If -brtl is somewhere in LDFLAGS, we
5609           # need to do runtime linking.
5610           case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
5611             for ld_flag in $LDFLAGS; do
5612               case $ld_flag in
5613               *-brtl*)
5614                 aix_use_runtimelinking=yes
5615                 break
5616                 ;;
5617               esac
5618             done
5619             ;;
5620           esac
5621
5622           exp_sym_flag='-bexport'
5623           no_entry_flag='-bnoentry'
5624         fi
5625
5626         # When large executables or shared objects are built, AIX ld can
5627         # have problems creating the table of contents.  If linking a library
5628         # or program results in "error TOC overflow" add -mminimal-toc to
5629         # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
5630         # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
5631
5632         _LT_TAGVAR(archive_cmds, $1)=''
5633         _LT_TAGVAR(hardcode_direct, $1)=yes
5634         _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
5635         _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
5636         _LT_TAGVAR(link_all_deplibs, $1)=yes
5637         _LT_TAGVAR(file_list_spec, $1)='${wl}-f,'
5638
5639         if test "$GXX" = yes; then
5640           case $host_os in aix4.[[012]]|aix4.[[012]].*)
5641           # We only want to do this on AIX 4.2 and lower, the check
5642           # below for broken collect2 doesn't work under 4.3+
5643           collect2name=`${CC} -print-prog-name=collect2`
5644           if test -f "$collect2name" &&
5645              strings "$collect2name" | $GREP resolve_lib_name >/dev/null
5646           then
5647             # We have reworked collect2
5648             :
5649           else
5650             # We have old collect2
5651             _LT_TAGVAR(hardcode_direct, $1)=unsupported
5652             # It fails to find uninstalled libraries when the uninstalled
5653             # path is not listed in the libpath.  Setting hardcode_minus_L
5654             # to unsupported forces relinking
5655             _LT_TAGVAR(hardcode_minus_L, $1)=yes
5656             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5657             _LT_TAGVAR(hardcode_libdir_separator, $1)=
5658           fi
5659           esac
5660           shared_flag='-shared'
5661           if test "$aix_use_runtimelinking" = yes; then
5662             shared_flag="$shared_flag "'${wl}-G'
5663           fi
5664         else
5665           # not using gcc
5666           if test "$host_cpu" = ia64; then
5667           # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
5668           # chokes on -Wl,-G. The following line is correct:
5669           shared_flag='-G'
5670           else
5671             if test "$aix_use_runtimelinking" = yes; then
5672               shared_flag='${wl}-G'
5673             else
5674               shared_flag='${wl}-bM:SRE'
5675             fi
5676           fi
5677         fi
5678
5679         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall'
5680         # It seems that -bexpall does not export symbols beginning with
5681         # underscore (_), so it is better to generate a list of symbols to
5682         # export.
5683         _LT_TAGVAR(always_export_symbols, $1)=yes
5684         if test "$aix_use_runtimelinking" = yes; then
5685           # Warning - without using the other runtime loading flags (-brtl),
5686           # -berok will link without error, but may produce a broken library.
5687           _LT_TAGVAR(allow_undefined_flag, $1)='-berok'
5688           # Determine the default libpath from the value encoded in an empty
5689           # executable.
5690           _LT_SYS_MODULE_PATH_AIX
5691           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5692
5693           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then func_echo_all "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
5694         else
5695           if test "$host_cpu" = ia64; then
5696             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
5697             _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
5698             _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
5699           else
5700             # Determine the default libpath from the value encoded in an
5701             # empty executable.
5702             _LT_SYS_MODULE_PATH_AIX
5703             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5704             # Warning - without using the other run time loading flags,
5705             # -berok will link without error, but may produce a broken library.
5706             _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
5707             _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
5708             if test "$with_gnu_ld" = yes; then
5709               # We only use this code for GNU lds that support --whole-archive.
5710               _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
5711             else
5712               # Exported symbols can be pulled into shared objects from archives
5713               _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
5714             fi
5715             _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
5716             # This is similar to how AIX traditionally builds its shared
5717             # libraries.
5718             _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
5719           fi
5720         fi
5721         ;;
5722
5723       beos*)
5724         if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
5725           _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5726           # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
5727           # support --undefined.  This deserves some investigation.  FIXME
5728           _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5729         else
5730           _LT_TAGVAR(ld_shlibs, $1)=no
5731         fi
5732         ;;
5733
5734       chorus*)
5735         case $cc_basename in
5736           *)
5737           # FIXME: insert proper C++ library support
5738           _LT_TAGVAR(ld_shlibs, $1)=no
5739           ;;
5740         esac
5741         ;;
5742
5743       cygwin* | mingw* | pw32* | cegcc*)
5744         # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
5745         # as there is no search path for DLLs.
5746         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5747         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-all-symbols'
5748         _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5749         _LT_TAGVAR(always_export_symbols, $1)=no
5750         _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5751
5752         if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
5753           _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
5754           # If the export-symbols file already is a .def file (1st line
5755           # is EXPORTS), use it as is; otherwise, prepend...
5756           _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
5757             cp $export_symbols $output_objdir/$soname.def;
5758           else
5759             echo EXPORTS > $output_objdir/$soname.def;
5760             cat $export_symbols >> $output_objdir/$soname.def;
5761           fi~
5762           $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
5763         else
5764           _LT_TAGVAR(ld_shlibs, $1)=no
5765         fi
5766         ;;
5767       darwin* | rhapsody*)
5768         _LT_DARWIN_LINKER_FEATURES($1)
5769         ;;
5770
5771       dgux*)
5772         case $cc_basename in
5773           ec++*)
5774             # FIXME: insert proper C++ library support
5775             _LT_TAGVAR(ld_shlibs, $1)=no
5776             ;;
5777           ghcx*)
5778             # Green Hills C++ Compiler
5779             # FIXME: insert proper C++ library support
5780             _LT_TAGVAR(ld_shlibs, $1)=no
5781             ;;
5782           *)
5783             # FIXME: insert proper C++ library support
5784             _LT_TAGVAR(ld_shlibs, $1)=no
5785             ;;
5786         esac
5787         ;;
5788
5789       freebsd2.*)
5790         # C++ shared libraries reported to be fairly broken before
5791         # switch to ELF
5792         _LT_TAGVAR(ld_shlibs, $1)=no
5793         ;;
5794
5795       freebsd-elf*)
5796         _LT_TAGVAR(archive_cmds_need_lc, $1)=no
5797         ;;
5798
5799       freebsd* | dragonfly*)
5800         # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
5801         # conventions
5802         _LT_TAGVAR(ld_shlibs, $1)=yes
5803         ;;
5804
5805       gnu*)
5806         ;;
5807
5808       haiku*)
5809         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5810         _LT_TAGVAR(link_all_deplibs, $1)=yes
5811         ;;
5812
5813       hpux9*)
5814         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5815         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5816         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5817         _LT_TAGVAR(hardcode_direct, $1)=yes
5818         _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
5819                                              # but as the default
5820                                              # location of the library.
5821
5822         case $cc_basename in
5823           CC*)
5824             # FIXME: insert proper C++ library support
5825             _LT_TAGVAR(ld_shlibs, $1)=no
5826             ;;
5827           aCC*)
5828             _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
5829             # Commands to make compiler produce verbose output that lists
5830             # what "hidden" libraries, object files and flags are used when
5831             # linking a shared library.
5832             #
5833             # There doesn't appear to be a way to prevent this compiler from
5834             # explicitly linking system object files so we need to strip them
5835             # from the output so that they don't get included in the library
5836             # dependencies.
5837             output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
5838             ;;
5839           *)
5840             if test "$GXX" = yes; then
5841               _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
5842             else
5843               # FIXME: insert proper C++ library support
5844               _LT_TAGVAR(ld_shlibs, $1)=no
5845             fi
5846             ;;
5847         esac
5848         ;;
5849
5850       hpux10*|hpux11*)
5851         if test $with_gnu_ld = no; then
5852           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5853           _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5854
5855           case $host_cpu in
5856             hppa*64*|ia64*)
5857               ;;
5858             *)
5859               _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5860               ;;
5861           esac
5862         fi
5863         case $host_cpu in
5864           hppa*64*|ia64*)
5865             _LT_TAGVAR(hardcode_direct, $1)=no
5866             _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5867             ;;
5868           *)
5869             _LT_TAGVAR(hardcode_direct, $1)=yes
5870             _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
5871             _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
5872                                                  # but as the default
5873                                                  # location of the library.
5874             ;;
5875         esac
5876
5877         case $cc_basename in
5878           CC*)
5879             # FIXME: insert proper C++ library support
5880             _LT_TAGVAR(ld_shlibs, $1)=no
5881             ;;
5882           aCC*)
5883             case $host_cpu in
5884               hppa*64*)
5885                 _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5886                 ;;
5887               ia64*)
5888                 _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5889                 ;;
5890               *)
5891                 _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5892                 ;;
5893             esac
5894             # Commands to make compiler produce verbose output that lists
5895             # what "hidden" libraries, object files and flags are used when
5896             # linking a shared library.
5897             #
5898             # There doesn't appear to be a way to prevent this compiler from
5899             # explicitly linking system object files so we need to strip them
5900             # from the output so that they don't get included in the library
5901             # dependencies.
5902             output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
5903             ;;
5904           *)
5905             if test "$GXX" = yes; then
5906               if test $with_gnu_ld = no; then
5907                 case $host_cpu in
5908                   hppa*64*)
5909                     _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5910                     ;;
5911                   ia64*)
5912                     _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5913                     ;;
5914                   *)
5915                     _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
5916                     ;;
5917                 esac
5918               fi
5919             else
5920               # FIXME: insert proper C++ library support
5921               _LT_TAGVAR(ld_shlibs, $1)=no
5922             fi
5923             ;;
5924         esac
5925         ;;
5926
5927       interix[[3-9]]*)
5928         _LT_TAGVAR(hardcode_direct, $1)=no
5929         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5930         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5931         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5932         # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
5933         # Instead, shared libraries are loaded at an image base (0x10000000 by
5934         # default) and relocated if they conflict, which is a slow very memory
5935         # consuming and fragmenting process.  To avoid this, we pick a random,
5936         # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
5937         # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
5938         _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5939         _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5940         ;;
5941       irix5* | irix6*)
5942         case $cc_basename in
5943           CC*)
5944             # SGI C++
5945             _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
5946
5947             # Archives containing C++ object files must be created using
5948             # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
5949             # necessary to make sure instantiated templates are included
5950             # in the archive.
5951             _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
5952             ;;
5953           *)
5954             if test "$GXX" = yes; then
5955               if test "$with_gnu_ld" = no; then
5956                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5957               else
5958                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` -o $lib'
5959               fi
5960             fi
5961             _LT_TAGVAR(link_all_deplibs, $1)=yes
5962             ;;
5963         esac
5964         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5965         _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5966         _LT_TAGVAR(inherit_rpath, $1)=yes
5967         ;;
5968
5969       linux* | k*bsd*-gnu | kopensolaris*-gnu)
5970         case $cc_basename in
5971           KCC*)
5972             # Kuck and Associates, Inc. (KAI) C++ Compiler
5973
5974             # KCC will only create a shared library if the output file
5975             # ends with ".so" (or ".sl" for HP-UX), so rename the library
5976             # to its proper name (with version) after linking.
5977             _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
5978             _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
5979             # Commands to make compiler produce verbose output that lists
5980             # what "hidden" libraries, object files and flags are used when
5981             # linking a shared library.
5982             #
5983             # There doesn't appear to be a way to prevent this compiler from
5984             # explicitly linking system object files so we need to strip them
5985             # from the output so that they don't get included in the library
5986             # dependencies.
5987             output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
5988
5989             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5990             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5991
5992             # Archives containing C++ object files must be created using
5993             # "CC -Bstatic", where "CC" is the KAI C++ compiler.
5994             _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
5995             ;;
5996           icpc* | ecpc* )
5997             # Intel C++
5998             with_gnu_ld=yes
5999             # version 8.0 and above of icpc choke on multiply defined symbols
6000             # if we add $predep_objects and $postdep_objects, however 7.1 and
6001             # earlier do not add the objects themselves.
6002             case `$CC -V 2>&1` in
6003               *"Version 7."*)
6004                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
6005                 _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
6006                 ;;
6007               *)  # Version 8.0 or newer
6008                 tmp_idyn=
6009                 case $host_cpu in
6010                   ia64*) tmp_idyn=' -i_dynamic';;
6011                 esac
6012                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6013                 _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
6014                 ;;
6015             esac
6016             _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6017             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
6018             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
6019             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
6020             ;;
6021           pgCC* | pgcpp*)
6022             # Portland Group C++ compiler
6023             case `$CC -V` in
6024             *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
6025               _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
6026                 rm -rf $tpldir~
6027                 $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
6028                 compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
6029               _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
6030                 rm -rf $tpldir~
6031                 $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
6032                 $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
6033                 $RANLIB $oldlib'
6034               _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
6035                 rm -rf $tpldir~
6036                 $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
6037                 $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
6038               _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
6039                 rm -rf $tpldir~
6040                 $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
6041                 $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
6042               ;;
6043             *) # Version 6 and above use weak symbols
6044               _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
6045               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
6046               ;;
6047             esac
6048
6049             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
6050             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
6051             _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test  -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
6052             ;;
6053           cxx*)
6054             # Compaq C++
6055             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
6056             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname  -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
6057
6058             runpath_var=LD_RUN_PATH
6059             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
6060             _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6061
6062             # Commands to make compiler produce verbose output that lists
6063             # what "hidden" libraries, object files and flags are used when
6064             # linking a shared library.
6065             #
6066             # There doesn't appear to be a way to prevent this compiler from
6067             # explicitly linking system object files so we need to strip them
6068             # from the output so that they don't get included in the library
6069             # dependencies.
6070             output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "X$list" | $Xsed'
6071             ;;
6072           xl* | mpixl* | bgxl*)
6073             # IBM XL 8.0 on PPC, with GNU ld
6074             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
6075             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
6076             _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6077             if test "x$supports_anon_versioning" = xyes; then
6078               _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
6079                 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
6080                 echo "local: *; };" >> $output_objdir/$libname.ver~
6081                 $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
6082             fi
6083             ;;
6084           *)
6085             case `$CC -V 2>&1 | sed 5q` in
6086             *Sun\ C*)
6087               # Sun C++ 5.9
6088               _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
6089               _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6090               _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
6091               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
6092               _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` ${wl}--no-whole-archive'
6093               _LT_TAGVAR(compiler_needs_object, $1)=yes
6094
6095               # Not sure whether something based on
6096               # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
6097               # would be better.
6098               output_verbose_link_cmd='func_echo_all'
6099
6100               # Archives containing C++ object files must be created using
6101               # "CC -xar", where "CC" is the Sun C++ compiler.  This is
6102               # necessary to make sure instantiated templates are included
6103               # in the archive.
6104               _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
6105               ;;
6106             esac
6107             ;;
6108         esac
6109         ;;
6110
6111       lynxos*)
6112         # FIXME: insert proper C++ library support
6113         _LT_TAGVAR(ld_shlibs, $1)=no
6114         ;;
6115
6116       m88k*)
6117         # FIXME: insert proper C++ library support
6118         _LT_TAGVAR(ld_shlibs, $1)=no
6119         ;;
6120
6121       mvs*)
6122         case $cc_basename in
6123           cxx*)
6124             # FIXME: insert proper C++ library support
6125             _LT_TAGVAR(ld_shlibs, $1)=no
6126             ;;
6127           *)
6128             # FIXME: insert proper C++ library support
6129             _LT_TAGVAR(ld_shlibs, $1)=no
6130             ;;
6131         esac
6132         ;;
6133
6134       netbsd*)
6135         if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
6136           _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
6137           wlarc=
6138           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
6139           _LT_TAGVAR(hardcode_direct, $1)=yes
6140           _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6141         fi
6142         # Workaround some broken pre-1.5 toolchains
6143         output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
6144         ;;
6145
6146       *nto* | *qnx*)
6147         _LT_TAGVAR(ld_shlibs, $1)=yes
6148         ;;
6149
6150       openbsd2*)
6151         # C++ shared libraries are fairly broken
6152         _LT_TAGVAR(ld_shlibs, $1)=no
6153         ;;
6154
6155       openbsd*)
6156         if test -f /usr/libexec/ld.so; then
6157           _LT_TAGVAR(hardcode_direct, $1)=yes
6158           _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6159           _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
6160           _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
6161           _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
6162           if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
6163             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
6164             _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
6165             _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
6166           fi
6167           output_verbose_link_cmd=func_echo_all
6168         else
6169           _LT_TAGVAR(ld_shlibs, $1)=no
6170         fi
6171         ;;
6172
6173       osf3* | osf4* | osf5*)
6174         case $cc_basename in
6175           KCC*)
6176             # Kuck and Associates, Inc. (KAI) C++ Compiler
6177
6178             # KCC will only create a shared library if the output file
6179             # ends with ".so" (or ".sl" for HP-UX), so rename the library
6180             # to its proper name (with version) after linking.
6181             _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
6182
6183             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
6184             _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6185
6186             # Archives containing C++ object files must be created using
6187             # the KAI C++ compiler.
6188             case $host in
6189               osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
6190               *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
6191             esac
6192             ;;
6193           RCC*)
6194             # Rational C++ 2.4.1
6195             # FIXME: insert proper C++ library support
6196             _LT_TAGVAR(ld_shlibs, $1)=no
6197             ;;
6198           cxx*)
6199             case $host in
6200               osf3*)
6201                 _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
6202                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && func_echo_all "${wl}-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
6203                 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
6204                 ;;
6205               *)
6206                 _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
6207                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib'
6208                 _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
6209                   echo "-hidden">> $lib.exp~
6210                   $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp  `test -n "$verstring" && $ECHO "-set_version $verstring"` -update_registry ${output_objdir}/so_locations -o $lib~
6211                   $RM $lib.exp'
6212                 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
6213                 ;;
6214             esac
6215
6216             _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6217
6218             # Commands to make compiler produce verbose output that lists
6219             # what "hidden" libraries, object files and flags are used when
6220             # linking a shared library.
6221             #
6222             # There doesn't appear to be a way to prevent this compiler from
6223             # explicitly linking system object files so we need to strip them
6224             # from the output so that they don't get included in the library
6225             # dependencies.
6226             output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`func_echo_all "$templist" | $SED "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"'
6227             ;;
6228           *)
6229             if test "$GXX" = yes && test "$with_gnu_ld" = no; then
6230               _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
6231               case $host in
6232                 osf3*)
6233                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
6234                   ;;
6235                 *)
6236                   _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && func_echo_all "${wl}-set_version ${wl}$verstring"` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
6237                   ;;
6238               esac
6239
6240               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
6241               _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6242
6243               # Commands to make compiler produce verbose output that lists
6244               # what "hidden" libraries, object files and flags are used when
6245               # linking a shared library.
6246               output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
6247
6248             else
6249               # FIXME: insert proper C++ library support
6250               _LT_TAGVAR(ld_shlibs, $1)=no
6251             fi
6252             ;;
6253         esac
6254         ;;
6255
6256       psos*)
6257         # FIXME: insert proper C++ library support
6258         _LT_TAGVAR(ld_shlibs, $1)=no
6259         ;;
6260
6261       sunos4*)
6262         case $cc_basename in
6263           CC*)
6264             # Sun C++ 4.x
6265             # FIXME: insert proper C++ library support
6266             _LT_TAGVAR(ld_shlibs, $1)=no
6267             ;;
6268           lcc*)
6269             # Lucid
6270             # FIXME: insert proper C++ library support
6271             _LT_TAGVAR(ld_shlibs, $1)=no
6272             ;;
6273           *)
6274             # FIXME: insert proper C++ library support
6275             _LT_TAGVAR(ld_shlibs, $1)=no
6276             ;;
6277         esac
6278         ;;
6279
6280       solaris*)
6281         case $cc_basename in
6282           CC*)
6283             # Sun C++ 4.2, 5.x and Centerline C++
6284             _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
6285             _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
6286             _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6287             _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
6288               $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
6289
6290             _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
6291             _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6292             case $host_os in
6293               solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
6294               *)
6295                 # The compiler driver will combine and reorder linker options,
6296                 # but understands `-z linker_flag'.
6297                 # Supported since Solaris 2.6 (maybe 2.5.1?)
6298                 _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
6299                 ;;
6300             esac
6301             _LT_TAGVAR(link_all_deplibs, $1)=yes
6302
6303             output_verbose_link_cmd='func_echo_all'
6304
6305             # Archives containing C++ object files must be created using
6306             # "CC -xar", where "CC" is the Sun C++ compiler.  This is
6307             # necessary to make sure instantiated templates are included
6308             # in the archive.
6309             _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
6310             ;;
6311           gcx*)
6312             # Green Hills C++ Compiler
6313             _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
6314
6315             # The C++ compiler must be used to create the archive.
6316             _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
6317             ;;
6318           *)
6319             # GNU C++ compiler with Solaris linker
6320             if test "$GXX" = yes && test "$with_gnu_ld" = no; then
6321               _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
6322               if $CC --version | $GREP -v '^2\.7' > /dev/null; then
6323                 _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
6324                 _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
6325                   $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
6326
6327                 # Commands to make compiler produce verbose output that lists
6328                 # what "hidden" libraries, object files and flags are used when
6329                 # linking a shared library.
6330                 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
6331               else
6332                 # g++ 2.7 appears to require `-G' NOT `-shared' on this
6333                 # platform.
6334                 _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
6335                 _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
6336                   $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
6337
6338                 # Commands to make compiler produce verbose output that lists
6339                 # what "hidden" libraries, object files and flags are used when
6340                 # linking a shared library.
6341                 output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
6342               fi
6343
6344               _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
6345               case $host_os in
6346                 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
6347                 *)
6348                   _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
6349                   ;;
6350               esac
6351             fi
6352             ;;
6353         esac
6354         ;;
6355
6356     sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
6357       _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
6358       _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6359       _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6360       runpath_var='LD_RUN_PATH'
6361
6362       case $cc_basename in
6363         CC*)
6364           _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6365           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6366           ;;
6367         *)
6368           _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6369           _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6370           ;;
6371       esac
6372       ;;
6373
6374       sysv5* | sco3.2v5* | sco5v6*)
6375         # Note: We can NOT use -z defs as we might desire, because we do not
6376         # link with -lc, and that would cause any symbols used from libc to
6377         # always be unresolved, which means just about no library would
6378         # ever link correctly.  If we're not using GNU ld we use -z text
6379         # though, which does catch some bad symbols but isn't as heavy-handed
6380         # as -z defs.
6381         _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
6382         _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
6383         _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6384         _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6385         _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir'
6386         _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
6387         _LT_TAGVAR(link_all_deplibs, $1)=yes
6388         _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
6389         runpath_var='LD_RUN_PATH'
6390
6391         case $cc_basename in
6392           CC*)
6393             _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6394             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6395             _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
6396               '"$_LT_TAGVAR(old_archive_cmds, $1)"
6397             _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
6398               '"$_LT_TAGVAR(reload_cmds, $1)"
6399             ;;
6400           *)
6401             _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6402             _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6403             ;;
6404         esac
6405       ;;
6406
6407       tandem*)
6408         case $cc_basename in
6409           NCC*)
6410             # NonStop-UX NCC 3.20
6411             # FIXME: insert proper C++ library support
6412             _LT_TAGVAR(ld_shlibs, $1)=no
6413             ;;
6414           *)
6415             # FIXME: insert proper C++ library support
6416             _LT_TAGVAR(ld_shlibs, $1)=no
6417             ;;
6418         esac
6419         ;;
6420
6421       vxworks*)
6422         # FIXME: insert proper C++ library support
6423         _LT_TAGVAR(ld_shlibs, $1)=no
6424         ;;
6425
6426       *)
6427         # FIXME: insert proper C++ library support
6428         _LT_TAGVAR(ld_shlibs, $1)=no
6429         ;;
6430     esac
6431
6432     AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
6433     test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
6434
6435     _LT_TAGVAR(GCC, $1)="$GXX"
6436     _LT_TAGVAR(LD, $1)="$LD"
6437
6438     ## CAVEAT EMPTOR:
6439     ## There is no encapsulation within the following macros, do not change
6440     ## the running order or otherwise move them around unless you know exactly
6441     ## what you are doing...
6442     _LT_SYS_HIDDEN_LIBDEPS($1)
6443     _LT_COMPILER_PIC($1)
6444     _LT_COMPILER_C_O($1)
6445     _LT_COMPILER_FILE_LOCKS($1)
6446     _LT_LINKER_SHLIBS($1)
6447     _LT_SYS_DYNAMIC_LINKER($1)
6448     _LT_LINKER_HARDCODE_LIBPATH($1)
6449
6450     _LT_CONFIG($1)
6451   fi # test -n "$compiler"
6452
6453   CC=$lt_save_CC
6454   LDCXX=$LD
6455   LD=$lt_save_LD
6456   GCC=$lt_save_GCC
6457   with_gnu_ld=$lt_save_with_gnu_ld
6458   lt_cv_path_LDCXX=$lt_cv_path_LD
6459   lt_cv_path_LD=$lt_save_path_LD
6460   lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
6461   lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
6462 fi # test "$_lt_caught_CXX_error" != yes
6463
6464 AC_LANG_POP
6465 ])# _LT_LANG_CXX_CONFIG
6466
6467
6468 # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
6469 # ---------------------------------
6470 # Figure out "hidden" library dependencies from verbose
6471 # compiler output when linking a shared library.
6472 # Parse the compiler output and extract the necessary
6473 # objects, libraries and library flags.
6474 m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
6475 [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
6476 # Dependencies to place before and after the object being linked:
6477 _LT_TAGVAR(predep_objects, $1)=
6478 _LT_TAGVAR(postdep_objects, $1)=
6479 _LT_TAGVAR(predeps, $1)=
6480 _LT_TAGVAR(postdeps, $1)=
6481 _LT_TAGVAR(compiler_lib_search_path, $1)=
6482
6483 dnl we can't use the lt_simple_compile_test_code here,
6484 dnl because it contains code intended for an executable,
6485 dnl not a library.  It's possible we should let each
6486 dnl tag define a new lt_????_link_test_code variable,
6487 dnl but it's only used here...
6488 m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
6489 int a;
6490 void foo (void) { a = 0; }
6491 _LT_EOF
6492 ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
6493 class Foo
6494 {
6495 public:
6496   Foo (void) { a = 0; }
6497 private:
6498   int a;
6499 };
6500 _LT_EOF
6501 ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
6502       subroutine foo
6503       implicit none
6504       integer*4 a
6505       a=0
6506       return
6507       end
6508 _LT_EOF
6509 ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
6510       subroutine foo
6511       implicit none
6512       integer a
6513       a=0
6514       return
6515       end
6516 _LT_EOF
6517 ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
6518 public class foo {
6519   private int a;
6520   public void bar (void) {
6521     a = 0;
6522   }
6523 };
6524 _LT_EOF
6525 ])
6526 dnl Parse the compiler output and extract the necessary
6527 dnl objects, libraries and library flags.
6528 if AC_TRY_EVAL(ac_compile); then
6529   # Parse the compiler output and extract the necessary
6530   # objects, libraries and library flags.
6531
6532   # Sentinel used to keep track of whether or not we are before
6533   # the conftest object file.
6534   pre_test_object_deps_done=no
6535
6536   for p in `eval "$output_verbose_link_cmd"`; do
6537     case $p in
6538
6539     -L* | -R* | -l*)
6540        # Some compilers place space between "-{L,R}" and the path.
6541        # Remove the space.
6542        if test $p = "-L" ||
6543           test $p = "-R"; then
6544          prev=$p
6545          continue
6546        else
6547          prev=
6548        fi
6549
6550        if test "$pre_test_object_deps_done" = no; then
6551          case $p in
6552          -L* | -R*)
6553            # Internal compiler library paths should come after those
6554            # provided the user.  The postdeps already come after the
6555            # user supplied libs so there is no need to process them.
6556            if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
6557              _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
6558            else
6559              _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
6560            fi
6561            ;;
6562          # The "-l" case would never come before the object being
6563          # linked, so don't bother handling this case.
6564          esac
6565        else
6566          if test -z "$_LT_TAGVAR(postdeps, $1)"; then
6567            _LT_TAGVAR(postdeps, $1)="${prev}${p}"
6568          else
6569            _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}"
6570          fi
6571        fi
6572        ;;
6573
6574     *.$objext)
6575        # This assumes that the test object file only shows up
6576        # once in the compiler output.
6577        if test "$p" = "conftest.$objext"; then
6578          pre_test_object_deps_done=yes
6579          continue
6580        fi
6581
6582        if test "$pre_test_object_deps_done" = no; then
6583          if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
6584            _LT_TAGVAR(predep_objects, $1)="$p"
6585          else
6586            _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
6587          fi
6588        else
6589          if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
6590            _LT_TAGVAR(postdep_objects, $1)="$p"
6591          else
6592            _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
6593          fi
6594        fi
6595        ;;
6596
6597     *) ;; # Ignore the rest.
6598
6599     esac
6600   done
6601
6602   # Clean up.
6603   rm -f a.out a.exe
6604 else
6605   echo "libtool.m4: error: problem compiling $1 test program"
6606 fi
6607
6608 $RM -f confest.$objext
6609
6610 # PORTME: override above test on systems where it is broken
6611 m4_if([$1], [CXX],
6612 [case $host_os in
6613 interix[[3-9]]*)
6614   # Interix 3.5 installs completely hosed .la files for C++, so rather than
6615   # hack all around it, let's just trust "g++" to DTRT.
6616   _LT_TAGVAR(predep_objects,$1)=
6617   _LT_TAGVAR(postdep_objects,$1)=
6618   _LT_TAGVAR(postdeps,$1)=
6619   ;;
6620
6621 linux*)
6622   case `$CC -V 2>&1 | sed 5q` in
6623   *Sun\ C*)
6624     # Sun C++ 5.9
6625
6626     # The more standards-conforming stlport4 library is
6627     # incompatible with the Cstd library. Avoid specifying
6628     # it if it's in CXXFLAGS. Ignore libCrun as
6629     # -library=stlport4 depends on it.
6630     case " $CXX $CXXFLAGS " in
6631     *" -library=stlport4 "*)
6632       solaris_use_stlport4=yes
6633       ;;
6634     esac
6635
6636     if test "$solaris_use_stlport4" != yes; then
6637       _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
6638     fi
6639     ;;
6640   esac
6641   ;;
6642
6643 solaris*)
6644   case $cc_basename in
6645   CC*)
6646     # The more standards-conforming stlport4 library is
6647     # incompatible with the Cstd library. Avoid specifying
6648     # it if it's in CXXFLAGS. Ignore libCrun as
6649     # -library=stlport4 depends on it.
6650     case " $CXX $CXXFLAGS " in
6651     *" -library=stlport4 "*)
6652       solaris_use_stlport4=yes
6653       ;;
6654     esac
6655
6656     # Adding this requires a known-good setup of shared libraries for
6657     # Sun compiler versions before 5.6, else PIC objects from an old
6658     # archive will be linked into the output, leading to subtle bugs.
6659     if test "$solaris_use_stlport4" != yes; then
6660       _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
6661     fi
6662     ;;
6663   esac
6664   ;;
6665 esac
6666 ])
6667
6668 case " $_LT_TAGVAR(postdeps, $1) " in
6669 *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
6670 esac
6671  _LT_TAGVAR(compiler_lib_search_dirs, $1)=
6672 if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
6673  _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
6674 fi
6675 _LT_TAGDECL([], [compiler_lib_search_dirs], [1],
6676     [The directories searched by this compiler when creating a shared library])
6677 _LT_TAGDECL([], [predep_objects], [1],
6678     [Dependencies to place before and after the objects being linked to
6679     create a shared library])
6680 _LT_TAGDECL([], [postdep_objects], [1])
6681 _LT_TAGDECL([], [predeps], [1])
6682 _LT_TAGDECL([], [postdeps], [1])
6683 _LT_TAGDECL([], [compiler_lib_search_path], [1],
6684     [The library search path used internally by the compiler when linking
6685     a shared library])
6686 ])# _LT_SYS_HIDDEN_LIBDEPS
6687
6688
6689 # _LT_LANG_F77_CONFIG([TAG])
6690 # --------------------------
6691 # Ensure that the configuration variables for a Fortran 77 compiler are
6692 # suitably defined.  These variables are subsequently used by _LT_CONFIG
6693 # to write the compiler configuration to `libtool'.
6694 m4_defun([_LT_LANG_F77_CONFIG],
6695 [AC_LANG_PUSH(Fortran 77)
6696 if test -z "$F77" || test "X$F77" = "Xno"; then
6697   _lt_disable_F77=yes
6698 fi
6699
6700 _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6701 _LT_TAGVAR(allow_undefined_flag, $1)=
6702 _LT_TAGVAR(always_export_symbols, $1)=no
6703 _LT_TAGVAR(archive_expsym_cmds, $1)=
6704 _LT_TAGVAR(export_dynamic_flag_spec, $1)=
6705 _LT_TAGVAR(hardcode_direct, $1)=no
6706 _LT_TAGVAR(hardcode_direct_absolute, $1)=no
6707 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
6708 _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
6709 _LT_TAGVAR(hardcode_libdir_separator, $1)=
6710 _LT_TAGVAR(hardcode_minus_L, $1)=no
6711 _LT_TAGVAR(hardcode_automatic, $1)=no
6712 _LT_TAGVAR(inherit_rpath, $1)=no
6713 _LT_TAGVAR(module_cmds, $1)=
6714 _LT_TAGVAR(module_expsym_cmds, $1)=
6715 _LT_TAGVAR(link_all_deplibs, $1)=unknown
6716 _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
6717 _LT_TAGVAR(reload_flag, $1)=$reload_flag
6718 _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
6719 _LT_TAGVAR(no_undefined_flag, $1)=
6720 _LT_TAGVAR(whole_archive_flag_spec, $1)=
6721 _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
6722
6723 # Source file extension for f77 test sources.
6724 ac_ext=f
6725
6726 # Object file extension for compiled f77 test sources.
6727 objext=o
6728 _LT_TAGVAR(objext, $1)=$objext
6729
6730 # No sense in running all these tests if we already determined that
6731 # the F77 compiler isn't working.  Some variables (like enable_shared)
6732 # are currently assumed to apply to all compilers on this platform,
6733 # and will be corrupted by setting them based on a non-working compiler.
6734 if test "$_lt_disable_F77" != yes; then
6735   # Code to be used in simple compile tests
6736   lt_simple_compile_test_code="\
6737       subroutine t
6738       return
6739       end
6740 "
6741
6742   # Code to be used in simple link tests
6743   lt_simple_link_test_code="\
6744       program t
6745       end
6746 "
6747
6748   # ltmain only uses $CC for tagged configurations so make sure $CC is set.
6749   _LT_TAG_COMPILER
6750
6751   # save warnings/boilerplate of simple test code
6752   _LT_COMPILER_BOILERPLATE
6753   _LT_LINKER_BOILERPLATE
6754
6755   # Allow CC to be a program name with arguments.
6756   lt_save_CC="$CC"
6757   lt_save_GCC=$GCC
6758   CC=${F77-"f77"}
6759   compiler=$CC
6760   _LT_TAGVAR(compiler, $1)=$CC
6761   _LT_CC_BASENAME([$compiler])
6762   GCC=$G77
6763   if test -n "$compiler"; then
6764     AC_MSG_CHECKING([if libtool supports shared libraries])
6765     AC_MSG_RESULT([$can_build_shared])
6766
6767     AC_MSG_CHECKING([whether to build shared libraries])
6768     test "$can_build_shared" = "no" && enable_shared=no
6769
6770     # On AIX, shared libraries and static libraries use the same namespace, and
6771     # are all built from PIC.
6772     case $host_os in
6773       aix3*)
6774         test "$enable_shared" = yes && enable_static=no
6775         if test -n "$RANLIB"; then
6776           archive_cmds="$archive_cmds~\$RANLIB \$lib"
6777           postinstall_cmds='$RANLIB $lib'
6778         fi
6779         ;;
6780       aix[[4-9]]*)
6781         if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
6782           test "$enable_shared" = yes && enable_static=no
6783         fi
6784         ;;
6785     esac
6786     AC_MSG_RESULT([$enable_shared])
6787
6788     AC_MSG_CHECKING([whether to build static libraries])
6789     # Make sure either enable_shared or enable_static is yes.
6790     test "$enable_shared" = yes || enable_static=yes
6791     AC_MSG_RESULT([$enable_static])
6792
6793     _LT_TAGVAR(GCC, $1)="$G77"
6794     _LT_TAGVAR(LD, $1)="$LD"
6795
6796     ## CAVEAT EMPTOR:
6797     ## There is no encapsulation within the following macros, do not change
6798     ## the running order or otherwise move them around unless you know exactly
6799     ## what you are doing...
6800     _LT_COMPILER_PIC($1)
6801     _LT_COMPILER_C_O($1)
6802     _LT_COMPILER_FILE_LOCKS($1)
6803     _LT_LINKER_SHLIBS($1)
6804     _LT_SYS_DYNAMIC_LINKER($1)
6805     _LT_LINKER_HARDCODE_LIBPATH($1)
6806
6807     _LT_CONFIG($1)
6808   fi # test -n "$compiler"
6809
6810   GCC=$lt_save_GCC
6811   CC="$lt_save_CC"
6812 fi # test "$_lt_disable_F77" != yes
6813
6814 AC_LANG_POP
6815 ])# _LT_LANG_F77_CONFIG
6816
6817
6818 # _LT_LANG_FC_CONFIG([TAG])
6819 # -------------------------
6820 # Ensure that the configuration variables for a Fortran compiler are
6821 # suitably defined.  These variables are subsequently used by _LT_CONFIG
6822 # to write the compiler configuration to `libtool'.
6823 m4_defun([_LT_LANG_FC_CONFIG],
6824 [AC_LANG_PUSH(Fortran)
6825
6826 if test -z "$FC" || test "X$FC" = "Xno"; then
6827   _lt_disable_FC=yes
6828 fi
6829
6830 _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6831 _LT_TAGVAR(allow_undefined_flag, $1)=
6832 _LT_TAGVAR(always_export_symbols, $1)=no
6833 _LT_TAGVAR(archive_expsym_cmds, $1)=
6834 _LT_TAGVAR(export_dynamic_flag_spec, $1)=
6835 _LT_TAGVAR(hardcode_direct, $1)=no
6836 _LT_TAGVAR(hardcode_direct_absolute, $1)=no
6837 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
6838 _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
6839 _LT_TAGVAR(hardcode_libdir_separator, $1)=
6840 _LT_TAGVAR(hardcode_minus_L, $1)=no
6841 _LT_TAGVAR(hardcode_automatic, $1)=no
6842 _LT_TAGVAR(inherit_rpath, $1)=no
6843 _LT_TAGVAR(module_cmds, $1)=
6844 _LT_TAGVAR(module_expsym_cmds, $1)=
6845 _LT_TAGVAR(link_all_deplibs, $1)=unknown
6846 _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
6847 _LT_TAGVAR(reload_flag, $1)=$reload_flag
6848 _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
6849 _LT_TAGVAR(no_undefined_flag, $1)=
6850 _LT_TAGVAR(whole_archive_flag_spec, $1)=
6851 _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
6852
6853 # Source file extension for fc test sources.
6854 ac_ext=${ac_fc_srcext-f}
6855
6856 # Object file extension for compiled fc test sources.
6857 objext=o
6858 _LT_TAGVAR(objext, $1)=$objext
6859
6860 # No sense in running all these tests if we already determined that
6861 # the FC compiler isn't working.  Some variables (like enable_shared)
6862 # are currently assumed to apply to all compilers on this platform,
6863 # and will be corrupted by setting them based on a non-working compiler.
6864 if test "$_lt_disable_FC" != yes; then
6865   # Code to be used in simple compile tests
6866   lt_simple_compile_test_code="\
6867       subroutine t
6868       return
6869       end
6870 "
6871
6872   # Code to be used in simple link tests
6873   lt_simple_link_test_code="\
6874       program t
6875       end
6876 "
6877
6878   # ltmain only uses $CC for tagged configurations so make sure $CC is set.
6879   _LT_TAG_COMPILER
6880
6881   # save warnings/boilerplate of simple test code
6882   _LT_COMPILER_BOILERPLATE
6883   _LT_LINKER_BOILERPLATE
6884
6885   # Allow CC to be a program name with arguments.
6886   lt_save_CC="$CC"
6887   lt_save_GCC=$GCC
6888   CC=${FC-"f95"}
6889   compiler=$CC
6890   GCC=$ac_cv_fc_compiler_gnu
6891
6892   _LT_TAGVAR(compiler, $1)=$CC
6893   _LT_CC_BASENAME([$compiler])
6894
6895   if test -n "$compiler"; then
6896     AC_MSG_CHECKING([if libtool supports shared libraries])
6897     AC_MSG_RESULT([$can_build_shared])
6898
6899     AC_MSG_CHECKING([whether to build shared libraries])
6900     test "$can_build_shared" = "no" && enable_shared=no
6901
6902     # On AIX, shared libraries and static libraries use the same namespace, and
6903     # are all built from PIC.
6904     case $host_os in
6905       aix3*)
6906         test "$enable_shared" = yes && enable_static=no
6907         if test -n "$RANLIB"; then
6908           archive_cmds="$archive_cmds~\$RANLIB \$lib"
6909           postinstall_cmds='$RANLIB $lib'
6910         fi
6911         ;;
6912       aix[[4-9]]*)
6913         if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
6914           test "$enable_shared" = yes && enable_static=no
6915         fi
6916         ;;
6917     esac
6918     AC_MSG_RESULT([$enable_shared])
6919
6920     AC_MSG_CHECKING([whether to build static libraries])
6921     # Make sure either enable_shared or enable_static is yes.
6922     test "$enable_shared" = yes || enable_static=yes
6923     AC_MSG_RESULT([$enable_static])
6924
6925     _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu"
6926     _LT_TAGVAR(LD, $1)="$LD"
6927
6928     ## CAVEAT EMPTOR:
6929     ## There is no encapsulation within the following macros, do not change
6930     ## the running order or otherwise move them around unless you know exactly
6931     ## what you are doing...
6932     _LT_SYS_HIDDEN_LIBDEPS($1)
6933     _LT_COMPILER_PIC($1)
6934     _LT_COMPILER_C_O($1)
6935     _LT_COMPILER_FILE_LOCKS($1)
6936     _LT_LINKER_SHLIBS($1)
6937     _LT_SYS_DYNAMIC_LINKER($1)
6938     _LT_LINKER_HARDCODE_LIBPATH($1)
6939
6940     _LT_CONFIG($1)
6941   fi # test -n "$compiler"
6942
6943   GCC=$lt_save_GCC
6944   CC="$lt_save_CC"
6945 fi # test "$_lt_disable_FC" != yes
6946
6947 AC_LANG_POP
6948 ])# _LT_LANG_FC_CONFIG
6949
6950
6951 # _LT_LANG_GCJ_CONFIG([TAG])
6952 # --------------------------
6953 # Ensure that the configuration variables for the GNU Java Compiler compiler
6954 # are suitably defined.  These variables are subsequently used by _LT_CONFIG
6955 # to write the compiler configuration to `libtool'.
6956 m4_defun([_LT_LANG_GCJ_CONFIG],
6957 [AC_REQUIRE([LT_PROG_GCJ])dnl
6958 AC_LANG_SAVE
6959
6960 # Source file extension for Java test sources.
6961 ac_ext=java
6962
6963 # Object file extension for compiled Java test sources.
6964 objext=o
6965 _LT_TAGVAR(objext, $1)=$objext
6966
6967 # Code to be used in simple compile tests
6968 lt_simple_compile_test_code="class foo {}"
6969
6970 # Code to be used in simple link tests
6971 lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
6972
6973 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
6974 _LT_TAG_COMPILER
6975
6976 # save warnings/boilerplate of simple test code
6977 _LT_COMPILER_BOILERPLATE
6978 _LT_LINKER_BOILERPLATE
6979
6980 # Allow CC to be a program name with arguments.
6981 lt_save_CC="$CC"
6982 lt_save_GCC=$GCC
6983 GCC=yes
6984 CC=${GCJ-"gcj"}
6985 compiler=$CC
6986 _LT_TAGVAR(compiler, $1)=$CC
6987 _LT_TAGVAR(LD, $1)="$LD"
6988 _LT_CC_BASENAME([$compiler])
6989
6990 # GCJ did not exist at the time GCC didn't implicitly link libc in.
6991 _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6992
6993 _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
6994 _LT_TAGVAR(reload_flag, $1)=$reload_flag
6995 _LT_TAGVAR(reload_cmds, $1)=$reload_cmds
6996
6997 ## CAVEAT EMPTOR:
6998 ## There is no encapsulation within the following macros, do not change
6999 ## the running order or otherwise move them around unless you know exactly
7000 ## what you are doing...
7001 if test -n "$compiler"; then
7002   _LT_COMPILER_NO_RTTI($1)
7003   _LT_COMPILER_PIC($1)
7004   _LT_COMPILER_C_O($1)
7005   _LT_COMPILER_FILE_LOCKS($1)
7006   _LT_LINKER_SHLIBS($1)
7007   _LT_LINKER_HARDCODE_LIBPATH($1)
7008
7009   _LT_CONFIG($1)
7010 fi
7011
7012 AC_LANG_RESTORE
7013
7014 GCC=$lt_save_GCC
7015 CC="$lt_save_CC"
7016 ])# _LT_LANG_GCJ_CONFIG
7017
7018
7019 # _LT_LANG_RC_CONFIG([TAG])
7020 # -------------------------
7021 # Ensure that the configuration variables for the Windows resource compiler
7022 # are suitably defined.  These variables are subsequently used by _LT_CONFIG
7023 # to write the compiler configuration to `libtool'.
7024 m4_defun([_LT_LANG_RC_CONFIG],
7025 [AC_REQUIRE([LT_PROG_RC])dnl
7026 AC_LANG_SAVE
7027
7028 # Source file extension for RC test sources.
7029 ac_ext=rc
7030
7031 # Object file extension for compiled RC test sources.
7032 objext=o
7033 _LT_TAGVAR(objext, $1)=$objext
7034
7035 # Code to be used in simple compile tests
7036 lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
7037
7038 # Code to be used in simple link tests
7039 lt_simple_link_test_code="$lt_simple_compile_test_code"
7040
7041 # ltmain only uses $CC for tagged configurations so make sure $CC is set.
7042 _LT_TAG_COMPILER
7043
7044 # save warnings/boilerplate of simple test code
7045 _LT_COMPILER_BOILERPLATE
7046 _LT_LINKER_BOILERPLATE
7047
7048 # Allow CC to be a program name with arguments.
7049 lt_save_CC="$CC"
7050 lt_save_GCC=$GCC
7051 GCC=
7052 CC=${RC-"windres"}
7053 compiler=$CC
7054 _LT_TAGVAR(compiler, $1)=$CC
7055 _LT_CC_BASENAME([$compiler])
7056 _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
7057
7058 if test -n "$compiler"; then
7059   :
7060   _LT_CONFIG($1)
7061 fi
7062
7063 GCC=$lt_save_GCC
7064 AC_LANG_RESTORE
7065 CC="$lt_save_CC"
7066 ])# _LT_LANG_RC_CONFIG
7067
7068
7069 # LT_PROG_GCJ
7070 # -----------
7071 AC_DEFUN([LT_PROG_GCJ],
7072 [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
7073   [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
7074     [AC_CHECK_TOOL(GCJ, gcj,)
7075       test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
7076       AC_SUBST(GCJFLAGS)])])[]dnl
7077 ])
7078
7079 # Old name:
7080 AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
7081 dnl aclocal-1.4 backwards compatibility:
7082 dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
7083
7084
7085 # LT_PROG_RC
7086 # ----------
7087 AC_DEFUN([LT_PROG_RC],
7088 [AC_CHECK_TOOL(RC, windres,)
7089 ])
7090
7091 # Old name:
7092 AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
7093 dnl aclocal-1.4 backwards compatibility:
7094 dnl AC_DEFUN([LT_AC_PROG_RC], [])
7095
7096
7097 # _LT_DECL_EGREP
7098 # --------------
7099 # If we don't have a new enough Autoconf to choose the best grep
7100 # available, choose the one first in the user's PATH.
7101 m4_defun([_LT_DECL_EGREP],
7102 [AC_REQUIRE([AC_PROG_EGREP])dnl
7103 AC_REQUIRE([AC_PROG_FGREP])dnl
7104 test -z "$GREP" && GREP=grep
7105 _LT_DECL([], [GREP], [1], [A grep program that handles long lines])
7106 _LT_DECL([], [EGREP], [1], [An ERE matcher])
7107 _LT_DECL([], [FGREP], [1], [A literal string matcher])
7108 dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
7109 AC_SUBST([GREP])
7110 ])
7111
7112
7113 # _LT_DECL_OBJDUMP
7114 # --------------
7115 # If we don't have a new enough Autoconf to choose the best objdump
7116 # available, choose the one first in the user's PATH.
7117 m4_defun([_LT_DECL_OBJDUMP],
7118 [AC_CHECK_TOOL(OBJDUMP, objdump, false)
7119 test -z "$OBJDUMP" && OBJDUMP=objdump
7120 _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
7121 AC_SUBST([OBJDUMP])
7122 ])
7123
7124
7125 # _LT_DECL_SED
7126 # ------------
7127 # Check for a fully-functional sed program, that truncates
7128 # as few characters as possible.  Prefer GNU sed if found.
7129 m4_defun([_LT_DECL_SED],
7130 [AC_PROG_SED
7131 test -z "$SED" && SED=sed
7132 Xsed="$SED -e 1s/^X//"
7133 _LT_DECL([], [SED], [1], [A sed program that does not truncate output])
7134 _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
7135     [Sed that helps us avoid accidentally triggering echo(1) options like -n])
7136 ])# _LT_DECL_SED
7137
7138 m4_ifndef([AC_PROG_SED], [
7139 ############################################################
7140 # NOTE: This macro has been submitted for inclusion into   #
7141 #  GNU Autoconf as AC_PROG_SED.  When it is available in   #
7142 #  a released version of Autoconf we should remove this    #
7143 #  macro and use it instead.                               #
7144 ############################################################
7145
7146 m4_defun([AC_PROG_SED],
7147 [AC_MSG_CHECKING([for a sed that does not truncate output])
7148 AC_CACHE_VAL(lt_cv_path_SED,
7149 [# Loop through the user's path and test for sed and gsed.
7150 # Then use that list of sed's as ones to test for truncation.
7151 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7152 for as_dir in $PATH
7153 do
7154   IFS=$as_save_IFS
7155   test -z "$as_dir" && as_dir=.
7156   for lt_ac_prog in sed gsed; do
7157     for ac_exec_ext in '' $ac_executable_extensions; do
7158       if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
7159         lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
7160       fi
7161     done
7162   done
7163 done
7164 IFS=$as_save_IFS
7165 lt_ac_max=0
7166 lt_ac_count=0
7167 # Add /usr/xpg4/bin/sed as it is typically found on Solaris
7168 # along with /bin/sed that truncates output.
7169 for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
7170   test ! -f $lt_ac_sed && continue
7171   cat /dev/null > conftest.in
7172   lt_ac_count=0
7173   echo $ECHO_N "0123456789$ECHO_C" >conftest.in
7174   # Check for GNU sed and select it if it is found.
7175   if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
7176     lt_cv_path_SED=$lt_ac_sed
7177     break
7178   fi
7179   while true; do
7180     cat conftest.in conftest.in >conftest.tmp
7181     mv conftest.tmp conftest.in
7182     cp conftest.in conftest.nl
7183     echo >>conftest.nl
7184     $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
7185     cmp -s conftest.out conftest.nl || break
7186     # 10000 chars as input seems more than enough
7187     test $lt_ac_count -gt 10 && break
7188     lt_ac_count=`expr $lt_ac_count + 1`
7189     if test $lt_ac_count -gt $lt_ac_max; then
7190       lt_ac_max=$lt_ac_count
7191       lt_cv_path_SED=$lt_ac_sed
7192     fi
7193   done
7194 done
7195 ])
7196 SED=$lt_cv_path_SED
7197 AC_SUBST([SED])
7198 AC_MSG_RESULT([$SED])
7199 ])#AC_PROG_SED
7200 ])#m4_ifndef
7201
7202 # Old name:
7203 AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
7204 dnl aclocal-1.4 backwards compatibility:
7205 dnl AC_DEFUN([LT_AC_PROG_SED], [])
7206
7207
7208 # _LT_CHECK_SHELL_FEATURES
7209 # ------------------------
7210 # Find out whether the shell is Bourne or XSI compatible,
7211 # or has some other useful features.
7212 m4_defun([_LT_CHECK_SHELL_FEATURES],
7213 [AC_MSG_CHECKING([whether the shell understands some XSI constructs])
7214 # Try some XSI features
7215 xsi_shell=no
7216 ( _lt_dummy="a/b/c"
7217   test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \
7218       = c,a/b,, \
7219     && eval 'test $(( 1 + 1 )) -eq 2 \
7220     && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \
7221   && xsi_shell=yes
7222 AC_MSG_RESULT([$xsi_shell])
7223 _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell'])
7224
7225 AC_MSG_CHECKING([whether the shell understands "+="])
7226 lt_shell_append=no
7227 ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \
7228     >/dev/null 2>&1 \
7229   && lt_shell_append=yes
7230 AC_MSG_RESULT([$lt_shell_append])
7231 _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append'])
7232
7233 if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
7234   lt_unset=unset
7235 else
7236   lt_unset=false
7237 fi
7238 _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
7239
7240 # test EBCDIC or ASCII
7241 case `echo X|tr X '\101'` in
7242  A) # ASCII based system
7243     # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
7244   lt_SP2NL='tr \040 \012'
7245   lt_NL2SP='tr \015\012 \040\040'
7246   ;;
7247  *) # EBCDIC based system
7248   lt_SP2NL='tr \100 \n'
7249   lt_NL2SP='tr \r\n \100\100'
7250   ;;
7251 esac
7252 _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
7253 _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
7254 ])# _LT_CHECK_SHELL_FEATURES
7255
7256
7257 # _LT_PROG_XSI_SHELLFNS
7258 # ---------------------
7259 # Bourne and XSI compatible variants of some useful shell functions.
7260 m4_defun([_LT_PROG_XSI_SHELLFNS],
7261 [case $xsi_shell in
7262   yes)
7263     cat << \_LT_EOF >> "$cfgfile"
7264
7265 # func_dirname file append nondir_replacement
7266 # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
7267 # otherwise set result to NONDIR_REPLACEMENT.
7268 func_dirname ()
7269 {
7270   case ${1} in
7271     */*) func_dirname_result="${1%/*}${2}" ;;
7272     *  ) func_dirname_result="${3}" ;;
7273   esac
7274 }
7275
7276 # func_basename file
7277 func_basename ()
7278 {
7279   func_basename_result="${1##*/}"
7280 }
7281
7282 # func_dirname_and_basename file append nondir_replacement
7283 # perform func_basename and func_dirname in a single function
7284 # call:
7285 #   dirname:  Compute the dirname of FILE.  If nonempty,
7286 #             add APPEND to the result, otherwise set result
7287 #             to NONDIR_REPLACEMENT.
7288 #             value returned in "$func_dirname_result"
7289 #   basename: Compute filename of FILE.
7290 #             value retuned in "$func_basename_result"
7291 # Implementation must be kept synchronized with func_dirname
7292 # and func_basename. For efficiency, we do not delegate to
7293 # those functions but instead duplicate the functionality here.
7294 func_dirname_and_basename ()
7295 {
7296   case ${1} in
7297     */*) func_dirname_result="${1%/*}${2}" ;;
7298     *  ) func_dirname_result="${3}" ;;
7299   esac
7300   func_basename_result="${1##*/}"
7301 }
7302
7303 # func_stripname prefix suffix name
7304 # strip PREFIX and SUFFIX off of NAME.
7305 # PREFIX and SUFFIX must not contain globbing or regex special
7306 # characters, hashes, percent signs, but SUFFIX may contain a leading
7307 # dot (in which case that matches only a dot).
7308 func_stripname ()
7309 {
7310   # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are
7311   # positional parameters, so assign one to ordinary parameter first.
7312   func_stripname_result=${3}
7313   func_stripname_result=${func_stripname_result#"${1}"}
7314   func_stripname_result=${func_stripname_result%"${2}"}
7315 }
7316
7317 # func_opt_split
7318 func_opt_split ()
7319 {
7320   func_opt_split_opt=${1%%=*}
7321   func_opt_split_arg=${1#*=}
7322 }
7323
7324 # func_lo2o object
7325 func_lo2o ()
7326 {
7327   case ${1} in
7328     *.lo) func_lo2o_result=${1%.lo}.${objext} ;;
7329     *)    func_lo2o_result=${1} ;;
7330   esac
7331 }
7332
7333 # func_xform libobj-or-source
7334 func_xform ()
7335 {
7336   func_xform_result=${1%.*}.lo
7337 }
7338
7339 # func_arith arithmetic-term...
7340 func_arith ()
7341 {
7342   func_arith_result=$(( $[*] ))
7343 }
7344
7345 # func_len string
7346 # STRING may not start with a hyphen.
7347 func_len ()
7348 {
7349   func_len_result=${#1}
7350 }
7351
7352 _LT_EOF
7353     ;;
7354   *) # Bourne compatible functions.
7355     cat << \_LT_EOF >> "$cfgfile"
7356
7357 # func_dirname file append nondir_replacement
7358 # Compute the dirname of FILE.  If nonempty, add APPEND to the result,
7359 # otherwise set result to NONDIR_REPLACEMENT.
7360 func_dirname ()
7361 {
7362   # Extract subdirectory from the argument.
7363   func_dirname_result=`$ECHO "${1}" | $SED "$dirname"`
7364   if test "X$func_dirname_result" = "X${1}"; then
7365     func_dirname_result="${3}"
7366   else
7367     func_dirname_result="$func_dirname_result${2}"
7368   fi
7369 }
7370
7371 # func_basename file
7372 func_basename ()
7373 {
7374   func_basename_result=`$ECHO "${1}" | $SED "$basename"`
7375 }
7376
7377 dnl func_dirname_and_basename
7378 dnl A portable version of this function is already defined in general.m4sh
7379 dnl so there is no need for it here.
7380
7381 # func_stripname prefix suffix name
7382 # strip PREFIX and SUFFIX off of NAME.
7383 # PREFIX and SUFFIX must not contain globbing or regex special
7384 # characters, hashes, percent signs, but SUFFIX may contain a leading
7385 # dot (in which case that matches only a dot).
7386 # func_strip_suffix prefix name
7387 func_stripname ()
7388 {
7389   case ${2} in
7390     .*) func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%\\\\${2}\$%%"`;;
7391     *)  func_stripname_result=`$ECHO "${3}" | $SED "s%^${1}%%; s%${2}\$%%"`;;
7392   esac
7393 }
7394
7395 # sed scripts:
7396 my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q'
7397 my_sed_long_arg='1s/^-[[^=]]*=//'
7398
7399 # func_opt_split
7400 func_opt_split ()
7401 {
7402   func_opt_split_opt=`$ECHO "${1}" | $SED "$my_sed_long_opt"`
7403   func_opt_split_arg=`$ECHO "${1}" | $SED "$my_sed_long_arg"`
7404 }
7405
7406 # func_lo2o object
7407 func_lo2o ()
7408 {
7409   func_lo2o_result=`$ECHO "${1}" | $SED "$lo2o"`
7410 }
7411
7412 # func_xform libobj-or-source
7413 func_xform ()
7414 {
7415   func_xform_result=`$ECHO "${1}" | $SED 's/\.[[^.]]*$/.lo/'`
7416 }
7417
7418 # func_arith arithmetic-term...
7419 func_arith ()
7420 {
7421   func_arith_result=`expr "$[@]"`
7422 }
7423
7424 # func_len string
7425 # STRING may not start with a hyphen.
7426 func_len ()
7427 {
7428   func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len`
7429 }
7430
7431 _LT_EOF
7432 esac
7433
7434 case $lt_shell_append in
7435   yes)
7436     cat << \_LT_EOF >> "$cfgfile"
7437
7438 # func_append var value
7439 # Append VALUE to the end of shell variable VAR.
7440 func_append ()
7441 {
7442   eval "$[1]+=\$[2]"
7443 }
7444 _LT_EOF
7445     ;;
7446   *)
7447     cat << \_LT_EOF >> "$cfgfile"
7448
7449 # func_append var value
7450 # Append VALUE to the end of shell variable VAR.
7451 func_append ()
7452 {
7453   eval "$[1]=\$$[1]\$[2]"
7454 }
7455
7456 _LT_EOF
7457     ;;
7458   esac
7459 ])