1# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
2
3# Copyright (C) 1996-2018 Free Software Foundation, Inc.
4
5# This file is free software; the Free Software Foundation
6# gives unlimited permission to copy and/or distribute it,
7# with or without modifications, as long as this notice is preserved.
8
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
11# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
12# PARTICULAR PURPOSE.
13
14m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun([AC_CONFIG_MACRO_DIRS], [_AM_CONFIG_MACRO_DIRS($@)])])
15m4_ifndef([AC_AUTOCONF_VERSION],
16  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
17m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.69],,
18[m4_warning([this file was generated for autoconf 2.69.
19You have another version of autoconf.  It may work, but is not guaranteed to.
20If you have problems, you may need to regenerate the build system entirely.
21To do so, use the procedure documented by the package, typically 'autoreconf'.])])
22
23# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*-
24#
25#   Copyright (C) 1996-2001, 2003-2018 Free Software Foundation, Inc.
26#   Written by Gordon Matzigkeit, 1996
27#
28# This file is free software; the Free Software Foundation gives
29# unlimited permission to copy and/or distribute it, with or without
30# modifications, as long as this notice is preserved.
31
32m4_define([_LT_COPYING], [dnl
33# Copyright (C) 2014 Free Software Foundation, Inc.
34# This is free software; see the source for copying conditions.  There is NO
35# warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
36
37# GNU Libtool is free software; you can redistribute it and/or modify
38# it under the terms of the GNU General Public License as published by
39# the Free Software Foundation; either version 2 of of the License, or
40# (at your option) any later version.
41#
42# As a special exception to the GNU General Public License, if you
43# distribute this file as part of a program or library that is built
44# using GNU Libtool, you may include this file under the  same
45# distribution terms that you use for the rest of that program.
46#
47# GNU Libtool is distributed in the hope that it will be useful, but
48# WITHOUT ANY WARRANTY; without even the implied warranty of
49# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
50# GNU General Public License for more details.
51#
52# You should have received a copy of the GNU General Public License
53# along with this program.  If not, see <http://www.gnu.org/licenses/>.
54])
55
56# serial 58 LT_INIT
57
58
59# LT_PREREQ(VERSION)
60# ------------------
61# Complain and exit if this libtool version is less that VERSION.
62m4_defun([LT_PREREQ],
63[m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1,
64       [m4_default([$3],
65		   [m4_fatal([Libtool version $1 or higher is required],
66		             63)])],
67       [$2])])
68
69
70# _LT_CHECK_BUILDDIR
71# ------------------
72# Complain if the absolute build directory name contains unusual characters
73m4_defun([_LT_CHECK_BUILDDIR],
74[case `pwd` in
75  *\ * | *\	*)
76    AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;;
77esac
78])
79
80
81# LT_INIT([OPTIONS])
82# ------------------
83AC_DEFUN([LT_INIT],
84[AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
85AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
86AC_BEFORE([$0], [LT_LANG])dnl
87AC_BEFORE([$0], [LT_OUTPUT])dnl
88AC_BEFORE([$0], [LTDL_INIT])dnl
89m4_require([_LT_CHECK_BUILDDIR])dnl
90
91dnl Autoconf doesn't catch unexpanded LT_ macros by default:
92m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
93m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
94dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
95dnl unless we require an AC_DEFUNed macro:
96AC_REQUIRE([LTOPTIONS_VERSION])dnl
97AC_REQUIRE([LTSUGAR_VERSION])dnl
98AC_REQUIRE([LTVERSION_VERSION])dnl
99AC_REQUIRE([LTOBSOLETE_VERSION])dnl
100m4_require([_LT_PROG_LTMAIN])dnl
101
102_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
103
104dnl Parse OPTIONS
105_LT_SET_OPTIONS([$0], [$1])
106
107# This can be used to rebuild libtool when needed
108LIBTOOL_DEPS=$ltmain
109
110# Always use our own libtool.
111LIBTOOL='$(SHELL) $(top_builddir)/libtool'
112AC_SUBST(LIBTOOL)dnl
113
114_LT_SETUP
115
116# Only expand once:
117m4_define([LT_INIT])
118])# LT_INIT
119
120# Old names:
121AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT])
122AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT])
123dnl aclocal-1.4 backwards compatibility:
124dnl AC_DEFUN([AC_PROG_LIBTOOL], [])
125dnl AC_DEFUN([AM_PROG_LIBTOOL], [])
126
127
128# _LT_PREPARE_CC_BASENAME
129# -----------------------
130m4_defun([_LT_PREPARE_CC_BASENAME], [
131# Calculate cc_basename.  Skip known compiler wrappers and cross-prefix.
132func_cc_basename ()
133{
134    for cc_temp in @S|@*""; do
135      case $cc_temp in
136        compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
137        distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
138        \-*) ;;
139        *) break;;
140      esac
141    done
142    func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"`
143}
144])# _LT_PREPARE_CC_BASENAME
145
146
147# _LT_CC_BASENAME(CC)
148# -------------------
149# It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME,
150# but that macro is also expanded into generated libtool script, which
151# arranges for $SED and $ECHO to be set by different means.
152m4_defun([_LT_CC_BASENAME],
153[m4_require([_LT_PREPARE_CC_BASENAME])dnl
154AC_REQUIRE([_LT_DECL_SED])dnl
155AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
156func_cc_basename $1
157cc_basename=$func_cc_basename_result
158])
159
160
161# _LT_FILEUTILS_DEFAULTS
162# ----------------------
163# It is okay to use these file commands and assume they have been set
164# sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'.
165m4_defun([_LT_FILEUTILS_DEFAULTS],
166[: ${CP="cp -f"}
167: ${MV="mv -f"}
168: ${RM="rm -f"}
169])# _LT_FILEUTILS_DEFAULTS
170
171
172# _LT_SETUP
173# ---------
174m4_defun([_LT_SETUP],
175[AC_REQUIRE([AC_CANONICAL_HOST])dnl
176AC_REQUIRE([AC_CANONICAL_BUILD])dnl
177AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl
178AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl
179
180_LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl
181dnl
182_LT_DECL([], [host_alias], [0], [The host system])dnl
183_LT_DECL([], [host], [0])dnl
184_LT_DECL([], [host_os], [0])dnl
185dnl
186_LT_DECL([], [build_alias], [0], [The build system])dnl
187_LT_DECL([], [build], [0])dnl
188_LT_DECL([], [build_os], [0])dnl
189dnl
190AC_REQUIRE([AC_PROG_CC])dnl
191AC_REQUIRE([LT_PATH_LD])dnl
192AC_REQUIRE([LT_PATH_NM])dnl
193dnl
194AC_REQUIRE([AC_PROG_LN_S])dnl
195test -z "$LN_S" && LN_S="ln -s"
196_LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl
197dnl
198AC_REQUIRE([LT_CMD_MAX_LEN])dnl
199_LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl
200_LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl
201dnl
202m4_require([_LT_FILEUTILS_DEFAULTS])dnl
203m4_require([_LT_CHECK_SHELL_FEATURES])dnl
204m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl
205m4_require([_LT_CMD_RELOAD])dnl
206m4_require([_LT_CHECK_MAGIC_METHOD])dnl
207m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl
208m4_require([_LT_CMD_OLD_ARCHIVE])dnl
209m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
210m4_require([_LT_WITH_SYSROOT])dnl
211m4_require([_LT_CMD_TRUNCATE])dnl
212
213_LT_CONFIG_LIBTOOL_INIT([
214# See if we are running on zsh, and set the options that allow our
215# commands through without removal of \ escapes INIT.
216if test -n "\${ZSH_VERSION+set}"; then
217   setopt NO_GLOB_SUBST
218fi
219])
220if test -n "${ZSH_VERSION+set}"; then
221   setopt NO_GLOB_SUBST
222fi
223
224_LT_CHECK_OBJDIR
225
226m4_require([_LT_TAG_COMPILER])dnl
227
228case $host_os in
229aix3*)
230  # AIX sometimes has problems with the GCC collect2 program.  For some
231  # reason, if we set the COLLECT_NAMES environment variable, the problems
232  # vanish in a puff of smoke.
233  if test set != "${COLLECT_NAMES+set}"; then
234    COLLECT_NAMES=
235    export COLLECT_NAMES
236  fi
237  ;;
238esac
239
240# Global variables:
241ofile=libtool
242can_build_shared=yes
243
244# All known linkers require a '.a' archive for static linking (except MSVC and
245# ICC, which need '.lib').
246libext=a
247
248with_gnu_ld=$lt_cv_prog_gnu_ld
249
250old_CC=$CC
251old_CFLAGS=$CFLAGS
252
253# Set sane defaults for various variables
254test -z "$CC" && CC=cc
255test -z "$LTCC" && LTCC=$CC
256test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
257test -z "$LD" && LD=ld
258test -z "$ac_objext" && ac_objext=o
259
260_LT_CC_BASENAME([$compiler])
261
262# Only perform the check for file, if the check method requires it
263test -z "$MAGIC_CMD" && MAGIC_CMD=file
264case $deplibs_check_method in
265file_magic*)
266  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
267    _LT_PATH_MAGIC
268  fi
269  ;;
270esac
271
272# Use C for the default configuration in the libtool script
273LT_SUPPORTED_TAG([CC])
274_LT_LANG_C_CONFIG
275_LT_LANG_DEFAULT_CONFIG
276_LT_CONFIG_COMMANDS
277])# _LT_SETUP
278
279
280# _LT_PREPARE_SED_QUOTE_VARS
281# --------------------------
282# Define a few sed substitution that help us do robust quoting.
283m4_defun([_LT_PREPARE_SED_QUOTE_VARS],
284[# Backslashify metacharacters that are still active within
285# double-quoted strings.
286sed_quote_subst='s/\([["`$\\]]\)/\\\1/g'
287
288# Same as above, but do not quote variable references.
289double_quote_subst='s/\([["`\\]]\)/\\\1/g'
290
291# Sed substitution to delay expansion of an escaped shell variable in a
292# double_quote_subst'ed string.
293delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
294
295# Sed substitution to delay expansion of an escaped single quote.
296delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g'
297
298# Sed substitution to avoid accidental globbing in evaled expressions
299no_glob_subst='s/\*/\\\*/g'
300])
301
302# _LT_PROG_LTMAIN
303# ---------------
304# Note that this code is called both from 'configure', and 'config.status'
305# now that we use AC_CONFIG_COMMANDS to generate libtool.  Notably,
306# 'config.status' has no value for ac_aux_dir unless we are using Automake,
307# so we pass a copy along to make sure it has a sensible value anyway.
308m4_defun([_LT_PROG_LTMAIN],
309[m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl
310_LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir'])
311ltmain=$ac_aux_dir/ltmain.sh
312])# _LT_PROG_LTMAIN
313
314
315
316# So that we can recreate a full libtool script including additional
317# tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS
318# in macros and then make a single call at the end using the 'libtool'
319# label.
320
321
322# _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS])
323# ----------------------------------------
324# Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later.
325m4_define([_LT_CONFIG_LIBTOOL_INIT],
326[m4_ifval([$1],
327          [m4_append([_LT_OUTPUT_LIBTOOL_INIT],
328                     [$1
329])])])
330
331# Initialize.
332m4_define([_LT_OUTPUT_LIBTOOL_INIT])
333
334
335# _LT_CONFIG_LIBTOOL([COMMANDS])
336# ------------------------------
337# Register COMMANDS to be passed to AC_CONFIG_COMMANDS later.
338m4_define([_LT_CONFIG_LIBTOOL],
339[m4_ifval([$1],
340          [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS],
341                     [$1
342])])])
343
344# Initialize.
345m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS])
346
347
348# _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS])
349# -----------------------------------------------------
350m4_defun([_LT_CONFIG_SAVE_COMMANDS],
351[_LT_CONFIG_LIBTOOL([$1])
352_LT_CONFIG_LIBTOOL_INIT([$2])
353])
354
355
356# _LT_FORMAT_COMMENT([COMMENT])
357# -----------------------------
358# Add leading comment marks to the start of each line, and a trailing
359# full-stop to the whole comment if one is not present already.
360m4_define([_LT_FORMAT_COMMENT],
361[m4_ifval([$1], [
362m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])],
363              [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.])
364)])
365
366
367
368
369
370# _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?])
371# -------------------------------------------------------------------
372# CONFIGNAME is the name given to the value in the libtool script.
373# VARNAME is the (base) name used in the configure script.
374# VALUE may be 0, 1 or 2 for a computed quote escaped value based on
375# VARNAME.  Any other value will be used directly.
376m4_define([_LT_DECL],
377[lt_if_append_uniq([lt_decl_varnames], [$2], [, ],
378    [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name],
379	[m4_ifval([$1], [$1], [$2])])
380    lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3])
381    m4_ifval([$4],
382	[lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])])
383    lt_dict_add_subkey([lt_decl_dict], [$2],
384	[tagged?], [m4_ifval([$5], [yes], [no])])])
385])
386
387
388# _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION])
389# --------------------------------------------------------
390m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])])
391
392
393# lt_decl_tag_varnames([SEPARATOR], [VARNAME1...])
394# ------------------------------------------------
395m4_define([lt_decl_tag_varnames],
396[_lt_decl_filter([tagged?], [yes], $@)])
397
398
399# _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..])
400# ---------------------------------------------------------
401m4_define([_lt_decl_filter],
402[m4_case([$#],
403  [0], [m4_fatal([$0: too few arguments: $#])],
404  [1], [m4_fatal([$0: too few arguments: $#: $1])],
405  [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)],
406  [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)],
407  [lt_dict_filter([lt_decl_dict], $@)])[]dnl
408])
409
410
411# lt_decl_quote_varnames([SEPARATOR], [VARNAME1...])
412# --------------------------------------------------
413m4_define([lt_decl_quote_varnames],
414[_lt_decl_filter([value], [1], $@)])
415
416
417# lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...])
418# ---------------------------------------------------
419m4_define([lt_decl_dquote_varnames],
420[_lt_decl_filter([value], [2], $@)])
421
422
423# lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...])
424# ---------------------------------------------------
425m4_define([lt_decl_varnames_tagged],
426[m4_assert([$# <= 2])dnl
427_$0(m4_quote(m4_default([$1], [[, ]])),
428    m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]),
429    m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))])
430m4_define([_lt_decl_varnames_tagged],
431[m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])])
432
433
434# lt_decl_all_varnames([SEPARATOR], [VARNAME1...])
435# ------------------------------------------------
436m4_define([lt_decl_all_varnames],
437[_$0(m4_quote(m4_default([$1], [[, ]])),
438     m4_if([$2], [],
439	   m4_quote(lt_decl_varnames),
440	m4_quote(m4_shift($@))))[]dnl
441])
442m4_define([_lt_decl_all_varnames],
443[lt_join($@, lt_decl_varnames_tagged([$1],
444			lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl
445])
446
447
448# _LT_CONFIG_STATUS_DECLARE([VARNAME])
449# ------------------------------------
450# Quote a variable value, and forward it to 'config.status' so that its
451# declaration there will have the same value as in 'configure'.  VARNAME
452# must have a single quote delimited value for this to work.
453m4_define([_LT_CONFIG_STATUS_DECLARE],
454[$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`'])
455
456
457# _LT_CONFIG_STATUS_DECLARATIONS
458# ------------------------------
459# We delimit libtool config variables with single quotes, so when
460# we write them to config.status, we have to be sure to quote all
461# embedded single quotes properly.  In configure, this macro expands
462# each variable declared with _LT_DECL (and _LT_TAGDECL) into:
463#
464#    <var>='`$ECHO "$<var>" | $SED "$delay_single_quote_subst"`'
465m4_defun([_LT_CONFIG_STATUS_DECLARATIONS],
466[m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames),
467    [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])])
468
469
470# _LT_LIBTOOL_TAGS
471# ----------------
472# Output comment and list of tags supported by the script
473m4_defun([_LT_LIBTOOL_TAGS],
474[_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl
475available_tags='_LT_TAGS'dnl
476])
477
478
479# _LT_LIBTOOL_DECLARE(VARNAME, [TAG])
480# -----------------------------------
481# Extract the dictionary values for VARNAME (optionally with TAG) and
482# expand to a commented shell variable setting:
483#
484#    # Some comment about what VAR is for.
485#    visible_name=$lt_internal_name
486m4_define([_LT_LIBTOOL_DECLARE],
487[_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1],
488					   [description])))[]dnl
489m4_pushdef([_libtool_name],
490    m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl
491m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])),
492    [0], [_libtool_name=[$]$1],
493    [1], [_libtool_name=$lt_[]$1],
494    [2], [_libtool_name=$lt_[]$1],
495    [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl
496m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl
497])
498
499
500# _LT_LIBTOOL_CONFIG_VARS
501# -----------------------
502# Produce commented declarations of non-tagged libtool config variables
503# suitable for insertion in the LIBTOOL CONFIG section of the 'libtool'
504# script.  Tagged libtool config variables (even for the LIBTOOL CONFIG
505# section) are produced by _LT_LIBTOOL_TAG_VARS.
506m4_defun([_LT_LIBTOOL_CONFIG_VARS],
507[m4_foreach([_lt_var],
508    m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)),
509    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])])
510
511
512# _LT_LIBTOOL_TAG_VARS(TAG)
513# -------------------------
514m4_define([_LT_LIBTOOL_TAG_VARS],
515[m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames),
516    [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])])
517
518
519# _LT_TAGVAR(VARNAME, [TAGNAME])
520# ------------------------------
521m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])])
522
523
524# _LT_CONFIG_COMMANDS
525# -------------------
526# Send accumulated output to $CONFIG_STATUS.  Thanks to the lists of
527# variables for single and double quote escaping we saved from calls
528# to _LT_DECL, we can put quote escaped variables declarations
529# into 'config.status', and then the shell code to quote escape them in
530# for loops in 'config.status'.  Finally, any additional code accumulated
531# from calls to _LT_CONFIG_LIBTOOL_INIT is expanded.
532m4_defun([_LT_CONFIG_COMMANDS],
533[AC_PROVIDE_IFELSE([LT_OUTPUT],
534	dnl If the libtool generation code has been placed in $CONFIG_LT,
535	dnl instead of duplicating it all over again into config.status,
536	dnl then we will have config.status run $CONFIG_LT later, so it
537	dnl needs to know what name is stored there:
538        [AC_CONFIG_COMMANDS([libtool],
539            [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])],
540    dnl If the libtool generation code is destined for config.status,
541    dnl expand the accumulated commands and init code now:
542    [AC_CONFIG_COMMANDS([libtool],
543        [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])])
544])#_LT_CONFIG_COMMANDS
545
546
547# Initialize.
548m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT],
549[
550
551# The HP-UX ksh and POSIX shell print the target directory to stdout
552# if CDPATH is set.
553(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
554
555sed_quote_subst='$sed_quote_subst'
556double_quote_subst='$double_quote_subst'
557delay_variable_subst='$delay_variable_subst'
558_LT_CONFIG_STATUS_DECLARATIONS
559LTCC='$LTCC'
560LTCFLAGS='$LTCFLAGS'
561compiler='$compiler_DEFAULT'
562
563# A function that is used when there is no print builtin or printf.
564func_fallback_echo ()
565{
566  eval 'cat <<_LTECHO_EOF
567\$[]1
568_LTECHO_EOF'
569}
570
571# Quote evaled strings.
572for var in lt_decl_all_varnames([[ \
573]], lt_decl_quote_varnames); do
574    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
575    *[[\\\\\\\`\\"\\\$]]*)
576      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
577      ;;
578    *)
579      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
580      ;;
581    esac
582done
583
584# Double-quote double-evaled strings.
585for var in lt_decl_all_varnames([[ \
586]], lt_decl_dquote_varnames); do
587    case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in
588    *[[\\\\\\\`\\"\\\$]]*)
589      eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes
590      ;;
591    *)
592      eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\""
593      ;;
594    esac
595done
596
597_LT_OUTPUT_LIBTOOL_INIT
598])
599
600# _LT_GENERATED_FILE_INIT(FILE, [COMMENT])
601# ------------------------------------
602# Generate a child script FILE with all initialization necessary to
603# reuse the environment learned by the parent script, and make the
604# file executable.  If COMMENT is supplied, it is inserted after the
605# '#!' sequence but before initialization text begins.  After this
606# macro, additional text can be appended to FILE to form the body of
607# the child script.  The macro ends with non-zero status if the
608# file could not be fully written (such as if the disk is full).
609m4_ifdef([AS_INIT_GENERATED],
610[m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])],
611[m4_defun([_LT_GENERATED_FILE_INIT],
612[m4_require([AS_PREPARE])]dnl
613[m4_pushdef([AS_MESSAGE_LOG_FD])]dnl
614[lt_write_fail=0
615cat >$1 <<_ASEOF || lt_write_fail=1
616#! $SHELL
617# Generated by $as_me.
618$2
619SHELL=\${CONFIG_SHELL-$SHELL}
620export SHELL
621_ASEOF
622cat >>$1 <<\_ASEOF || lt_write_fail=1
623AS_SHELL_SANITIZE
624_AS_PREPARE
625exec AS_MESSAGE_FD>&1
626_ASEOF
627test 0 = "$lt_write_fail" && chmod +x $1[]dnl
628m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT
629
630# LT_OUTPUT
631# ---------
632# This macro allows early generation of the libtool script (before
633# AC_OUTPUT is called), incase it is used in configure for compilation
634# tests.
635AC_DEFUN([LT_OUTPUT],
636[: ${CONFIG_LT=./config.lt}
637AC_MSG_NOTICE([creating $CONFIG_LT])
638_LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
639[# Run this file to recreate a libtool stub with the current configuration.])
640
641cat >>"$CONFIG_LT" <<\_LTEOF
642lt_cl_silent=false
643exec AS_MESSAGE_LOG_FD>>config.log
644{
645  echo
646  AS_BOX([Running $as_me.])
647} >&AS_MESSAGE_LOG_FD
648
649lt_cl_help="\
650'$as_me' creates a local libtool stub from the current configuration,
651for use in further configure time tests before the real libtool is
652generated.
653
654Usage: $[0] [[OPTIONS]]
655
656  -h, --help      print this help, then exit
657  -V, --version   print version number, then exit
658  -q, --quiet     do not print progress messages
659  -d, --debug     don't remove temporary files
660
661Report bugs to <bug-libtool@gnu.org>."
662
663lt_cl_version="\
664m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
665m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
666configured by $[0], generated by m4_PACKAGE_STRING.
667
668Copyright (C) 2011 Free Software Foundation, Inc.
669This config.lt script is free software; the Free Software Foundation
670gives unlimited permision to copy, distribute and modify it."
671
672while test 0 != $[#]
673do
674  case $[1] in
675    --version | --v* | -V )
676      echo "$lt_cl_version"; exit 0 ;;
677    --help | --h* | -h )
678      echo "$lt_cl_help"; exit 0 ;;
679    --debug | --d* | -d )
680      debug=: ;;
681    --quiet | --q* | --silent | --s* | -q )
682      lt_cl_silent=: ;;
683
684    -*) AC_MSG_ERROR([unrecognized option: $[1]
685Try '$[0] --help' for more information.]) ;;
686
687    *) AC_MSG_ERROR([unrecognized argument: $[1]
688Try '$[0] --help' for more information.]) ;;
689  esac
690  shift
691done
692
693if $lt_cl_silent; then
694  exec AS_MESSAGE_FD>/dev/null
695fi
696_LTEOF
697
698cat >>"$CONFIG_LT" <<_LTEOF
699_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
700_LTEOF
701
702cat >>"$CONFIG_LT" <<\_LTEOF
703AC_MSG_NOTICE([creating $ofile])
704_LT_OUTPUT_LIBTOOL_COMMANDS
705AS_EXIT(0)
706_LTEOF
707chmod +x "$CONFIG_LT"
708
709# configure is writing to config.log, but config.lt does its own redirection,
710# appending to config.log, which fails on DOS, as config.log is still kept
711# open by configure.  Here we exec the FD to /dev/null, effectively closing
712# config.log, so it can be properly (re)opened and appended to by config.lt.
713lt_cl_success=:
714test yes = "$silent" &&
715  lt_config_lt_args="$lt_config_lt_args --quiet"
716exec AS_MESSAGE_LOG_FD>/dev/null
717$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
718exec AS_MESSAGE_LOG_FD>>config.log
719$lt_cl_success || AS_EXIT(1)
720])# LT_OUTPUT
721
722
723# _LT_CONFIG(TAG)
724# ---------------
725# If TAG is the built-in tag, create an initial libtool script with a
726# default configuration from the untagged config vars.  Otherwise add code
727# to config.status for appending the configuration named by TAG from the
728# matching tagged config vars.
729m4_defun([_LT_CONFIG],
730[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
731_LT_CONFIG_SAVE_COMMANDS([
732  m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl
733  m4_if(_LT_TAG, [C], [
734    # See if we are running on zsh, and set the options that allow our
735    # commands through without removal of \ escapes.
736    if test -n "${ZSH_VERSION+set}"; then
737      setopt NO_GLOB_SUBST
738    fi
739
740    cfgfile=${ofile}T
741    trap "$RM \"$cfgfile\"; exit 1" 1 2 15
742    $RM "$cfgfile"
743
744    cat <<_LT_EOF >> "$cfgfile"
745#! $SHELL
746# Generated automatically by $as_me ($PACKAGE) $VERSION
747# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
748# NOTE: Changes made to this file will be lost: look at ltmain.sh.
749
750# Provide generalized library-building support services.
751# Written by Gordon Matzigkeit, 1996
752
753_LT_COPYING
754_LT_LIBTOOL_TAGS
755
756# Configured defaults for sys_lib_dlsearch_path munging.
757: \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"}
758
759# ### BEGIN LIBTOOL CONFIG
760_LT_LIBTOOL_CONFIG_VARS
761_LT_LIBTOOL_TAG_VARS
762# ### END LIBTOOL CONFIG
763
764_LT_EOF
765
766    cat <<'_LT_EOF' >> "$cfgfile"
767
768# ### BEGIN FUNCTIONS SHARED WITH CONFIGURE
769
770_LT_PREPARE_MUNGE_PATH_LIST
771_LT_PREPARE_CC_BASENAME
772
773# ### END FUNCTIONS SHARED WITH CONFIGURE
774
775_LT_EOF
776
777  case $host_os in
778  aix3*)
779    cat <<\_LT_EOF >> "$cfgfile"
780# AIX sometimes has problems with the GCC collect2 program.  For some
781# reason, if we set the COLLECT_NAMES environment variable, the problems
782# vanish in a puff of smoke.
783if test set != "${COLLECT_NAMES+set}"; then
784  COLLECT_NAMES=
785  export COLLECT_NAMES
786fi
787_LT_EOF
788    ;;
789  esac
790
791  _LT_PROG_LTMAIN
792
793  # We use sed instead of cat because bash on DJGPP gets confused if
794  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
795  # text mode, it properly converts lines to CR/LF.  This bash problem
796  # is reportedly fixed, but why not run on old versions too?
797  sed '$q' "$ltmain" >> "$cfgfile" \
798     || (rm -f "$cfgfile"; exit 1)
799
800   mv -f "$cfgfile" "$ofile" ||
801    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
802  chmod +x "$ofile"
803],
804[cat <<_LT_EOF >> "$ofile"
805
806dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded
807dnl in a comment (ie after a #).
808# ### BEGIN LIBTOOL TAG CONFIG: $1
809_LT_LIBTOOL_TAG_VARS(_LT_TAG)
810# ### END LIBTOOL TAG CONFIG: $1
811_LT_EOF
812])dnl /m4_if
813],
814[m4_if([$1], [], [
815    PACKAGE='$PACKAGE'
816    VERSION='$VERSION'
817    RM='$RM'
818    ofile='$ofile'], [])
819])dnl /_LT_CONFIG_SAVE_COMMANDS
820])# _LT_CONFIG
821
822
823# LT_SUPPORTED_TAG(TAG)
824# ---------------------
825# Trace this macro to discover what tags are supported by the libtool
826# --tag option, using:
827#    autoconf --trace 'LT_SUPPORTED_TAG:$1'
828AC_DEFUN([LT_SUPPORTED_TAG], [])
829
830
831# C support is built-in for now
832m4_define([_LT_LANG_C_enabled], [])
833m4_define([_LT_TAGS], [])
834
835
836# LT_LANG(LANG)
837# -------------
838# Enable libtool support for the given language if not already enabled.
839AC_DEFUN([LT_LANG],
840[AC_BEFORE([$0], [LT_OUTPUT])dnl
841m4_case([$1],
842  [C],			[_LT_LANG(C)],
843  [C++],		[_LT_LANG(CXX)],
844  [Go],			[_LT_LANG(GO)],
845  [Java],		[_LT_LANG(GCJ)],
846  [Fortran 77],		[_LT_LANG(F77)],
847  [Fortran],		[_LT_LANG(FC)],
848  [Windows Resource],	[_LT_LANG(RC)],
849  [m4_ifdef([_LT_LANG_]$1[_CONFIG],
850    [_LT_LANG($1)],
851    [m4_fatal([$0: unsupported language: "$1"])])])dnl
852])# LT_LANG
853
854
855# _LT_LANG(LANGNAME)
856# ------------------
857m4_defun([_LT_LANG],
858[m4_ifdef([_LT_LANG_]$1[_enabled], [],
859  [LT_SUPPORTED_TAG([$1])dnl
860  m4_append([_LT_TAGS], [$1 ])dnl
861  m4_define([_LT_LANG_]$1[_enabled], [])dnl
862  _LT_LANG_$1_CONFIG($1)])dnl
863])# _LT_LANG
864
865
866m4_ifndef([AC_PROG_GO], [
867# NOTE: This macro has been submitted for inclusion into   #
868#  GNU Autoconf as AC_PROG_GO.  When it is available in    #
869#  a released version of Autoconf we should remove this    #
870#  macro and use it instead.                               #
871m4_defun([AC_PROG_GO],
872[AC_LANG_PUSH(Go)dnl
873AC_ARG_VAR([GOC],     [Go compiler command])dnl
874AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl
875_AC_ARG_VAR_LDFLAGS()dnl
876AC_CHECK_TOOL(GOC, gccgo)
877if test -z "$GOC"; then
878  if test -n "$ac_tool_prefix"; then
879    AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo])
880  fi
881fi
882if test -z "$GOC"; then
883  AC_CHECK_PROG(GOC, gccgo, gccgo, false)
884fi
885])#m4_defun
886])#m4_ifndef
887
888
889# _LT_LANG_DEFAULT_CONFIG
890# -----------------------
891m4_defun([_LT_LANG_DEFAULT_CONFIG],
892[AC_PROVIDE_IFELSE([AC_PROG_CXX],
893  [LT_LANG(CXX)],
894  [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])])
895
896AC_PROVIDE_IFELSE([AC_PROG_F77],
897  [LT_LANG(F77)],
898  [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])])
899
900AC_PROVIDE_IFELSE([AC_PROG_FC],
901  [LT_LANG(FC)],
902  [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])])
903
904dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal
905dnl pulling things in needlessly.
906AC_PROVIDE_IFELSE([AC_PROG_GCJ],
907  [LT_LANG(GCJ)],
908  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
909    [LT_LANG(GCJ)],
910    [AC_PROVIDE_IFELSE([LT_PROG_GCJ],
911      [LT_LANG(GCJ)],
912      [m4_ifdef([AC_PROG_GCJ],
913	[m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])])
914       m4_ifdef([A][M_PROG_GCJ],
915	[m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])])
916       m4_ifdef([LT_PROG_GCJ],
917	[m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])])
918
919AC_PROVIDE_IFELSE([AC_PROG_GO],
920  [LT_LANG(GO)],
921  [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])])
922
923AC_PROVIDE_IFELSE([LT_PROG_RC],
924  [LT_LANG(RC)],
925  [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])])
926])# _LT_LANG_DEFAULT_CONFIG
927
928# Obsolete macros:
929AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
930AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
931AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
932AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
933AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
934dnl aclocal-1.4 backwards compatibility:
935dnl AC_DEFUN([AC_LIBTOOL_CXX], [])
936dnl AC_DEFUN([AC_LIBTOOL_F77], [])
937dnl AC_DEFUN([AC_LIBTOOL_FC], [])
938dnl AC_DEFUN([AC_LIBTOOL_GCJ], [])
939dnl AC_DEFUN([AC_LIBTOOL_RC], [])
940
941
942# _LT_TAG_COMPILER
943# ----------------
944m4_defun([_LT_TAG_COMPILER],
945[AC_REQUIRE([AC_PROG_CC])dnl
946
947_LT_DECL([LTCC], [CC], [1], [A C compiler])dnl
948_LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl
949_LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl
950_LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl
951
952# If no C compiler was specified, use CC.
953LTCC=${LTCC-"$CC"}
954
955# If no C compiler flags were specified, use CFLAGS.
956LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
957
958# Allow CC to be a program name with arguments.
959compiler=$CC
960])# _LT_TAG_COMPILER
961
962
963# _LT_COMPILER_BOILERPLATE
964# ------------------------
965# Check for compiler boilerplate output or warnings with
966# the simple compiler test code.
967m4_defun([_LT_COMPILER_BOILERPLATE],
968[m4_require([_LT_DECL_SED])dnl
969ac_outfile=conftest.$ac_objext
970echo "$lt_simple_compile_test_code" >conftest.$ac_ext
971eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
972_lt_compiler_boilerplate=`cat conftest.err`
973$RM conftest*
974])# _LT_COMPILER_BOILERPLATE
975
976
977# _LT_LINKER_BOILERPLATE
978# ----------------------
979# Check for linker boilerplate output or warnings with
980# the simple link test code.
981m4_defun([_LT_LINKER_BOILERPLATE],
982[m4_require([_LT_DECL_SED])dnl
983ac_outfile=conftest.$ac_objext
984echo "$lt_simple_link_test_code" >conftest.$ac_ext
985eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
986_lt_linker_boilerplate=`cat conftest.err`
987$RM -r conftest*
988])# _LT_LINKER_BOILERPLATE
989
990# _LT_REQUIRED_DARWIN_CHECKS
991# -------------------------
992m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[
993  case $host_os in
994    rhapsody* | darwin*)
995    AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
996    AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
997    AC_CHECK_TOOL([LIPO], [lipo], [:])
998    AC_CHECK_TOOL([OTOOL], [otool], [:])
999    AC_CHECK_TOOL([OTOOL64], [otool64], [:])
1000    _LT_DECL([], [DSYMUTIL], [1],
1001      [Tool to manipulate archived DWARF debug symbol files on Mac OS X])
1002    _LT_DECL([], [NMEDIT], [1],
1003      [Tool to change global to local symbols on Mac OS X])
1004    _LT_DECL([], [LIPO], [1],
1005      [Tool to manipulate fat objects and archives on Mac OS X])
1006    _LT_DECL([], [OTOOL], [1],
1007      [ldd/readelf like tool for Mach-O binaries on Mac OS X])
1008    _LT_DECL([], [OTOOL64], [1],
1009      [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4])
1010
1011    AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
1012      [lt_cv_apple_cc_single_mod=no
1013      if test -z "$LT_MULTI_MODULE"; then
1014	# By default we will add the -single_module flag. You can override
1015	# by either setting the environment variable LT_MULTI_MODULE
1016	# non-empty at configure time, or by adding -multi_module to the
1017	# link flags.
1018	rm -rf libconftest.dylib*
1019	echo "int foo(void){return 1;}" > conftest.c
1020	echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
1021-dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD
1022	$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
1023	  -dynamiclib -Wl,-single_module conftest.c 2>conftest.err
1024        _lt_result=$?
1025	# If there is a non-empty error log, and "single_module"
1026	# appears in it, assume the flag caused a linker warning
1027        if test -s conftest.err && $GREP single_module conftest.err; then
1028	  cat conftest.err >&AS_MESSAGE_LOG_FD
1029	# Otherwise, if the output was created with a 0 exit code from
1030	# the compiler, it worked.
1031	elif test -f libconftest.dylib && test 0 = "$_lt_result"; then
1032	  lt_cv_apple_cc_single_mod=yes
1033	else
1034	  cat conftest.err >&AS_MESSAGE_LOG_FD
1035	fi
1036	rm -rf libconftest.dylib*
1037	rm -f conftest.*
1038      fi])
1039
1040    AC_CACHE_CHECK([for -exported_symbols_list linker flag],
1041      [lt_cv_ld_exported_symbols_list],
1042      [lt_cv_ld_exported_symbols_list=no
1043      save_LDFLAGS=$LDFLAGS
1044      echo "_main" > conftest.sym
1045      LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
1046      AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
1047	[lt_cv_ld_exported_symbols_list=yes],
1048	[lt_cv_ld_exported_symbols_list=no])
1049	LDFLAGS=$save_LDFLAGS
1050    ])
1051
1052    AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load],
1053      [lt_cv_ld_force_load=no
1054      cat > conftest.c << _LT_EOF
1055int forced_loaded() { return 2;}
1056_LT_EOF
1057      echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD
1058      $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD
1059      echo "$AR $AR_FLAGS libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD
1060      $AR $AR_FLAGS libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD
1061      echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD
1062      $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD
1063      cat > conftest.c << _LT_EOF
1064int main() { return 0;}
1065_LT_EOF
1066      echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD
1067      $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err
1068      _lt_result=$?
1069      if test -s conftest.err && $GREP force_load conftest.err; then
1070	cat conftest.err >&AS_MESSAGE_LOG_FD
1071      elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then
1072	lt_cv_ld_force_load=yes
1073      else
1074	cat conftest.err >&AS_MESSAGE_LOG_FD
1075      fi
1076        rm -f conftest.err libconftest.a conftest conftest.c
1077        rm -rf conftest.dSYM
1078    ])
1079    case $host_os in
1080    rhapsody* | darwin1.[[012]])
1081      _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;;
1082    darwin1.*)
1083      _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
1084    darwin*) # darwin 5.x on
1085      # if running on 10.5 or later, the deployment target defaults
1086      # to the OS version, if on x86, and 10.4, the deployment
1087      # target defaults to 10.4. Don't you love it?
1088      case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
1089	10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
1090	  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
1091	10.[[012]][[,.]]*)
1092	  _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;;
1093	10.*)
1094	  _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' ;;
1095      esac
1096    ;;
1097  esac
1098    if test yes = "$lt_cv_apple_cc_single_mod"; then
1099      _lt_dar_single_mod='$single_module'
1100    fi
1101    if test yes = "$lt_cv_ld_exported_symbols_list"; then
1102      _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym'
1103    else
1104      _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib'
1105    fi
1106    if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then
1107      _lt_dsymutil='~$DSYMUTIL $lib || :'
1108    else
1109      _lt_dsymutil=
1110    fi
1111    ;;
1112  esac
1113])
1114
1115
1116# _LT_DARWIN_LINKER_FEATURES([TAG])
1117# ---------------------------------
1118# Checks for linker and compiler features on darwin
1119m4_defun([_LT_DARWIN_LINKER_FEATURES],
1120[
1121  m4_require([_LT_REQUIRED_DARWIN_CHECKS])
1122  _LT_TAGVAR(archive_cmds_need_lc, $1)=no
1123  _LT_TAGVAR(hardcode_direct, $1)=no
1124  _LT_TAGVAR(hardcode_automatic, $1)=yes
1125  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
1126  if test yes = "$lt_cv_ld_force_load"; then
1127    _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\"`'
1128    m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes],
1129                  [FC],  [_LT_TAGVAR(compiler_needs_object, $1)=yes])
1130  else
1131    _LT_TAGVAR(whole_archive_flag_spec, $1)=''
1132  fi
1133  _LT_TAGVAR(link_all_deplibs, $1)=yes
1134  _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined
1135  case $cc_basename in
1136     ifort*|nagfor*) _lt_dar_can_shared=yes ;;
1137     *) _lt_dar_can_shared=$GCC ;;
1138  esac
1139  if test yes = "$_lt_dar_can_shared"; then
1140    output_verbose_link_cmd=func_echo_all
1141    _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"
1142    _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil"
1143    _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"
1144    _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"
1145    m4_if([$1], [CXX],
1146[   if test yes != "$lt_cv_apple_cc_single_mod"; then
1147      _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"
1148      _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"
1149    fi
1150],[])
1151  else
1152  _LT_TAGVAR(ld_shlibs, $1)=no
1153  fi
1154])
1155
1156# _LT_SYS_MODULE_PATH_AIX([TAGNAME])
1157# ----------------------------------
1158# Links a minimal program and checks the executable
1159# for the system default hardcoded library path. In most cases,
1160# this is /usr/lib:/lib, but when the MPI compilers are used
1161# the location of the communication and MPI libs are included too.
1162# If we don't find anything, use the default library path according
1163# to the aix ld manual.
1164# Store the results from the different compilers for each TAGNAME.
1165# Allow to override them for all tags through lt_cv_aix_libpath.
1166m4_defun([_LT_SYS_MODULE_PATH_AIX],
1167[m4_require([_LT_DECL_SED])dnl
1168if test set = "${lt_cv_aix_libpath+set}"; then
1169  aix_libpath=$lt_cv_aix_libpath
1170else
1171  AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])],
1172  [AC_LINK_IFELSE([AC_LANG_PROGRAM],[
1173  lt_aix_libpath_sed='[
1174      /Import File Strings/,/^$/ {
1175	  /^0/ {
1176	      s/^0  *\([^ ]*\) *$/\1/
1177	      p
1178	  }
1179      }]'
1180  _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
1181  # Check for a 64-bit object if we didn't find anything.
1182  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
1183    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
1184  fi],[])
1185  if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then
1186    _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib
1187  fi
1188  ])
1189  aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])
1190fi
1191])# _LT_SYS_MODULE_PATH_AIX
1192
1193
1194# _LT_SHELL_INIT(ARG)
1195# -------------------
1196m4_define([_LT_SHELL_INIT],
1197[m4_divert_text([M4SH-INIT], [$1
1198])])# _LT_SHELL_INIT
1199
1200
1201
1202# _LT_PROG_ECHO_BACKSLASH
1203# -----------------------
1204# Find how we can fake an echo command that does not interpret backslash.
1205# In particular, with Autoconf 2.60 or later we add some code to the start
1206# of the generated configure script that will find a shell with a builtin
1207# printf (that we can use as an echo command).
1208m4_defun([_LT_PROG_ECHO_BACKSLASH],
1209[ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
1210ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
1211ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
1212
1213AC_MSG_CHECKING([how to print strings])
1214# Test print first, because it will be a builtin if present.
1215if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \
1216   test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then
1217  ECHO='print -r --'
1218elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then
1219  ECHO='printf %s\n'
1220else
1221  # Use this function as a fallback that always works.
1222  func_fallback_echo ()
1223  {
1224    eval 'cat <<_LTECHO_EOF
1225$[]1
1226_LTECHO_EOF'
1227  }
1228  ECHO='func_fallback_echo'
1229fi
1230
1231# func_echo_all arg...
1232# Invoke $ECHO with all args, space-separated.
1233func_echo_all ()
1234{
1235    $ECHO "$*"
1236}
1237
1238case $ECHO in
1239  printf*) AC_MSG_RESULT([printf]) ;;
1240  print*) AC_MSG_RESULT([print -r]) ;;
1241  *) AC_MSG_RESULT([cat]) ;;
1242esac
1243
1244m4_ifdef([_AS_DETECT_SUGGESTED],
1245[_AS_DETECT_SUGGESTED([
1246  test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || (
1247    ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\'
1248    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO
1249    ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO
1250    PATH=/empty FPATH=/empty; export PATH FPATH
1251    test "X`printf %s $ECHO`" = "X$ECHO" \
1252      || test "X`print -r -- $ECHO`" = "X$ECHO" )])])
1253
1254_LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts])
1255_LT_DECL([], [ECHO], [1], [An echo program that protects backslashes])
1256])# _LT_PROG_ECHO_BACKSLASH
1257
1258
1259# _LT_WITH_SYSROOT
1260# ----------------
1261AC_DEFUN([_LT_WITH_SYSROOT],
1262[AC_MSG_CHECKING([for sysroot])
1263AC_ARG_WITH([sysroot],
1264[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
1265  [Search for dependent libraries within DIR (or the compiler's sysroot
1266   if not specified).])],
1267[], [with_sysroot=no])
1268
1269dnl lt_sysroot will always be passed unquoted.  We quote it here
1270dnl in case the user passed a directory name.
1271lt_sysroot=
1272case $with_sysroot in #(
1273 yes)
1274   if test yes = "$GCC"; then
1275     lt_sysroot=`$CC --print-sysroot 2>/dev/null`
1276   fi
1277   ;; #(
1278 /*)
1279   lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
1280   ;; #(
1281 no|'')
1282   ;; #(
1283 *)
1284   AC_MSG_RESULT([$with_sysroot])
1285   AC_MSG_ERROR([The sysroot must be an absolute path.])
1286   ;;
1287esac
1288
1289 AC_MSG_RESULT([${lt_sysroot:-no}])
1290_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
1291[dependent libraries, and where our libraries should be installed.])])
1292
1293# _LT_ENABLE_LOCK
1294# ---------------
1295m4_defun([_LT_ENABLE_LOCK],
1296[AC_ARG_ENABLE([libtool-lock],
1297  [AS_HELP_STRING([--disable-libtool-lock],
1298    [avoid locking (might break parallel builds)])])
1299test no = "$enable_libtool_lock" || enable_libtool_lock=yes
1300
1301# Some flags need to be propagated to the compiler or linker for good
1302# libtool support.
1303case $host in
1304ia64-*-hpux*)
1305  # Find out what ABI is being produced by ac_compile, and set mode
1306  # options accordingly.
1307  echo 'int i;' > conftest.$ac_ext
1308  if AC_TRY_EVAL(ac_compile); then
1309    case `/usr/bin/file conftest.$ac_objext` in
1310      *ELF-32*)
1311	HPUX_IA64_MODE=32
1312	;;
1313      *ELF-64*)
1314	HPUX_IA64_MODE=64
1315	;;
1316    esac
1317  fi
1318  rm -rf conftest*
1319  ;;
1320*-*-irix6*)
1321  # Find out what ABI is being produced by ac_compile, and set linker
1322  # options accordingly.
1323  echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
1324  if AC_TRY_EVAL(ac_compile); then
1325    if test yes = "$lt_cv_prog_gnu_ld"; then
1326      case `/usr/bin/file conftest.$ac_objext` in
1327	*32-bit*)
1328	  LD="${LD-ld} -melf32bsmip"
1329	  ;;
1330	*N32*)
1331	  LD="${LD-ld} -melf32bmipn32"
1332	  ;;
1333	*64-bit*)
1334	  LD="${LD-ld} -melf64bmip"
1335	;;
1336      esac
1337    else
1338      case `/usr/bin/file conftest.$ac_objext` in
1339	*32-bit*)
1340	  LD="${LD-ld} -32"
1341	  ;;
1342	*N32*)
1343	  LD="${LD-ld} -n32"
1344	  ;;
1345	*64-bit*)
1346	  LD="${LD-ld} -64"
1347	  ;;
1348      esac
1349    fi
1350  fi
1351  rm -rf conftest*
1352  ;;
1353
1354mips64*-*linux*)
1355  # Find out what ABI is being produced by ac_compile, and set linker
1356  # options accordingly.
1357  echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext
1358  if AC_TRY_EVAL(ac_compile); then
1359    emul=elf
1360    case `/usr/bin/file conftest.$ac_objext` in
1361      *32-bit*)
1362	emul="${emul}32"
1363	;;
1364      *64-bit*)
1365	emul="${emul}64"
1366	;;
1367    esac
1368    case `/usr/bin/file conftest.$ac_objext` in
1369      *MSB*)
1370	emul="${emul}btsmip"
1371	;;
1372      *LSB*)
1373	emul="${emul}ltsmip"
1374	;;
1375    esac
1376    case `/usr/bin/file conftest.$ac_objext` in
1377      *N32*)
1378	emul="${emul}n32"
1379	;;
1380    esac
1381    LD="${LD-ld} -m $emul"
1382  fi
1383  rm -rf conftest*
1384  ;;
1385
1386x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \
1387s390*-*linux*|s390*-*tpf*|sparc*-*linux*)
1388  # Find out what ABI is being produced by ac_compile, and set linker
1389  # options accordingly.  Note that the listed cases only cover the
1390  # situations where additional linker options are needed (such as when
1391  # doing 32-bit compilation for a host where ld defaults to 64-bit, or
1392  # vice versa); the common cases where no linker options are needed do
1393  # not appear in the list.
1394  echo 'int i;' > conftest.$ac_ext
1395  if AC_TRY_EVAL(ac_compile); then
1396    case `/usr/bin/file conftest.o` in
1397      *32-bit*)
1398	case $host in
1399	  x86_64-*kfreebsd*-gnu)
1400	    LD="${LD-ld} -m elf_i386_fbsd"
1401	    ;;
1402	  x86_64-*linux*)
1403	    case `/usr/bin/file conftest.o` in
1404	      *x86-64*)
1405		LD="${LD-ld} -m elf32_x86_64"
1406		;;
1407	      *)
1408		LD="${LD-ld} -m elf_i386"
1409		;;
1410	    esac
1411	    ;;
1412	  powerpc64le-*linux*)
1413	    LD="${LD-ld} -m elf32lppclinux"
1414	    ;;
1415	  powerpc64-*linux*)
1416	    LD="${LD-ld} -m elf32ppclinux"
1417	    ;;
1418	  s390x-*linux*)
1419	    LD="${LD-ld} -m elf_s390"
1420	    ;;
1421	  sparc64-*linux*)
1422	    LD="${LD-ld} -m elf32_sparc"
1423	    ;;
1424	esac
1425	;;
1426      *64-bit*)
1427	case $host in
1428	  x86_64-*kfreebsd*-gnu)
1429	    LD="${LD-ld} -m elf_x86_64_fbsd"
1430	    ;;
1431	  x86_64-*linux*)
1432	    LD="${LD-ld} -m elf_x86_64"
1433	    ;;
1434	  powerpcle-*linux*)
1435	    LD="${LD-ld} -m elf64lppc"
1436	    ;;
1437	  powerpc-*linux*)
1438	    LD="${LD-ld} -m elf64ppc"
1439	    ;;
1440	  s390*-*linux*|s390*-*tpf*)
1441	    LD="${LD-ld} -m elf64_s390"
1442	    ;;
1443	  sparc*-*linux*)
1444	    LD="${LD-ld} -m elf64_sparc"
1445	    ;;
1446	esac
1447	;;
1448    esac
1449  fi
1450  rm -rf conftest*
1451  ;;
1452
1453*-*-sco3.2v5*)
1454  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
1455  SAVE_CFLAGS=$CFLAGS
1456  CFLAGS="$CFLAGS -belf"
1457  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
1458    [AC_LANG_PUSH(C)
1459     AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
1460     AC_LANG_POP])
1461  if test yes != "$lt_cv_cc_needs_belf"; then
1462    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
1463    CFLAGS=$SAVE_CFLAGS
1464  fi
1465  ;;
1466*-*solaris*)
1467  # Find out what ABI is being produced by ac_compile, and set linker
1468  # options accordingly.
1469  echo 'int i;' > conftest.$ac_ext
1470  if AC_TRY_EVAL(ac_compile); then
1471    case `/usr/bin/file conftest.o` in
1472    *64-bit*)
1473      case $lt_cv_prog_gnu_ld in
1474      yes*)
1475        case $host in
1476        i?86-*-solaris*|x86_64-*-solaris*)
1477          LD="${LD-ld} -m elf_x86_64"
1478          ;;
1479        sparc*-*-solaris*)
1480          LD="${LD-ld} -m elf64_sparc"
1481          ;;
1482        esac
1483        # GNU ld 2.21 introduced _sol2 emulations.  Use them if available.
1484        if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then
1485          LD=${LD-ld}_sol2
1486        fi
1487        ;;
1488      *)
1489	if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
1490	  LD="${LD-ld} -64"
1491	fi
1492	;;
1493      esac
1494      ;;
1495    esac
1496  fi
1497  rm -rf conftest*
1498  ;;
1499esac
1500
1501need_locks=$enable_libtool_lock
1502])# _LT_ENABLE_LOCK
1503
1504
1505# _LT_PROG_AR
1506# -----------
1507m4_defun([_LT_PROG_AR],
1508[AC_CHECK_TOOLS(AR, [ar], false)
1509: ${AR=ar}
1510_LT_DECL([], [AR], [1], [The archiver])
1511
1512# Use ARFLAGS variable as AR's operation code to sync the variable naming with
1513# Automake.  If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have
1514# higher priority because thats what people were doing historically (setting
1515# ARFLAGS for automake and AR_FLAGS for libtool).  FIXME: Make the AR_FLAGS
1516# variable obsoleted/removed.
1517
1518test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr}
1519lt_ar_flags=$AR_FLAGS
1520_LT_DECL([], [lt_ar_flags], [0], [Flags to create an archive (by configure)])
1521
1522# Make AR_FLAGS overridable by 'make ARFLAGS='.  Don't try to run-time override
1523# by AR_FLAGS because that was never working and AR_FLAGS is about to die.
1524_LT_DECL([], [AR_FLAGS], [\@S|@{ARFLAGS-"\@S|@lt_ar_flags"}],
1525         [Flags to create an archive])
1526
1527AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file],
1528  [lt_cv_ar_at_file=no
1529   AC_COMPILE_IFELSE([AC_LANG_PROGRAM],
1530     [echo conftest.$ac_objext > conftest.lst
1531      lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD'
1532      AC_TRY_EVAL([lt_ar_try])
1533      if test 0 -eq "$ac_status"; then
1534	# Ensure the archiver fails upon bogus file names.
1535	rm -f conftest.$ac_objext libconftest.a
1536	AC_TRY_EVAL([lt_ar_try])
1537	if test 0 -ne "$ac_status"; then
1538          lt_cv_ar_at_file=@
1539        fi
1540      fi
1541      rm -f conftest.* libconftest.a
1542     ])
1543  ])
1544
1545if test no = "$lt_cv_ar_at_file"; then
1546  archiver_list_spec=
1547else
1548  archiver_list_spec=$lt_cv_ar_at_file
1549fi
1550_LT_DECL([], [archiver_list_spec], [1],
1551  [How to feed a file listing to the archiver])
1552])# _LT_PROG_AR
1553
1554
1555# _LT_CMD_OLD_ARCHIVE
1556# -------------------
1557m4_defun([_LT_CMD_OLD_ARCHIVE],
1558[_LT_PROG_AR
1559
1560AC_CHECK_TOOL(STRIP, strip, :)
1561test -z "$STRIP" && STRIP=:
1562_LT_DECL([], [STRIP], [1], [A symbol stripping program])
1563
1564AC_CHECK_TOOL(RANLIB, ranlib, :)
1565test -z "$RANLIB" && RANLIB=:
1566_LT_DECL([], [RANLIB], [1],
1567    [Commands used to install an old-style archive])
1568
1569# Determine commands to create old-style static archives.
1570old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
1571old_postinstall_cmds='chmod 644 $oldlib'
1572old_postuninstall_cmds=
1573
1574if test -n "$RANLIB"; then
1575  case $host_os in
1576  bitrig* | openbsd*)
1577    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$tool_oldlib"
1578    ;;
1579  *)
1580    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib"
1581    ;;
1582  esac
1583  old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib"
1584fi
1585
1586case $host_os in
1587  darwin*)
1588    lock_old_archive_extraction=yes ;;
1589  *)
1590    lock_old_archive_extraction=no ;;
1591esac
1592_LT_DECL([], [old_postinstall_cmds], [2])
1593_LT_DECL([], [old_postuninstall_cmds], [2])
1594_LT_TAGDECL([], [old_archive_cmds], [2],
1595    [Commands used to build an old-style archive])
1596_LT_DECL([], [lock_old_archive_extraction], [0],
1597    [Whether to use a lock for old archive extraction])
1598])# _LT_CMD_OLD_ARCHIVE
1599
1600
1601# _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
1602#		[OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE])
1603# ----------------------------------------------------------------
1604# Check whether the given compiler option works
1605AC_DEFUN([_LT_COMPILER_OPTION],
1606[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1607m4_require([_LT_DECL_SED])dnl
1608AC_CACHE_CHECK([$1], [$2],
1609  [$2=no
1610   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
1611   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
1612   lt_compiler_flag="$3"  ## exclude from sc_useless_quotes_in_assignment
1613   # Insert the option either (1) after the last *FLAGS variable, or
1614   # (2) before a word containing "conftest.", or (3) at the end.
1615   # Note that $ac_compile itself does not contain backslashes and begins
1616   # with a dollar sign (not a hyphen), so the echo should work correctly.
1617   # The option is referenced via a variable to avoid confusing sed.
1618   lt_compile=`echo "$ac_compile" | $SED \
1619   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1620   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
1621   -e 's:$: $lt_compiler_flag:'`
1622   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
1623   (eval "$lt_compile" 2>conftest.err)
1624   ac_status=$?
1625   cat conftest.err >&AS_MESSAGE_LOG_FD
1626   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1627   if (exit $ac_status) && test -s "$ac_outfile"; then
1628     # The compiler can only warn and ignore the option if not recognized
1629     # So say no if there are warnings other than the usual output.
1630     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
1631     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1632     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
1633       $2=yes
1634     fi
1635   fi
1636   $RM conftest*
1637])
1638
1639if test yes = "[$]$2"; then
1640    m4_if([$5], , :, [$5])
1641else
1642    m4_if([$6], , :, [$6])
1643fi
1644])# _LT_COMPILER_OPTION
1645
1646# Old name:
1647AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION])
1648dnl aclocal-1.4 backwards compatibility:
1649dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [])
1650
1651
1652# _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS,
1653#                  [ACTION-SUCCESS], [ACTION-FAILURE])
1654# ----------------------------------------------------
1655# Check whether the given linker option works
1656AC_DEFUN([_LT_LINKER_OPTION],
1657[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
1658m4_require([_LT_DECL_SED])dnl
1659AC_CACHE_CHECK([$1], [$2],
1660  [$2=no
1661   save_LDFLAGS=$LDFLAGS
1662   LDFLAGS="$LDFLAGS $3"
1663   echo "$lt_simple_link_test_code" > conftest.$ac_ext
1664   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
1665     # The linker can only warn and ignore the option if not recognized
1666     # So say no if there are warnings
1667     if test -s conftest.err; then
1668       # Append any errors to the config.log.
1669       cat conftest.err 1>&AS_MESSAGE_LOG_FD
1670       $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
1671       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
1672       if diff conftest.exp conftest.er2 >/dev/null; then
1673         $2=yes
1674       fi
1675     else
1676       $2=yes
1677     fi
1678   fi
1679   $RM -r conftest*
1680   LDFLAGS=$save_LDFLAGS
1681])
1682
1683if test yes = "[$]$2"; then
1684    m4_if([$4], , :, [$4])
1685else
1686    m4_if([$5], , :, [$5])
1687fi
1688])# _LT_LINKER_OPTION
1689
1690# Old name:
1691AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION])
1692dnl aclocal-1.4 backwards compatibility:
1693dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [])
1694
1695
1696# LT_CMD_MAX_LEN
1697#---------------
1698AC_DEFUN([LT_CMD_MAX_LEN],
1699[AC_REQUIRE([AC_CANONICAL_HOST])dnl
1700# find the maximum length of command line arguments
1701AC_MSG_CHECKING([the maximum length of command line arguments])
1702AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
1703  i=0
1704  teststring=ABCD
1705
1706  case $build_os in
1707  msdosdjgpp*)
1708    # On DJGPP, this test can blow up pretty badly due to problems in libc
1709    # (any single argument exceeding 2000 bytes causes a buffer overrun
1710    # during glob expansion).  Even if it were fixed, the result of this
1711    # check would be larger than it should be.
1712    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
1713    ;;
1714
1715  gnu*)
1716    # Under GNU Hurd, this test is not required because there is
1717    # no limit to the length of command line arguments.
1718    # Libtool will interpret -1 as no limit whatsoever
1719    lt_cv_sys_max_cmd_len=-1;
1720    ;;
1721
1722  cygwin* | mingw* | cegcc*)
1723    # On Win9x/ME, this test blows up -- it succeeds, but takes
1724    # about 5 minutes as the teststring grows exponentially.
1725    # Worse, since 9x/ME are not pre-emptively multitasking,
1726    # you end up with a "frozen" computer, even though with patience
1727    # the test eventually succeeds (with a max line length of 256k).
1728    # Instead, let's just punt: use the minimum linelength reported by
1729    # all of the supported platforms: 8192 (on NT/2K/XP).
1730    lt_cv_sys_max_cmd_len=8192;
1731    ;;
1732
1733  mint*)
1734    # On MiNT this can take a long time and run out of memory.
1735    lt_cv_sys_max_cmd_len=8192;
1736    ;;
1737
1738  amigaos*)
1739    # On AmigaOS with pdksh, this test takes hours, literally.
1740    # So we just punt and use a minimum line length of 8192.
1741    lt_cv_sys_max_cmd_len=8192;
1742    ;;
1743
1744  bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
1745    # This has been around since 386BSD, at least.  Likely further.
1746    if test -x /sbin/sysctl; then
1747      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
1748    elif test -x /usr/sbin/sysctl; then
1749      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
1750    else
1751      lt_cv_sys_max_cmd_len=65536	# usable default for all BSDs
1752    fi
1753    # And add a safety zone
1754    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1755    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1756    ;;
1757
1758  interix*)
1759    # We know the value 262144 and hardcode it with a safety zone (like BSD)
1760    lt_cv_sys_max_cmd_len=196608
1761    ;;
1762
1763  os2*)
1764    # The test takes a long time on OS/2.
1765    lt_cv_sys_max_cmd_len=8192
1766    ;;
1767
1768  osf*)
1769    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
1770    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
1771    # nice to cause kernel panics so lets avoid the loop below.
1772    # First set a reasonable default.
1773    lt_cv_sys_max_cmd_len=16384
1774    #
1775    if test -x /sbin/sysconfig; then
1776      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
1777        *1*) lt_cv_sys_max_cmd_len=-1 ;;
1778      esac
1779    fi
1780    ;;
1781  sco3.2v5*)
1782    lt_cv_sys_max_cmd_len=102400
1783    ;;
1784  sysv5* | sco5v6* | sysv4.2uw2*)
1785    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
1786    if test -n "$kargmax"; then
1787      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[	 ]]//'`
1788    else
1789      lt_cv_sys_max_cmd_len=32768
1790    fi
1791    ;;
1792  *)
1793    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
1794    if test -n "$lt_cv_sys_max_cmd_len" && \
1795       test undefined != "$lt_cv_sys_max_cmd_len"; then
1796      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
1797      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
1798    else
1799      # Make teststring a little bigger before we do anything with it.
1800      # a 1K string should be a reasonable start.
1801      for i in 1 2 3 4 5 6 7 8; do
1802        teststring=$teststring$teststring
1803      done
1804      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
1805      # If test is not a shell built-in, we'll probably end up computing a
1806      # maximum length that is only half of the actual maximum length, but
1807      # we can't tell.
1808      while { test X`env echo "$teststring$teststring" 2>/dev/null` \
1809	         = "X$teststring$teststring"; } >/dev/null 2>&1 &&
1810	      test 17 != "$i" # 1/2 MB should be enough
1811      do
1812        i=`expr $i + 1`
1813        teststring=$teststring$teststring
1814      done
1815      # Only check the string length outside the loop.
1816      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
1817      teststring=
1818      # Add a significant safety factor because C++ compilers can tack on
1819      # massive amounts of additional arguments before passing them to the
1820      # linker.  It appears as though 1/2 is a usable value.
1821      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
1822    fi
1823    ;;
1824  esac
1825])
1826if test -n "$lt_cv_sys_max_cmd_len"; then
1827  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
1828else
1829  AC_MSG_RESULT(none)
1830fi
1831max_cmd_len=$lt_cv_sys_max_cmd_len
1832_LT_DECL([], [max_cmd_len], [0],
1833    [What is the maximum length of a command?])
1834])# LT_CMD_MAX_LEN
1835
1836# Old name:
1837AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN])
1838dnl aclocal-1.4 backwards compatibility:
1839dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [])
1840
1841
1842# _LT_HEADER_DLFCN
1843# ----------------
1844m4_defun([_LT_HEADER_DLFCN],
1845[AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl
1846])# _LT_HEADER_DLFCN
1847
1848
1849# _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE,
1850#                      ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING)
1851# ----------------------------------------------------------------
1852m4_defun([_LT_TRY_DLOPEN_SELF],
1853[m4_require([_LT_HEADER_DLFCN])dnl
1854if test yes = "$cross_compiling"; then :
1855  [$4]
1856else
1857  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
1858  lt_status=$lt_dlunknown
1859  cat > conftest.$ac_ext <<_LT_EOF
1860[#line $LINENO "configure"
1861#include "confdefs.h"
1862
1863#if HAVE_DLFCN_H
1864#include <dlfcn.h>
1865#endif
1866
1867#include <stdio.h>
1868
1869#ifdef RTLD_GLOBAL
1870#  define LT_DLGLOBAL		RTLD_GLOBAL
1871#else
1872#  ifdef DL_GLOBAL
1873#    define LT_DLGLOBAL		DL_GLOBAL
1874#  else
1875#    define LT_DLGLOBAL		0
1876#  endif
1877#endif
1878
1879/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
1880   find out it does not work in some platform. */
1881#ifndef LT_DLLAZY_OR_NOW
1882#  ifdef RTLD_LAZY
1883#    define LT_DLLAZY_OR_NOW		RTLD_LAZY
1884#  else
1885#    ifdef DL_LAZY
1886#      define LT_DLLAZY_OR_NOW		DL_LAZY
1887#    else
1888#      ifdef RTLD_NOW
1889#        define LT_DLLAZY_OR_NOW	RTLD_NOW
1890#      else
1891#        ifdef DL_NOW
1892#          define LT_DLLAZY_OR_NOW	DL_NOW
1893#        else
1894#          define LT_DLLAZY_OR_NOW	0
1895#        endif
1896#      endif
1897#    endif
1898#  endif
1899#endif
1900
1901/* When -fvisibility=hidden is used, assume the code has been annotated
1902   correspondingly for the symbols needed.  */
1903#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
1904int fnord () __attribute__((visibility("default")));
1905#endif
1906
1907int fnord () { return 42; }
1908int main ()
1909{
1910  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
1911  int status = $lt_dlunknown;
1912
1913  if (self)
1914    {
1915      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
1916      else
1917        {
1918	  if (dlsym( self,"_fnord"))  status = $lt_dlneed_uscore;
1919          else puts (dlerror ());
1920	}
1921      /* dlclose (self); */
1922    }
1923  else
1924    puts (dlerror ());
1925
1926  return status;
1927}]
1928_LT_EOF
1929  if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
1930    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
1931    lt_status=$?
1932    case x$lt_status in
1933      x$lt_dlno_uscore) $1 ;;
1934      x$lt_dlneed_uscore) $2 ;;
1935      x$lt_dlunknown|x*) $3 ;;
1936    esac
1937  else :
1938    # compilation failed
1939    $3
1940  fi
1941fi
1942rm -fr conftest*
1943])# _LT_TRY_DLOPEN_SELF
1944
1945
1946# LT_SYS_DLOPEN_SELF
1947# ------------------
1948AC_DEFUN([LT_SYS_DLOPEN_SELF],
1949[m4_require([_LT_HEADER_DLFCN])dnl
1950if test yes != "$enable_dlopen"; then
1951  enable_dlopen=unknown
1952  enable_dlopen_self=unknown
1953  enable_dlopen_self_static=unknown
1954else
1955  lt_cv_dlopen=no
1956  lt_cv_dlopen_libs=
1957
1958  case $host_os in
1959  beos*)
1960    lt_cv_dlopen=load_add_on
1961    lt_cv_dlopen_libs=
1962    lt_cv_dlopen_self=yes
1963    ;;
1964
1965  mingw* | pw32* | cegcc*)
1966    lt_cv_dlopen=LoadLibrary
1967    lt_cv_dlopen_libs=
1968    ;;
1969
1970  cygwin*)
1971    lt_cv_dlopen=dlopen
1972    lt_cv_dlopen_libs=
1973    ;;
1974
1975  darwin*)
1976    # if libdl is installed we need to link against it
1977    AC_CHECK_LIB([dl], [dlopen],
1978		[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
1979    lt_cv_dlopen=dyld
1980    lt_cv_dlopen_libs=
1981    lt_cv_dlopen_self=yes
1982    ])
1983    ;;
1984
1985  tpf*)
1986    # Don't try to run any link tests for TPF.  We know it's impossible
1987    # because TPF is a cross-compiler, and we know how we open DSOs.
1988    lt_cv_dlopen=dlopen
1989    lt_cv_dlopen_libs=
1990    lt_cv_dlopen_self=no
1991    ;;
1992
1993  *)
1994    AC_CHECK_FUNC([shl_load],
1995	  [lt_cv_dlopen=shl_load],
1996      [AC_CHECK_LIB([dld], [shl_load],
1997	    [lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
1998	[AC_CHECK_FUNC([dlopen],
1999	      [lt_cv_dlopen=dlopen],
2000	  [AC_CHECK_LIB([dl], [dlopen],
2001		[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
2002	    [AC_CHECK_LIB([svld], [dlopen],
2003		  [lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
2004	      [AC_CHECK_LIB([dld], [dld_link],
2005		    [lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
2006	      ])
2007	    ])
2008	  ])
2009	])
2010      ])
2011    ;;
2012  esac
2013
2014  if test no = "$lt_cv_dlopen"; then
2015    enable_dlopen=no
2016  else
2017    enable_dlopen=yes
2018  fi
2019
2020  case $lt_cv_dlopen in
2021  dlopen)
2022    save_CPPFLAGS=$CPPFLAGS
2023    test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
2024
2025    save_LDFLAGS=$LDFLAGS
2026    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
2027
2028    save_LIBS=$LIBS
2029    LIBS="$lt_cv_dlopen_libs $LIBS"
2030
2031    AC_CACHE_CHECK([whether a program can dlopen itself],
2032	  lt_cv_dlopen_self, [dnl
2033	  _LT_TRY_DLOPEN_SELF(
2034	    lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
2035	    lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
2036    ])
2037
2038    if test yes = "$lt_cv_dlopen_self"; then
2039      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
2040      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
2041	  lt_cv_dlopen_self_static, [dnl
2042	  _LT_TRY_DLOPEN_SELF(
2043	    lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
2044	    lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
2045      ])
2046    fi
2047
2048    CPPFLAGS=$save_CPPFLAGS
2049    LDFLAGS=$save_LDFLAGS
2050    LIBS=$save_LIBS
2051    ;;
2052  esac
2053
2054  case $lt_cv_dlopen_self in
2055  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
2056  *) enable_dlopen_self=unknown ;;
2057  esac
2058
2059  case $lt_cv_dlopen_self_static in
2060  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
2061  *) enable_dlopen_self_static=unknown ;;
2062  esac
2063fi
2064_LT_DECL([dlopen_support], [enable_dlopen], [0],
2065	 [Whether dlopen is supported])
2066_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
2067	 [Whether dlopen of programs is supported])
2068_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
2069	 [Whether dlopen of statically linked programs is supported])
2070])# LT_SYS_DLOPEN_SELF
2071
2072# Old name:
2073AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF])
2074dnl aclocal-1.4 backwards compatibility:
2075dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [])
2076
2077
2078# _LT_COMPILER_C_O([TAGNAME])
2079# ---------------------------
2080# Check to see if options -c and -o are simultaneously supported by compiler.
2081# This macro does not hard code the compiler like AC_PROG_CC_C_O.
2082m4_defun([_LT_COMPILER_C_O],
2083[m4_require([_LT_DECL_SED])dnl
2084m4_require([_LT_FILEUTILS_DEFAULTS])dnl
2085m4_require([_LT_TAG_COMPILER])dnl
2086AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
2087  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
2088  [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
2089   $RM -r conftest 2>/dev/null
2090   mkdir conftest
2091   cd conftest
2092   mkdir out
2093   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
2094
2095   lt_compiler_flag="-o out/conftest2.$ac_objext"
2096   # Insert the option either (1) after the last *FLAGS variable, or
2097   # (2) before a word containing "conftest.", or (3) at the end.
2098   # Note that $ac_compile itself does not contain backslashes and begins
2099   # with a dollar sign (not a hyphen), so the echo should work correctly.
2100   lt_compile=`echo "$ac_compile" | $SED \
2101   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
2102   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
2103   -e 's:$: $lt_compiler_flag:'`
2104   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
2105   (eval "$lt_compile" 2>out/conftest.err)
2106   ac_status=$?
2107   cat out/conftest.err >&AS_MESSAGE_LOG_FD
2108   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2109   if (exit $ac_status) && test -s out/conftest2.$ac_objext
2110   then
2111     # The compiler can only warn and ignore the option if not recognized
2112     # So say no if there are warnings
2113     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' > out/conftest.exp
2114     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
2115     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
2116       _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
2117     fi
2118   fi
2119   chmod u+w . 2>&AS_MESSAGE_LOG_FD
2120   $RM conftest*
2121   # SGI C++ compiler will create directory out/ii_files/ for
2122   # template instantiation
2123   test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files
2124   $RM out/* && rmdir out
2125   cd ..
2126   $RM -r conftest
2127   $RM conftest*
2128])
2129_LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1],
2130	[Does compiler simultaneously support -c and -o options?])
2131])# _LT_COMPILER_C_O
2132
2133
2134# _LT_COMPILER_FILE_LOCKS([TAGNAME])
2135# ----------------------------------
2136# Check to see if we can do hard links to lock some files if needed
2137m4_defun([_LT_COMPILER_FILE_LOCKS],
2138[m4_require([_LT_ENABLE_LOCK])dnl
2139m4_require([_LT_FILEUTILS_DEFAULTS])dnl
2140_LT_COMPILER_C_O([$1])
2141
2142hard_links=nottested
2143if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; then
2144  # do not overwrite the value of need_locks provided by the user
2145  AC_MSG_CHECKING([if we can lock with hard links])
2146  hard_links=yes
2147  $RM conftest*
2148  ln conftest.a conftest.b 2>/dev/null && hard_links=no
2149  touch conftest.a
2150  ln conftest.a conftest.b 2>&5 || hard_links=no
2151  ln conftest.a conftest.b 2>/dev/null && hard_links=no
2152  AC_MSG_RESULT([$hard_links])
2153  if test no = "$hard_links"; then
2154    AC_MSG_WARN(['$CC' does not support '-c -o', so 'make -j' may be unsafe])
2155    need_locks=warn
2156  fi
2157else
2158  need_locks=no
2159fi
2160_LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?])
2161])# _LT_COMPILER_FILE_LOCKS
2162
2163
2164# _LT_CHECK_OBJDIR
2165# ----------------
2166m4_defun([_LT_CHECK_OBJDIR],
2167[AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
2168[rm -f .libs 2>/dev/null
2169mkdir .libs 2>/dev/null
2170if test -d .libs; then
2171  lt_cv_objdir=.libs
2172else
2173  # MS-DOS does not allow filenames that begin with a dot.
2174  lt_cv_objdir=_libs
2175fi
2176rmdir .libs 2>/dev/null])
2177objdir=$lt_cv_objdir
2178_LT_DECL([], [objdir], [0],
2179         [The name of the directory that contains temporary libtool files])dnl
2180m4_pattern_allow([LT_OBJDIR])dnl
2181AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/",
2182  [Define to the sub-directory where libtool stores uninstalled libraries.])
2183])# _LT_CHECK_OBJDIR
2184
2185
2186# _LT_LINKER_HARDCODE_LIBPATH([TAGNAME])
2187# --------------------------------------
2188# Check hardcoding attributes.
2189m4_defun([_LT_LINKER_HARDCODE_LIBPATH],
2190[AC_MSG_CHECKING([how to hardcode library paths into programs])
2191_LT_TAGVAR(hardcode_action, $1)=
2192if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" ||
2193   test -n "$_LT_TAGVAR(runpath_var, $1)" ||
2194   test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then
2195
2196  # We can hardcode non-existent directories.
2197  if test no != "$_LT_TAGVAR(hardcode_direct, $1)" &&
2198     # If the only mechanism to avoid hardcoding is shlibpath_var, we
2199     # have to relink, otherwise we might link with an installed library
2200     # when we should be linking with a yet-to-be-installed one
2201     ## test no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" &&
2202     test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then
2203    # Linking always hardcodes the temporary library directory.
2204    _LT_TAGVAR(hardcode_action, $1)=relink
2205  else
2206    # We can link without hardcoding, and we can hardcode nonexisting dirs.
2207    _LT_TAGVAR(hardcode_action, $1)=immediate
2208  fi
2209else
2210  # We cannot hardcode anything, or else we can only hardcode existing
2211  # directories.
2212  _LT_TAGVAR(hardcode_action, $1)=unsupported
2213fi
2214AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)])
2215
2216if test relink = "$_LT_TAGVAR(hardcode_action, $1)" ||
2217   test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then
2218  # Fast installation is not supported
2219  enable_fast_install=no
2220elif test yes = "$shlibpath_overrides_runpath" ||
2221     test no = "$enable_shared"; then
2222  # Fast installation is not necessary
2223  enable_fast_install=needless
2224fi
2225_LT_TAGDECL([], [hardcode_action], [0],
2226    [How to hardcode a shared library path into an executable])
2227])# _LT_LINKER_HARDCODE_LIBPATH
2228
2229
2230# _LT_CMD_STRIPLIB
2231# ----------------
2232m4_defun([_LT_CMD_STRIPLIB],
2233[m4_require([_LT_DECL_EGREP])
2234striplib=
2235old_striplib=
2236AC_MSG_CHECKING([whether stripping libraries is possible])
2237if test -z "$STRIP"; then
2238  AC_MSG_RESULT([no])
2239else
2240  if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then
2241    old_striplib="$STRIP --strip-debug"
2242    striplib="$STRIP --strip-unneeded"
2243    AC_MSG_RESULT([yes])
2244  else
2245    case $host_os in
2246    darwin*)
2247      # FIXME - insert some real tests, host_os isn't really good enough
2248      striplib="$STRIP -x"
2249      old_striplib="$STRIP -S"
2250      AC_MSG_RESULT([yes])
2251      ;;
2252    freebsd*)
2253      if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then
2254        old_striplib="$STRIP --strip-debug"
2255        striplib="$STRIP --strip-unneeded"
2256        AC_MSG_RESULT([yes])
2257      else
2258        AC_MSG_RESULT([no])
2259      fi
2260      ;;
2261    *)
2262      AC_MSG_RESULT([no])
2263      ;;
2264    esac
2265  fi
2266fi
2267_LT_DECL([], [old_striplib], [1], [Commands to strip libraries])
2268_LT_DECL([], [striplib], [1])
2269])# _LT_CMD_STRIPLIB
2270
2271
2272# _LT_PREPARE_MUNGE_PATH_LIST
2273# ---------------------------
2274# Make sure func_munge_path_list() is defined correctly.
2275m4_defun([_LT_PREPARE_MUNGE_PATH_LIST],
2276[[# func_munge_path_list VARIABLE PATH
2277# -----------------------------------
2278# VARIABLE is name of variable containing _space_ separated list of
2279# directories to be munged by the contents of PATH, which is string
2280# having a format:
2281# "DIR[:DIR]:"
2282#       string "DIR[ DIR]" will be prepended to VARIABLE
2283# ":DIR[:DIR]"
2284#       string "DIR[ DIR]" will be appended to VARIABLE
2285# "DIRP[:DIRP]::[DIRA:]DIRA"
2286#       string "DIRP[ DIRP]" will be prepended to VARIABLE and string
2287#       "DIRA[ DIRA]" will be appended to VARIABLE
2288# "DIR[:DIR]"
2289#       VARIABLE will be replaced by "DIR[ DIR]"
2290func_munge_path_list ()
2291{
2292    case x@S|@2 in
2293    x)
2294        ;;
2295    *:)
2296        eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\"
2297        ;;
2298    x:*)
2299        eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\"
2300        ;;
2301    *::*)
2302        eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\"
2303        eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\"
2304        ;;
2305    *)
2306        eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\"
2307        ;;
2308    esac
2309}
2310]])# _LT_PREPARE_PATH_LIST
2311
2312
2313# _LT_SYS_DYNAMIC_LINKER([TAG])
2314# -----------------------------
2315# PORTME Fill in your ld.so characteristics
2316m4_defun([_LT_SYS_DYNAMIC_LINKER],
2317[AC_REQUIRE([AC_CANONICAL_HOST])dnl
2318m4_require([_LT_DECL_EGREP])dnl
2319m4_require([_LT_FILEUTILS_DEFAULTS])dnl
2320m4_require([_LT_DECL_OBJDUMP])dnl
2321m4_require([_LT_DECL_SED])dnl
2322m4_require([_LT_CHECK_SHELL_FEATURES])dnl
2323m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl
2324AC_MSG_CHECKING([dynamic linker characteristics])
2325m4_if([$1],
2326	[], [
2327if test yes = "$GCC"; then
2328  case $host_os in
2329    darwin*) lt_awk_arg='/^libraries:/,/LR/' ;;
2330    *) lt_awk_arg='/^libraries:/' ;;
2331  esac
2332  case $host_os in
2333    mingw* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;;
2334    *) lt_sed_strip_eq='s|=/|/|g' ;;
2335  esac
2336  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq`
2337  case $lt_search_path_spec in
2338  *\;*)
2339    # if the path contains ";" then we assume it to be the separator
2340    # otherwise default to the standard path separator (i.e. ":") - it is
2341    # assumed that no part of a normal pathname contains ";" but that should
2342    # okay in the real world where ";" in dirpaths is itself problematic.
2343    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'`
2344    ;;
2345  *)
2346    lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"`
2347    ;;
2348  esac
2349  # Ok, now we have the path, separated by spaces, we can step through it
2350  # and add multilib dir if necessary...
2351  lt_tmp_lt_search_path_spec=
2352  lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
2353  # ...but if some path component already ends with the multilib dir we assume
2354  # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer).
2355  case "$lt_multi_os_dir; $lt_search_path_spec " in
2356  "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*)
2357    lt_multi_os_dir=
2358    ;;
2359  esac
2360  for lt_sys_path in $lt_search_path_spec; do
2361    if test -d "$lt_sys_path$lt_multi_os_dir"; then
2362      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir"
2363    elif test -n "$lt_multi_os_dir"; then
2364      test -d "$lt_sys_path" && \
2365	lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
2366    fi
2367  done
2368  lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk '
2369BEGIN {RS = " "; FS = "/|\n";} {
2370  lt_foo = "";
2371  lt_count = 0;
2372  for (lt_i = NF; lt_i > 0; lt_i--) {
2373    if ($lt_i != "" && $lt_i != ".") {
2374      if ($lt_i == "..") {
2375        lt_count++;
2376      } else {
2377        if (lt_count == 0) {
2378          lt_foo = "/" $lt_i lt_foo;
2379        } else {
2380          lt_count--;
2381        }
2382      }
2383    }
2384  }
2385  if (lt_foo != "") { lt_freq[[lt_foo]]++; }
2386  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
2387}'`
2388  # AWK program above erroneously prepends '/' to C:/dos/paths
2389  # for these hosts.
2390  case $host_os in
2391    mingw* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\
2392      $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;;
2393  esac
2394  sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP`
2395else
2396  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
2397fi])
2398library_names_spec=
2399libname_spec='lib$name'
2400soname_spec=
2401shrext_cmds=.so
2402postinstall_cmds=
2403postuninstall_cmds=
2404finish_cmds=
2405finish_eval=
2406shlibpath_var=
2407shlibpath_overrides_runpath=unknown
2408version_type=none
2409dynamic_linker="$host_os ld.so"
2410sys_lib_dlsearch_path_spec="/lib /usr/lib"
2411need_lib_prefix=unknown
2412hardcode_into_libs=no
2413
2414# when you set need_version to no, make sure it does not cause -set_version
2415# flags to be left without arguments
2416need_version=unknown
2417
2418AC_ARG_VAR([LT_SYS_LIBRARY_PATH],
2419[User-defined run-time library search path.])
2420
2421case $host_os in
2422aix3*)
2423  version_type=linux # correct to gnu/linux during the next big refactor
2424  library_names_spec='$libname$release$shared_ext$versuffix $libname.a'
2425  shlibpath_var=LIBPATH
2426
2427  # AIX 3 has no versioning support, so we append a major version to the name.
2428  soname_spec='$libname$release$shared_ext$major'
2429  ;;
2430
2431aix[[4-9]]*)
2432  version_type=linux # correct to gnu/linux during the next big refactor
2433  need_lib_prefix=no
2434  need_version=no
2435  hardcode_into_libs=yes
2436  if test ia64 = "$host_cpu"; then
2437    # AIX 5 supports IA64
2438    library_names_spec='$libname$release$shared_ext$major $libname$release$shared_ext$versuffix $libname$shared_ext'
2439    shlibpath_var=LD_LIBRARY_PATH
2440  else
2441    # With GCC up to 2.95.x, collect2 would create an import file
2442    # for dependence libraries.  The import file would start with
2443    # the line '#! .'.  This would cause the generated library to
2444    # depend on '.', always an invalid library.  This was fixed in
2445    # development snapshots of GCC prior to 3.0.
2446    case $host_os in
2447      aix4 | aix4.[[01]] | aix4.[[01]].*)
2448      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
2449	   echo ' yes '
2450	   echo '#endif'; } | $CC -E - | $GREP yes > /dev/null; then
2451	:
2452      else
2453	can_build_shared=no
2454      fi
2455      ;;
2456    esac
2457    # Using Import Files as archive members, it is possible to support
2458    # filename-based versioning of shared library archives on AIX. While
2459    # this would work for both with and without runtime linking, it will
2460    # prevent static linking of such archives. So we do filename-based
2461    # shared library versioning with .so extension only, which is used
2462    # when both runtime linking and shared linking is enabled.
2463    # Unfortunately, runtime linking may impact performance, so we do
2464    # not want this to be the default eventually. Also, we use the
2465    # versioned .so libs for executables only if there is the -brtl
2466    # linker flag in LDFLAGS as well, or --with-aix-soname=svr4 only.
2467    # To allow for filename-based versioning support, we need to create
2468    # libNAME.so.V as an archive file, containing:
2469    # *) an Import File, referring to the versioned filename of the
2470    #    archive as well as the shared archive member, telling the
2471    #    bitwidth (32 or 64) of that shared object, and providing the
2472    #    list of exported symbols of that shared object, eventually
2473    #    decorated with the 'weak' keyword
2474    # *) the shared object with the F_LOADONLY flag set, to really avoid
2475    #    it being seen by the linker.
2476    # At run time we better use the real file rather than another symlink,
2477    # but for link time we create the symlink libNAME.so -> libNAME.so.V
2478
2479    case $with_aix_soname,$aix_use_runtimelinking in
2480    # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct
2481    # soname into executable. Probably we can add versioning support to
2482    # collect2, so additional links can be useful in future.
2483    aix,yes) # traditional libtool
2484      dynamic_linker='AIX unversionable lib.so'
2485      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
2486      # instead of lib<name>.a to let people know that these are not
2487      # typical AIX shared libraries.
2488      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2489      ;;
2490    aix,no) # traditional AIX only
2491      dynamic_linker='AIX lib.a[(]lib.so.V[)]'
2492      # We preserve .a as extension for shared libraries through AIX4.2
2493      # and later when we are not doing run time linking.
2494      library_names_spec='$libname$release.a $libname.a'
2495      soname_spec='$libname$release$shared_ext$major'
2496      ;;
2497    svr4,*) # full svr4 only
2498      dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]"
2499      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'
2500      # We do not specify a path in Import Files, so LIBPATH fires.
2501      shlibpath_overrides_runpath=yes
2502      ;;
2503    *,yes) # both, prefer svr4
2504      dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]"
2505      library_names_spec='$libname$release$shared_ext$major $libname$shared_ext'
2506      # unpreferred sharedlib libNAME.a needs extra handling
2507      postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"'
2508      postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"'
2509      # We do not specify a path in Import Files, so LIBPATH fires.
2510      shlibpath_overrides_runpath=yes
2511      ;;
2512    *,no) # both, prefer aix
2513      dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]"
2514      library_names_spec='$libname$release.a $libname.a'
2515      soname_spec='$libname$release$shared_ext$major'
2516      # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling
2517      postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)'
2518      postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"'
2519      ;;
2520    esac
2521    shlibpath_var=LIBPATH
2522  fi
2523  ;;
2524
2525amigaos*)
2526  case $host_cpu in
2527  powerpc)
2528    # Since July 2007 AmigaOS4 officially supports .so libraries.
2529    # When compiling the executable, add -use-dynld -Lsobjs: to the compileline.
2530    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2531    ;;
2532  m68k)
2533    library_names_spec='$libname.ixlibrary $libname.a'
2534    # Create ${libname}_ixlibrary.a entries in /sys/libs.
2535    finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $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'
2536    ;;
2537  esac
2538  ;;
2539
2540beos*)
2541  library_names_spec='$libname$shared_ext'
2542  dynamic_linker="$host_os ld.so"
2543  shlibpath_var=LIBRARY_PATH
2544  ;;
2545
2546bsdi[[45]]*)
2547  version_type=linux # correct to gnu/linux during the next big refactor
2548  need_version=no
2549  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2550  soname_spec='$libname$release$shared_ext$major'
2551  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
2552  shlibpath_var=LD_LIBRARY_PATH
2553  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
2554  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
2555  # the default ld.so.conf also contains /usr/contrib/lib and
2556  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
2557  # libtool to hard-code these into programs
2558  ;;
2559
2560cygwin* | mingw* | pw32* | cegcc*)
2561  version_type=windows
2562  shrext_cmds=.dll
2563  need_version=no
2564  need_lib_prefix=no
2565
2566  case $GCC,$cc_basename in
2567  yes,*)
2568    # gcc
2569    library_names_spec='$libname.dll.a'
2570    # DLL is installed to $(libdir)/../bin by postinstall_cmds
2571    postinstall_cmds='base_file=`basename \$file`~
2572      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
2573      dldir=$destdir/`dirname \$dlpath`~
2574      test -d \$dldir || mkdir -p \$dldir~
2575      $install_prog $dir/$dlname \$dldir/$dlname~
2576      chmod a+x \$dldir/$dlname~
2577      if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
2578        eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
2579      fi'
2580    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
2581      dlpath=$dir/\$dldll~
2582       $RM \$dlpath'
2583    shlibpath_overrides_runpath=yes
2584
2585    case $host_os in
2586    cygwin*)
2587      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
2588      soname_spec='`echo $libname | sed -e 's/^lib/cyg/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
2589m4_if([$1], [],[
2590      sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"])
2591      ;;
2592    mingw* | cegcc*)
2593      # MinGW DLLs use traditional 'lib' prefix
2594      soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
2595      ;;
2596    pw32*)
2597      # pw32 DLLs use 'pw' prefix rather than 'lib'
2598      library_names_spec='`echo $libname | sed -e 's/^lib/pw/'``echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
2599      ;;
2600    esac
2601    dynamic_linker='Win32 ld.exe'
2602    ;;
2603
2604  *,cl* | *,icl*)
2605    # Native MSVC or ICC
2606    libname_spec='$name'
2607    soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext'
2608    library_names_spec='$libname.dll.lib'
2609
2610    case $build_os in
2611    mingw*)
2612      sys_lib_search_path_spec=
2613      lt_save_ifs=$IFS
2614      IFS=';'
2615      for lt_path in $LIB
2616      do
2617        IFS=$lt_save_ifs
2618        # Let DOS variable expansion print the short 8.3 style file name.
2619        lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"`
2620        sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path"
2621      done
2622      IFS=$lt_save_ifs
2623      # Convert to MSYS style.
2624      sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | sed -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'`
2625      ;;
2626    cygwin*)
2627      # Convert to unix form, then to dos form, then back to unix form
2628      # but this time dos style (no spaces!) so that the unix form looks
2629      # like /cygdrive/c/PROGRA~1:/cygdr...
2630      sys_lib_search_path_spec=`cygpath --path --unix "$LIB"`
2631      sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null`
2632      sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
2633      ;;
2634    *)
2635      sys_lib_search_path_spec=$LIB
2636      if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then
2637        # It is most probably a Windows format PATH.
2638        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
2639      else
2640        sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
2641      fi
2642      # FIXME: find the short name or the path components, as spaces are
2643      # common. (e.g. "Program Files" -> "PROGRA~1")
2644      ;;
2645    esac
2646
2647    # DLL is installed to $(libdir)/../bin by postinstall_cmds
2648    postinstall_cmds='base_file=`basename \$file`~
2649      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~
2650      dldir=$destdir/`dirname \$dlpath`~
2651      test -d \$dldir || mkdir -p \$dldir~
2652      $install_prog $dir/$dlname \$dldir/$dlname'
2653    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
2654      dlpath=$dir/\$dldll~
2655       $RM \$dlpath'
2656    shlibpath_overrides_runpath=yes
2657    dynamic_linker='Win32 link.exe'
2658    ;;
2659
2660  *)
2661    # Assume MSVC and ICC wrapper
2662    library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib'
2663    dynamic_linker='Win32 ld.exe'
2664    ;;
2665  esac
2666  # FIXME: first we should search . and the directory the executable is in
2667  shlibpath_var=PATH
2668  ;;
2669
2670darwin* | rhapsody*)
2671  dynamic_linker="$host_os dyld"
2672  version_type=darwin
2673  need_lib_prefix=no
2674  need_version=no
2675  library_names_spec='$libname$release$major$shared_ext $libname$shared_ext'
2676  soname_spec='$libname$release$major$shared_ext'
2677  shlibpath_overrides_runpath=yes
2678  shlibpath_var=DYLD_LIBRARY_PATH
2679  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
2680m4_if([$1], [],[
2681  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
2682  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
2683  ;;
2684
2685dgux*)
2686  version_type=linux # correct to gnu/linux during the next big refactor
2687  need_lib_prefix=no
2688  need_version=no
2689  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2690  soname_spec='$libname$release$shared_ext$major'
2691  shlibpath_var=LD_LIBRARY_PATH
2692  ;;
2693
2694freebsd* | dragonfly*)
2695  # DragonFly does not have aout.  When/if they implement a new
2696  # versioning mechanism, adjust this.
2697  if test -x /usr/bin/objformat; then
2698    objformat=`/usr/bin/objformat`
2699  else
2700    case $host_os in
2701    freebsd[[23]].*) objformat=aout ;;
2702    *) objformat=elf ;;
2703    esac
2704  fi
2705  version_type=freebsd-$objformat
2706  case $version_type in
2707    freebsd-elf*)
2708      library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2709      soname_spec='$libname$release$shared_ext$major'
2710      need_version=no
2711      need_lib_prefix=no
2712      ;;
2713    freebsd-*)
2714      library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
2715      need_version=yes
2716      ;;
2717  esac
2718  shlibpath_var=LD_LIBRARY_PATH
2719  case $host_os in
2720  freebsd2.*)
2721    shlibpath_overrides_runpath=yes
2722    ;;
2723  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
2724    shlibpath_overrides_runpath=yes
2725    hardcode_into_libs=yes
2726    ;;
2727  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
2728  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
2729    shlibpath_overrides_runpath=no
2730    hardcode_into_libs=yes
2731    ;;
2732  *) # from 4.6 on, and DragonFly
2733    shlibpath_overrides_runpath=yes
2734    hardcode_into_libs=yes
2735    ;;
2736  esac
2737  ;;
2738
2739haiku*)
2740  version_type=linux # correct to gnu/linux during the next big refactor
2741  need_lib_prefix=no
2742  need_version=no
2743  dynamic_linker="$host_os runtime_loader"
2744  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2745  soname_spec='$libname$release$shared_ext$major'
2746  shlibpath_var=LIBRARY_PATH
2747  shlibpath_overrides_runpath=no
2748  sys_lib_dlsearch_path_spec='/boot/home/config/lib /boot/common/lib /boot/system/lib'
2749  hardcode_into_libs=yes
2750  ;;
2751
2752hpux9* | hpux10* | hpux11*)
2753  # Give a soname corresponding to the major version so that dld.sl refuses to
2754  # link against other versions.
2755  version_type=sunos
2756  need_lib_prefix=no
2757  need_version=no
2758  case $host_cpu in
2759  ia64*)
2760    shrext_cmds='.so'
2761    hardcode_into_libs=yes
2762    dynamic_linker="$host_os dld.so"
2763    shlibpath_var=LD_LIBRARY_PATH
2764    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
2765    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2766    soname_spec='$libname$release$shared_ext$major'
2767    if test 32 = "$HPUX_IA64_MODE"; then
2768      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
2769      sys_lib_dlsearch_path_spec=/usr/lib/hpux32
2770    else
2771      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
2772      sys_lib_dlsearch_path_spec=/usr/lib/hpux64
2773    fi
2774    ;;
2775  hppa*64*)
2776    shrext_cmds='.sl'
2777    hardcode_into_libs=yes
2778    dynamic_linker="$host_os dld.sl"
2779    shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
2780    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
2781    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2782    soname_spec='$libname$release$shared_ext$major'
2783    sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
2784    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
2785    ;;
2786  *)
2787    shrext_cmds='.sl'
2788    dynamic_linker="$host_os dld.sl"
2789    shlibpath_var=SHLIB_PATH
2790    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
2791    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2792    soname_spec='$libname$release$shared_ext$major'
2793    ;;
2794  esac
2795  # HP-UX runs *really* slowly unless shared libraries are mode 555, ...
2796  postinstall_cmds='chmod 555 $lib'
2797  # or fails outright, so override atomically:
2798  install_override_mode=555
2799  ;;
2800
2801interix[[3-9]]*)
2802  version_type=linux # correct to gnu/linux during the next big refactor
2803  need_lib_prefix=no
2804  need_version=no
2805  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2806  soname_spec='$libname$release$shared_ext$major'
2807  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
2808  shlibpath_var=LD_LIBRARY_PATH
2809  shlibpath_overrides_runpath=no
2810  hardcode_into_libs=yes
2811  ;;
2812
2813irix5* | irix6* | nonstopux*)
2814  case $host_os in
2815    nonstopux*) version_type=nonstopux ;;
2816    *)
2817	if test yes = "$lt_cv_prog_gnu_ld"; then
2818		version_type=linux # correct to gnu/linux during the next big refactor
2819	else
2820		version_type=irix
2821	fi ;;
2822  esac
2823  need_lib_prefix=no
2824  need_version=no
2825  soname_spec='$libname$release$shared_ext$major'
2826  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$release$shared_ext $libname$shared_ext'
2827  case $host_os in
2828  irix5* | nonstopux*)
2829    libsuff= shlibsuff=
2830    ;;
2831  *)
2832    case $LD in # libtool.m4 will add one of these switches to LD
2833    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
2834      libsuff= shlibsuff= libmagic=32-bit;;
2835    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
2836      libsuff=32 shlibsuff=N32 libmagic=N32;;
2837    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
2838      libsuff=64 shlibsuff=64 libmagic=64-bit;;
2839    *) libsuff= shlibsuff= libmagic=never-match;;
2840    esac
2841    ;;
2842  esac
2843  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
2844  shlibpath_overrides_runpath=no
2845  sys_lib_search_path_spec="/usr/lib$libsuff /lib$libsuff /usr/local/lib$libsuff"
2846  sys_lib_dlsearch_path_spec="/usr/lib$libsuff /lib$libsuff"
2847  hardcode_into_libs=yes
2848  ;;
2849
2850# No shared lib support for Linux oldld, aout, or coff.
2851linux*oldld* | linux*aout* | linux*coff*)
2852  dynamic_linker=no
2853  ;;
2854
2855linux*android*)
2856  version_type=none # Android doesn't support versioned libraries.
2857  need_lib_prefix=no
2858  need_version=no
2859  library_names_spec='$libname$release$shared_ext'
2860  soname_spec='$libname$release$shared_ext'
2861  finish_cmds=
2862  shlibpath_var=LD_LIBRARY_PATH
2863  shlibpath_overrides_runpath=yes
2864
2865  # This implies no fast_install, which is unacceptable.
2866  # Some rework will be needed to allow for fast_install
2867  # before this can be enabled.
2868  hardcode_into_libs=yes
2869
2870  dynamic_linker='Android linker'
2871  # Don't embed -rpath directories since the linker doesn't support them.
2872  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2873  ;;
2874
2875# This must be glibc/ELF.
2876linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
2877  version_type=linux # correct to gnu/linux during the next big refactor
2878  need_lib_prefix=no
2879  need_version=no
2880  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2881  soname_spec='$libname$release$shared_ext$major'
2882  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
2883  shlibpath_var=LD_LIBRARY_PATH
2884  shlibpath_overrides_runpath=no
2885
2886  # Some binutils ld are patched to set DT_RUNPATH
2887  AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath],
2888    [lt_cv_shlibpath_overrides_runpath=no
2889    save_LDFLAGS=$LDFLAGS
2890    save_libdir=$libdir
2891    eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \
2892	 LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\""
2893    AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
2894      [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null],
2895	 [lt_cv_shlibpath_overrides_runpath=yes])])
2896    LDFLAGS=$save_LDFLAGS
2897    libdir=$save_libdir
2898    ])
2899  shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath
2900
2901  # This implies no fast_install, which is unacceptable.
2902  # Some rework will be needed to allow for fast_install
2903  # before this can be enabled.
2904  hardcode_into_libs=yes
2905
2906  # Ideally, we could use ldconfig to report *all* directores which are
2907  # searched for libraries, however this is still not possible.  Aside from not
2908  # being certain /sbin/ldconfig is available, command
2909  # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64,
2910  # even though it is searched at run-time.  Try to do the best guess by
2911  # appending ld.so.conf contents (and includes) to the search path.
2912  if test -f /etc/ld.so.conf; then
2913    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' ' '`
2914    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
2915  fi
2916
2917  # We used to test for /lib/ld.so.1 and disable shared libraries on
2918  # powerpc, because MkLinux only supported shared libraries with the
2919  # GNU dynamic linker.  Since this was broken with cross compilers,
2920  # most powerpc-linux boxes support dynamic linking these days and
2921  # people can always --disable-shared, the test was removed, and we
2922  # assume the GNU/Linux dynamic linker is in use.
2923  dynamic_linker='GNU/Linux ld.so'
2924  ;;
2925
2926netbsd*)
2927  version_type=sunos
2928  need_lib_prefix=no
2929  need_version=no
2930  if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
2931    library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
2932    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2933    dynamic_linker='NetBSD (a.out) ld.so'
2934  else
2935    library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2936    soname_spec='$libname$release$shared_ext$major'
2937    dynamic_linker='NetBSD ld.elf_so'
2938  fi
2939  shlibpath_var=LD_LIBRARY_PATH
2940  shlibpath_overrides_runpath=yes
2941  hardcode_into_libs=yes
2942  ;;
2943
2944newsos6)
2945  version_type=linux # correct to gnu/linux during the next big refactor
2946  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2947  shlibpath_var=LD_LIBRARY_PATH
2948  shlibpath_overrides_runpath=yes
2949  ;;
2950
2951*nto* | *qnx*)
2952  version_type=qnx
2953  need_lib_prefix=no
2954  need_version=no
2955  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
2956  soname_spec='$libname$release$shared_ext$major'
2957  shlibpath_var=LD_LIBRARY_PATH
2958  shlibpath_overrides_runpath=no
2959  hardcode_into_libs=yes
2960  dynamic_linker='ldqnx.so'
2961  ;;
2962
2963openbsd* | bitrig*)
2964  version_type=sunos
2965  sys_lib_dlsearch_path_spec=/usr/lib
2966  need_lib_prefix=no
2967  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
2968    need_version=no
2969  else
2970    need_version=yes
2971  fi
2972  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
2973  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
2974  shlibpath_var=LD_LIBRARY_PATH
2975  shlibpath_overrides_runpath=yes
2976  ;;
2977
2978os2*)
2979  libname_spec='$name'
2980  version_type=windows
2981  shrext_cmds=.dll
2982  need_version=no
2983  need_lib_prefix=no
2984  # OS/2 can only load a DLL with a base name of 8 characters or less.
2985  soname_spec='`test -n "$os2dllname" && libname="$os2dllname";
2986    v=$($ECHO $release$versuffix | tr -d .-);
2987    n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _);
2988    $ECHO $n$v`$shared_ext'
2989  library_names_spec='${libname}_dll.$libext'
2990  dynamic_linker='OS/2 ld.exe'
2991  shlibpath_var=BEGINLIBPATH
2992  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
2993  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
2994  postinstall_cmds='base_file=`basename \$file`~
2995    dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; $ECHO \$dlname'\''`~
2996    dldir=$destdir/`dirname \$dlpath`~
2997    test -d \$dldir || mkdir -p \$dldir~
2998    $install_prog $dir/$dlname \$dldir/$dlname~
2999    chmod a+x \$dldir/$dlname~
3000    if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then
3001      eval '\''$striplib \$dldir/$dlname'\'' || exit \$?;
3002    fi'
3003  postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~
3004    dlpath=$dir/\$dldll~
3005    $RM \$dlpath'
3006  ;;
3007
3008osf3* | osf4* | osf5*)
3009  version_type=osf
3010  need_lib_prefix=no
3011  need_version=no
3012  soname_spec='$libname$release$shared_ext$major'
3013  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
3014  shlibpath_var=LD_LIBRARY_PATH
3015  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
3016  sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
3017  ;;
3018
3019rdos*)
3020  dynamic_linker=no
3021  ;;
3022
3023solaris*)
3024  version_type=linux # correct to gnu/linux during the next big refactor
3025  need_lib_prefix=no
3026  need_version=no
3027  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
3028  soname_spec='$libname$release$shared_ext$major'
3029  shlibpath_var=LD_LIBRARY_PATH
3030  shlibpath_overrides_runpath=yes
3031  hardcode_into_libs=yes
3032  # ldd complains unless libraries are executable
3033  postinstall_cmds='chmod +x $lib'
3034  ;;
3035
3036sunos4*)
3037  version_type=sunos
3038  library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix'
3039  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
3040  shlibpath_var=LD_LIBRARY_PATH
3041  shlibpath_overrides_runpath=yes
3042  if test yes = "$with_gnu_ld"; then
3043    need_lib_prefix=no
3044  fi
3045  need_version=yes
3046  ;;
3047
3048sysv4 | sysv4.3*)
3049  version_type=linux # correct to gnu/linux during the next big refactor
3050  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
3051  soname_spec='$libname$release$shared_ext$major'
3052  shlibpath_var=LD_LIBRARY_PATH
3053  case $host_vendor in
3054    sni)
3055      shlibpath_overrides_runpath=no
3056      need_lib_prefix=no
3057      runpath_var=LD_RUN_PATH
3058      ;;
3059    siemens)
3060      need_lib_prefix=no
3061      ;;
3062    motorola)
3063      need_lib_prefix=no
3064      need_version=no
3065      shlibpath_overrides_runpath=no
3066      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
3067      ;;
3068  esac
3069  ;;
3070
3071sysv4*MP*)
3072  if test -d /usr/nec; then
3073    version_type=linux # correct to gnu/linux during the next big refactor
3074    library_names_spec='$libname$shared_ext.$versuffix $libname$shared_ext.$major $libname$shared_ext'
3075    soname_spec='$libname$shared_ext.$major'
3076    shlibpath_var=LD_LIBRARY_PATH
3077  fi
3078  ;;
3079
3080sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
3081  version_type=sco
3082  need_lib_prefix=no
3083  need_version=no
3084  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext $libname$shared_ext'
3085  soname_spec='$libname$release$shared_ext$major'
3086  shlibpath_var=LD_LIBRARY_PATH
3087  shlibpath_overrides_runpath=yes
3088  hardcode_into_libs=yes
3089  if test yes = "$with_gnu_ld"; then
3090    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
3091  else
3092    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
3093    case $host_os in
3094      sco3.2v5*)
3095        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
3096	;;
3097    esac
3098  fi
3099  sys_lib_dlsearch_path_spec='/usr/lib'
3100  ;;
3101
3102tpf*)
3103  # TPF is a cross-target only.  Preferred cross-host = GNU/Linux.
3104  version_type=linux # correct to gnu/linux during the next big refactor
3105  need_lib_prefix=no
3106  need_version=no
3107  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
3108  shlibpath_var=LD_LIBRARY_PATH
3109  shlibpath_overrides_runpath=no
3110  hardcode_into_libs=yes
3111  ;;
3112
3113uts4*)
3114  version_type=linux # correct to gnu/linux during the next big refactor
3115  library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext'
3116  soname_spec='$libname$release$shared_ext$major'
3117  shlibpath_var=LD_LIBRARY_PATH
3118  ;;
3119
3120*)
3121  dynamic_linker=no
3122  ;;
3123esac
3124AC_MSG_RESULT([$dynamic_linker])
3125test no = "$dynamic_linker" && can_build_shared=no
3126
3127variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
3128if test yes = "$GCC"; then
3129  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
3130fi
3131
3132if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then
3133  sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec
3134fi
3135
3136if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then
3137  sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec
3138fi
3139
3140# remember unaugmented sys_lib_dlsearch_path content for libtool script decls...
3141configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec
3142
3143# ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code
3144func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH"
3145
3146# to be used as default LT_SYS_LIBRARY_PATH value in generated libtool
3147configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH
3148
3149_LT_DECL([], [variables_saved_for_relink], [1],
3150    [Variables whose values should be saved in libtool wrapper scripts and
3151    restored at link time])
3152_LT_DECL([], [need_lib_prefix], [0],
3153    [Do we need the "lib" prefix for modules?])
3154_LT_DECL([], [need_version], [0], [Do we need a version for libraries?])
3155_LT_DECL([], [version_type], [0], [Library versioning type])
3156_LT_DECL([], [runpath_var], [0],  [Shared library runtime path variable])
3157_LT_DECL([], [shlibpath_var], [0],[Shared library path variable])
3158_LT_DECL([], [shlibpath_overrides_runpath], [0],
3159    [Is shlibpath searched before the hard-coded library search path?])
3160_LT_DECL([], [libname_spec], [1], [Format of library name prefix])
3161_LT_DECL([], [library_names_spec], [1],
3162    [[List of archive names.  First name is the real one, the rest are links.
3163    The last name is the one that the linker finds with -lNAME]])
3164_LT_DECL([], [soname_spec], [1],
3165    [[The coded name of the library, if different from the real name]])
3166_LT_DECL([], [install_override_mode], [1],
3167    [Permission mode override for installation of shared libraries])
3168_LT_DECL([], [postinstall_cmds], [2],
3169    [Command to use after installation of a shared archive])
3170_LT_DECL([], [postuninstall_cmds], [2],
3171    [Command to use after uninstallation of a shared archive])
3172_LT_DECL([], [finish_cmds], [2],
3173    [Commands used to finish a libtool library installation in a directory])
3174_LT_DECL([], [finish_eval], [1],
3175    [[As "finish_cmds", except a single script fragment to be evaled but
3176    not shown]])
3177_LT_DECL([], [hardcode_into_libs], [0],
3178    [Whether we should hardcode library paths into libraries])
3179_LT_DECL([], [sys_lib_search_path_spec], [2],
3180    [Compile-time system search path for libraries])
3181_LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2],
3182    [Detected run-time system search path for libraries])
3183_LT_DECL([], [configure_time_lt_sys_library_path], [2],
3184    [Explicit LT_SYS_LIBRARY_PATH set during ./configure time])
3185])# _LT_SYS_DYNAMIC_LINKER
3186
3187
3188# _LT_PATH_TOOL_PREFIX(TOOL)
3189# --------------------------
3190# find a file program that can recognize shared library
3191AC_DEFUN([_LT_PATH_TOOL_PREFIX],
3192[m4_require([_LT_DECL_EGREP])dnl
3193AC_MSG_CHECKING([for $1])
3194AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
3195[case $MAGIC_CMD in
3196[[\\/*] |  ?:[\\/]*])
3197  lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
3198  ;;
3199*)
3200  lt_save_MAGIC_CMD=$MAGIC_CMD
3201  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
3202dnl $ac_dummy forces splitting on constant user-supplied paths.
3203dnl POSIX.2 word splitting is done only on the output of word expansions,
3204dnl not every word.  This closes a longstanding sh security hole.
3205  ac_dummy="m4_if([$2], , $PATH, [$2])"
3206  for ac_dir in $ac_dummy; do
3207    IFS=$lt_save_ifs
3208    test -z "$ac_dir" && ac_dir=.
3209    if test -f "$ac_dir/$1"; then
3210      lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
3211      if test -n "$file_magic_test_file"; then
3212	case $deplibs_check_method in
3213	"file_magic "*)
3214	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
3215	  MAGIC_CMD=$lt_cv_path_MAGIC_CMD
3216	  if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3217	    $EGREP "$file_magic_regex" > /dev/null; then
3218	    :
3219	  else
3220	    cat <<_LT_EOF 1>&2
3221
3222*** Warning: the command libtool uses to detect shared libraries,
3223*** $file_magic_cmd, produces output that libtool cannot recognize.
3224*** The result is that libtool may fail to recognize shared libraries
3225*** as such.  This will affect the creation of libtool libraries that
3226*** depend on shared libraries, but programs linked with such libtool
3227*** libraries will work regardless of this problem.  Nevertheless, you
3228*** may want to report the problem to your system manager and/or to
3229*** bug-libtool@gnu.org
3230
3231_LT_EOF
3232	  fi ;;
3233	esac
3234      fi
3235      break
3236    fi
3237  done
3238  IFS=$lt_save_ifs
3239  MAGIC_CMD=$lt_save_MAGIC_CMD
3240  ;;
3241esac])
3242MAGIC_CMD=$lt_cv_path_MAGIC_CMD
3243if test -n "$MAGIC_CMD"; then
3244  AC_MSG_RESULT($MAGIC_CMD)
3245else
3246  AC_MSG_RESULT(no)
3247fi
3248_LT_DECL([], [MAGIC_CMD], [0],
3249	 [Used to examine libraries when file_magic_cmd begins with "file"])dnl
3250])# _LT_PATH_TOOL_PREFIX
3251
3252# Old name:
3253AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX])
3254dnl aclocal-1.4 backwards compatibility:
3255dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], [])
3256
3257
3258# _LT_PATH_MAGIC
3259# --------------
3260# find a file program that can recognize a shared library
3261m4_defun([_LT_PATH_MAGIC],
3262[_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
3263if test -z "$lt_cv_path_MAGIC_CMD"; then
3264  if test -n "$ac_tool_prefix"; then
3265    _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
3266  else
3267    MAGIC_CMD=:
3268  fi
3269fi
3270])# _LT_PATH_MAGIC
3271
3272
3273# LT_PATH_LD
3274# ----------
3275# find the pathname to the GNU or non-GNU linker
3276AC_DEFUN([LT_PATH_LD],
3277[AC_REQUIRE([AC_PROG_CC])dnl
3278AC_REQUIRE([AC_CANONICAL_HOST])dnl
3279AC_REQUIRE([AC_CANONICAL_BUILD])dnl
3280m4_require([_LT_DECL_SED])dnl
3281m4_require([_LT_DECL_EGREP])dnl
3282m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
3283
3284AC_ARG_WITH([gnu-ld],
3285    [AS_HELP_STRING([--with-gnu-ld],
3286	[assume the C compiler uses GNU ld @<:@default=no@:>@])],
3287    [test no = "$withval" || with_gnu_ld=yes],
3288    [with_gnu_ld=no])dnl
3289
3290ac_prog=ld
3291if test yes = "$GCC"; then
3292  # Check if gcc -print-prog-name=ld gives a path.
3293  AC_MSG_CHECKING([for ld used by $CC])
3294  case $host in
3295  *-*-mingw*)
3296    # gcc leaves a trailing carriage return, which upsets mingw
3297    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3298  *)
3299    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3300  esac
3301  case $ac_prog in
3302    # Accept absolute paths.
3303    [[\\/]]* | ?:[[\\/]]*)
3304      re_direlt='/[[^/]][[^/]]*/\.\./'
3305      # Canonicalize the pathname of ld
3306      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
3307      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
3308	ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
3309      done
3310      test -z "$LD" && LD=$ac_prog
3311      ;;
3312  "")
3313    # If it fails, then pretend we aren't using GCC.
3314    ac_prog=ld
3315    ;;
3316  *)
3317    # If it is relative, then search for the first ld in PATH.
3318    with_gnu_ld=unknown
3319    ;;
3320  esac
3321elif test yes = "$with_gnu_ld"; then
3322  AC_MSG_CHECKING([for GNU ld])
3323else
3324  AC_MSG_CHECKING([for non-GNU ld])
3325fi
3326AC_CACHE_VAL(lt_cv_path_LD,
3327[if test -z "$LD"; then
3328  lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
3329  for ac_dir in $PATH; do
3330    IFS=$lt_save_ifs
3331    test -z "$ac_dir" && ac_dir=.
3332    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
3333      lt_cv_path_LD=$ac_dir/$ac_prog
3334      # Check to see if the program is GNU ld.  I'd rather use --version,
3335      # but apparently some variants of GNU ld only accept -v.
3336      # Break only if it was the GNU/non-GNU ld that we prefer.
3337      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
3338      *GNU* | *'with BFD'*)
3339	test no != "$with_gnu_ld" && break
3340	;;
3341      *)
3342	test yes != "$with_gnu_ld" && break
3343	;;
3344      esac
3345    fi
3346  done
3347  IFS=$lt_save_ifs
3348else
3349  lt_cv_path_LD=$LD # Let the user override the test with a path.
3350fi])
3351LD=$lt_cv_path_LD
3352if test -n "$LD"; then
3353  AC_MSG_RESULT($LD)
3354else
3355  AC_MSG_RESULT(no)
3356fi
3357test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
3358_LT_PATH_LD_GNU
3359AC_SUBST([LD])
3360
3361_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
3362])# LT_PATH_LD
3363
3364# Old names:
3365AU_ALIAS([AM_PROG_LD], [LT_PATH_LD])
3366AU_ALIAS([AC_PROG_LD], [LT_PATH_LD])
3367dnl aclocal-1.4 backwards compatibility:
3368dnl AC_DEFUN([AM_PROG_LD], [])
3369dnl AC_DEFUN([AC_PROG_LD], [])
3370
3371
3372# _LT_PATH_LD_GNU
3373#- --------------
3374m4_defun([_LT_PATH_LD_GNU],
3375[AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
3376[# I'd rather use --version here, but apparently some GNU lds only accept -v.
3377case `$LD -v 2>&1 </dev/null` in
3378*GNU* | *'with BFD'*)
3379  lt_cv_prog_gnu_ld=yes
3380  ;;
3381*)
3382  lt_cv_prog_gnu_ld=no
3383  ;;
3384esac])
3385with_gnu_ld=$lt_cv_prog_gnu_ld
3386])# _LT_PATH_LD_GNU
3387
3388
3389# _LT_CMD_RELOAD
3390# --------------
3391# find reload flag for linker
3392#   -- PORTME Some linkers may need a different reload flag.
3393m4_defun([_LT_CMD_RELOAD],
3394[AC_CACHE_CHECK([for $LD option to reload object files],
3395  lt_cv_ld_reload_flag,
3396  [lt_cv_ld_reload_flag='-r'])
3397reload_flag=$lt_cv_ld_reload_flag
3398case $reload_flag in
3399"" | " "*) ;;
3400*) reload_flag=" $reload_flag" ;;
3401esac
3402reload_cmds='$LD$reload_flag -o $output$reload_objs'
3403case $host_os in
3404  cygwin* | mingw* | pw32* | cegcc*)
3405    if test yes != "$GCC"; then
3406      reload_cmds=false
3407    fi
3408    ;;
3409  darwin*)
3410    if test yes = "$GCC"; then
3411      reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs'
3412    else
3413      reload_cmds='$LD$reload_flag -o $output$reload_objs'
3414    fi
3415    ;;
3416esac
3417_LT_TAGDECL([], [reload_flag], [1], [How to create reloadable object files])dnl
3418_LT_TAGDECL([], [reload_cmds], [2])dnl
3419])# _LT_CMD_RELOAD
3420
3421
3422# _LT_PATH_DD
3423# -----------
3424# find a working dd
3425m4_defun([_LT_PATH_DD],
3426[AC_CACHE_CHECK([for a working dd], [ac_cv_path_lt_DD],
3427[printf 0123456789abcdef0123456789abcdef >conftest.i
3428cat conftest.i conftest.i >conftest2.i
3429: ${lt_DD:=$DD}
3430AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd],
3431[if "$ac_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then
3432  cmp -s conftest.i conftest.out \
3433  && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=:
3434fi])
3435rm -f conftest.i conftest2.i conftest.out])
3436])# _LT_PATH_DD
3437
3438
3439# _LT_CMD_TRUNCATE
3440# ----------------
3441# find command to truncate a binary pipe
3442m4_defun([_LT_CMD_TRUNCATE],
3443[m4_require([_LT_PATH_DD])
3444AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin],
3445[printf 0123456789abcdef0123456789abcdef >conftest.i
3446cat conftest.i conftest.i >conftest2.i
3447lt_cv_truncate_bin=
3448if "$ac_cv_path_lt_DD" bs=32 count=1 <conftest2.i >conftest.out 2>/dev/null; then
3449  cmp -s conftest.i conftest.out \
3450  && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1"
3451fi
3452rm -f conftest.i conftest2.i conftest.out
3453test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"])
3454_LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1],
3455  [Command to truncate a binary pipe])
3456])# _LT_CMD_TRUNCATE
3457
3458
3459# _LT_CHECK_MAGIC_METHOD
3460# ----------------------
3461# how to check for library dependencies
3462#  -- PORTME fill in with the dynamic library characteristics
3463m4_defun([_LT_CHECK_MAGIC_METHOD],
3464[m4_require([_LT_DECL_EGREP])
3465m4_require([_LT_DECL_OBJDUMP])
3466AC_CACHE_CHECK([how to recognize dependent libraries],
3467lt_cv_deplibs_check_method,
3468[lt_cv_file_magic_cmd='$MAGIC_CMD'
3469lt_cv_file_magic_test_file=
3470lt_cv_deplibs_check_method='unknown'
3471# Need to set the preceding variable on all platforms that support
3472# interlibrary dependencies.
3473# 'none' -- dependencies not supported.
3474# 'unknown' -- same as none, but documents that we really don't know.
3475# 'pass_all' -- all dependencies passed with no checks.
3476# 'test_compile' -- check by making test program.
3477# 'file_magic [[regex]]' -- check by looking for files in library path
3478# that responds to the $file_magic_cmd with a given extended regex.
3479# If you have 'file' or equivalent on your system and you're not sure
3480# whether 'pass_all' will *always* work, you probably want this one.
3481
3482case $host_os in
3483aix[[4-9]]*)
3484  lt_cv_deplibs_check_method=pass_all
3485  ;;
3486
3487beos*)
3488  lt_cv_deplibs_check_method=pass_all
3489  ;;
3490
3491bsdi[[45]]*)
3492  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
3493  lt_cv_file_magic_cmd='/usr/bin/file -L'
3494  lt_cv_file_magic_test_file=/shlib/libc.so
3495  ;;
3496
3497cygwin*)
3498  # func_win32_libid is a shell function defined in ltmain.sh
3499  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
3500  lt_cv_file_magic_cmd='func_win32_libid'
3501  ;;
3502
3503mingw* | pw32*)
3504  # Base MSYS/MinGW do not provide the 'file' command needed by
3505  # func_win32_libid shell function, so use a weaker test based on 'objdump',
3506  # unless we find 'file', for example because we are cross-compiling.
3507  if ( file / ) >/dev/null 2>&1; then
3508    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
3509    lt_cv_file_magic_cmd='func_win32_libid'
3510  else
3511    # Keep this pattern in sync with the one in func_win32_libid.
3512    lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)'
3513    lt_cv_file_magic_cmd='$OBJDUMP -f'
3514  fi
3515  ;;
3516
3517cegcc*)
3518  # use the weaker test based on 'objdump'. See mingw*.
3519  lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?'
3520  lt_cv_file_magic_cmd='$OBJDUMP -f'
3521  ;;
3522
3523darwin* | rhapsody*)
3524  lt_cv_deplibs_check_method=pass_all
3525  ;;
3526
3527freebsd* | dragonfly*)
3528  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3529    case $host_cpu in
3530    i*86 )
3531      # Not sure whether the presence of OpenBSD here was a mistake.
3532      # Let's accept both of them until this is cleared up.
3533      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
3534      lt_cv_file_magic_cmd=/usr/bin/file
3535      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3536      ;;
3537    esac
3538  else
3539    lt_cv_deplibs_check_method=pass_all
3540  fi
3541  ;;
3542
3543haiku*)
3544  lt_cv_deplibs_check_method=pass_all
3545  ;;
3546
3547hpux10.20* | hpux11*)
3548  lt_cv_file_magic_cmd=/usr/bin/file
3549  case $host_cpu in
3550  ia64*)
3551    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
3552    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
3553    ;;
3554  hppa*64*)
3555    [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]']
3556    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
3557    ;;
3558  *)
3559    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]]\.[[0-9]]) shared library'
3560    lt_cv_file_magic_test_file=/usr/lib/libc.sl
3561    ;;
3562  esac
3563  ;;
3564
3565interix[[3-9]]*)
3566  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
3567  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
3568  ;;
3569
3570irix5* | irix6* | nonstopux*)
3571  case $LD in
3572  *-32|*"-32 ") libmagic=32-bit;;
3573  *-n32|*"-n32 ") libmagic=N32;;
3574  *-64|*"-64 ") libmagic=64-bit;;
3575  *) libmagic=never-match;;
3576  esac
3577  lt_cv_deplibs_check_method=pass_all
3578  ;;
3579
3580# This must be glibc/ELF.
3581linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
3582  lt_cv_deplibs_check_method=pass_all
3583  ;;
3584
3585netbsd*)
3586  if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then
3587    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3588  else
3589    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
3590  fi
3591  ;;
3592
3593newos6*)
3594  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
3595  lt_cv_file_magic_cmd=/usr/bin/file
3596  lt_cv_file_magic_test_file=/usr/lib/libnls.so
3597  ;;
3598
3599*nto* | *qnx*)
3600  lt_cv_deplibs_check_method=pass_all
3601  ;;
3602
3603openbsd* | bitrig*)
3604  if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
3605    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
3606  else
3607    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3608  fi
3609  ;;
3610
3611osf3* | osf4* | osf5*)
3612  lt_cv_deplibs_check_method=pass_all
3613  ;;
3614
3615rdos*)
3616  lt_cv_deplibs_check_method=pass_all
3617  ;;
3618
3619solaris*)
3620  lt_cv_deplibs_check_method=pass_all
3621  ;;
3622
3623sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
3624  lt_cv_deplibs_check_method=pass_all
3625  ;;
3626
3627sysv4 | sysv4.3*)
3628  case $host_vendor in
3629  motorola)
3630    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]]'
3631    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
3632    ;;
3633  ncr)
3634    lt_cv_deplibs_check_method=pass_all
3635    ;;
3636  sequent)
3637    lt_cv_file_magic_cmd='/bin/file'
3638    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
3639    ;;
3640  sni)
3641    lt_cv_file_magic_cmd='/bin/file'
3642    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
3643    lt_cv_file_magic_test_file=/lib/libc.so
3644    ;;
3645  siemens)
3646    lt_cv_deplibs_check_method=pass_all
3647    ;;
3648  pc)
3649    lt_cv_deplibs_check_method=pass_all
3650    ;;
3651  esac
3652  ;;
3653
3654tpf*)
3655  lt_cv_deplibs_check_method=pass_all
3656  ;;
3657os2*)
3658  lt_cv_deplibs_check_method=pass_all
3659  ;;
3660esac
3661])
3662
3663file_magic_glob=
3664want_nocaseglob=no
3665if test "$build" = "$host"; then
3666  case $host_os in
3667  mingw* | pw32*)
3668    if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then
3669      want_nocaseglob=yes
3670    else
3671      file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"`
3672    fi
3673    ;;
3674  esac
3675fi
3676
3677file_magic_cmd=$lt_cv_file_magic_cmd
3678deplibs_check_method=$lt_cv_deplibs_check_method
3679test -z "$deplibs_check_method" && deplibs_check_method=unknown
3680
3681_LT_DECL([], [deplibs_check_method], [1],
3682    [Method to check whether dependent libraries are shared objects])
3683_LT_DECL([], [file_magic_cmd], [1],
3684    [Command to use when deplibs_check_method = "file_magic"])
3685_LT_DECL([], [file_magic_glob], [1],
3686    [How to find potential files when deplibs_check_method = "file_magic"])
3687_LT_DECL([], [want_nocaseglob], [1],
3688    [Find potential files using nocaseglob when deplibs_check_method = "file_magic"])
3689])# _LT_CHECK_MAGIC_METHOD
3690
3691
3692# LT_PATH_NM
3693# ----------
3694# find the pathname to a BSD- or MS-compatible name lister
3695AC_DEFUN([LT_PATH_NM],
3696[AC_REQUIRE([AC_PROG_CC])dnl
3697AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
3698[if test -n "$NM"; then
3699  # Let the user override the test.
3700  lt_cv_path_NM=$NM
3701else
3702  lt_nm_to_check=${ac_tool_prefix}nm
3703  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
3704    lt_nm_to_check="$lt_nm_to_check nm"
3705  fi
3706  for lt_tmp_nm in $lt_nm_to_check; do
3707    lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
3708    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
3709      IFS=$lt_save_ifs
3710      test -z "$ac_dir" && ac_dir=.
3711      tmp_nm=$ac_dir/$lt_tmp_nm
3712      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
3713	# Check to see if the nm accepts a BSD-compat flag.
3714	# Adding the 'sed 1q' prevents false positives on HP-UX, which says:
3715	#   nm: unknown option "B" ignored
3716	# Tru64's nm complains that /dev/null is an invalid object file
3717	# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
3718	case $build_os in
3719	mingw*) lt_bad_file=conftest.nm/nofile ;;
3720	*) lt_bad_file=/dev/null ;;
3721	esac
3722	case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
3723	*$lt_bad_file* | *'Invalid file or object type'*)
3724	  lt_cv_path_NM="$tmp_nm -B"
3725	  break 2
3726	  ;;
3727	*)
3728	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
3729	  */dev/null*)
3730	    lt_cv_path_NM="$tmp_nm -p"
3731	    break 2
3732	    ;;
3733	  *)
3734	    lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
3735	    continue # so that we can try to find one that supports BSD flags
3736	    ;;
3737	  esac
3738	  ;;
3739	esac
3740      fi
3741    done
3742    IFS=$lt_save_ifs
3743  done
3744  : ${lt_cv_path_NM=no}
3745fi])
3746if test no != "$lt_cv_path_NM"; then
3747  NM=$lt_cv_path_NM
3748else
3749  # Didn't find any BSD compatible name lister, look for dumpbin.
3750  if test -n "$DUMPBIN"; then :
3751    # Let the user override the test.
3752  else
3753    AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
3754    case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
3755    *COFF*)
3756      DUMPBIN="$DUMPBIN -symbols -headers"
3757      ;;
3758    *)
3759      DUMPBIN=:
3760      ;;
3761    esac
3762  fi
3763  AC_SUBST([DUMPBIN])
3764  if test : != "$DUMPBIN"; then
3765    NM=$DUMPBIN
3766  fi
3767fi
3768test -z "$NM" && NM=nm
3769AC_SUBST([NM])
3770_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
3771
3772AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
3773  [lt_cv_nm_interface="BSD nm"
3774  echo "int some_variable = 0;" > conftest.$ac_ext
3775  (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
3776  (eval "$ac_compile" 2>conftest.err)
3777  cat conftest.err >&AS_MESSAGE_LOG_FD
3778  (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
3779  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
3780  cat conftest.err >&AS_MESSAGE_LOG_FD
3781  (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
3782  cat conftest.out >&AS_MESSAGE_LOG_FD
3783  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
3784    lt_cv_nm_interface="MS dumpbin"
3785  fi
3786  rm -f conftest*])
3787])# LT_PATH_NM
3788
3789# Old names:
3790AU_ALIAS([AM_PROG_NM], [LT_PATH_NM])
3791AU_ALIAS([AC_PROG_NM], [LT_PATH_NM])
3792dnl aclocal-1.4 backwards compatibility:
3793dnl AC_DEFUN([AM_PROG_NM], [])
3794dnl AC_DEFUN([AC_PROG_NM], [])
3795
3796# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
3797# --------------------------------
3798# how to determine the name of the shared library
3799# associated with a specific link library.
3800#  -- PORTME fill in with the dynamic library characteristics
3801m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB],
3802[m4_require([_LT_DECL_EGREP])
3803m4_require([_LT_DECL_OBJDUMP])
3804m4_require([_LT_DECL_DLLTOOL])
3805AC_CACHE_CHECK([how to associate runtime and link libraries],
3806lt_cv_sharedlib_from_linklib_cmd,
3807[lt_cv_sharedlib_from_linklib_cmd='unknown'
3808
3809case $host_os in
3810cygwin* | mingw* | pw32* | cegcc*)
3811  # two different shell functions defined in ltmain.sh;
3812  # decide which one to use based on capabilities of $DLLTOOL
3813  case `$DLLTOOL --help 2>&1` in
3814  *--identify-strict*)
3815    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib
3816    ;;
3817  *)
3818    lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback
3819    ;;
3820  esac
3821  ;;
3822*)
3823  # fallback: assume linklib IS sharedlib
3824  lt_cv_sharedlib_from_linklib_cmd=$ECHO
3825  ;;
3826esac
3827])
3828sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd
3829test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO
3830
3831_LT_DECL([], [sharedlib_from_linklib_cmd], [1],
3832    [Command to associate shared and link libraries])
3833])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB
3834
3835
3836# _LT_PATH_MANIFEST_TOOL
3837# ----------------------
3838# locate the manifest tool
3839m4_defun([_LT_PATH_MANIFEST_TOOL],
3840[AC_CHECK_TOOL(MANIFEST_TOOL, mt, :)
3841test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt
3842AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_mainfest_tool],
3843  [lt_cv_path_mainfest_tool=no
3844  echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD
3845  $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out
3846  cat conftest.err >&AS_MESSAGE_LOG_FD
3847  if $GREP 'Manifest Tool' conftest.out > /dev/null; then
3848    lt_cv_path_mainfest_tool=yes
3849  fi
3850  rm -f conftest*])
3851if test yes != "$lt_cv_path_mainfest_tool"; then
3852  MANIFEST_TOOL=:
3853fi
3854_LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl
3855])# _LT_PATH_MANIFEST_TOOL
3856
3857
3858# _LT_DLL_DEF_P([FILE])
3859# ---------------------
3860# True iff FILE is a Windows DLL '.def' file.
3861# Keep in sync with func_dll_def_p in the libtool script
3862AC_DEFUN([_LT_DLL_DEF_P],
3863[dnl
3864  test DEF = "`$SED -n dnl
3865    -e '\''s/^[[	 ]]*//'\'' dnl Strip leading whitespace
3866    -e '\''/^\(;.*\)*$/d'\'' dnl      Delete empty lines and comments
3867    -e '\''s/^\(EXPORTS\|LIBRARY\)\([[	 ]].*\)*$/DEF/p'\'' dnl
3868    -e q dnl                          Only consider the first "real" line
3869    $1`" dnl
3870])# _LT_DLL_DEF_P
3871
3872
3873# LT_LIB_M
3874# --------
3875# check for math library
3876AC_DEFUN([LT_LIB_M],
3877[AC_REQUIRE([AC_CANONICAL_HOST])dnl
3878LIBM=
3879case $host in
3880*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
3881  # These system don't have libm, or don't need it
3882  ;;
3883*-ncr-sysv4.3*)
3884  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
3885  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
3886  ;;
3887*)
3888  AC_CHECK_LIB(m, cos, LIBM=-lm)
3889  ;;
3890esac
3891AC_SUBST([LIBM])
3892])# LT_LIB_M
3893
3894# Old name:
3895AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M])
3896dnl aclocal-1.4 backwards compatibility:
3897dnl AC_DEFUN([AC_CHECK_LIBM], [])
3898
3899
3900# _LT_COMPILER_NO_RTTI([TAGNAME])
3901# -------------------------------
3902m4_defun([_LT_COMPILER_NO_RTTI],
3903[m4_require([_LT_TAG_COMPILER])dnl
3904
3905_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
3906
3907if test yes = "$GCC"; then
3908  case $cc_basename in
3909  nvcc*)
3910    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;;
3911  *)
3912    _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;;
3913  esac
3914
3915  _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
3916    lt_cv_prog_compiler_rtti_exceptions,
3917    [-fno-rtti -fno-exceptions], [],
3918    [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
3919fi
3920_LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1],
3921	[Compiler flag to turn off builtin functions])
3922])# _LT_COMPILER_NO_RTTI
3923
3924
3925# _LT_CMD_GLOBAL_SYMBOLS
3926# ----------------------
3927m4_defun([_LT_CMD_GLOBAL_SYMBOLS],
3928[AC_REQUIRE([AC_CANONICAL_HOST])dnl
3929AC_REQUIRE([AC_PROG_CC])dnl
3930AC_REQUIRE([AC_PROG_AWK])dnl
3931AC_REQUIRE([LT_PATH_NM])dnl
3932AC_REQUIRE([LT_PATH_LD])dnl
3933m4_require([_LT_DECL_SED])dnl
3934m4_require([_LT_DECL_EGREP])dnl
3935m4_require([_LT_TAG_COMPILER])dnl
3936
3937# Check for command to grab the raw symbol name followed by C symbol from nm.
3938AC_MSG_CHECKING([command to parse $NM output from $compiler object])
3939AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
3940[
3941# These are sane defaults that work on at least a few old systems.
3942# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
3943
3944# Character class describing NM global symbol codes.
3945symcode='[[BCDEGRST]]'
3946
3947# Regexp to match symbols that can be accessed directly from C.
3948sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
3949
3950# Define system-specific variables.
3951case $host_os in
3952aix*)
3953  symcode='[[BCDT]]'
3954  ;;
3955cygwin* | mingw* | pw32* | cegcc*)
3956  symcode='[[ABCDGISTW]]'
3957  ;;
3958hpux*)
3959  if test ia64 = "$host_cpu"; then
3960    symcode='[[ABCDEGRST]]'
3961  fi
3962  ;;
3963irix* | nonstopux*)
3964  symcode='[[BCDEGRST]]'
3965  ;;
3966osf*)
3967  symcode='[[BCDEGQRST]]'
3968  ;;
3969solaris*)
3970  symcode='[[BDRT]]'
3971  ;;
3972sco3.2v5*)
3973  symcode='[[DT]]'
3974  ;;
3975sysv4.2uw2*)
3976  symcode='[[DT]]'
3977  ;;
3978sysv5* | sco5v6* | unixware* | OpenUNIX*)
3979  symcode='[[ABDT]]'
3980  ;;
3981sysv4)
3982  symcode='[[DFNSTU]]'
3983  ;;
3984esac
3985
3986# If we're using GNU nm, then use its standard symbol codes.
3987case `$NM -V 2>&1` in
3988*GNU* | *'with BFD'*)
3989  symcode='[[ABCDGIRSTW]]' ;;
3990esac
3991
3992if test "$lt_cv_nm_interface" = "MS dumpbin"; then
3993  # Gets list of data symbols to import.
3994  lt_cv_sys_global_symbol_to_import="sed -n -e 's/^I .* \(.*\)$/\1/p'"
3995  # Adjust the below global symbol transforms to fixup imported variables.
3996  lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'"
3997  lt_c_name_hook=" -e 's/^I .* \(.*\)$/  {\"\1\", (void *) 0},/p'"
3998  lt_c_name_lib_hook="\
3999  -e 's/^I .* \(lib.*\)$/  {\"\1\", (void *) 0},/p'\
4000  -e 's/^I .* \(.*\)$/  {\"lib\1\", (void *) 0},/p'"
4001else
4002  # Disable hooks by default.
4003  lt_cv_sys_global_symbol_to_import=
4004  lt_cdecl_hook=
4005  lt_c_name_hook=
4006  lt_c_name_lib_hook=
4007fi
4008
4009# Transform an extracted symbol line into a proper C declaration.
4010# Some systems (esp. on ia64) link data and code symbols differently,
4011# so use this general approach.
4012lt_cv_sys_global_symbol_to_cdecl="sed -n"\
4013$lt_cdecl_hook\
4014" -e 's/^T .* \(.*\)$/extern int \1();/p'"\
4015" -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'"
4016
4017# Transform an extracted symbol line into symbol name and symbol address
4018lt_cv_sys_global_symbol_to_c_name_address="sed -n"\
4019$lt_c_name_hook\
4020" -e 's/^: \(.*\) .*$/  {\"\1\", (void *) 0},/p'"\
4021" -e 's/^$symcode$symcode* .* \(.*\)$/  {\"\1\", (void *) \&\1},/p'"
4022
4023# Transform an extracted symbol line into symbol name with lib prefix and
4024# symbol address.
4025lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n"\
4026$lt_c_name_lib_hook\
4027" -e 's/^: \(.*\) .*$/  {\"\1\", (void *) 0},/p'"\
4028" -e 's/^$symcode$symcode* .* \(lib.*\)$/  {\"\1\", (void *) \&\1},/p'"\
4029" -e 's/^$symcode$symcode* .* \(.*\)$/  {\"lib\1\", (void *) \&\1},/p'"
4030
4031# Handle CRLF in mingw tool chain
4032opt_cr=
4033case $build_os in
4034mingw*)
4035  opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp
4036  ;;
4037esac
4038
4039# Try without a prefix underscore, then with it.
4040for ac_symprfx in "" "_"; do
4041
4042  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
4043  symxfrm="\\1 $ac_symprfx\\2 \\2"
4044
4045  # Write the raw and C identifiers.
4046  if test "$lt_cv_nm_interface" = "MS dumpbin"; then
4047    # Fake it for dumpbin and say T for any non-static function,
4048    # D for any global variable and I for any imported variable.
4049    # Also find C++ and __fastcall symbols from MSVC++ or ICC,
4050    # which start with @ or ?.
4051    lt_cv_sys_global_symbol_pipe="$AWK ['"\
4052"     {last_section=section; section=\$ 3};"\
4053"     /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\
4054"     /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\
4055"     /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\
4056"     /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\
4057"     /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\
4058"     \$ 0!~/External *\|/{next};"\
4059"     / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\
4060"     {if(hide[section]) next};"\
4061"     {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\
4062"     {split(\$ 0,a,/\||\r/); split(a[2],s)};"\
4063"     s[1]~/^[@?]/{print f,s[1],s[1]; next};"\
4064"     s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\
4065"     ' prfx=^$ac_symprfx]"
4066  else
4067    lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[	 ]]\($symcode$symcode*\)[[	 ]][[	 ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
4068  fi
4069  lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | sed '/ __gnu_lto/d'"
4070
4071  # Check to see that the pipe works correctly.
4072  pipe_works=no
4073
4074  rm -f conftest*
4075  cat > conftest.$ac_ext <<_LT_EOF
4076#ifdef __cplusplus
4077extern "C" {
4078#endif
4079char nm_test_var;
4080void nm_test_func(void);
4081void nm_test_func(void){}
4082#ifdef __cplusplus
4083}
4084#endif
4085int main(){nm_test_var='a';nm_test_func();return(0);}
4086_LT_EOF
4087
4088  if AC_TRY_EVAL(ac_compile); then
4089    # Now try to grab the symbols.
4090    nlist=conftest.nm
4091    if AC_TRY_EVAL(NM conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist) && test -s "$nlist"; then
4092      # Try sorting and uniquifying the output.
4093      if sort "$nlist" | uniq > "$nlist"T; then
4094	mv -f "$nlist"T "$nlist"
4095      else
4096	rm -f "$nlist"T
4097      fi
4098
4099      # Make sure that we snagged all the symbols we need.
4100      if $GREP ' nm_test_var$' "$nlist" >/dev/null; then
4101	if $GREP ' nm_test_func$' "$nlist" >/dev/null; then
4102	  cat <<_LT_EOF > conftest.$ac_ext
4103/* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests.  */
4104#if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE
4105/* DATA imports from DLLs on WIN32 can't be const, because runtime
4106   relocations are performed -- see ld's documentation on pseudo-relocs.  */
4107# define LT@&t@_DLSYM_CONST
4108#elif defined __osf__
4109/* This system does not cope well with relocations in const data.  */
4110# define LT@&t@_DLSYM_CONST
4111#else
4112# define LT@&t@_DLSYM_CONST const
4113#endif
4114
4115#ifdef __cplusplus
4116extern "C" {
4117#endif
4118
4119_LT_EOF
4120	  # Now generate the symbol file.
4121	  eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext'
4122
4123	  cat <<_LT_EOF >> conftest.$ac_ext
4124
4125/* The mapping between symbol names and symbols.  */
4126LT@&t@_DLSYM_CONST struct {
4127  const char *name;
4128  void       *address;
4129}
4130lt__PROGRAM__LTX_preloaded_symbols[[]] =
4131{
4132  { "@PROGRAM@", (void *) 0 },
4133_LT_EOF
4134	  $SED "s/^$symcode$symcode* .* \(.*\)$/  {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext
4135	  cat <<\_LT_EOF >> conftest.$ac_ext
4136  {0, (void *) 0}
4137};
4138
4139/* This works around a problem in FreeBSD linker */
4140#ifdef FREEBSD_WORKAROUND
4141static const void *lt_preloaded_setup() {
4142  return lt__PROGRAM__LTX_preloaded_symbols;
4143}
4144#endif
4145
4146#ifdef __cplusplus
4147}
4148#endif
4149_LT_EOF
4150	  # Now try linking the two files.
4151	  mv conftest.$ac_objext conftstm.$ac_objext
4152	  lt_globsym_save_LIBS=$LIBS
4153	  lt_globsym_save_CFLAGS=$CFLAGS
4154	  LIBS=conftstm.$ac_objext
4155	  CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
4156	  if AC_TRY_EVAL(ac_link) && test -s conftest$ac_exeext; then
4157	    pipe_works=yes
4158	  fi
4159	  LIBS=$lt_globsym_save_LIBS
4160	  CFLAGS=$lt_globsym_save_CFLAGS
4161	else
4162	  echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
4163	fi
4164      else
4165	echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
4166      fi
4167    else
4168      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
4169    fi
4170  else
4171    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
4172    cat conftest.$ac_ext >&5
4173  fi
4174  rm -rf conftest* conftst*
4175
4176  # Do not use the global_symbol_pipe unless it works.
4177  if test yes = "$pipe_works"; then
4178    break
4179  else
4180    lt_cv_sys_global_symbol_pipe=
4181  fi
4182done
4183])
4184if test -z "$lt_cv_sys_global_symbol_pipe"; then
4185  lt_cv_sys_global_symbol_to_cdecl=
4186fi
4187if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
4188  AC_MSG_RESULT(failed)
4189else
4190  AC_MSG_RESULT(ok)
4191fi
4192
4193# Response file support.
4194if test "$lt_cv_nm_interface" = "MS dumpbin"; then
4195  nm_file_list_spec='@'
4196elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then
4197  nm_file_list_spec='@'
4198fi
4199
4200_LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1],
4201    [Take the output of nm and produce a listing of raw symbols and C names])
4202_LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1],
4203    [Transform the output of nm in a proper C declaration])
4204_LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1],
4205    [Transform the output of nm into a list of symbols to manually relocate])
4206_LT_DECL([global_symbol_to_c_name_address],
4207    [lt_cv_sys_global_symbol_to_c_name_address], [1],
4208    [Transform the output of nm in a C name address pair])
4209_LT_DECL([global_symbol_to_c_name_address_lib_prefix],
4210    [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1],
4211    [Transform the output of nm in a C name address pair when lib prefix is needed])
4212_LT_DECL([nm_interface], [lt_cv_nm_interface], [1],
4213    [The name lister interface])
4214_LT_DECL([], [nm_file_list_spec], [1],
4215    [Specify filename containing input files for $NM])
4216]) # _LT_CMD_GLOBAL_SYMBOLS
4217
4218
4219# _LT_COMPILER_PIC([TAGNAME])
4220# ---------------------------
4221m4_defun([_LT_COMPILER_PIC],
4222[m4_require([_LT_TAG_COMPILER])dnl
4223_LT_TAGVAR(lt_prog_compiler_wl, $1)=
4224_LT_TAGVAR(lt_prog_compiler_pic, $1)=
4225_LT_TAGVAR(lt_prog_compiler_static, $1)=
4226
4227m4_if([$1], [CXX], [
4228  # C++ specific cases for pic, static, wl, etc.
4229  if test yes = "$GXX"; then
4230    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4231    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4232
4233    case $host_os in
4234    aix*)
4235      # All AIX code is PIC.
4236      if test ia64 = "$host_cpu"; then
4237	# AIX 5 now supports IA64 processor
4238	_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4239      fi
4240      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4241      ;;
4242
4243    amigaos*)
4244      case $host_cpu in
4245      powerpc)
4246            # see comment about AmigaOS4 .so support
4247            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4248        ;;
4249      m68k)
4250            # FIXME: we need at least 68020 code to build shared libraries, but
4251            # adding the '-m68020' flag to GCC prevents building anything better,
4252            # like '-m68040'.
4253            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4254        ;;
4255      esac
4256      ;;
4257
4258    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4259      # PIC is the default for these OSes.
4260      ;;
4261    mingw* | cygwin* | os2* | pw32* | cegcc*)
4262      # This hack is so that the source file can tell whether it is being
4263      # built for inclusion in a dll (and should export symbols for example).
4264      # Although the cygwin gcc ignores -fPIC, still need this for old-style
4265      # (--disable-auto-import) libraries
4266      m4_if([$1], [GCJ], [],
4267	[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4268      case $host_os in
4269      os2*)
4270	_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'
4271	;;
4272      esac
4273      ;;
4274    darwin* | rhapsody*)
4275      # PIC is the default on this platform
4276      # Common symbols not allowed in MH_DYLIB files
4277      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4278      ;;
4279    *djgpp*)
4280      # DJGPP does not support shared libraries at all
4281      _LT_TAGVAR(lt_prog_compiler_pic, $1)=
4282      ;;
4283    haiku*)
4284      # PIC is the default for Haiku.
4285      # The "-static" flag exists, but is broken.
4286      _LT_TAGVAR(lt_prog_compiler_static, $1)=
4287      ;;
4288    interix[[3-9]]*)
4289      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4290      # Instead, we relocate shared libraries at runtime.
4291      ;;
4292    sysv4*MP*)
4293      if test -d /usr/nec; then
4294	_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4295      fi
4296      ;;
4297    hpux*)
4298      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
4299      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
4300      # sets the default TLS model and affects inlining.
4301      case $host_cpu in
4302      hppa*64*)
4303	;;
4304      *)
4305	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4306	;;
4307      esac
4308      ;;
4309    *qnx* | *nto*)
4310      # QNX uses GNU C++, but need to define -shared option too, otherwise
4311      # it will coredump.
4312      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
4313      ;;
4314    *)
4315      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4316      ;;
4317    esac
4318  else
4319    case $host_os in
4320      aix[[4-9]]*)
4321	# All AIX code is PIC.
4322	if test ia64 = "$host_cpu"; then
4323	  # AIX 5 now supports IA64 processor
4324	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4325	else
4326	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4327	fi
4328	;;
4329      chorus*)
4330	case $cc_basename in
4331	cxch68*)
4332	  # Green Hills C++ Compiler
4333	  # _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"
4334	  ;;
4335	esac
4336	;;
4337      mingw* | cygwin* | os2* | pw32* | cegcc*)
4338	# This hack is so that the source file can tell whether it is being
4339	# built for inclusion in a dll (and should export symbols for example).
4340	m4_if([$1], [GCJ], [],
4341	  [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4342	;;
4343      dgux*)
4344	case $cc_basename in
4345	  ec++*)
4346	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4347	    ;;
4348	  ghcx*)
4349	    # Green Hills C++ Compiler
4350	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4351	    ;;
4352	  *)
4353	    ;;
4354	esac
4355	;;
4356      freebsd* | dragonfly*)
4357	# FreeBSD uses GNU C++
4358	;;
4359      hpux9* | hpux10* | hpux11*)
4360	case $cc_basename in
4361	  CC*)
4362	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4363	    _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'
4364	    if test ia64 != "$host_cpu"; then
4365	      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4366	    fi
4367	    ;;
4368	  aCC*)
4369	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4370	    _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'
4371	    case $host_cpu in
4372	    hppa*64*|ia64*)
4373	      # +Z the default
4374	      ;;
4375	    *)
4376	      _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4377	      ;;
4378	    esac
4379	    ;;
4380	  *)
4381	    ;;
4382	esac
4383	;;
4384      interix*)
4385	# This is c89, which is MS Visual C++ (no shared libs)
4386	# Anyone wants to do a port?
4387	;;
4388      irix5* | irix6* | nonstopux*)
4389	case $cc_basename in
4390	  CC*)
4391	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4392	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4393	    # CC pic flag -KPIC is the default.
4394	    ;;
4395	  *)
4396	    ;;
4397	esac
4398	;;
4399      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
4400	case $cc_basename in
4401	  KCC*)
4402	    # KAI C++ Compiler
4403	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4404	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4405	    ;;
4406	  ecpc* )
4407	    # old Intel C++ for x86_64, which still supported -KPIC.
4408	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4409	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4410	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4411	    ;;
4412	  icpc* )
4413	    # Intel C++, used to be incompatible with GCC.
4414	    # ICC 10 doesn't accept -KPIC any more.
4415	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4416	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4417	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4418	    ;;
4419	  pgCC* | pgcpp*)
4420	    # Portland Group C++ compiler
4421	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4422	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4423	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4424	    ;;
4425	  cxx*)
4426	    # Compaq C++
4427	    # Make sure the PIC flag is empty.  It appears that all Alpha
4428	    # Linux and Compaq Tru64 Unix objects are PIC.
4429	    _LT_TAGVAR(lt_prog_compiler_pic, $1)=
4430	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4431	    ;;
4432	  xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*)
4433	    # IBM XL 8.0, 9.0 on PPC and BlueGene
4434	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4435	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
4436	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
4437	    ;;
4438	  *)
4439	    case `$CC -V 2>&1 | sed 5q` in
4440	    *Sun\ C*)
4441	      # Sun C++ 5.9
4442	      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4443	      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4444	      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4445	      ;;
4446	    esac
4447	    ;;
4448	esac
4449	;;
4450      lynxos*)
4451	;;
4452      m88k*)
4453	;;
4454      mvs*)
4455	case $cc_basename in
4456	  cxx*)
4457	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
4458	    ;;
4459	  *)
4460	    ;;
4461	esac
4462	;;
4463      netbsd*)
4464	;;
4465      *qnx* | *nto*)
4466        # QNX uses GNU C++, but need to define -shared option too, otherwise
4467        # it will coredump.
4468        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
4469        ;;
4470      osf3* | osf4* | osf5*)
4471	case $cc_basename in
4472	  KCC*)
4473	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4474	    ;;
4475	  RCC*)
4476	    # Rational C++ 2.4.1
4477	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4478	    ;;
4479	  cxx*)
4480	    # Digital/Compaq C++
4481	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4482	    # Make sure the PIC flag is empty.  It appears that all Alpha
4483	    # Linux and Compaq Tru64 Unix objects are PIC.
4484	    _LT_TAGVAR(lt_prog_compiler_pic, $1)=
4485	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4486	    ;;
4487	  *)
4488	    ;;
4489	esac
4490	;;
4491      psos*)
4492	;;
4493      solaris*)
4494	case $cc_basename in
4495	  CC* | sunCC*)
4496	    # Sun C++ 4.2, 5.x and Centerline C++
4497	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4498	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4499	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4500	    ;;
4501	  gcx*)
4502	    # Green Hills C++ Compiler
4503	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4504	    ;;
4505	  *)
4506	    ;;
4507	esac
4508	;;
4509      sunos4*)
4510	case $cc_basename in
4511	  CC*)
4512	    # Sun C++ 4.x
4513	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4514	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4515	    ;;
4516	  lcc*)
4517	    # Lucid
4518	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4519	    ;;
4520	  *)
4521	    ;;
4522	esac
4523	;;
4524      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
4525	case $cc_basename in
4526	  CC*)
4527	    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4528	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4529	    _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4530	    ;;
4531	esac
4532	;;
4533      tandem*)
4534	case $cc_basename in
4535	  NCC*)
4536	    # NonStop-UX NCC 3.20
4537	    _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4538	    ;;
4539	  *)
4540	    ;;
4541	esac
4542	;;
4543      vxworks*)
4544	;;
4545      *)
4546	_LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4547	;;
4548    esac
4549  fi
4550],
4551[
4552  if test yes = "$GCC"; then
4553    _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4554    _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4555
4556    case $host_os in
4557      aix*)
4558      # All AIX code is PIC.
4559      if test ia64 = "$host_cpu"; then
4560	# AIX 5 now supports IA64 processor
4561	_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4562      fi
4563      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4564      ;;
4565
4566    amigaos*)
4567      case $host_cpu in
4568      powerpc)
4569            # see comment about AmigaOS4 .so support
4570            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4571        ;;
4572      m68k)
4573            # FIXME: we need at least 68020 code to build shared libraries, but
4574            # adding the '-m68020' flag to GCC prevents building anything better,
4575            # like '-m68040'.
4576            _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4577        ;;
4578      esac
4579      ;;
4580
4581    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4582      # PIC is the default for these OSes.
4583      ;;
4584
4585    mingw* | cygwin* | pw32* | os2* | cegcc*)
4586      # This hack is so that the source file can tell whether it is being
4587      # built for inclusion in a dll (and should export symbols for example).
4588      # Although the cygwin gcc ignores -fPIC, still need this for old-style
4589      # (--disable-auto-import) libraries
4590      m4_if([$1], [GCJ], [],
4591	[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4592      case $host_os in
4593      os2*)
4594	_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'
4595	;;
4596      esac
4597      ;;
4598
4599    darwin* | rhapsody*)
4600      # PIC is the default on this platform
4601      # Common symbols not allowed in MH_DYLIB files
4602      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4603      ;;
4604
4605    haiku*)
4606      # PIC is the default for Haiku.
4607      # The "-static" flag exists, but is broken.
4608      _LT_TAGVAR(lt_prog_compiler_static, $1)=
4609      ;;
4610
4611    hpux*)
4612      # PIC is the default for 64-bit PA HP-UX, but not for 32-bit
4613      # PA HP-UX.  On IA64 HP-UX, PIC is the default but the pic flag
4614      # sets the default TLS model and affects inlining.
4615      case $host_cpu in
4616      hppa*64*)
4617	# +Z the default
4618	;;
4619      *)
4620	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4621	;;
4622      esac
4623      ;;
4624
4625    interix[[3-9]]*)
4626      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4627      # Instead, we relocate shared libraries at runtime.
4628      ;;
4629
4630    msdosdjgpp*)
4631      # Just because we use GCC doesn't mean we suddenly get shared libraries
4632      # on systems that don't support them.
4633      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4634      enable_shared=no
4635      ;;
4636
4637    *nto* | *qnx*)
4638      # QNX uses GNU C++, but need to define -shared option too, otherwise
4639      # it will coredump.
4640      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
4641      ;;
4642
4643    sysv4*MP*)
4644      if test -d /usr/nec; then
4645	_LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4646      fi
4647      ;;
4648
4649    *)
4650      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4651      ;;
4652    esac
4653
4654    case $cc_basename in
4655    nvcc*) # Cuda Compiler Driver 2.2
4656      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker '
4657      if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
4658        _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)"
4659      fi
4660      ;;
4661    esac
4662  else
4663    # PORTME Check for flag to pass linker flags through the system compiler.
4664    case $host_os in
4665    aix*)
4666      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4667      if test ia64 = "$host_cpu"; then
4668	# AIX 5 now supports IA64 processor
4669	_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4670      else
4671	_LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4672      fi
4673      ;;
4674
4675    darwin* | rhapsody*)
4676      # PIC is the default on this platform
4677      # Common symbols not allowed in MH_DYLIB files
4678      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4679      case $cc_basename in
4680      nagfor*)
4681        # NAG Fortran compiler
4682        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
4683        _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4684        _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4685        ;;
4686      esac
4687      ;;
4688
4689    mingw* | cygwin* | pw32* | os2* | cegcc*)
4690      # This hack is so that the source file can tell whether it is being
4691      # built for inclusion in a dll (and should export symbols for example).
4692      m4_if([$1], [GCJ], [],
4693	[_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4694      case $host_os in
4695      os2*)
4696	_LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static'
4697	;;
4698      esac
4699      ;;
4700
4701    hpux9* | hpux10* | hpux11*)
4702      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4703      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4704      # not for PA HP-UX.
4705      case $host_cpu in
4706      hppa*64*|ia64*)
4707	# +Z the default
4708	;;
4709      *)
4710	_LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4711	;;
4712      esac
4713      # Is there a better lt_prog_compiler_static that works with the bundled CC?
4714      _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive'
4715      ;;
4716
4717    irix5* | irix6* | nonstopux*)
4718      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4719      # PIC (with -KPIC) is the default.
4720      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4721      ;;
4722
4723    linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
4724      case $cc_basename in
4725      # old Intel for x86_64, which still supported -KPIC.
4726      ecc*)
4727	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4728	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4729	_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4730        ;;
4731      # icc used to be incompatible with GCC.
4732      # ICC 10 doesn't accept -KPIC any more.
4733      icc* | ifort*)
4734	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4735	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4736	_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4737        ;;
4738      # Lahey Fortran 8.1.
4739      lf95*)
4740	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4741	_LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared'
4742	_LT_TAGVAR(lt_prog_compiler_static, $1)='--static'
4743	;;
4744      nagfor*)
4745	# NAG Fortran compiler
4746	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,'
4747	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4748	_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4749	;;
4750      tcc*)
4751	# Fabrice Bellard et al's Tiny C Compiler
4752	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4753	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4754	_LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4755	;;
4756      pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*)
4757        # Portland Group compilers (*not* the Pentium gcc compiler,
4758	# which looks to be a dead project)
4759	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4760	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4761	_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4762        ;;
4763      ccc*)
4764        _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4765        # All Alpha code is PIC.
4766        _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4767        ;;
4768      xl* | bgxl* | bgf* | mpixl*)
4769	# IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene
4770	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4771	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic'
4772	_LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink'
4773	;;
4774      *)
4775	case `$CC -V 2>&1 | sed 5q` in
4776	*Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*)
4777	  # Sun Fortran 8.3 passes all unrecognized flags to the linker
4778	  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4779	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4780	  _LT_TAGVAR(lt_prog_compiler_wl, $1)=''
4781	  ;;
4782	*Sun\ F* | *Sun*Fortran*)
4783	  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4784	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4785	  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4786	  ;;
4787	*Sun\ C*)
4788	  # Sun C 5.9
4789	  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4790	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4791	  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4792	  ;;
4793        *Intel*\ [[CF]]*Compiler*)
4794	  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4795	  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4796	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-static'
4797	  ;;
4798	*Portland\ Group*)
4799	  _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4800	  _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4801	  _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4802	  ;;
4803	esac
4804	;;
4805      esac
4806      ;;
4807
4808    newsos6)
4809      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4810      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4811      ;;
4812
4813    *nto* | *qnx*)
4814      # QNX uses GNU C++, but need to define -shared option too, otherwise
4815      # it will coredump.
4816      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared'
4817      ;;
4818
4819    osf3* | osf4* | osf5*)
4820      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4821      # All OSF/1 code is PIC.
4822      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4823      ;;
4824
4825    rdos*)
4826      _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4827      ;;
4828
4829    solaris*)
4830      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4831      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4832      case $cc_basename in
4833      f77* | f90* | f95* | sunf77* | sunf90* | sunf95*)
4834	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
4835      *)
4836	_LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
4837      esac
4838      ;;
4839
4840    sunos4*)
4841      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4842      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4843      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4844      ;;
4845
4846    sysv4 | sysv4.2uw2* | sysv4.3*)
4847      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4848      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4849      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4850      ;;
4851
4852    sysv4*MP*)
4853      if test -d /usr/nec; then
4854	_LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
4855	_LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4856      fi
4857      ;;
4858
4859    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
4860      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4861      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4862      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4863      ;;
4864
4865    unicos*)
4866      _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4867      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4868      ;;
4869
4870    uts4*)
4871      _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4872      _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4873      ;;
4874
4875    *)
4876      _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4877      ;;
4878    esac
4879  fi
4880])
4881case $host_os in
4882  # For platforms that do not support PIC, -DPIC is meaningless:
4883  *djgpp*)
4884    _LT_TAGVAR(lt_prog_compiler_pic, $1)=
4885    ;;
4886  *)
4887    _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])"
4888    ;;
4889esac
4890
4891AC_CACHE_CHECK([for $compiler option to produce PIC],
4892  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)],
4893  [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)])
4894_LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)
4895
4896#
4897# Check to make sure the PIC flag actually works.
4898#
4899if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then
4900  _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works],
4901    [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)],
4902    [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [],
4903    [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in
4904     "" | " "*) ;;
4905     *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;;
4906     esac],
4907    [_LT_TAGVAR(lt_prog_compiler_pic, $1)=
4908     _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
4909fi
4910_LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1],
4911	[Additional compiler flags for building library objects])
4912
4913_LT_TAGDECL([wl], [lt_prog_compiler_wl], [1],
4914	[How to pass a linker flag through the compiler])
4915#
4916# Check to make sure the static flag actually works.
4917#
4918wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\"
4919_LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
4920  _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1),
4921  $lt_tmp_static_flag,
4922  [],
4923  [_LT_TAGVAR(lt_prog_compiler_static, $1)=])
4924_LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1],
4925	[Compiler flag to prevent dynamic linking])
4926])# _LT_COMPILER_PIC
4927
4928
4929# _LT_LINKER_SHLIBS([TAGNAME])
4930# ----------------------------
4931# See if the linker supports building shared libraries.
4932m4_defun([_LT_LINKER_SHLIBS],
4933[AC_REQUIRE([LT_PATH_LD])dnl
4934AC_REQUIRE([LT_PATH_NM])dnl
4935m4_require([_LT_PATH_MANIFEST_TOOL])dnl
4936m4_require([_LT_FILEUTILS_DEFAULTS])dnl
4937m4_require([_LT_DECL_EGREP])dnl
4938m4_require([_LT_DECL_SED])dnl
4939m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
4940m4_require([_LT_TAG_COMPILER])dnl
4941AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
4942m4_if([$1], [CXX], [
4943  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4944  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
4945  case $host_os in
4946  aix[[4-9]]*)
4947    # If we're using GNU nm, then we don't want the "-C" option.
4948    # -C means demangle to GNU nm, but means don't demangle to AIX nm.
4949    # Without the "-l" option, or with the "-B" option, AIX nm treats
4950    # weak defined symbols like other global defined symbols, whereas
4951    # GNU nm marks them as "W".
4952    # While the 'weak' keyword is ignored in the Export File, we need
4953    # it in the Import File for the 'aix-soname' feature, so we have
4954    # to replace the "-B" option with "-P" for AIX nm.
4955    if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
4956      _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
4957    else
4958      _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
4959    fi
4960    ;;
4961  pw32*)
4962    _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds
4963    ;;
4964  cygwin* | mingw* | cegcc*)
4965    case $cc_basename in
4966    cl* | icl*)
4967      _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
4968      ;;
4969    *)
4970      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
4971      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
4972      ;;
4973    esac
4974    ;;
4975  *)
4976    _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4977    ;;
4978  esac
4979], [
4980  runpath_var=
4981  _LT_TAGVAR(allow_undefined_flag, $1)=
4982  _LT_TAGVAR(always_export_symbols, $1)=no
4983  _LT_TAGVAR(archive_cmds, $1)=
4984  _LT_TAGVAR(archive_expsym_cmds, $1)=
4985  _LT_TAGVAR(compiler_needs_object, $1)=no
4986  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
4987  _LT_TAGVAR(export_dynamic_flag_spec, $1)=
4988  _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
4989  _LT_TAGVAR(hardcode_automatic, $1)=no
4990  _LT_TAGVAR(hardcode_direct, $1)=no
4991  _LT_TAGVAR(hardcode_direct_absolute, $1)=no
4992  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
4993  _LT_TAGVAR(hardcode_libdir_separator, $1)=
4994  _LT_TAGVAR(hardcode_minus_L, $1)=no
4995  _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
4996  _LT_TAGVAR(inherit_rpath, $1)=no
4997  _LT_TAGVAR(link_all_deplibs, $1)=unknown
4998  _LT_TAGVAR(module_cmds, $1)=
4999  _LT_TAGVAR(module_expsym_cmds, $1)=
5000  _LT_TAGVAR(old_archive_from_new_cmds, $1)=
5001  _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)=
5002  _LT_TAGVAR(thread_safe_flag_spec, $1)=
5003  _LT_TAGVAR(whole_archive_flag_spec, $1)=
5004  # include_expsyms should be a list of space-separated symbols to be *always*
5005  # included in the symbol list
5006  _LT_TAGVAR(include_expsyms, $1)=
5007  # exclude_expsyms can be an extended regexp of symbols to exclude
5008  # it will be wrapped by ' (' and ')$', so one must not match beginning or
5009  # end of line.  Example: 'a|bc|.*d.*' will exclude the symbols 'a' and 'bc',
5010  # as well as any symbol that contains 'd'.
5011  _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
5012  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
5013  # platforms (ab)use it in PIC code, but their linkers get confused if
5014  # the symbol is explicitly referenced.  Since portable code cannot
5015  # rely on this symbol name, it's probably fine to never include it in
5016  # preloaded symbol tables.
5017  # Exclude shared library initialization/finalization symbols.
5018dnl Note also adjust exclude_expsyms for C++ above.
5019  extract_expsyms_cmds=
5020
5021  case $host_os in
5022  cygwin* | mingw* | pw32* | cegcc*)
5023    # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time
5024    # When not using gcc, we currently assume that we are using
5025    # Microsoft Visual C++ or Intel C++ Compiler.
5026    if test yes != "$GCC"; then
5027      with_gnu_ld=no
5028    fi
5029    ;;
5030  interix*)
5031    # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC)
5032    with_gnu_ld=yes
5033    ;;
5034  openbsd* | bitrig*)
5035    with_gnu_ld=no
5036    ;;
5037  esac
5038
5039  _LT_TAGVAR(ld_shlibs, $1)=yes
5040
5041  # On some targets, GNU ld is compatible enough with the native linker
5042  # that we're better off using the native interface for both.
5043  lt_use_gnu_ld_interface=no
5044  if test yes = "$with_gnu_ld"; then
5045    case $host_os in
5046      aix*)
5047	# The AIX port of GNU ld has always aspired to compatibility
5048	# with the native linker.  However, as the warning in the GNU ld
5049	# block says, versions before 2.19.5* couldn't really create working
5050	# shared libraries, regardless of the interface used.
5051	case `$LD -v 2>&1` in
5052	  *\ \(GNU\ Binutils\)\ 2.19.5*) ;;
5053	  *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;;
5054	  *\ \(GNU\ Binutils\)\ [[3-9]]*) ;;
5055	  *)
5056	    lt_use_gnu_ld_interface=yes
5057	    ;;
5058	esac
5059	;;
5060      *)
5061	lt_use_gnu_ld_interface=yes
5062	;;
5063    esac
5064  fi
5065
5066  if test yes = "$lt_use_gnu_ld_interface"; then
5067    # If archive_cmds runs LD, not CC, wlarc should be empty
5068    wlarc='$wl'
5069
5070    # Set some defaults for GNU ld with shared library support. These
5071    # are reset later if shared libraries are not supported. Putting them
5072    # here allows them to be overridden if necessary.
5073    runpath_var=LD_RUN_PATH
5074    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5075    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
5076    # ancient GNU ld didn't support --whole-archive et. al.
5077    if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then
5078      _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
5079    else
5080      _LT_TAGVAR(whole_archive_flag_spec, $1)=
5081    fi
5082    supports_anon_versioning=no
5083    case `$LD -v | $SED -e 's/([^)]\+)\s\+//' 2>&1` in
5084      *GNU\ gold*) supports_anon_versioning=yes ;;
5085      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
5086      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
5087      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
5088      *\ 2.11.*) ;; # other 2.11 versions
5089      *) supports_anon_versioning=yes ;;
5090    esac
5091
5092    # See if GNU ld supports shared libraries.
5093    case $host_os in
5094    aix[[3-9]]*)
5095      # On AIX/PPC, the GNU linker is very broken
5096      if test ia64 != "$host_cpu"; then
5097	_LT_TAGVAR(ld_shlibs, $1)=no
5098	cat <<_LT_EOF 1>&2
5099
5100*** Warning: the GNU linker, at least up to release 2.19, is reported
5101*** to be unable to reliably create shared libraries on AIX.
5102*** Therefore, libtool is disabling shared libraries support.  If you
5103*** really care for shared libraries, you may want to install binutils
5104*** 2.20 or above, or modify your PATH so that a non-GNU linker is found.
5105*** You will then need to restart the configuration process.
5106
5107_LT_EOF
5108      fi
5109      ;;
5110
5111    amigaos*)
5112      case $host_cpu in
5113      powerpc)
5114            # see comment about AmigaOS4 .so support
5115            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5116            _LT_TAGVAR(archive_expsym_cmds, $1)=''
5117        ;;
5118      m68k)
5119            _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)'
5120            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5121            _LT_TAGVAR(hardcode_minus_L, $1)=yes
5122        ;;
5123      esac
5124      ;;
5125
5126    beos*)
5127      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
5128	_LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5129	# Joseph Beckenbach <jrb3@best.com> says some releases of gcc
5130	# support --undefined.  This deserves some investigation.  FIXME
5131	_LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5132      else
5133	_LT_TAGVAR(ld_shlibs, $1)=no
5134      fi
5135      ;;
5136
5137    cygwin* | mingw* | pw32* | cegcc*)
5138      # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
5139      # as there is no search path for DLLs.
5140      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5141      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'
5142      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5143      _LT_TAGVAR(always_export_symbols, $1)=no
5144      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5145      _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols'
5146      _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname']
5147
5148      if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
5149        _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'
5150	# If the export-symbols file already is a .def file, use it as
5151	# is; otherwise, prepend EXPORTS...
5152	_LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
5153          cp $export_symbols $output_objdir/$soname.def;
5154        else
5155          echo EXPORTS > $output_objdir/$soname.def;
5156          cat $export_symbols >> $output_objdir/$soname.def;
5157        fi~
5158        $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname $wl--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
5159      else
5160	_LT_TAGVAR(ld_shlibs, $1)=no
5161      fi
5162      ;;
5163
5164    haiku*)
5165      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5166      _LT_TAGVAR(link_all_deplibs, $1)=yes
5167      ;;
5168
5169    os2*)
5170      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5171      _LT_TAGVAR(hardcode_minus_L, $1)=yes
5172      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5173      shrext_cmds=.dll
5174      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
5175	$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
5176	$ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
5177	$ECHO EXPORTS >> $output_objdir/$libname.def~
5178	emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
5179	$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
5180	emximp -o $lib $output_objdir/$libname.def'
5181      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
5182	$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
5183	$ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
5184	$ECHO EXPORTS >> $output_objdir/$libname.def~
5185	prefix_cmds="$SED"~
5186	if test EXPORTS = "`$SED 1q $export_symbols`"; then
5187	  prefix_cmds="$prefix_cmds -e 1d";
5188	fi~
5189	prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
5190	cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
5191	$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
5192	emximp -o $lib $output_objdir/$libname.def'
5193      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
5194      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5195      _LT_TAGVAR(file_list_spec, $1)='@'
5196      ;;
5197
5198    interix[[3-9]]*)
5199      _LT_TAGVAR(hardcode_direct, $1)=no
5200      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5201      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
5202      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
5203      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
5204      # Instead, shared libraries are loaded at an image base (0x10000000 by
5205      # default) and relocated if they conflict, which is a slow very memory
5206      # consuming and fragmenting process.  To avoid this, we pick a random,
5207      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
5208      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
5209      _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'
5210      _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'
5211      ;;
5212
5213    gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu)
5214      tmp_diet=no
5215      if test linux-dietlibc = "$host_os"; then
5216	case $cc_basename in
5217	  diet\ *) tmp_diet=yes;;	# linux-dietlibc with static linking (!diet-dyn)
5218	esac
5219      fi
5220      if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \
5221	 && test no = "$tmp_diet"
5222      then
5223	tmp_addflag=' $pic_flag'
5224	tmp_sharedflag='-shared'
5225	case $cc_basename,$host_cpu in
5226        pgcc*)				# Portland Group C compiler
5227	  _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'
5228	  tmp_addflag=' $pic_flag'
5229	  ;;
5230	pgf77* | pgf90* | pgf95* | pgfortran*)
5231					# Portland Group f77 and f90 compilers
5232	  _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'
5233	  tmp_addflag=' $pic_flag -Mnomain' ;;
5234	ecc*,ia64* | icc*,ia64*)	# Intel C compiler on ia64
5235	  tmp_addflag=' -i_dynamic' ;;
5236	efc*,ia64* | ifort*,ia64*)	# Intel Fortran compiler on ia64
5237	  tmp_addflag=' -i_dynamic -nofor_main' ;;
5238	ifc* | ifort*)			# Intel Fortran compiler
5239	  tmp_addflag=' -nofor_main' ;;
5240	lf95*)				# Lahey Fortran 8.1
5241	  _LT_TAGVAR(whole_archive_flag_spec, $1)=
5242	  tmp_sharedflag='--shared' ;;
5243        nagfor*)                        # NAGFOR 5.3
5244          tmp_sharedflag='-Wl,-shared' ;;
5245	xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below)
5246	  tmp_sharedflag='-qmkshrobj'
5247	  tmp_addflag= ;;
5248	nvcc*)	# Cuda Compiler Driver 2.2
5249	  _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'
5250	  _LT_TAGVAR(compiler_needs_object, $1)=yes
5251	  ;;
5252	esac
5253	case `$CC -V 2>&1 | sed 5q` in
5254	*Sun\ C*)			# Sun C 5.9
5255	  _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'
5256	  _LT_TAGVAR(compiler_needs_object, $1)=yes
5257	  tmp_sharedflag='-G' ;;
5258	*Sun\ F*)			# Sun Fortran 8.3
5259	  tmp_sharedflag='-G' ;;
5260	esac
5261	_LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5262
5263        if test yes = "$supports_anon_versioning"; then
5264          _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
5265            cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5266            echo "local: *; };" >> $output_objdir/$libname.ver~
5267            $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
5268        fi
5269
5270	case $cc_basename in
5271	tcc*)
5272	  _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic'
5273	  ;;
5274	xlf* | bgf* | bgxlf* | mpixlf*)
5275	  # IBM XL Fortran 10.1 on PPC cannot create shared libs itself
5276	  _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive'
5277	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5278	  _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib'
5279	  if test yes = "$supports_anon_versioning"; then
5280	    _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
5281              cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5282              echo "local: *; };" >> $output_objdir/$libname.ver~
5283              $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib'
5284	  fi
5285	  ;;
5286	esac
5287      else
5288        _LT_TAGVAR(ld_shlibs, $1)=no
5289      fi
5290      ;;
5291
5292    netbsd*)
5293      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
5294	_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
5295	wlarc=
5296      else
5297	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5298	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
5299      fi
5300      ;;
5301
5302    solaris*)
5303      if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then
5304	_LT_TAGVAR(ld_shlibs, $1)=no
5305	cat <<_LT_EOF 1>&2
5306
5307*** Warning: The releases 2.8.* of the GNU linker cannot reliably
5308*** create shared libraries on Solaris systems.  Therefore, libtool
5309*** is disabling shared libraries support.  We urge you to upgrade GNU
5310*** binutils to release 2.9.1 or newer.  Another option is to modify
5311*** your PATH or compiler configuration so that the native linker is
5312*** used, and then restart.
5313
5314_LT_EOF
5315      elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
5316	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5317	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
5318      else
5319	_LT_TAGVAR(ld_shlibs, $1)=no
5320      fi
5321      ;;
5322
5323    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
5324      case `$LD -v 2>&1` in
5325        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
5326	_LT_TAGVAR(ld_shlibs, $1)=no
5327	cat <<_LT_EOF 1>&2
5328
5329*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot
5330*** reliably create shared libraries on SCO systems.  Therefore, libtool
5331*** is disabling shared libraries support.  We urge you to upgrade GNU
5332*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
5333*** your PATH or compiler configuration so that the native linker is
5334*** used, and then restart.
5335
5336_LT_EOF
5337	;;
5338	*)
5339	  # For security reasons, it is highly recommended that you always
5340	  # use absolute paths for naming shared libraries, and exclude the
5341	  # DT_RUNPATH tag from executables and libraries.  But doing so
5342	  # requires that you compile everything twice, which is a pain.
5343	  if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
5344	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5345	    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5346	    _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'
5347	  else
5348	    _LT_TAGVAR(ld_shlibs, $1)=no
5349	  fi
5350	;;
5351      esac
5352      ;;
5353
5354    sunos4*)
5355      _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5356      wlarc=
5357      _LT_TAGVAR(hardcode_direct, $1)=yes
5358      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5359      ;;
5360
5361    *)
5362      if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
5363	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5364	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib'
5365      else
5366	_LT_TAGVAR(ld_shlibs, $1)=no
5367      fi
5368      ;;
5369    esac
5370
5371    if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then
5372      runpath_var=
5373      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
5374      _LT_TAGVAR(export_dynamic_flag_spec, $1)=
5375      _LT_TAGVAR(whole_archive_flag_spec, $1)=
5376    fi
5377  else
5378    # PORTME fill in a description of your system's linker (not GNU ld)
5379    case $host_os in
5380    aix3*)
5381      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5382      _LT_TAGVAR(always_export_symbols, $1)=yes
5383      _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'
5384      # Note: this linker hardcodes the directories in LIBPATH if there
5385      # are no directories specified by -L.
5386      _LT_TAGVAR(hardcode_minus_L, $1)=yes
5387      if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then
5388	# Neither direct hardcoding nor static linking is supported with a
5389	# broken collect2.
5390	_LT_TAGVAR(hardcode_direct, $1)=unsupported
5391      fi
5392      ;;
5393
5394    aix[[4-9]]*)
5395      if test ia64 = "$host_cpu"; then
5396	# On IA64, the linker does run time linking by default, so we don't
5397	# have to do anything special.
5398	aix_use_runtimelinking=no
5399	exp_sym_flag='-Bexport'
5400	no_entry_flag=
5401      else
5402	# If we're using GNU nm, then we don't want the "-C" option.
5403	# -C means demangle to GNU nm, but means don't demangle to AIX nm.
5404	# Without the "-l" option, or with the "-B" option, AIX nm treats
5405	# weak defined symbols like other global defined symbols, whereas
5406	# GNU nm marks them as "W".
5407	# While the 'weak' keyword is ignored in the Export File, we need
5408	# it in the Import File for the 'aix-soname' feature, so we have
5409	# to replace the "-B" option with "-P" for AIX nm.
5410	if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then
5411	  _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols'
5412	else
5413	  _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols'
5414	fi
5415	aix_use_runtimelinking=no
5416
5417	# Test if we are trying to use run time linking or normal
5418	# AIX style linking. If -brtl is somewhere in LDFLAGS, we
5419	# have runtime linking enabled, and use it for executables.
5420	# For shared libraries, we enable/disable runtime linking
5421	# depending on the kind of the shared library created -
5422	# when "with_aix_soname,aix_use_runtimelinking" is:
5423	# "aix,no"   lib.a(lib.so.V) shared, rtl:no,  for executables
5424	# "aix,yes"  lib.so          shared, rtl:yes, for executables
5425	#            lib.a           static archive
5426	# "both,no"  lib.so.V(shr.o) shared, rtl:yes
5427	#            lib.a(lib.so.V) shared, rtl:no,  for executables
5428	# "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables
5429	#            lib.a(lib.so.V) shared, rtl:no
5430	# "svr4,*"   lib.so.V(shr.o) shared, rtl:yes, for executables
5431	#            lib.a           static archive
5432	case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
5433	  for ld_flag in $LDFLAGS; do
5434	  if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then
5435	    aix_use_runtimelinking=yes
5436	    break
5437	  fi
5438	  done
5439	  if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then
5440	    # With aix-soname=svr4, we create the lib.so.V shared archives only,
5441	    # so we don't have lib.a shared libs to link our executables.
5442	    # We have to force runtime linking in this case.
5443	    aix_use_runtimelinking=yes
5444	    LDFLAGS="$LDFLAGS -Wl,-brtl"
5445	  fi
5446	  ;;
5447	esac
5448
5449	exp_sym_flag='-bexport'
5450	no_entry_flag='-bnoentry'
5451      fi
5452
5453      # When large executables or shared objects are built, AIX ld can
5454      # have problems creating the table of contents.  If linking a library
5455      # or program results in "error TOC overflow" add -mminimal-toc to
5456      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
5457      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
5458
5459      _LT_TAGVAR(archive_cmds, $1)=''
5460      _LT_TAGVAR(hardcode_direct, $1)=yes
5461      _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
5462      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
5463      _LT_TAGVAR(link_all_deplibs, $1)=yes
5464      _LT_TAGVAR(file_list_spec, $1)='$wl-f,'
5465      case $with_aix_soname,$aix_use_runtimelinking in
5466      aix,*) ;; # traditional, no import file
5467      svr4,* | *,yes) # use import file
5468	# The Import File defines what to hardcode.
5469	_LT_TAGVAR(hardcode_direct, $1)=no
5470	_LT_TAGVAR(hardcode_direct_absolute, $1)=no
5471	;;
5472      esac
5473
5474      if test yes = "$GCC"; then
5475	case $host_os in aix4.[[012]]|aix4.[[012]].*)
5476	# We only want to do this on AIX 4.2 and lower, the check
5477	# below for broken collect2 doesn't work under 4.3+
5478	  collect2name=`$CC -print-prog-name=collect2`
5479	  if test -f "$collect2name" &&
5480	   strings "$collect2name" | $GREP resolve_lib_name >/dev/null
5481	  then
5482	  # We have reworked collect2
5483	  :
5484	  else
5485	  # We have old collect2
5486	  _LT_TAGVAR(hardcode_direct, $1)=unsupported
5487	  # It fails to find uninstalled libraries when the uninstalled
5488	  # path is not listed in the libpath.  Setting hardcode_minus_L
5489	  # to unsupported forces relinking
5490	  _LT_TAGVAR(hardcode_minus_L, $1)=yes
5491	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5492	  _LT_TAGVAR(hardcode_libdir_separator, $1)=
5493	  fi
5494	  ;;
5495	esac
5496	shared_flag='-shared'
5497	if test yes = "$aix_use_runtimelinking"; then
5498	  shared_flag="$shared_flag "'$wl-G'
5499	fi
5500	# Need to ensure runtime linking is disabled for the traditional
5501	# shared library, or the linker may eventually find shared libraries
5502	# /with/ Import File - we do not want to mix them.
5503	shared_flag_aix='-shared'
5504	shared_flag_svr4='-shared $wl-G'
5505      else
5506	# not using gcc
5507	if test ia64 = "$host_cpu"; then
5508	# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
5509	# chokes on -Wl,-G. The following line is correct:
5510	  shared_flag='-G'
5511	else
5512	  if test yes = "$aix_use_runtimelinking"; then
5513	    shared_flag='$wl-G'
5514	  else
5515	    shared_flag='$wl-bM:SRE'
5516	  fi
5517	  shared_flag_aix='$wl-bM:SRE'
5518	  shared_flag_svr4='$wl-G'
5519	fi
5520      fi
5521
5522      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'
5523      # It seems that -bexpall does not export symbols beginning with
5524      # underscore (_), so it is better to generate a list of symbols to export.
5525      _LT_TAGVAR(always_export_symbols, $1)=yes
5526      if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then
5527	# Warning - without using the other runtime loading flags (-brtl),
5528	# -berok will link without error, but may produce a broken library.
5529	_LT_TAGVAR(allow_undefined_flag, $1)='-berok'
5530        # Determine the default libpath from the value encoded in an
5531        # empty executable.
5532        _LT_SYS_MODULE_PATH_AIX([$1])
5533        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
5534        _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
5535      else
5536	if test ia64 = "$host_cpu"; then
5537	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'
5538	  _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
5539	  _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"
5540	else
5541	 # Determine the default libpath from the value encoded in an
5542	 # empty executable.
5543	 _LT_SYS_MODULE_PATH_AIX([$1])
5544	 _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
5545	  # Warning - without using the other run time loading flags,
5546	  # -berok will link without error, but may produce a broken library.
5547	  _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'
5548	  _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'
5549	  if test yes = "$with_gnu_ld"; then
5550	    # We only use this code for GNU lds that support --whole-archive.
5551	    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'
5552	  else
5553	    # Exported symbols can be pulled into shared objects from archives
5554	    _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
5555	  fi
5556	  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
5557	  _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'
5558	  # -brtl affects multiple linker settings, -berok does not and is overridden later
5559	  compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`'
5560	  if test svr4 != "$with_aix_soname"; then
5561	    # This is similar to how AIX traditionally builds its shared libraries.
5562	    _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'
5563	  fi
5564	  if test aix != "$with_aix_soname"; then
5565	    _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'
5566	  else
5567	    # used by -dlpreopen to get the symbols
5568	    _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'
5569	  fi
5570	  _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d'
5571	fi
5572      fi
5573      ;;
5574
5575    amigaos*)
5576      case $host_cpu in
5577      powerpc)
5578            # see comment about AmigaOS4 .so support
5579            _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
5580            _LT_TAGVAR(archive_expsym_cmds, $1)=''
5581        ;;
5582      m68k)
5583            _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)'
5584            _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5585            _LT_TAGVAR(hardcode_minus_L, $1)=yes
5586        ;;
5587      esac
5588      ;;
5589
5590    bsdi[[45]]*)
5591      _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
5592      ;;
5593
5594    cygwin* | mingw* | pw32* | cegcc*)
5595      # When not using gcc, we currently assume that we are using
5596      # Microsoft Visual C++ or Intel C++ Compiler.
5597      # hardcode_libdir_flag_spec is actually meaningless, as there is
5598      # no search path for DLLs.
5599      case $cc_basename in
5600      cl* | icl*)
5601	# Native MSVC or ICC
5602	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
5603	_LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5604	_LT_TAGVAR(always_export_symbols, $1)=yes
5605	_LT_TAGVAR(file_list_spec, $1)='@'
5606	# Tell ltmain to make .lib files, not .a files.
5607	libext=lib
5608	# Tell ltmain to make .dll files, not .so files.
5609	shrext_cmds=.dll
5610	# FIXME: Setting linknames here is a bad hack.
5611	_LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames='
5612	_LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
5613            cp "$export_symbols" "$output_objdir/$soname.def";
5614            echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp";
5615          else
5616            $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp;
5617          fi~
5618          $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
5619          linknames='
5620	# The linker will not automatically build a static lib if we build a DLL.
5621	# _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
5622	_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5623	_LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*'
5624	_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'
5625	# Don't use ranlib
5626	_LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
5627	_LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
5628          lt_tool_outputfile="@TOOL_OUTPUT@"~
5629          case $lt_outputfile in
5630            *.exe|*.EXE) ;;
5631            *)
5632              lt_outputfile=$lt_outputfile.exe
5633              lt_tool_outputfile=$lt_tool_outputfile.exe
5634              ;;
5635          esac~
5636          if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then
5637            $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
5638            $RM "$lt_outputfile.manifest";
5639          fi'
5640	;;
5641      *)
5642	# Assume MSVC and ICC wrapper
5643	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
5644	_LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5645	# Tell ltmain to make .lib files, not .a files.
5646	libext=lib
5647	# Tell ltmain to make .dll files, not .so files.
5648	shrext_cmds=.dll
5649	# FIXME: Setting linknames here is a bad hack.
5650	_LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames='
5651	# The linker will automatically build a .lib file if we build a DLL.
5652	_LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
5653	# FIXME: Should let the user specify the lib program.
5654	_LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
5655	_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5656	;;
5657      esac
5658      ;;
5659
5660    darwin* | rhapsody*)
5661      _LT_DARWIN_LINKER_FEATURES($1)
5662      ;;
5663
5664    dgux*)
5665      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5666      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5667      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5668      ;;
5669
5670    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
5671    # support.  Future versions do this automatically, but an explicit c++rt0.o
5672    # does not break anything, and helps significantly (at the cost of a little
5673    # extra space).
5674    freebsd2.2*)
5675      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
5676      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5677      _LT_TAGVAR(hardcode_direct, $1)=yes
5678      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5679      ;;
5680
5681    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
5682    freebsd2.*)
5683      _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5684      _LT_TAGVAR(hardcode_direct, $1)=yes
5685      _LT_TAGVAR(hardcode_minus_L, $1)=yes
5686      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5687      ;;
5688
5689    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
5690    freebsd* | dragonfly*)
5691      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5692      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5693      _LT_TAGVAR(hardcode_direct, $1)=yes
5694      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5695      ;;
5696
5697    hpux9*)
5698      if test yes = "$GCC"; then
5699	_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
5700      else
5701	_LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
5702      fi
5703      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
5704      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5705      _LT_TAGVAR(hardcode_direct, $1)=yes
5706
5707      # hardcode_minus_L: Not really in the search PATH,
5708      # but as the default location of the library.
5709      _LT_TAGVAR(hardcode_minus_L, $1)=yes
5710      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
5711      ;;
5712
5713    hpux10*)
5714      if test yes,no = "$GCC,$with_gnu_ld"; then
5715	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5716      else
5717	_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
5718      fi
5719      if test no = "$with_gnu_ld"; then
5720	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
5721	_LT_TAGVAR(hardcode_libdir_separator, $1)=:
5722	_LT_TAGVAR(hardcode_direct, $1)=yes
5723	_LT_TAGVAR(hardcode_direct_absolute, $1)=yes
5724	_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
5725	# hardcode_minus_L: Not really in the search PATH,
5726	# but as the default location of the library.
5727	_LT_TAGVAR(hardcode_minus_L, $1)=yes
5728      fi
5729      ;;
5730
5731    hpux11*)
5732      if test yes,no = "$GCC,$with_gnu_ld"; then
5733	case $host_cpu in
5734	hppa*64*)
5735	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
5736	  ;;
5737	ia64*)
5738	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
5739	  ;;
5740	*)
5741	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5742	  ;;
5743	esac
5744      else
5745	case $host_cpu in
5746	hppa*64*)
5747	  _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
5748	  ;;
5749	ia64*)
5750	  _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
5751	  ;;
5752	*)
5753	m4_if($1, [], [
5754	  # Older versions of the 11.00 compiler do not understand -b yet
5755	  # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does)
5756	  _LT_LINKER_OPTION([if $CC understands -b],
5757	    _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b],
5758	    [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'],
5759	    [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])],
5760	  [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'])
5761	  ;;
5762	esac
5763      fi
5764      if test no = "$with_gnu_ld"; then
5765	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
5766	_LT_TAGVAR(hardcode_libdir_separator, $1)=:
5767
5768	case $host_cpu in
5769	hppa*64*|ia64*)
5770	  _LT_TAGVAR(hardcode_direct, $1)=no
5771	  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5772	  ;;
5773	*)
5774	  _LT_TAGVAR(hardcode_direct, $1)=yes
5775	  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
5776	  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
5777
5778	  # hardcode_minus_L: Not really in the search PATH,
5779	  # but as the default location of the library.
5780	  _LT_TAGVAR(hardcode_minus_L, $1)=yes
5781	  ;;
5782	esac
5783      fi
5784      ;;
5785
5786    irix5* | irix6* | nonstopux*)
5787      if test yes = "$GCC"; then
5788	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_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'
5789	# Try to use the -exported_symbol ld option, if it does not
5790	# work, assume that -exports_file does not work either and
5791	# implicitly export all symbols.
5792	# This should be the same for all languages, so no per-tag cache variable.
5793	AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol],
5794	  [lt_cv_irix_exported_symbol],
5795	  [save_LDFLAGS=$LDFLAGS
5796	   LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null"
5797	   AC_LINK_IFELSE(
5798	     [AC_LANG_SOURCE(
5799	        [AC_LANG_CASE([C], [[int foo (void) { return 0; }]],
5800			      [C++], [[int foo (void) { return 0; }]],
5801			      [Fortran 77], [[
5802      subroutine foo
5803      end]],
5804			      [Fortran], [[
5805      subroutine foo
5806      end]])])],
5807	      [lt_cv_irix_exported_symbol=yes],
5808	      [lt_cv_irix_exported_symbol=no])
5809           LDFLAGS=$save_LDFLAGS])
5810	if test yes = "$lt_cv_irix_exported_symbol"; then
5811          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_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 $wl-exports_file $wl$export_symbols -o $lib'
5812	fi
5813      else
5814	_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'
5815	_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'
5816      fi
5817      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
5818      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5819      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5820      _LT_TAGVAR(inherit_rpath, $1)=yes
5821      _LT_TAGVAR(link_all_deplibs, $1)=yes
5822      ;;
5823
5824    linux*)
5825      case $cc_basename in
5826      tcc*)
5827	# Fabrice Bellard et al's Tiny C Compiler
5828	_LT_TAGVAR(ld_shlibs, $1)=yes
5829	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5830	;;
5831      esac
5832      ;;
5833
5834    netbsd*)
5835      if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
5836	_LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
5837      else
5838	_LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
5839      fi
5840      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5841      _LT_TAGVAR(hardcode_direct, $1)=yes
5842      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5843      ;;
5844
5845    newsos6)
5846      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5847      _LT_TAGVAR(hardcode_direct, $1)=yes
5848      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5849      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5850      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5851      ;;
5852
5853    *nto* | *qnx*)
5854      ;;
5855
5856    openbsd* | bitrig*)
5857      if test -f /usr/libexec/ld.so; then
5858	_LT_TAGVAR(hardcode_direct, $1)=yes
5859	_LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5860	_LT_TAGVAR(hardcode_direct_absolute, $1)=yes
5861	if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then
5862	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5863	  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols'
5864	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
5865	  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
5866	else
5867	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5868	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
5869	fi
5870      else
5871	_LT_TAGVAR(ld_shlibs, $1)=no
5872      fi
5873      ;;
5874
5875    os2*)
5876      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5877      _LT_TAGVAR(hardcode_minus_L, $1)=yes
5878      _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
5879      shrext_cmds=.dll
5880      _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
5881	$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
5882	$ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
5883	$ECHO EXPORTS >> $output_objdir/$libname.def~
5884	emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
5885	$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
5886	emximp -o $lib $output_objdir/$libname.def'
5887      _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
5888	$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
5889	$ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
5890	$ECHO EXPORTS >> $output_objdir/$libname.def~
5891	prefix_cmds="$SED"~
5892	if test EXPORTS = "`$SED 1q $export_symbols`"; then
5893	  prefix_cmds="$prefix_cmds -e 1d";
5894	fi~
5895	prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
5896	cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
5897	$CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
5898	emximp -o $lib $output_objdir/$libname.def'
5899      _LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
5900      _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5901      _LT_TAGVAR(file_list_spec, $1)='@'
5902      ;;
5903
5904    osf3*)
5905      if test yes = "$GCC"; then
5906	_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
5907	_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'
5908      else
5909	_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5910	_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'
5911      fi
5912      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
5913      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5914      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5915      ;;
5916
5917    osf4* | osf5*)	# as osf3* with the addition of -msym flag
5918      if test yes = "$GCC"; then
5919	_LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
5920	_LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_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'
5921	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
5922      else
5923	_LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5924	_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'
5925	_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~
5926          $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'
5927
5928	# Both c and cxx compiler support -rpath directly
5929	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
5930      fi
5931      _LT_TAGVAR(archive_cmds_need_lc, $1)='no'
5932      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
5933      ;;
5934
5935    solaris*)
5936      _LT_TAGVAR(no_undefined_flag, $1)=' -z defs'
5937      if test yes = "$GCC"; then
5938	wlarc='$wl'
5939	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags'
5940	_LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
5941          $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
5942      else
5943	case `$CC -V 2>&1` in
5944	*"Compilers 5.0"*)
5945	  wlarc=''
5946	  _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags'
5947	  _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
5948            $LD -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp'
5949	  ;;
5950	*)
5951	  wlarc='$wl'
5952	  _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags'
5953	  _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
5954            $CC -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp'
5955	  ;;
5956	esac
5957      fi
5958      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5959      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5960      case $host_os in
5961      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5962      *)
5963	# The compiler driver will combine and reorder linker options,
5964	# but understands '-z linker_flag'.  GCC discards it without '$wl',
5965	# but is careful enough not to reorder.
5966	# Supported since Solaris 2.6 (maybe 2.5.1?)
5967	if test yes = "$GCC"; then
5968	  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'
5969	else
5970	  _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
5971	fi
5972	;;
5973      esac
5974      _LT_TAGVAR(link_all_deplibs, $1)=yes
5975      ;;
5976
5977    sunos4*)
5978      if test sequent = "$host_vendor"; then
5979	# Use $CC to link under sequent, because it throws in some extra .o
5980	# files that make .init and .fini sections work.
5981	_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags'
5982      else
5983	_LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
5984      fi
5985      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5986      _LT_TAGVAR(hardcode_direct, $1)=yes
5987      _LT_TAGVAR(hardcode_minus_L, $1)=yes
5988      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
5989      ;;
5990
5991    sysv4)
5992      case $host_vendor in
5993	sni)
5994	  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5995	  _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true???
5996	;;
5997	siemens)
5998	  ## LD is ld it makes a PLAMLIB
5999	  ## CC just makes a GrossModule.
6000	  _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
6001	  _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
6002	  _LT_TAGVAR(hardcode_direct, $1)=no
6003        ;;
6004	motorola)
6005	  _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
6006	  _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
6007	;;
6008      esac
6009      runpath_var='LD_RUN_PATH'
6010      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6011      ;;
6012
6013    sysv4.3*)
6014      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
6015      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6016      _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
6017      ;;
6018
6019    sysv4*MP*)
6020      if test -d /usr/nec; then
6021	_LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
6022	_LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6023	runpath_var=LD_RUN_PATH
6024	hardcode_runpath_var=yes
6025	_LT_TAGVAR(ld_shlibs, $1)=yes
6026      fi
6027      ;;
6028
6029    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
6030      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
6031      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6032      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6033      runpath_var='LD_RUN_PATH'
6034
6035      if test yes = "$GCC"; then
6036	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6037	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6038      else
6039	_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6040	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6041      fi
6042      ;;
6043
6044    sysv5* | sco3.2v5* | sco5v6*)
6045      # Note: We CANNOT use -z defs as we might desire, because we do not
6046      # link with -lc, and that would cause any symbols used from libc to
6047      # always be unresolved, which means just about no library would
6048      # ever link correctly.  If we're not using GNU ld we use -z text
6049      # though, which does catch some bad symbols but isn't as heavy-handed
6050      # as -z defs.
6051      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
6052      _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'
6053      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6054      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6055      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'
6056      _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
6057      _LT_TAGVAR(link_all_deplibs, $1)=yes
6058      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'
6059      runpath_var='LD_RUN_PATH'
6060
6061      if test yes = "$GCC"; then
6062	_LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6063	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6064      else
6065	_LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6066	_LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
6067      fi
6068      ;;
6069
6070    uts4*)
6071      _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
6072      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6073      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6074      ;;
6075
6076    *)
6077      _LT_TAGVAR(ld_shlibs, $1)=no
6078      ;;
6079    esac
6080
6081    if test sni = "$host_vendor"; then
6082      case $host in
6083      sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
6084	_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym'
6085	;;
6086      esac
6087    fi
6088  fi
6089])
6090AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
6091test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no
6092
6093_LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld
6094
6095_LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl
6096_LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl
6097_LT_DECL([], [extract_expsyms_cmds], [2],
6098    [The commands to extract the exported symbol list from a shared archive])
6099
6100#
6101# Do we need to explicitly link libc?
6102#
6103case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in
6104x|xyes)
6105  # Assume -lc should be added
6106  _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
6107
6108  if test yes,yes = "$GCC,$enable_shared"; then
6109    case $_LT_TAGVAR(archive_cmds, $1) in
6110    *'~'*)
6111      # FIXME: we may have to deal with multi-command sequences.
6112      ;;
6113    '$CC '*)
6114      # Test whether the compiler implicitly links with -lc since on some
6115      # systems, -lgcc has to come before -lc. If gcc already passes -lc
6116      # to ld, don't add -lc before -lgcc.
6117      AC_CACHE_CHECK([whether -lc should be explicitly linked in],
6118	[lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1),
6119	[$RM conftest*
6120	echo "$lt_simple_compile_test_code" > conftest.$ac_ext
6121
6122	if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
6123	  soname=conftest
6124	  lib=conftest
6125	  libobjs=conftest.$ac_objext
6126	  deplibs=
6127	  wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1)
6128	  pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1)
6129	  compiler_flags=-v
6130	  linker_flags=-v
6131	  verstring=
6132	  output_objdir=.
6133	  libname=conftest
6134	  lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1)
6135	  _LT_TAGVAR(allow_undefined_flag, $1)=
6136	  if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1)
6137	  then
6138	    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no
6139	  else
6140	    lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes
6141	  fi
6142	  _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
6143	else
6144	  cat conftest.err 1>&5
6145	fi
6146	$RM conftest*
6147	])
6148      _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)
6149      ;;
6150    esac
6151  fi
6152  ;;
6153esac
6154
6155_LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0],
6156    [Whether or not to add -lc for building shared libraries])
6157_LT_TAGDECL([allow_libtool_libs_with_static_runtimes],
6158    [enable_shared_with_static_runtimes], [0],
6159    [Whether or not to disallow shared libs when runtime libs are static])
6160_LT_TAGDECL([], [export_dynamic_flag_spec], [1],
6161    [Compiler flag to allow reflexive dlopens])
6162_LT_TAGDECL([], [whole_archive_flag_spec], [1],
6163    [Compiler flag to generate shared objects directly from archives])
6164_LT_TAGDECL([], [compiler_needs_object], [1],
6165    [Whether the compiler copes with passing no objects directly])
6166_LT_TAGDECL([], [old_archive_from_new_cmds], [2],
6167    [Create an old-style archive from a shared archive])
6168_LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2],
6169    [Create a temporary old-style archive to link instead of a shared archive])
6170_LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive])
6171_LT_TAGDECL([], [archive_expsym_cmds], [2])
6172_LT_TAGDECL([], [module_cmds], [2],
6173    [Commands used to build a loadable module if different from building
6174    a shared archive.])
6175_LT_TAGDECL([], [module_expsym_cmds], [2])
6176_LT_TAGDECL([], [with_gnu_ld], [1],
6177    [Whether we are building with GNU ld or not])
6178_LT_TAGDECL([], [allow_undefined_flag], [1],
6179    [Flag that allows shared libraries with undefined symbols to be built])
6180_LT_TAGDECL([], [no_undefined_flag], [1],
6181    [Flag that enforces no undefined symbols])
6182_LT_TAGDECL([], [hardcode_libdir_flag_spec], [1],
6183    [Flag to hardcode $libdir into a binary during linking.
6184    This must work even if $libdir does not exist])
6185_LT_TAGDECL([], [hardcode_libdir_separator], [1],
6186    [Whether we need a single "-rpath" flag with a separated argument])
6187_LT_TAGDECL([], [hardcode_direct], [0],
6188    [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes
6189    DIR into the resulting binary])
6190_LT_TAGDECL([], [hardcode_direct_absolute], [0],
6191    [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes
6192    DIR into the resulting binary and the resulting library dependency is
6193    "absolute", i.e impossible to change by setting $shlibpath_var if the
6194    library is relocated])
6195_LT_TAGDECL([], [hardcode_minus_L], [0],
6196    [Set to "yes" if using the -LDIR flag during linking hardcodes DIR
6197    into the resulting binary])
6198_LT_TAGDECL([], [hardcode_shlibpath_var], [0],
6199    [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR
6200    into the resulting binary])
6201_LT_TAGDECL([], [hardcode_automatic], [0],
6202    [Set to "yes" if building a shared library automatically hardcodes DIR
6203    into the library and all subsequent libraries and executables linked
6204    against it])
6205_LT_TAGDECL([], [inherit_rpath], [0],
6206    [Set to yes if linker adds runtime paths of dependent libraries
6207    to runtime path list])
6208_LT_TAGDECL([], [link_all_deplibs], [0],
6209    [Whether libtool must link a program against all its dependency libraries])
6210_LT_TAGDECL([], [always_export_symbols], [0],
6211    [Set to "yes" if exported symbols are required])
6212_LT_TAGDECL([], [export_symbols_cmds], [2],
6213    [The commands to list exported symbols])
6214_LT_TAGDECL([], [exclude_expsyms], [1],
6215    [Symbols that should not be listed in the preloaded symbols])
6216_LT_TAGDECL([], [include_expsyms], [1],
6217    [Symbols that must always be exported])
6218_LT_TAGDECL([], [prelink_cmds], [2],
6219    [Commands necessary for linking programs (against libraries) with templates])
6220_LT_TAGDECL([], [postlink_cmds], [2],
6221    [Commands necessary for finishing linking programs])
6222_LT_TAGDECL([], [file_list_spec], [1],
6223    [Specify filename containing input files])
6224dnl FIXME: Not yet implemented
6225dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1],
6226dnl    [Compiler flag to generate thread safe objects])
6227])# _LT_LINKER_SHLIBS
6228
6229
6230# _LT_LANG_C_CONFIG([TAG])
6231# ------------------------
6232# Ensure that the configuration variables for a C compiler are suitably
6233# defined.  These variables are subsequently used by _LT_CONFIG to write
6234# the compiler configuration to 'libtool'.
6235m4_defun([_LT_LANG_C_CONFIG],
6236[m4_require([_LT_DECL_EGREP])dnl
6237lt_save_CC=$CC
6238AC_LANG_PUSH(C)
6239
6240# Source file extension for C test sources.
6241ac_ext=c
6242
6243# Object file extension for compiled C test sources.
6244objext=o
6245_LT_TAGVAR(objext, $1)=$objext
6246
6247# Code to be used in simple compile tests
6248lt_simple_compile_test_code="int some_variable = 0;"
6249
6250# Code to be used in simple link tests
6251lt_simple_link_test_code='int main(){return(0);}'
6252
6253_LT_TAG_COMPILER
6254# Save the default compiler, since it gets overwritten when the other
6255# tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP.
6256compiler_DEFAULT=$CC
6257
6258# save warnings/boilerplate of simple test code
6259_LT_COMPILER_BOILERPLATE
6260_LT_LINKER_BOILERPLATE
6261
6262if test -n "$compiler"; then
6263  _LT_COMPILER_NO_RTTI($1)
6264  _LT_COMPILER_PIC($1)
6265  _LT_COMPILER_C_O($1)
6266  _LT_COMPILER_FILE_LOCKS($1)
6267  _LT_LINKER_SHLIBS($1)
6268  _LT_SYS_DYNAMIC_LINKER($1)
6269  _LT_LINKER_HARDCODE_LIBPATH($1)
6270  LT_SYS_DLOPEN_SELF
6271  _LT_CMD_STRIPLIB
6272
6273  # Report what library types will actually be built
6274  AC_MSG_CHECKING([if libtool supports shared libraries])
6275  AC_MSG_RESULT([$can_build_shared])
6276
6277  AC_MSG_CHECKING([whether to build shared libraries])
6278  test no = "$can_build_shared" && enable_shared=no
6279
6280  # On AIX, shared libraries and static libraries use the same namespace, and
6281  # are all built from PIC.
6282  case $host_os in
6283  aix3*)
6284    test yes = "$enable_shared" && enable_static=no
6285    if test -n "$RANLIB"; then
6286      archive_cmds="$archive_cmds~\$RANLIB \$lib"
6287      postinstall_cmds='$RANLIB $lib'
6288    fi
6289    ;;
6290
6291  aix[[4-9]]*)
6292    if test ia64 != "$host_cpu"; then
6293      case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
6294      yes,aix,yes) ;;			# shared object as lib.so file only
6295      yes,svr4,*) ;;			# shared object as lib.so archive member only
6296      yes,*) enable_static=no ;;	# shared object in lib.a archive as well
6297      esac
6298    fi
6299    ;;
6300  esac
6301  AC_MSG_RESULT([$enable_shared])
6302
6303  AC_MSG_CHECKING([whether to build static libraries])
6304  # Make sure either enable_shared or enable_static is yes.
6305  test yes = "$enable_shared" || enable_static=yes
6306  AC_MSG_RESULT([$enable_static])
6307
6308  _LT_CONFIG($1)
6309fi
6310AC_LANG_POP
6311CC=$lt_save_CC
6312])# _LT_LANG_C_CONFIG
6313
6314
6315# _LT_LANG_CXX_CONFIG([TAG])
6316# --------------------------
6317# Ensure that the configuration variables for a C++ compiler are suitably
6318# defined.  These variables are subsequently used by _LT_CONFIG to write
6319# the compiler configuration to 'libtool'.
6320m4_defun([_LT_LANG_CXX_CONFIG],
6321[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
6322m4_require([_LT_DECL_EGREP])dnl
6323m4_require([_LT_PATH_MANIFEST_TOOL])dnl
6324if test -n "$CXX" && ( test no != "$CXX" &&
6325    ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) ||
6326    (test g++ != "$CXX"))); then
6327  AC_PROG_CXXCPP
6328else
6329  _lt_caught_CXX_error=yes
6330fi
6331
6332AC_LANG_PUSH(C++)
6333_LT_TAGVAR(archive_cmds_need_lc, $1)=no
6334_LT_TAGVAR(allow_undefined_flag, $1)=
6335_LT_TAGVAR(always_export_symbols, $1)=no
6336_LT_TAGVAR(archive_expsym_cmds, $1)=
6337_LT_TAGVAR(compiler_needs_object, $1)=no
6338_LT_TAGVAR(export_dynamic_flag_spec, $1)=
6339_LT_TAGVAR(hardcode_direct, $1)=no
6340_LT_TAGVAR(hardcode_direct_absolute, $1)=no
6341_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
6342_LT_TAGVAR(hardcode_libdir_separator, $1)=
6343_LT_TAGVAR(hardcode_minus_L, $1)=no
6344_LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
6345_LT_TAGVAR(hardcode_automatic, $1)=no
6346_LT_TAGVAR(inherit_rpath, $1)=no
6347_LT_TAGVAR(module_cmds, $1)=
6348_LT_TAGVAR(module_expsym_cmds, $1)=
6349_LT_TAGVAR(link_all_deplibs, $1)=unknown
6350_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
6351_LT_TAGVAR(reload_flag, $1)=$reload_flag
6352_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
6353_LT_TAGVAR(no_undefined_flag, $1)=
6354_LT_TAGVAR(whole_archive_flag_spec, $1)=
6355_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
6356
6357# Source file extension for C++ test sources.
6358ac_ext=cpp
6359
6360# Object file extension for compiled C++ test sources.
6361objext=o
6362_LT_TAGVAR(objext, $1)=$objext
6363
6364# No sense in running all these tests if we already determined that
6365# the CXX compiler isn't working.  Some variables (like enable_shared)
6366# are currently assumed to apply to all compilers on this platform,
6367# and will be corrupted by setting them based on a non-working compiler.
6368if test yes != "$_lt_caught_CXX_error"; then
6369  # Code to be used in simple compile tests
6370  lt_simple_compile_test_code="int some_variable = 0;"
6371
6372  # Code to be used in simple link tests
6373  lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
6374
6375  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
6376  _LT_TAG_COMPILER
6377
6378  # save warnings/boilerplate of simple test code
6379  _LT_COMPILER_BOILERPLATE
6380  _LT_LINKER_BOILERPLATE
6381
6382  # Allow CC to be a program name with arguments.
6383  lt_save_CC=$CC
6384  lt_save_CFLAGS=$CFLAGS
6385  lt_save_LD=$LD
6386  lt_save_GCC=$GCC
6387  GCC=$GXX
6388  lt_save_with_gnu_ld=$with_gnu_ld
6389  lt_save_path_LD=$lt_cv_path_LD
6390  if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
6391    lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
6392  else
6393    $as_unset lt_cv_prog_gnu_ld
6394  fi
6395  if test -n "${lt_cv_path_LDCXX+set}"; then
6396    lt_cv_path_LD=$lt_cv_path_LDCXX
6397  else
6398    $as_unset lt_cv_path_LD
6399  fi
6400  test -z "${LDCXX+set}" || LD=$LDCXX
6401  CC=${CXX-"c++"}
6402  CFLAGS=$CXXFLAGS
6403  compiler=$CC
6404  _LT_TAGVAR(compiler, $1)=$CC
6405  _LT_CC_BASENAME([$compiler])
6406
6407  if test -n "$compiler"; then
6408    # We don't want -fno-exception when compiling C++ code, so set the
6409    # no_builtin_flag separately
6410    if test yes = "$GXX"; then
6411      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
6412    else
6413      _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
6414    fi
6415
6416    if test yes = "$GXX"; then
6417      # Set up default GNU C++ configuration
6418
6419      LT_PATH_LD
6420
6421      # Check if GNU C++ uses GNU ld as the underlying linker, since the
6422      # archiving commands below assume that GNU ld is being used.
6423      if test yes = "$with_gnu_ld"; then
6424        _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
6425        _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'
6426
6427        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
6428        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
6429
6430        # If archive_cmds runs LD, not CC, wlarc should be empty
6431        # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
6432        #     investigate it a little bit more. (MM)
6433        wlarc='$wl'
6434
6435        # ancient GNU ld didn't support --whole-archive et. al.
6436        if eval "`$CC -print-prog-name=ld` --help 2>&1" |
6437	  $GREP 'no-whole-archive' > /dev/null; then
6438          _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
6439        else
6440          _LT_TAGVAR(whole_archive_flag_spec, $1)=
6441        fi
6442      else
6443        with_gnu_ld=no
6444        wlarc=
6445
6446        # A generic and very simple default shared library creation
6447        # command for GNU C++ for the case where it uses the native
6448        # linker, instead of GNU ld.  If possible, this setting should
6449        # overridden to take advantage of the native linker features on
6450        # the platform it is being used on.
6451        _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
6452      fi
6453
6454      # Commands to make compiler produce verbose output that lists
6455      # what "hidden" libraries, object files and flags are used when
6456      # linking a shared library.
6457      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
6458
6459    else
6460      GXX=no
6461      with_gnu_ld=no
6462      wlarc=
6463    fi
6464
6465    # PORTME: fill in a description of your system's C++ link characteristics
6466    AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
6467    _LT_TAGVAR(ld_shlibs, $1)=yes
6468    case $host_os in
6469      aix3*)
6470        # FIXME: insert proper C++ library support
6471        _LT_TAGVAR(ld_shlibs, $1)=no
6472        ;;
6473      aix[[4-9]]*)
6474        if test ia64 = "$host_cpu"; then
6475          # On IA64, the linker does run time linking by default, so we don't
6476          # have to do anything special.
6477          aix_use_runtimelinking=no
6478          exp_sym_flag='-Bexport'
6479          no_entry_flag=
6480        else
6481          aix_use_runtimelinking=no
6482
6483          # Test if we are trying to use run time linking or normal
6484          # AIX style linking. If -brtl is somewhere in LDFLAGS, we
6485          # have runtime linking enabled, and use it for executables.
6486          # For shared libraries, we enable/disable runtime linking
6487          # depending on the kind of the shared library created -
6488          # when "with_aix_soname,aix_use_runtimelinking" is:
6489          # "aix,no"   lib.a(lib.so.V) shared, rtl:no,  for executables
6490          # "aix,yes"  lib.so          shared, rtl:yes, for executables
6491          #            lib.a           static archive
6492          # "both,no"  lib.so.V(shr.o) shared, rtl:yes
6493          #            lib.a(lib.so.V) shared, rtl:no,  for executables
6494          # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables
6495          #            lib.a(lib.so.V) shared, rtl:no
6496          # "svr4,*"   lib.so.V(shr.o) shared, rtl:yes, for executables
6497          #            lib.a           static archive
6498          case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
6499	    for ld_flag in $LDFLAGS; do
6500	      case $ld_flag in
6501	      *-brtl*)
6502	        aix_use_runtimelinking=yes
6503	        break
6504	        ;;
6505	      esac
6506	    done
6507	    if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then
6508	      # With aix-soname=svr4, we create the lib.so.V shared archives only,
6509	      # so we don't have lib.a shared libs to link our executables.
6510	      # We have to force runtime linking in this case.
6511	      aix_use_runtimelinking=yes
6512	      LDFLAGS="$LDFLAGS -Wl,-brtl"
6513	    fi
6514	    ;;
6515          esac
6516
6517          exp_sym_flag='-bexport'
6518          no_entry_flag='-bnoentry'
6519        fi
6520
6521        # When large executables or shared objects are built, AIX ld can
6522        # have problems creating the table of contents.  If linking a library
6523        # or program results in "error TOC overflow" add -mminimal-toc to
6524        # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
6525        # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
6526
6527        _LT_TAGVAR(archive_cmds, $1)=''
6528        _LT_TAGVAR(hardcode_direct, $1)=yes
6529        _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
6530        _LT_TAGVAR(hardcode_libdir_separator, $1)=':'
6531        _LT_TAGVAR(link_all_deplibs, $1)=yes
6532        _LT_TAGVAR(file_list_spec, $1)='$wl-f,'
6533        case $with_aix_soname,$aix_use_runtimelinking in
6534        aix,*) ;;	# no import file
6535        svr4,* | *,yes) # use import file
6536          # The Import File defines what to hardcode.
6537          _LT_TAGVAR(hardcode_direct, $1)=no
6538          _LT_TAGVAR(hardcode_direct_absolute, $1)=no
6539          ;;
6540        esac
6541
6542        if test yes = "$GXX"; then
6543          case $host_os in aix4.[[012]]|aix4.[[012]].*)
6544          # We only want to do this on AIX 4.2 and lower, the check
6545          # below for broken collect2 doesn't work under 4.3+
6546	  collect2name=`$CC -print-prog-name=collect2`
6547	  if test -f "$collect2name" &&
6548	     strings "$collect2name" | $GREP resolve_lib_name >/dev/null
6549	  then
6550	    # We have reworked collect2
6551	    :
6552	  else
6553	    # We have old collect2
6554	    _LT_TAGVAR(hardcode_direct, $1)=unsupported
6555	    # It fails to find uninstalled libraries when the uninstalled
6556	    # path is not listed in the libpath.  Setting hardcode_minus_L
6557	    # to unsupported forces relinking
6558	    _LT_TAGVAR(hardcode_minus_L, $1)=yes
6559	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6560	    _LT_TAGVAR(hardcode_libdir_separator, $1)=
6561	  fi
6562          esac
6563          shared_flag='-shared'
6564	  if test yes = "$aix_use_runtimelinking"; then
6565	    shared_flag=$shared_flag' $wl-G'
6566	  fi
6567	  # Need to ensure runtime linking is disabled for the traditional
6568	  # shared library, or the linker may eventually find shared libraries
6569	  # /with/ Import File - we do not want to mix them.
6570	  shared_flag_aix='-shared'
6571	  shared_flag_svr4='-shared $wl-G'
6572        else
6573          # not using gcc
6574          if test ia64 = "$host_cpu"; then
6575	  # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
6576	  # chokes on -Wl,-G. The following line is correct:
6577	  shared_flag='-G'
6578          else
6579	    if test yes = "$aix_use_runtimelinking"; then
6580	      shared_flag='$wl-G'
6581	    else
6582	      shared_flag='$wl-bM:SRE'
6583	    fi
6584	    shared_flag_aix='$wl-bM:SRE'
6585	    shared_flag_svr4='$wl-G'
6586          fi
6587        fi
6588
6589        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall'
6590        # It seems that -bexpall does not export symbols beginning with
6591        # underscore (_), so it is better to generate a list of symbols to
6592	# export.
6593        _LT_TAGVAR(always_export_symbols, $1)=yes
6594	if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then
6595          # Warning - without using the other runtime loading flags (-brtl),
6596          # -berok will link without error, but may produce a broken library.
6597          # The "-G" linker flag allows undefined symbols.
6598          _LT_TAGVAR(no_undefined_flag, $1)='-bernotok'
6599          # Determine the default libpath from the value encoded in an empty
6600          # executable.
6601          _LT_SYS_MODULE_PATH_AIX([$1])
6602          _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
6603
6604          _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag
6605        else
6606          if test ia64 = "$host_cpu"; then
6607	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib'
6608	    _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
6609	    _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"
6610          else
6611	    # Determine the default libpath from the value encoded in an
6612	    # empty executable.
6613	    _LT_SYS_MODULE_PATH_AIX([$1])
6614	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath"
6615	    # Warning - without using the other run time loading flags,
6616	    # -berok will link without error, but may produce a broken library.
6617	    _LT_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok'
6618	    _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok'
6619	    if test yes = "$with_gnu_ld"; then
6620	      # We only use this code for GNU lds that support --whole-archive.
6621	      _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'
6622	    else
6623	      # Exported symbols can be pulled into shared objects from archives
6624	      _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
6625	    fi
6626	    _LT_TAGVAR(archive_cmds_need_lc, $1)=yes
6627	    _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d'
6628	    # -brtl affects multiple linker settings, -berok does not and is overridden later
6629	    compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`'
6630	    if test svr4 != "$with_aix_soname"; then
6631	      # This is similar to how AIX traditionally builds its shared
6632	      # libraries. Need -bnortl late, we may have -brtl in LDFLAGS.
6633	      _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname'
6634	    fi
6635	    if test aix != "$with_aix_soname"; then
6636	      _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp'
6637	    else
6638	      # used by -dlpreopen to get the symbols
6639	      _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV  $output_objdir/$realname.d/$soname $output_objdir'
6640	    fi
6641	    _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d'
6642          fi
6643        fi
6644        ;;
6645
6646      beos*)
6647	if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then
6648	  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
6649	  # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
6650	  # support --undefined.  This deserves some investigation.  FIXME
6651	  _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
6652	else
6653	  _LT_TAGVAR(ld_shlibs, $1)=no
6654	fi
6655	;;
6656
6657      chorus*)
6658        case $cc_basename in
6659          *)
6660	  # FIXME: insert proper C++ library support
6661	  _LT_TAGVAR(ld_shlibs, $1)=no
6662	  ;;
6663        esac
6664        ;;
6665
6666      cygwin* | mingw* | pw32* | cegcc*)
6667	case $GXX,$cc_basename in
6668	,cl* | no,cl* | ,icl* | no,icl*)
6669	  # Native MSVC or ICC
6670	  # hardcode_libdir_flag_spec is actually meaningless, as there is
6671	  # no search path for DLLs.
6672	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
6673	  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
6674	  _LT_TAGVAR(always_export_symbols, $1)=yes
6675	  _LT_TAGVAR(file_list_spec, $1)='@'
6676	  # Tell ltmain to make .lib files, not .a files.
6677	  libext=lib
6678	  # Tell ltmain to make .dll files, not .so files.
6679	  shrext_cmds=.dll
6680	  # FIXME: Setting linknames here is a bad hack.
6681	  _LT_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames='
6682	  _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
6683              cp "$export_symbols" "$output_objdir/$soname.def";
6684              echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp";
6685            else
6686              $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp;
6687            fi~
6688            $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~
6689            linknames='
6690	  # The linker will not automatically build a static lib if we build a DLL.
6691	  # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true'
6692	  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6693	  # Don't use ranlib
6694	  _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib'
6695	  _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~
6696            lt_tool_outputfile="@TOOL_OUTPUT@"~
6697            case $lt_outputfile in
6698              *.exe|*.EXE) ;;
6699              *)
6700                lt_outputfile=$lt_outputfile.exe
6701                lt_tool_outputfile=$lt_tool_outputfile.exe
6702                ;;
6703            esac~
6704            func_to_tool_file "$lt_outputfile"~
6705            if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then
6706              $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1;
6707              $RM "$lt_outputfile.manifest";
6708            fi'
6709	  ;;
6710	*)
6711	  # g++
6712	  # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
6713	  # as there is no search path for DLLs.
6714	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6715	  _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols'
6716	  _LT_TAGVAR(allow_undefined_flag, $1)=unsupported
6717	  _LT_TAGVAR(always_export_symbols, $1)=no
6718	  _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6719
6720	  if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then
6721	    _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'
6722	    # If the export-symbols file already is a .def file, use it as
6723	    # is; otherwise, prepend EXPORTS...
6724	    _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then
6725              cp $export_symbols $output_objdir/$soname.def;
6726            else
6727              echo EXPORTS > $output_objdir/$soname.def;
6728              cat $export_symbols >> $output_objdir/$soname.def;
6729            fi~
6730            $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'
6731	  else
6732	    _LT_TAGVAR(ld_shlibs, $1)=no
6733	  fi
6734	  ;;
6735	esac
6736	;;
6737      darwin* | rhapsody*)
6738        _LT_DARWIN_LINKER_FEATURES($1)
6739	;;
6740
6741      os2*)
6742	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6743	_LT_TAGVAR(hardcode_minus_L, $1)=yes
6744	_LT_TAGVAR(allow_undefined_flag, $1)=unsupported
6745	shrext_cmds=.dll
6746	_LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
6747	  $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
6748	  $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
6749	  $ECHO EXPORTS >> $output_objdir/$libname.def~
6750	  emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~
6751	  $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
6752	  emximp -o $lib $output_objdir/$libname.def'
6753	_LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~
6754	  $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~
6755	  $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~
6756	  $ECHO EXPORTS >> $output_objdir/$libname.def~
6757	  prefix_cmds="$SED"~
6758	  if test EXPORTS = "`$SED 1q $export_symbols`"; then
6759	    prefix_cmds="$prefix_cmds -e 1d";
6760	  fi~
6761	  prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~
6762	  cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~
6763	  $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~
6764	  emximp -o $lib $output_objdir/$libname.def'
6765	_LT_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def'
6766	_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6767	_LT_TAGVAR(file_list_spec, $1)='@'
6768	;;
6769
6770      dgux*)
6771        case $cc_basename in
6772          ec++*)
6773	    # FIXME: insert proper C++ library support
6774	    _LT_TAGVAR(ld_shlibs, $1)=no
6775	    ;;
6776          ghcx*)
6777	    # Green Hills C++ Compiler
6778	    # FIXME: insert proper C++ library support
6779	    _LT_TAGVAR(ld_shlibs, $1)=no
6780	    ;;
6781          *)
6782	    # FIXME: insert proper C++ library support
6783	    _LT_TAGVAR(ld_shlibs, $1)=no
6784	    ;;
6785        esac
6786        ;;
6787
6788      freebsd2.*)
6789        # C++ shared libraries reported to be fairly broken before
6790	# switch to ELF
6791        _LT_TAGVAR(ld_shlibs, $1)=no
6792        ;;
6793
6794      freebsd-elf*)
6795        _LT_TAGVAR(archive_cmds_need_lc, $1)=no
6796        ;;
6797
6798      freebsd* | dragonfly*)
6799        # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
6800        # conventions
6801        _LT_TAGVAR(ld_shlibs, $1)=yes
6802        ;;
6803
6804      haiku*)
6805        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
6806        _LT_TAGVAR(link_all_deplibs, $1)=yes
6807        ;;
6808
6809      hpux9*)
6810        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
6811        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6812        _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
6813        _LT_TAGVAR(hardcode_direct, $1)=yes
6814        _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
6815				             # but as the default
6816				             # location of the library.
6817
6818        case $cc_basename in
6819          CC*)
6820            # FIXME: insert proper C++ library support
6821            _LT_TAGVAR(ld_shlibs, $1)=no
6822            ;;
6823          aCC*)
6824            _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 "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
6825            # Commands to make compiler produce verbose output that lists
6826            # what "hidden" libraries, object files and flags are used when
6827            # linking a shared library.
6828            #
6829            # There doesn't appear to be a way to prevent this compiler from
6830            # explicitly linking system object files so we need to strip them
6831            # from the output so that they don't get included in the library
6832            # dependencies.
6833            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"'
6834            ;;
6835          *)
6836            if test yes = "$GXX"; then
6837              _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib'
6838            else
6839              # FIXME: insert proper C++ library support
6840              _LT_TAGVAR(ld_shlibs, $1)=no
6841            fi
6842            ;;
6843        esac
6844        ;;
6845
6846      hpux10*|hpux11*)
6847        if test no = "$with_gnu_ld"; then
6848	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir'
6849	  _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6850
6851          case $host_cpu in
6852            hppa*64*|ia64*)
6853              ;;
6854            *)
6855	      _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
6856              ;;
6857          esac
6858        fi
6859        case $host_cpu in
6860          hppa*64*|ia64*)
6861            _LT_TAGVAR(hardcode_direct, $1)=no
6862            _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6863            ;;
6864          *)
6865            _LT_TAGVAR(hardcode_direct, $1)=yes
6866            _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
6867            _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
6868					         # but as the default
6869					         # location of the library.
6870            ;;
6871        esac
6872
6873        case $cc_basename in
6874          CC*)
6875	    # FIXME: insert proper C++ library support
6876	    _LT_TAGVAR(ld_shlibs, $1)=no
6877	    ;;
6878          aCC*)
6879	    case $host_cpu in
6880	      hppa*64*)
6881	        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6882	        ;;
6883	      ia64*)
6884	        _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6885	        ;;
6886	      *)
6887	        _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'
6888	        ;;
6889	    esac
6890	    # Commands to make compiler produce verbose output that lists
6891	    # what "hidden" libraries, object files and flags are used when
6892	    # linking a shared library.
6893	    #
6894	    # There doesn't appear to be a way to prevent this compiler from
6895	    # explicitly linking system object files so we need to strip them
6896	    # from the output so that they don't get included in the library
6897	    # dependencies.
6898	    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"'
6899	    ;;
6900          *)
6901	    if test yes = "$GXX"; then
6902	      if test no = "$with_gnu_ld"; then
6903	        case $host_cpu in
6904	          hppa*64*)
6905	            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6906	            ;;
6907	          ia64*)
6908	            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6909	            ;;
6910	          *)
6911	            _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
6912	            ;;
6913	        esac
6914	      fi
6915	    else
6916	      # FIXME: insert proper C++ library support
6917	      _LT_TAGVAR(ld_shlibs, $1)=no
6918	    fi
6919	    ;;
6920        esac
6921        ;;
6922
6923      interix[[3-9]]*)
6924	_LT_TAGVAR(hardcode_direct, $1)=no
6925	_LT_TAGVAR(hardcode_shlibpath_var, $1)=no
6926	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
6927	_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
6928	# Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
6929	# Instead, shared libraries are loaded at an image base (0x10000000 by
6930	# default) and relocated if they conflict, which is a slow very memory
6931	# consuming and fragmenting process.  To avoid this, we pick a random,
6932	# 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
6933	# time.  Moving up from 0x10000000 also allows more sbrk(2) space.
6934	_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'
6935	_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'
6936	;;
6937      irix5* | irix6*)
6938        case $cc_basename in
6939          CC*)
6940	    # SGI C++
6941	    _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'
6942
6943	    # Archives containing C++ object files must be created using
6944	    # "CC -ar", where "CC" is the IRIX C++ compiler.  This is
6945	    # necessary to make sure instantiated templates are included
6946	    # in the archive.
6947	    _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
6948	    ;;
6949          *)
6950	    if test yes = "$GXX"; then
6951	      if test no = "$with_gnu_ld"; then
6952	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -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'
6953	      else
6954	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -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'
6955	      fi
6956	    fi
6957	    _LT_TAGVAR(link_all_deplibs, $1)=yes
6958	    ;;
6959        esac
6960        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
6961        _LT_TAGVAR(hardcode_libdir_separator, $1)=:
6962        _LT_TAGVAR(inherit_rpath, $1)=yes
6963        ;;
6964
6965      linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*)
6966        case $cc_basename in
6967          KCC*)
6968	    # Kuck and Associates, Inc. (KAI) C++ Compiler
6969
6970	    # KCC will only create a shared library if the output file
6971	    # ends with ".so" (or ".sl" for HP-UX), so rename the library
6972	    # to its proper name (with version) after linking.
6973	    _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'
6974	    _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'
6975	    # Commands to make compiler produce verbose output that lists
6976	    # what "hidden" libraries, object files and flags are used when
6977	    # linking a shared library.
6978	    #
6979	    # There doesn't appear to be a way to prevent this compiler from
6980	    # explicitly linking system object files so we need to strip them
6981	    # from the output so that they don't get included in the library
6982	    # dependencies.
6983	    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"'
6984
6985	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
6986	    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
6987
6988	    # Archives containing C++ object files must be created using
6989	    # "CC -Bstatic", where "CC" is the KAI C++ compiler.
6990	    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
6991	    ;;
6992	  icpc* | ecpc* )
6993	    # Intel C++
6994	    with_gnu_ld=yes
6995	    # version 8.0 and above of icpc choke on multiply defined symbols
6996	    # if we add $predep_objects and $postdep_objects, however 7.1 and
6997	    # earlier do not add the objects themselves.
6998	    case `$CC -V 2>&1` in
6999	      *"Version 7."*)
7000	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
7001		_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'
7002		;;
7003	      *)  # Version 8.0 or newer
7004	        tmp_idyn=
7005	        case $host_cpu in
7006		  ia64*) tmp_idyn=' -i_dynamic';;
7007		esac
7008	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
7009		_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'
7010		;;
7011	    esac
7012	    _LT_TAGVAR(archive_cmds_need_lc, $1)=no
7013	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
7014	    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
7015	    _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive'
7016	    ;;
7017          pgCC* | pgcpp*)
7018            # Portland Group C++ compiler
7019	    case `$CC -V` in
7020	    *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*)
7021	      _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~
7022               rm -rf $tpldir~
7023               $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~
7024               compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"'
7025	      _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~
7026                rm -rf $tpldir~
7027                $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~
7028                $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~
7029                $RANLIB $oldlib'
7030	      _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~
7031                rm -rf $tpldir~
7032                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
7033                $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
7034	      _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~
7035                rm -rf $tpldir~
7036                $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~
7037                $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'
7038	      ;;
7039	    *) # Version 6 and above use weak symbols
7040	      _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
7041	      _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'
7042	      ;;
7043	    esac
7044
7045	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir'
7046	    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
7047	    _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'
7048            ;;
7049	  cxx*)
7050	    # Compaq C++
7051	    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib'
7052	    _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'
7053
7054	    runpath_var=LD_RUN_PATH
7055	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
7056	    _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7057
7058	    # Commands to make compiler produce verbose output that lists
7059	    # what "hidden" libraries, object files and flags are used when
7060	    # linking a shared library.
7061	    #
7062	    # There doesn't appear to be a way to prevent this compiler from
7063	    # explicitly linking system object files so we need to strip them
7064	    # from the output so that they don't get included in the library
7065	    # dependencies.
7066	    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'
7067	    ;;
7068	  xl* | mpixl* | bgxl*)
7069	    # IBM XL 8.0 on PPC, with GNU ld
7070	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
7071	    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic'
7072	    _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib'
7073	    if test yes = "$supports_anon_versioning"; then
7074	      _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~
7075                cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
7076                echo "local: *; };" >> $output_objdir/$libname.ver~
7077                $CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib'
7078	    fi
7079	    ;;
7080	  *)
7081	    case `$CC -V 2>&1 | sed 5q` in
7082	    *Sun\ C*)
7083	      # Sun C++ 5.9
7084	      _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
7085	      _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
7086	      _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'
7087	      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
7088	      _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'
7089	      _LT_TAGVAR(compiler_needs_object, $1)=yes
7090
7091	      # Not sure whether something based on
7092	      # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
7093	      # would be better.
7094	      output_verbose_link_cmd='func_echo_all'
7095
7096	      # Archives containing C++ object files must be created using
7097	      # "CC -xar", where "CC" is the Sun C++ compiler.  This is
7098	      # necessary to make sure instantiated templates are included
7099	      # in the archive.
7100	      _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
7101	      ;;
7102	    esac
7103	    ;;
7104	esac
7105	;;
7106
7107      lynxos*)
7108        # FIXME: insert proper C++ library support
7109	_LT_TAGVAR(ld_shlibs, $1)=no
7110	;;
7111
7112      m88k*)
7113        # FIXME: insert proper C++ library support
7114        _LT_TAGVAR(ld_shlibs, $1)=no
7115	;;
7116
7117      mvs*)
7118        case $cc_basename in
7119          cxx*)
7120	    # FIXME: insert proper C++ library support
7121	    _LT_TAGVAR(ld_shlibs, $1)=no
7122	    ;;
7123	  *)
7124	    # FIXME: insert proper C++ library support
7125	    _LT_TAGVAR(ld_shlibs, $1)=no
7126	    ;;
7127	esac
7128	;;
7129
7130      netbsd*)
7131        if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then
7132	  _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
7133	  wlarc=
7134	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
7135	  _LT_TAGVAR(hardcode_direct, $1)=yes
7136	  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7137	fi
7138	# Workaround some broken pre-1.5 toolchains
7139	output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
7140	;;
7141
7142      *nto* | *qnx*)
7143        _LT_TAGVAR(ld_shlibs, $1)=yes
7144	;;
7145
7146      openbsd* | bitrig*)
7147	if test -f /usr/libexec/ld.so; then
7148	  _LT_TAGVAR(hardcode_direct, $1)=yes
7149	  _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7150	  _LT_TAGVAR(hardcode_direct_absolute, $1)=yes
7151	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
7152	  _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
7153	  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then
7154	    _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'
7155	    _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E'
7156	    _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive'
7157	  fi
7158	  output_verbose_link_cmd=func_echo_all
7159	else
7160	  _LT_TAGVAR(ld_shlibs, $1)=no
7161	fi
7162	;;
7163
7164      osf3* | osf4* | osf5*)
7165        case $cc_basename in
7166          KCC*)
7167	    # Kuck and Associates, Inc. (KAI) C++ Compiler
7168
7169	    # KCC will only create a shared library if the output file
7170	    # ends with ".so" (or ".sl" for HP-UX), so rename the library
7171	    # to its proper name (with version) after linking.
7172	    _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'
7173
7174	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir'
7175	    _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7176
7177	    # Archives containing C++ object files must be created using
7178	    # the KAI C++ compiler.
7179	    case $host in
7180	      osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;;
7181	      *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;;
7182	    esac
7183	    ;;
7184          RCC*)
7185	    # Rational C++ 2.4.1
7186	    # FIXME: insert proper C++ library support
7187	    _LT_TAGVAR(ld_shlibs, $1)=no
7188	    ;;
7189          cxx*)
7190	    case $host in
7191	      osf3*)
7192	        _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
7193	        _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'
7194	        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
7195		;;
7196	      *)
7197	        _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
7198	        _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'
7199	        _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
7200                  echo "-hidden">> $lib.exp~
7201                  $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~
7202                  $RM $lib.exp'
7203	        _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
7204		;;
7205	    esac
7206
7207	    _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7208
7209	    # Commands to make compiler produce verbose output that lists
7210	    # what "hidden" libraries, object files and flags are used when
7211	    # linking a shared library.
7212	    #
7213	    # There doesn't appear to be a way to prevent this compiler from
7214	    # explicitly linking system object files so we need to strip them
7215	    # from the output so that they don't get included in the library
7216	    # dependencies.
7217	    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"'
7218	    ;;
7219	  *)
7220	    if test yes,no = "$GXX,$with_gnu_ld"; then
7221	      _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*'
7222	      case $host in
7223	        osf3*)
7224	          _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'
7225		  ;;
7226	        *)
7227	          _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -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'
7228		  ;;
7229	      esac
7230
7231	      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir'
7232	      _LT_TAGVAR(hardcode_libdir_separator, $1)=:
7233
7234	      # Commands to make compiler produce verbose output that lists
7235	      # what "hidden" libraries, object files and flags are used when
7236	      # linking a shared library.
7237	      output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
7238
7239	    else
7240	      # FIXME: insert proper C++ library support
7241	      _LT_TAGVAR(ld_shlibs, $1)=no
7242	    fi
7243	    ;;
7244        esac
7245        ;;
7246
7247      psos*)
7248        # FIXME: insert proper C++ library support
7249        _LT_TAGVAR(ld_shlibs, $1)=no
7250        ;;
7251
7252      sunos4*)
7253        case $cc_basename in
7254          CC*)
7255	    # Sun C++ 4.x
7256	    # FIXME: insert proper C++ library support
7257	    _LT_TAGVAR(ld_shlibs, $1)=no
7258	    ;;
7259          lcc*)
7260	    # Lucid
7261	    # FIXME: insert proper C++ library support
7262	    _LT_TAGVAR(ld_shlibs, $1)=no
7263	    ;;
7264          *)
7265	    # FIXME: insert proper C++ library support
7266	    _LT_TAGVAR(ld_shlibs, $1)=no
7267	    ;;
7268        esac
7269        ;;
7270
7271      solaris*)
7272        case $cc_basename in
7273          CC* | sunCC*)
7274	    # Sun C++ 4.2, 5.x and Centerline C++
7275            _LT_TAGVAR(archive_cmds_need_lc,$1)=yes
7276	    _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs'
7277	    _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
7278	    _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
7279              $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'
7280
7281	    _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
7282	    _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7283	    case $host_os in
7284	      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
7285	      *)
7286		# The compiler driver will combine and reorder linker options,
7287		# but understands '-z linker_flag'.
7288	        # Supported since Solaris 2.6 (maybe 2.5.1?)
7289		_LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
7290	        ;;
7291	    esac
7292	    _LT_TAGVAR(link_all_deplibs, $1)=yes
7293
7294	    output_verbose_link_cmd='func_echo_all'
7295
7296	    # Archives containing C++ object files must be created using
7297	    # "CC -xar", where "CC" is the Sun C++ compiler.  This is
7298	    # necessary to make sure instantiated templates are included
7299	    # in the archive.
7300	    _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
7301	    ;;
7302          gcx*)
7303	    # Green Hills C++ Compiler
7304	    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'
7305
7306	    # The C++ compiler must be used to create the archive.
7307	    _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
7308	    ;;
7309          *)
7310	    # GNU C++ compiler with Solaris linker
7311	    if test yes,no = "$GXX,$with_gnu_ld"; then
7312	      _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs'
7313	      if $CC --version | $GREP -v '^2\.7' > /dev/null; then
7314	        _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'
7315	        _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
7316                  $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
7317
7318	        # Commands to make compiler produce verbose output that lists
7319	        # what "hidden" libraries, object files and flags are used when
7320	        # linking a shared library.
7321	        output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
7322	      else
7323	        # g++ 2.7 appears to require '-G' NOT '-shared' on this
7324	        # platform.
7325	        _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib'
7326	        _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~
7327                  $CC -G -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp'
7328
7329	        # Commands to make compiler produce verbose output that lists
7330	        # what "hidden" libraries, object files and flags are used when
7331	        # linking a shared library.
7332	        output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP -v "^Configured with:" | $GREP "\-L"'
7333	      fi
7334
7335	      _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir'
7336	      case $host_os in
7337		solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
7338		*)
7339		  _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract'
7340		  ;;
7341	      esac
7342	    fi
7343	    ;;
7344        esac
7345        ;;
7346
7347    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
7348      _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
7349      _LT_TAGVAR(archive_cmds_need_lc, $1)=no
7350      _LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7351      runpath_var='LD_RUN_PATH'
7352
7353      case $cc_basename in
7354        CC*)
7355	  _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7356	  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7357	  ;;
7358	*)
7359	  _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7360	  _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7361	  ;;
7362      esac
7363      ;;
7364
7365      sysv5* | sco3.2v5* | sco5v6*)
7366	# Note: We CANNOT use -z defs as we might desire, because we do not
7367	# link with -lc, and that would cause any symbols used from libc to
7368	# always be unresolved, which means just about no library would
7369	# ever link correctly.  If we're not using GNU ld we use -z text
7370	# though, which does catch some bad symbols but isn't as heavy-handed
7371	# as -z defs.
7372	_LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text'
7373	_LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs'
7374	_LT_TAGVAR(archive_cmds_need_lc, $1)=no
7375	_LT_TAGVAR(hardcode_shlibpath_var, $1)=no
7376	_LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir'
7377	_LT_TAGVAR(hardcode_libdir_separator, $1)=':'
7378	_LT_TAGVAR(link_all_deplibs, $1)=yes
7379	_LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport'
7380	runpath_var='LD_RUN_PATH'
7381
7382	case $cc_basename in
7383          CC*)
7384	    _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7385	    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7386	    _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~
7387              '"$_LT_TAGVAR(old_archive_cmds, $1)"
7388	    _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~
7389              '"$_LT_TAGVAR(reload_cmds, $1)"
7390	    ;;
7391	  *)
7392	    _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7393	    _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
7394	    ;;
7395	esac
7396      ;;
7397
7398      tandem*)
7399        case $cc_basename in
7400          NCC*)
7401	    # NonStop-UX NCC 3.20
7402	    # FIXME: insert proper C++ library support
7403	    _LT_TAGVAR(ld_shlibs, $1)=no
7404	    ;;
7405          *)
7406	    # FIXME: insert proper C++ library support
7407	    _LT_TAGVAR(ld_shlibs, $1)=no
7408	    ;;
7409        esac
7410        ;;
7411
7412      vxworks*)
7413        # FIXME: insert proper C++ library support
7414        _LT_TAGVAR(ld_shlibs, $1)=no
7415        ;;
7416
7417      *)
7418        # FIXME: insert proper C++ library support
7419        _LT_TAGVAR(ld_shlibs, $1)=no
7420        ;;
7421    esac
7422
7423    AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)])
7424    test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no
7425
7426    _LT_TAGVAR(GCC, $1)=$GXX
7427    _LT_TAGVAR(LD, $1)=$LD
7428
7429    ## CAVEAT EMPTOR:
7430    ## There is no encapsulation within the following macros, do not change
7431    ## the running order or otherwise move them around unless you know exactly
7432    ## what you are doing...
7433    _LT_SYS_HIDDEN_LIBDEPS($1)
7434    _LT_COMPILER_PIC($1)
7435    _LT_COMPILER_C_O($1)
7436    _LT_COMPILER_FILE_LOCKS($1)
7437    _LT_LINKER_SHLIBS($1)
7438    _LT_SYS_DYNAMIC_LINKER($1)
7439    _LT_LINKER_HARDCODE_LIBPATH($1)
7440
7441    _LT_CONFIG($1)
7442  fi # test -n "$compiler"
7443
7444  CC=$lt_save_CC
7445  CFLAGS=$lt_save_CFLAGS
7446  LDCXX=$LD
7447  LD=$lt_save_LD
7448  GCC=$lt_save_GCC
7449  with_gnu_ld=$lt_save_with_gnu_ld
7450  lt_cv_path_LDCXX=$lt_cv_path_LD
7451  lt_cv_path_LD=$lt_save_path_LD
7452  lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
7453  lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
7454fi # test yes != "$_lt_caught_CXX_error"
7455
7456AC_LANG_POP
7457])# _LT_LANG_CXX_CONFIG
7458
7459
7460# _LT_FUNC_STRIPNAME_CNF
7461# ----------------------
7462# func_stripname_cnf prefix suffix name
7463# strip PREFIX and SUFFIX off of NAME.
7464# PREFIX and SUFFIX must not contain globbing or regex special
7465# characters, hashes, percent signs, but SUFFIX may contain a leading
7466# dot (in which case that matches only a dot).
7467#
7468# This function is identical to the (non-XSI) version of func_stripname,
7469# except this one can be used by m4 code that may be executed by configure,
7470# rather than the libtool script.
7471m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl
7472AC_REQUIRE([_LT_DECL_SED])
7473AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])
7474func_stripname_cnf ()
7475{
7476  case @S|@2 in
7477  .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;;
7478  *)  func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;;
7479  esac
7480} # func_stripname_cnf
7481])# _LT_FUNC_STRIPNAME_CNF
7482
7483
7484# _LT_SYS_HIDDEN_LIBDEPS([TAGNAME])
7485# ---------------------------------
7486# Figure out "hidden" library dependencies from verbose
7487# compiler output when linking a shared library.
7488# Parse the compiler output and extract the necessary
7489# objects, libraries and library flags.
7490m4_defun([_LT_SYS_HIDDEN_LIBDEPS],
7491[m4_require([_LT_FILEUTILS_DEFAULTS])dnl
7492AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl
7493# Dependencies to place before and after the object being linked:
7494_LT_TAGVAR(predep_objects, $1)=
7495_LT_TAGVAR(postdep_objects, $1)=
7496_LT_TAGVAR(predeps, $1)=
7497_LT_TAGVAR(postdeps, $1)=
7498_LT_TAGVAR(compiler_lib_search_path, $1)=
7499
7500dnl we can't use the lt_simple_compile_test_code here,
7501dnl because it contains code intended for an executable,
7502dnl not a library.  It's possible we should let each
7503dnl tag define a new lt_????_link_test_code variable,
7504dnl but it's only used here...
7505m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF
7506int a;
7507void foo (void) { a = 0; }
7508_LT_EOF
7509], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF
7510class Foo
7511{
7512public:
7513  Foo (void) { a = 0; }
7514private:
7515  int a;
7516};
7517_LT_EOF
7518], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF
7519      subroutine foo
7520      implicit none
7521      integer*4 a
7522      a=0
7523      return
7524      end
7525_LT_EOF
7526], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF
7527      subroutine foo
7528      implicit none
7529      integer a
7530      a=0
7531      return
7532      end
7533_LT_EOF
7534], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF
7535public class foo {
7536  private int a;
7537  public void bar (void) {
7538    a = 0;
7539  }
7540};
7541_LT_EOF
7542], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF
7543package foo
7544func foo() {
7545}
7546_LT_EOF
7547])
7548
7549_lt_libdeps_save_CFLAGS=$CFLAGS
7550case "$CC $CFLAGS " in #(
7551*\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;;
7552*\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;;
7553*\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;;
7554esac
7555
7556dnl Parse the compiler output and extract the necessary
7557dnl objects, libraries and library flags.
7558if AC_TRY_EVAL(ac_compile); then
7559  # Parse the compiler output and extract the necessary
7560  # objects, libraries and library flags.
7561
7562  # Sentinel used to keep track of whether or not we are before
7563  # the conftest object file.
7564  pre_test_object_deps_done=no
7565
7566  for p in `eval "$output_verbose_link_cmd"`; do
7567    case $prev$p in
7568
7569    -L* | -R* | -l*)
7570       # Some compilers place space between "-{L,R}" and the path.
7571       # Remove the space.
7572       if test x-L = "$p" ||
7573          test x-R = "$p"; then
7574	 prev=$p
7575	 continue
7576       fi
7577
7578       # Expand the sysroot to ease extracting the directories later.
7579       if test -z "$prev"; then
7580         case $p in
7581         -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;;
7582         -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;;
7583         -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;;
7584         esac
7585       fi
7586       case $p in
7587       =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;;
7588       esac
7589       if test no = "$pre_test_object_deps_done"; then
7590	 case $prev in
7591	 -L | -R)
7592	   # Internal compiler library paths should come after those
7593	   # provided the user.  The postdeps already come after the
7594	   # user supplied libs so there is no need to process them.
7595	   if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then
7596	     _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p
7597	   else
7598	     _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $prev$p"
7599	   fi
7600	   ;;
7601	 # The "-l" case would never come before the object being
7602	 # linked, so don't bother handling this case.
7603	 esac
7604       else
7605	 if test -z "$_LT_TAGVAR(postdeps, $1)"; then
7606	   _LT_TAGVAR(postdeps, $1)=$prev$p
7607	 else
7608	   _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p"
7609	 fi
7610       fi
7611       prev=
7612       ;;
7613
7614    *.lto.$objext) ;; # Ignore GCC LTO objects
7615    *.$objext)
7616       # This assumes that the test object file only shows up
7617       # once in the compiler output.
7618       if test "$p" = "conftest.$objext"; then
7619	 pre_test_object_deps_done=yes
7620	 continue
7621       fi
7622
7623       if test no = "$pre_test_object_deps_done"; then
7624	 if test -z "$_LT_TAGVAR(predep_objects, $1)"; then
7625	   _LT_TAGVAR(predep_objects, $1)=$p
7626	 else
7627	   _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p"
7628	 fi
7629       else
7630	 if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then
7631	   _LT_TAGVAR(postdep_objects, $1)=$p
7632	 else
7633	   _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p"
7634	 fi
7635       fi
7636       ;;
7637
7638    *) ;; # Ignore the rest.
7639
7640    esac
7641  done
7642
7643  # Clean up.
7644  rm -f a.out a.exe
7645else
7646  echo "libtool.m4: error: problem compiling $1 test program"
7647fi
7648
7649$RM -f confest.$objext
7650CFLAGS=$_lt_libdeps_save_CFLAGS
7651
7652# PORTME: override above test on systems where it is broken
7653m4_if([$1], [CXX],
7654[case $host_os in
7655interix[[3-9]]*)
7656  # Interix 3.5 installs completely hosed .la files for C++, so rather than
7657  # hack all around it, let's just trust "g++" to DTRT.
7658  _LT_TAGVAR(predep_objects,$1)=
7659  _LT_TAGVAR(postdep_objects,$1)=
7660  _LT_TAGVAR(postdeps,$1)=
7661  ;;
7662esac
7663])
7664
7665case " $_LT_TAGVAR(postdeps, $1) " in
7666*" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;;
7667esac
7668 _LT_TAGVAR(compiler_lib_search_dirs, $1)=
7669if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then
7670 _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'`
7671fi
7672_LT_TAGDECL([], [compiler_lib_search_dirs], [1],
7673    [The directories searched by this compiler when creating a shared library])
7674_LT_TAGDECL([], [predep_objects], [1],
7675    [Dependencies to place before and after the objects being linked to
7676    create a shared library])
7677_LT_TAGDECL([], [postdep_objects], [1])
7678_LT_TAGDECL([], [predeps], [1])
7679_LT_TAGDECL([], [postdeps], [1])
7680_LT_TAGDECL([], [compiler_lib_search_path], [1],
7681    [The library search path used internally by the compiler when linking
7682    a shared library])
7683])# _LT_SYS_HIDDEN_LIBDEPS
7684
7685
7686# _LT_LANG_F77_CONFIG([TAG])
7687# --------------------------
7688# Ensure that the configuration variables for a Fortran 77 compiler are
7689# suitably defined.  These variables are subsequently used by _LT_CONFIG
7690# to write the compiler configuration to 'libtool'.
7691m4_defun([_LT_LANG_F77_CONFIG],
7692[AC_LANG_PUSH(Fortran 77)
7693if test -z "$F77" || test no = "$F77"; then
7694  _lt_disable_F77=yes
7695fi
7696
7697_LT_TAGVAR(archive_cmds_need_lc, $1)=no
7698_LT_TAGVAR(allow_undefined_flag, $1)=
7699_LT_TAGVAR(always_export_symbols, $1)=no
7700_LT_TAGVAR(archive_expsym_cmds, $1)=
7701_LT_TAGVAR(export_dynamic_flag_spec, $1)=
7702_LT_TAGVAR(hardcode_direct, $1)=no
7703_LT_TAGVAR(hardcode_direct_absolute, $1)=no
7704_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
7705_LT_TAGVAR(hardcode_libdir_separator, $1)=
7706_LT_TAGVAR(hardcode_minus_L, $1)=no
7707_LT_TAGVAR(hardcode_automatic, $1)=no
7708_LT_TAGVAR(inherit_rpath, $1)=no
7709_LT_TAGVAR(module_cmds, $1)=
7710_LT_TAGVAR(module_expsym_cmds, $1)=
7711_LT_TAGVAR(link_all_deplibs, $1)=unknown
7712_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
7713_LT_TAGVAR(reload_flag, $1)=$reload_flag
7714_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
7715_LT_TAGVAR(no_undefined_flag, $1)=
7716_LT_TAGVAR(whole_archive_flag_spec, $1)=
7717_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
7718
7719# Source file extension for f77 test sources.
7720ac_ext=f
7721
7722# Object file extension for compiled f77 test sources.
7723objext=o
7724_LT_TAGVAR(objext, $1)=$objext
7725
7726# No sense in running all these tests if we already determined that
7727# the F77 compiler isn't working.  Some variables (like enable_shared)
7728# are currently assumed to apply to all compilers on this platform,
7729# and will be corrupted by setting them based on a non-working compiler.
7730if test yes != "$_lt_disable_F77"; then
7731  # Code to be used in simple compile tests
7732  lt_simple_compile_test_code="\
7733      subroutine t
7734      return
7735      end
7736"
7737
7738  # Code to be used in simple link tests
7739  lt_simple_link_test_code="\
7740      program t
7741      end
7742"
7743
7744  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
7745  _LT_TAG_COMPILER
7746
7747  # save warnings/boilerplate of simple test code
7748  _LT_COMPILER_BOILERPLATE
7749  _LT_LINKER_BOILERPLATE
7750
7751  # Allow CC to be a program name with arguments.
7752  lt_save_CC=$CC
7753  lt_save_GCC=$GCC
7754  lt_save_CFLAGS=$CFLAGS
7755  CC=${F77-"f77"}
7756  CFLAGS=$FFLAGS
7757  compiler=$CC
7758  _LT_TAGVAR(compiler, $1)=$CC
7759  _LT_CC_BASENAME([$compiler])
7760  GCC=$G77
7761  if test -n "$compiler"; then
7762    AC_MSG_CHECKING([if libtool supports shared libraries])
7763    AC_MSG_RESULT([$can_build_shared])
7764
7765    AC_MSG_CHECKING([whether to build shared libraries])
7766    test no = "$can_build_shared" && enable_shared=no
7767
7768    # On AIX, shared libraries and static libraries use the same namespace, and
7769    # are all built from PIC.
7770    case $host_os in
7771      aix3*)
7772        test yes = "$enable_shared" && enable_static=no
7773        if test -n "$RANLIB"; then
7774          archive_cmds="$archive_cmds~\$RANLIB \$lib"
7775          postinstall_cmds='$RANLIB $lib'
7776        fi
7777        ;;
7778      aix[[4-9]]*)
7779	if test ia64 != "$host_cpu"; then
7780	  case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
7781	  yes,aix,yes) ;;		# shared object as lib.so file only
7782	  yes,svr4,*) ;;		# shared object as lib.so archive member only
7783	  yes,*) enable_static=no ;;	# shared object in lib.a archive as well
7784	  esac
7785	fi
7786        ;;
7787    esac
7788    AC_MSG_RESULT([$enable_shared])
7789
7790    AC_MSG_CHECKING([whether to build static libraries])
7791    # Make sure either enable_shared or enable_static is yes.
7792    test yes = "$enable_shared" || enable_static=yes
7793    AC_MSG_RESULT([$enable_static])
7794
7795    _LT_TAGVAR(GCC, $1)=$G77
7796    _LT_TAGVAR(LD, $1)=$LD
7797
7798    ## CAVEAT EMPTOR:
7799    ## There is no encapsulation within the following macros, do not change
7800    ## the running order or otherwise move them around unless you know exactly
7801    ## what you are doing...
7802    _LT_COMPILER_PIC($1)
7803    _LT_COMPILER_C_O($1)
7804    _LT_COMPILER_FILE_LOCKS($1)
7805    _LT_LINKER_SHLIBS($1)
7806    _LT_SYS_DYNAMIC_LINKER($1)
7807    _LT_LINKER_HARDCODE_LIBPATH($1)
7808
7809    _LT_CONFIG($1)
7810  fi # test -n "$compiler"
7811
7812  GCC=$lt_save_GCC
7813  CC=$lt_save_CC
7814  CFLAGS=$lt_save_CFLAGS
7815fi # test yes != "$_lt_disable_F77"
7816
7817AC_LANG_POP
7818])# _LT_LANG_F77_CONFIG
7819
7820
7821# _LT_LANG_FC_CONFIG([TAG])
7822# -------------------------
7823# Ensure that the configuration variables for a Fortran compiler are
7824# suitably defined.  These variables are subsequently used by _LT_CONFIG
7825# to write the compiler configuration to 'libtool'.
7826m4_defun([_LT_LANG_FC_CONFIG],
7827[AC_LANG_PUSH(Fortran)
7828
7829if test -z "$FC" || test no = "$FC"; then
7830  _lt_disable_FC=yes
7831fi
7832
7833_LT_TAGVAR(archive_cmds_need_lc, $1)=no
7834_LT_TAGVAR(allow_undefined_flag, $1)=
7835_LT_TAGVAR(always_export_symbols, $1)=no
7836_LT_TAGVAR(archive_expsym_cmds, $1)=
7837_LT_TAGVAR(export_dynamic_flag_spec, $1)=
7838_LT_TAGVAR(hardcode_direct, $1)=no
7839_LT_TAGVAR(hardcode_direct_absolute, $1)=no
7840_LT_TAGVAR(hardcode_libdir_flag_spec, $1)=
7841_LT_TAGVAR(hardcode_libdir_separator, $1)=
7842_LT_TAGVAR(hardcode_minus_L, $1)=no
7843_LT_TAGVAR(hardcode_automatic, $1)=no
7844_LT_TAGVAR(inherit_rpath, $1)=no
7845_LT_TAGVAR(module_cmds, $1)=
7846_LT_TAGVAR(module_expsym_cmds, $1)=
7847_LT_TAGVAR(link_all_deplibs, $1)=unknown
7848_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
7849_LT_TAGVAR(reload_flag, $1)=$reload_flag
7850_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
7851_LT_TAGVAR(no_undefined_flag, $1)=
7852_LT_TAGVAR(whole_archive_flag_spec, $1)=
7853_LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no
7854
7855# Source file extension for fc test sources.
7856ac_ext=${ac_fc_srcext-f}
7857
7858# Object file extension for compiled fc test sources.
7859objext=o
7860_LT_TAGVAR(objext, $1)=$objext
7861
7862# No sense in running all these tests if we already determined that
7863# the FC compiler isn't working.  Some variables (like enable_shared)
7864# are currently assumed to apply to all compilers on this platform,
7865# and will be corrupted by setting them based on a non-working compiler.
7866if test yes != "$_lt_disable_FC"; then
7867  # Code to be used in simple compile tests
7868  lt_simple_compile_test_code="\
7869      subroutine t
7870      return
7871      end
7872"
7873
7874  # Code to be used in simple link tests
7875  lt_simple_link_test_code="\
7876      program t
7877      end
7878"
7879
7880  # ltmain only uses $CC for tagged configurations so make sure $CC is set.
7881  _LT_TAG_COMPILER
7882
7883  # save warnings/boilerplate of simple test code
7884  _LT_COMPILER_BOILERPLATE
7885  _LT_LINKER_BOILERPLATE
7886
7887  # Allow CC to be a program name with arguments.
7888  lt_save_CC=$CC
7889  lt_save_GCC=$GCC
7890  lt_save_CFLAGS=$CFLAGS
7891  CC=${FC-"f95"}
7892  CFLAGS=$FCFLAGS
7893  compiler=$CC
7894  GCC=$ac_cv_fc_compiler_gnu
7895
7896  _LT_TAGVAR(compiler, $1)=$CC
7897  _LT_CC_BASENAME([$compiler])
7898
7899  if test -n "$compiler"; then
7900    AC_MSG_CHECKING([if libtool supports shared libraries])
7901    AC_MSG_RESULT([$can_build_shared])
7902
7903    AC_MSG_CHECKING([whether to build shared libraries])
7904    test no = "$can_build_shared" && enable_shared=no
7905
7906    # On AIX, shared libraries and static libraries use the same namespace, and
7907    # are all built from PIC.
7908    case $host_os in
7909      aix3*)
7910        test yes = "$enable_shared" && enable_static=no
7911        if test -n "$RANLIB"; then
7912          archive_cmds="$archive_cmds~\$RANLIB \$lib"
7913          postinstall_cmds='$RANLIB $lib'
7914        fi
7915        ;;
7916      aix[[4-9]]*)
7917	if test ia64 != "$host_cpu"; then
7918	  case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in
7919	  yes,aix,yes) ;;		# shared object as lib.so file only
7920	  yes,svr4,*) ;;		# shared object as lib.so archive member only
7921	  yes,*) enable_static=no ;;	# shared object in lib.a archive as well
7922	  esac
7923	fi
7924        ;;
7925    esac
7926    AC_MSG_RESULT([$enable_shared])
7927
7928    AC_MSG_CHECKING([whether to build static libraries])
7929    # Make sure either enable_shared or enable_static is yes.
7930    test yes = "$enable_shared" || enable_static=yes
7931    AC_MSG_RESULT([$enable_static])
7932
7933    _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu
7934    _LT_TAGVAR(LD, $1)=$LD
7935
7936    ## CAVEAT EMPTOR:
7937    ## There is no encapsulation within the following macros, do not change
7938    ## the running order or otherwise move them around unless you know exactly
7939    ## what you are doing...
7940    _LT_SYS_HIDDEN_LIBDEPS($1)
7941    _LT_COMPILER_PIC($1)
7942    _LT_COMPILER_C_O($1)
7943    _LT_COMPILER_FILE_LOCKS($1)
7944    _LT_LINKER_SHLIBS($1)
7945    _LT_SYS_DYNAMIC_LINKER($1)
7946    _LT_LINKER_HARDCODE_LIBPATH($1)
7947
7948    _LT_CONFIG($1)
7949  fi # test -n "$compiler"
7950
7951  GCC=$lt_save_GCC
7952  CC=$lt_save_CC
7953  CFLAGS=$lt_save_CFLAGS
7954fi # test yes != "$_lt_disable_FC"
7955
7956AC_LANG_POP
7957])# _LT_LANG_FC_CONFIG
7958
7959
7960# _LT_LANG_GCJ_CONFIG([TAG])
7961# --------------------------
7962# Ensure that the configuration variables for the GNU Java Compiler compiler
7963# are suitably defined.  These variables are subsequently used by _LT_CONFIG
7964# to write the compiler configuration to 'libtool'.
7965m4_defun([_LT_LANG_GCJ_CONFIG],
7966[AC_REQUIRE([LT_PROG_GCJ])dnl
7967AC_LANG_SAVE
7968
7969# Source file extension for Java test sources.
7970ac_ext=java
7971
7972# Object file extension for compiled Java test sources.
7973objext=o
7974_LT_TAGVAR(objext, $1)=$objext
7975
7976# Code to be used in simple compile tests
7977lt_simple_compile_test_code="class foo {}"
7978
7979# Code to be used in simple link tests
7980lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
7981
7982# ltmain only uses $CC for tagged configurations so make sure $CC is set.
7983_LT_TAG_COMPILER
7984
7985# save warnings/boilerplate of simple test code
7986_LT_COMPILER_BOILERPLATE
7987_LT_LINKER_BOILERPLATE
7988
7989# Allow CC to be a program name with arguments.
7990lt_save_CC=$CC
7991lt_save_CFLAGS=$CFLAGS
7992lt_save_GCC=$GCC
7993GCC=yes
7994CC=${GCJ-"gcj"}
7995CFLAGS=$GCJFLAGS
7996compiler=$CC
7997_LT_TAGVAR(compiler, $1)=$CC
7998_LT_TAGVAR(LD, $1)=$LD
7999_LT_CC_BASENAME([$compiler])
8000
8001# GCJ did not exist at the time GCC didn't implicitly link libc in.
8002_LT_TAGVAR(archive_cmds_need_lc, $1)=no
8003
8004_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
8005_LT_TAGVAR(reload_flag, $1)=$reload_flag
8006_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
8007
8008if test -n "$compiler"; then
8009  _LT_COMPILER_NO_RTTI($1)
8010  _LT_COMPILER_PIC($1)
8011  _LT_COMPILER_C_O($1)
8012  _LT_COMPILER_FILE_LOCKS($1)
8013  _LT_LINKER_SHLIBS($1)
8014  _LT_LINKER_HARDCODE_LIBPATH($1)
8015
8016  _LT_CONFIG($1)
8017fi
8018
8019AC_LANG_RESTORE
8020
8021GCC=$lt_save_GCC
8022CC=$lt_save_CC
8023CFLAGS=$lt_save_CFLAGS
8024])# _LT_LANG_GCJ_CONFIG
8025
8026
8027# _LT_LANG_GO_CONFIG([TAG])
8028# --------------------------
8029# Ensure that the configuration variables for the GNU Go compiler
8030# are suitably defined.  These variables are subsequently used by _LT_CONFIG
8031# to write the compiler configuration to 'libtool'.
8032m4_defun([_LT_LANG_GO_CONFIG],
8033[AC_REQUIRE([LT_PROG_GO])dnl
8034AC_LANG_SAVE
8035
8036# Source file extension for Go test sources.
8037ac_ext=go
8038
8039# Object file extension for compiled Go test sources.
8040objext=o
8041_LT_TAGVAR(objext, $1)=$objext
8042
8043# Code to be used in simple compile tests
8044lt_simple_compile_test_code="package main; func main() { }"
8045
8046# Code to be used in simple link tests
8047lt_simple_link_test_code='package main; func main() { }'
8048
8049# ltmain only uses $CC for tagged configurations so make sure $CC is set.
8050_LT_TAG_COMPILER
8051
8052# save warnings/boilerplate of simple test code
8053_LT_COMPILER_BOILERPLATE
8054_LT_LINKER_BOILERPLATE
8055
8056# Allow CC to be a program name with arguments.
8057lt_save_CC=$CC
8058lt_save_CFLAGS=$CFLAGS
8059lt_save_GCC=$GCC
8060GCC=yes
8061CC=${GOC-"gccgo"}
8062CFLAGS=$GOFLAGS
8063compiler=$CC
8064_LT_TAGVAR(compiler, $1)=$CC
8065_LT_TAGVAR(LD, $1)=$LD
8066_LT_CC_BASENAME([$compiler])
8067
8068# Go did not exist at the time GCC didn't implicitly link libc in.
8069_LT_TAGVAR(archive_cmds_need_lc, $1)=no
8070
8071_LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
8072_LT_TAGVAR(reload_flag, $1)=$reload_flag
8073_LT_TAGVAR(reload_cmds, $1)=$reload_cmds
8074
8075if test -n "$compiler"; then
8076  _LT_COMPILER_NO_RTTI($1)
8077  _LT_COMPILER_PIC($1)
8078  _LT_COMPILER_C_O($1)
8079  _LT_COMPILER_FILE_LOCKS($1)
8080  _LT_LINKER_SHLIBS($1)
8081  _LT_LINKER_HARDCODE_LIBPATH($1)
8082
8083  _LT_CONFIG($1)
8084fi
8085
8086AC_LANG_RESTORE
8087
8088GCC=$lt_save_GCC
8089CC=$lt_save_CC
8090CFLAGS=$lt_save_CFLAGS
8091])# _LT_LANG_GO_CONFIG
8092
8093
8094# _LT_LANG_RC_CONFIG([TAG])
8095# -------------------------
8096# Ensure that the configuration variables for the Windows resource compiler
8097# are suitably defined.  These variables are subsequently used by _LT_CONFIG
8098# to write the compiler configuration to 'libtool'.
8099m4_defun([_LT_LANG_RC_CONFIG],
8100[AC_REQUIRE([LT_PROG_RC])dnl
8101AC_LANG_SAVE
8102
8103# Source file extension for RC test sources.
8104ac_ext=rc
8105
8106# Object file extension for compiled RC test sources.
8107objext=o
8108_LT_TAGVAR(objext, $1)=$objext
8109
8110# Code to be used in simple compile tests
8111lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
8112
8113# Code to be used in simple link tests
8114lt_simple_link_test_code=$lt_simple_compile_test_code
8115
8116# ltmain only uses $CC for tagged configurations so make sure $CC is set.
8117_LT_TAG_COMPILER
8118
8119# save warnings/boilerplate of simple test code
8120_LT_COMPILER_BOILERPLATE
8121_LT_LINKER_BOILERPLATE
8122
8123# Allow CC to be a program name with arguments.
8124lt_save_CC=$CC
8125lt_save_CFLAGS=$CFLAGS
8126lt_save_GCC=$GCC
8127GCC=
8128CC=${RC-"windres"}
8129CFLAGS=
8130compiler=$CC
8131_LT_TAGVAR(compiler, $1)=$CC
8132_LT_CC_BASENAME([$compiler])
8133_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
8134
8135if test -n "$compiler"; then
8136  :
8137  _LT_CONFIG($1)
8138fi
8139
8140GCC=$lt_save_GCC
8141AC_LANG_RESTORE
8142CC=$lt_save_CC
8143CFLAGS=$lt_save_CFLAGS
8144])# _LT_LANG_RC_CONFIG
8145
8146
8147# LT_PROG_GCJ
8148# -----------
8149AC_DEFUN([LT_PROG_GCJ],
8150[m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
8151  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
8152    [AC_CHECK_TOOL(GCJ, gcj,)
8153      test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
8154      AC_SUBST(GCJFLAGS)])])[]dnl
8155])
8156
8157# Old name:
8158AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ])
8159dnl aclocal-1.4 backwards compatibility:
8160dnl AC_DEFUN([LT_AC_PROG_GCJ], [])
8161
8162
8163# LT_PROG_GO
8164# ----------
8165AC_DEFUN([LT_PROG_GO],
8166[AC_CHECK_TOOL(GOC, gccgo,)
8167])
8168
8169
8170# LT_PROG_RC
8171# ----------
8172AC_DEFUN([LT_PROG_RC],
8173[AC_CHECK_TOOL(RC, windres,)
8174])
8175
8176# Old name:
8177AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC])
8178dnl aclocal-1.4 backwards compatibility:
8179dnl AC_DEFUN([LT_AC_PROG_RC], [])
8180
8181
8182# _LT_DECL_EGREP
8183# --------------
8184# If we don't have a new enough Autoconf to choose the best grep
8185# available, choose the one first in the user's PATH.
8186m4_defun([_LT_DECL_EGREP],
8187[AC_REQUIRE([AC_PROG_EGREP])dnl
8188AC_REQUIRE([AC_PROG_FGREP])dnl
8189test -z "$GREP" && GREP=grep
8190_LT_DECL([], [GREP], [1], [A grep program that handles long lines])
8191_LT_DECL([], [EGREP], [1], [An ERE matcher])
8192_LT_DECL([], [FGREP], [1], [A literal string matcher])
8193dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too
8194AC_SUBST([GREP])
8195])
8196
8197
8198# _LT_DECL_OBJDUMP
8199# --------------
8200# If we don't have a new enough Autoconf to choose the best objdump
8201# available, choose the one first in the user's PATH.
8202m4_defun([_LT_DECL_OBJDUMP],
8203[AC_CHECK_TOOL(OBJDUMP, objdump, false)
8204test -z "$OBJDUMP" && OBJDUMP=objdump
8205_LT_DECL([], [OBJDUMP], [1], [An object symbol dumper])
8206AC_SUBST([OBJDUMP])
8207])
8208
8209# _LT_DECL_DLLTOOL
8210# ----------------
8211# Ensure DLLTOOL variable is set.
8212m4_defun([_LT_DECL_DLLTOOL],
8213[AC_CHECK_TOOL(DLLTOOL, dlltool, false)
8214test -z "$DLLTOOL" && DLLTOOL=dlltool
8215_LT_DECL([], [DLLTOOL], [1], [DLL creation program])
8216AC_SUBST([DLLTOOL])
8217])
8218
8219# _LT_DECL_SED
8220# ------------
8221# Check for a fully-functional sed program, that truncates
8222# as few characters as possible.  Prefer GNU sed if found.
8223m4_defun([_LT_DECL_SED],
8224[AC_PROG_SED
8225test -z "$SED" && SED=sed
8226Xsed="$SED -e 1s/^X//"
8227_LT_DECL([], [SED], [1], [A sed program that does not truncate output])
8228_LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"],
8229    [Sed that helps us avoid accidentally triggering echo(1) options like -n])
8230])# _LT_DECL_SED
8231
8232m4_ifndef([AC_PROG_SED], [
8233# NOTE: This macro has been submitted for inclusion into   #
8234#  GNU Autoconf as AC_PROG_SED.  When it is available in   #
8235#  a released version of Autoconf we should remove this    #
8236#  macro and use it instead.                               #
8237
8238m4_defun([AC_PROG_SED],
8239[AC_MSG_CHECKING([for a sed that does not truncate output])
8240AC_CACHE_VAL(lt_cv_path_SED,
8241[# Loop through the user's path and test for sed and gsed.
8242# Then use that list of sed's as ones to test for truncation.
8243as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8244for as_dir in $PATH
8245do
8246  IFS=$as_save_IFS
8247  test -z "$as_dir" && as_dir=.
8248  for lt_ac_prog in sed gsed; do
8249    for ac_exec_ext in '' $ac_executable_extensions; do
8250      if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
8251        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
8252      fi
8253    done
8254  done
8255done
8256IFS=$as_save_IFS
8257lt_ac_max=0
8258lt_ac_count=0
8259# Add /usr/xpg4/bin/sed as it is typically found on Solaris
8260# along with /bin/sed that truncates output.
8261for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
8262  test ! -f "$lt_ac_sed" && continue
8263  cat /dev/null > conftest.in
8264  lt_ac_count=0
8265  echo $ECHO_N "0123456789$ECHO_C" >conftest.in
8266  # Check for GNU sed and select it if it is found.
8267  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
8268    lt_cv_path_SED=$lt_ac_sed
8269    break
8270  fi
8271  while true; do
8272    cat conftest.in conftest.in >conftest.tmp
8273    mv conftest.tmp conftest.in
8274    cp conftest.in conftest.nl
8275    echo >>conftest.nl
8276    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
8277    cmp -s conftest.out conftest.nl || break
8278    # 10000 chars as input seems more than enough
8279    test 10 -lt "$lt_ac_count" && break
8280    lt_ac_count=`expr $lt_ac_count + 1`
8281    if test "$lt_ac_count" -gt "$lt_ac_max"; then
8282      lt_ac_max=$lt_ac_count
8283      lt_cv_path_SED=$lt_ac_sed
8284    fi
8285  done
8286done
8287])
8288SED=$lt_cv_path_SED
8289AC_SUBST([SED])
8290AC_MSG_RESULT([$SED])
8291])#AC_PROG_SED
8292])#m4_ifndef
8293
8294# Old name:
8295AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED])
8296dnl aclocal-1.4 backwards compatibility:
8297dnl AC_DEFUN([LT_AC_PROG_SED], [])
8298
8299
8300# _LT_CHECK_SHELL_FEATURES
8301# ------------------------
8302# Find out whether the shell is Bourne or XSI compatible,
8303# or has some other useful features.
8304m4_defun([_LT_CHECK_SHELL_FEATURES],
8305[if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then
8306  lt_unset=unset
8307else
8308  lt_unset=false
8309fi
8310_LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl
8311
8312# test EBCDIC or ASCII
8313case `echo X|tr X '\101'` in
8314 A) # ASCII based system
8315    # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr
8316  lt_SP2NL='tr \040 \012'
8317  lt_NL2SP='tr \015\012 \040\040'
8318  ;;
8319 *) # EBCDIC based system
8320  lt_SP2NL='tr \100 \n'
8321  lt_NL2SP='tr \r\n \100\100'
8322  ;;
8323esac
8324_LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl
8325_LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl
8326])# _LT_CHECK_SHELL_FEATURES
8327
8328
8329# _LT_PATH_CONVERSION_FUNCTIONS
8330# -----------------------------
8331# Determine what file name conversion functions should be used by
8332# func_to_host_file (and, implicitly, by func_to_host_path).  These are needed
8333# for certain cross-compile configurations and native mingw.
8334m4_defun([_LT_PATH_CONVERSION_FUNCTIONS],
8335[AC_REQUIRE([AC_CANONICAL_HOST])dnl
8336AC_REQUIRE([AC_CANONICAL_BUILD])dnl
8337AC_MSG_CHECKING([how to convert $build file names to $host format])
8338AC_CACHE_VAL(lt_cv_to_host_file_cmd,
8339[case $host in
8340  *-*-mingw* )
8341    case $build in
8342      *-*-mingw* ) # actually msys
8343        lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32
8344        ;;
8345      *-*-cygwin* )
8346        lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32
8347        ;;
8348      * ) # otherwise, assume *nix
8349        lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32
8350        ;;
8351    esac
8352    ;;
8353  *-*-cygwin* )
8354    case $build in
8355      *-*-mingw* ) # actually msys
8356        lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin
8357        ;;
8358      *-*-cygwin* )
8359        lt_cv_to_host_file_cmd=func_convert_file_noop
8360        ;;
8361      * ) # otherwise, assume *nix
8362        lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin
8363        ;;
8364    esac
8365    ;;
8366  * ) # unhandled hosts (and "normal" native builds)
8367    lt_cv_to_host_file_cmd=func_convert_file_noop
8368    ;;
8369esac
8370])
8371to_host_file_cmd=$lt_cv_to_host_file_cmd
8372AC_MSG_RESULT([$lt_cv_to_host_file_cmd])
8373_LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd],
8374         [0], [convert $build file names to $host format])dnl
8375
8376AC_MSG_CHECKING([how to convert $build file names to toolchain format])
8377AC_CACHE_VAL(lt_cv_to_tool_file_cmd,
8378[#assume ordinary cross tools, or native build.
8379lt_cv_to_tool_file_cmd=func_convert_file_noop
8380case $host in
8381  *-*-mingw* )
8382    case $build in
8383      *-*-mingw* ) # actually msys
8384        lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32
8385        ;;
8386    esac
8387    ;;
8388esac
8389])
8390to_tool_file_cmd=$lt_cv_to_tool_file_cmd
8391AC_MSG_RESULT([$lt_cv_to_tool_file_cmd])
8392_LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd],
8393         [0], [convert $build files to toolchain format])dnl
8394])# _LT_PATH_CONVERSION_FUNCTIONS
8395
8396# Helper functions for option handling.                    -*- Autoconf -*-
8397#
8398#   Copyright (C) 2004-2005, 2007-2009, 2011-2018 Free Software
8399#   Foundation, Inc.
8400#   Written by Gary V. Vaughan, 2004
8401#
8402# This file is free software; the Free Software Foundation gives
8403# unlimited permission to copy and/or distribute it, with or without
8404# modifications, as long as this notice is preserved.
8405
8406# serial 8 ltoptions.m4
8407
8408# This is to help aclocal find these macros, as it can't see m4_define.
8409AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
8410
8411
8412# _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME)
8413# ------------------------------------------
8414m4_define([_LT_MANGLE_OPTION],
8415[[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])])
8416
8417
8418# _LT_SET_OPTION(MACRO-NAME, OPTION-NAME)
8419# ---------------------------------------
8420# Set option OPTION-NAME for macro MACRO-NAME, and if there is a
8421# matching handler defined, dispatch to it.  Other OPTION-NAMEs are
8422# saved as a flag.
8423m4_define([_LT_SET_OPTION],
8424[m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl
8425m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]),
8426        _LT_MANGLE_DEFUN([$1], [$2]),
8427    [m4_warning([Unknown $1 option '$2'])])[]dnl
8428])
8429
8430
8431# _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET])
8432# ------------------------------------------------------------
8433# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
8434m4_define([_LT_IF_OPTION],
8435[m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])])
8436
8437
8438# _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET)
8439# -------------------------------------------------------
8440# Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME
8441# are set.
8442m4_define([_LT_UNLESS_OPTIONS],
8443[m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
8444	    [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option),
8445		      [m4_define([$0_found])])])[]dnl
8446m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3
8447])[]dnl
8448])
8449
8450
8451# _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST)
8452# ----------------------------------------
8453# OPTION-LIST is a space-separated list of Libtool options associated
8454# with MACRO-NAME.  If any OPTION has a matching handler declared with
8455# LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about
8456# the unknown option and exit.
8457m4_defun([_LT_SET_OPTIONS],
8458[# Set options
8459m4_foreach([_LT_Option], m4_split(m4_normalize([$2])),
8460    [_LT_SET_OPTION([$1], _LT_Option)])
8461
8462m4_if([$1],[LT_INIT],[
8463  dnl
8464  dnl Simply set some default values (i.e off) if boolean options were not
8465  dnl specified:
8466  _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no
8467  ])
8468  _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no
8469  ])
8470  dnl
8471  dnl If no reference was made to various pairs of opposing options, then
8472  dnl we run the default mode handler for the pair.  For example, if neither
8473  dnl 'shared' nor 'disable-shared' was passed, we enable building of shared
8474  dnl archives by default:
8475  _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED])
8476  _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC])
8477  _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC])
8478  _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install],
8479		   [_LT_ENABLE_FAST_INSTALL])
8480  _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4],
8481		   [_LT_WITH_AIX_SONAME([aix])])
8482  ])
8483])# _LT_SET_OPTIONS
8484
8485
8486
8487# _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME)
8488# -----------------------------------------
8489m4_define([_LT_MANGLE_DEFUN],
8490[[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])])
8491
8492
8493# LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE)
8494# -----------------------------------------------
8495m4_define([LT_OPTION_DEFINE],
8496[m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl
8497])# LT_OPTION_DEFINE
8498
8499
8500# dlopen
8501# ------
8502LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes
8503])
8504
8505AU_DEFUN([AC_LIBTOOL_DLOPEN],
8506[_LT_SET_OPTION([LT_INIT], [dlopen])
8507AC_DIAGNOSE([obsolete],
8508[$0: Remove this warning and the call to _LT_SET_OPTION when you
8509put the 'dlopen' option into LT_INIT's first parameter.])
8510])
8511
8512dnl aclocal-1.4 backwards compatibility:
8513dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], [])
8514
8515
8516# win32-dll
8517# ---------
8518# Declare package support for building win32 dll's.
8519LT_OPTION_DEFINE([LT_INIT], [win32-dll],
8520[enable_win32_dll=yes
8521
8522case $host in
8523*-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-cegcc*)
8524  AC_CHECK_TOOL(AS, as, false)
8525  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
8526  AC_CHECK_TOOL(OBJDUMP, objdump, false)
8527  ;;
8528esac
8529
8530test -z "$AS" && AS=as
8531_LT_DECL([], [AS],      [1], [Assembler program])dnl
8532
8533test -z "$DLLTOOL" && DLLTOOL=dlltool
8534_LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl
8535
8536test -z "$OBJDUMP" && OBJDUMP=objdump
8537_LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl
8538])# win32-dll
8539
8540AU_DEFUN([AC_LIBTOOL_WIN32_DLL],
8541[AC_REQUIRE([AC_CANONICAL_HOST])dnl
8542_LT_SET_OPTION([LT_INIT], [win32-dll])
8543AC_DIAGNOSE([obsolete],
8544[$0: Remove this warning and the call to _LT_SET_OPTION when you
8545put the 'win32-dll' option into LT_INIT's first parameter.])
8546])
8547
8548dnl aclocal-1.4 backwards compatibility:
8549dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [])
8550
8551
8552# _LT_ENABLE_SHARED([DEFAULT])
8553# ----------------------------
8554# implement the --enable-shared flag, and supports the 'shared' and
8555# 'disable-shared' LT_INIT options.
8556# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.
8557m4_define([_LT_ENABLE_SHARED],
8558[m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl
8559AC_ARG_ENABLE([shared],
8560    [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
8561	[build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])],
8562    [p=${PACKAGE-default}
8563    case $enableval in
8564    yes) enable_shared=yes ;;
8565    no) enable_shared=no ;;
8566    *)
8567      enable_shared=no
8568      # Look at the argument we got.  We use all the common list separators.
8569      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
8570      for pkg in $enableval; do
8571	IFS=$lt_save_ifs
8572	if test "X$pkg" = "X$p"; then
8573	  enable_shared=yes
8574	fi
8575      done
8576      IFS=$lt_save_ifs
8577      ;;
8578    esac],
8579    [enable_shared=]_LT_ENABLE_SHARED_DEFAULT)
8580
8581    _LT_DECL([build_libtool_libs], [enable_shared], [0],
8582	[Whether or not to build shared libraries])
8583])# _LT_ENABLE_SHARED
8584
8585LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])])
8586LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])])
8587
8588# Old names:
8589AC_DEFUN([AC_ENABLE_SHARED],
8590[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
8591])
8592
8593AC_DEFUN([AC_DISABLE_SHARED],
8594[_LT_SET_OPTION([LT_INIT], [disable-shared])
8595])
8596
8597AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
8598AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
8599
8600dnl aclocal-1.4 backwards compatibility:
8601dnl AC_DEFUN([AM_ENABLE_SHARED], [])
8602dnl AC_DEFUN([AM_DISABLE_SHARED], [])
8603
8604
8605
8606# _LT_ENABLE_STATIC([DEFAULT])
8607# ----------------------------
8608# implement the --enable-static flag, and support the 'static' and
8609# 'disable-static' LT_INIT options.
8610# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.
8611m4_define([_LT_ENABLE_STATIC],
8612[m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl
8613AC_ARG_ENABLE([static],
8614    [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@],
8615	[build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])],
8616    [p=${PACKAGE-default}
8617    case $enableval in
8618    yes) enable_static=yes ;;
8619    no) enable_static=no ;;
8620    *)
8621     enable_static=no
8622      # Look at the argument we got.  We use all the common list separators.
8623      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
8624      for pkg in $enableval; do
8625	IFS=$lt_save_ifs
8626	if test "X$pkg" = "X$p"; then
8627	  enable_static=yes
8628	fi
8629      done
8630      IFS=$lt_save_ifs
8631      ;;
8632    esac],
8633    [enable_static=]_LT_ENABLE_STATIC_DEFAULT)
8634
8635    _LT_DECL([build_old_libs], [enable_static], [0],
8636	[Whether or not to build static libraries])
8637])# _LT_ENABLE_STATIC
8638
8639LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])])
8640LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])])
8641
8642# Old names:
8643AC_DEFUN([AC_ENABLE_STATIC],
8644[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
8645])
8646
8647AC_DEFUN([AC_DISABLE_STATIC],
8648[_LT_SET_OPTION([LT_INIT], [disable-static])
8649])
8650
8651AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
8652AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
8653
8654dnl aclocal-1.4 backwards compatibility:
8655dnl AC_DEFUN([AM_ENABLE_STATIC], [])
8656dnl AC_DEFUN([AM_DISABLE_STATIC], [])
8657
8658
8659
8660# _LT_ENABLE_FAST_INSTALL([DEFAULT])
8661# ----------------------------------
8662# implement the --enable-fast-install flag, and support the 'fast-install'
8663# and 'disable-fast-install' LT_INIT options.
8664# DEFAULT is either 'yes' or 'no'.  If omitted, it defaults to 'yes'.
8665m4_define([_LT_ENABLE_FAST_INSTALL],
8666[m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl
8667AC_ARG_ENABLE([fast-install],
8668    [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
8669    [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
8670    [p=${PACKAGE-default}
8671    case $enableval in
8672    yes) enable_fast_install=yes ;;
8673    no) enable_fast_install=no ;;
8674    *)
8675      enable_fast_install=no
8676      # Look at the argument we got.  We use all the common list separators.
8677      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
8678      for pkg in $enableval; do
8679	IFS=$lt_save_ifs
8680	if test "X$pkg" = "X$p"; then
8681	  enable_fast_install=yes
8682	fi
8683      done
8684      IFS=$lt_save_ifs
8685      ;;
8686    esac],
8687    [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT)
8688
8689_LT_DECL([fast_install], [enable_fast_install], [0],
8690	 [Whether or not to optimize for fast installation])dnl
8691])# _LT_ENABLE_FAST_INSTALL
8692
8693LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])])
8694LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])])
8695
8696# Old names:
8697AU_DEFUN([AC_ENABLE_FAST_INSTALL],
8698[_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
8699AC_DIAGNOSE([obsolete],
8700[$0: Remove this warning and the call to _LT_SET_OPTION when you put
8701the 'fast-install' option into LT_INIT's first parameter.])
8702])
8703
8704AU_DEFUN([AC_DISABLE_FAST_INSTALL],
8705[_LT_SET_OPTION([LT_INIT], [disable-fast-install])
8706AC_DIAGNOSE([obsolete],
8707[$0: Remove this warning and the call to _LT_SET_OPTION when you put
8708the 'disable-fast-install' option into LT_INIT's first parameter.])
8709])
8710
8711dnl aclocal-1.4 backwards compatibility:
8712dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], [])
8713dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], [])
8714
8715
8716# _LT_WITH_AIX_SONAME([DEFAULT])
8717# ----------------------------------
8718# implement the --with-aix-soname flag, and support the `aix-soname=aix'
8719# and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. DEFAULT
8720# is either `aix', `both' or `svr4'.  If omitted, it defaults to `aix'.
8721m4_define([_LT_WITH_AIX_SONAME],
8722[m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl
8723shared_archive_member_spec=
8724case $host,$enable_shared in
8725power*-*-aix[[5-9]]*,yes)
8726  AC_MSG_CHECKING([which variant of shared library versioning to provide])
8727  AC_ARG_WITH([aix-soname],
8728    [AS_HELP_STRING([--with-aix-soname=aix|svr4|both],
8729      [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])],
8730    [case $withval in
8731    aix|svr4|both)
8732      ;;
8733    *)
8734      AC_MSG_ERROR([Unknown argument to --with-aix-soname])
8735      ;;
8736    esac
8737    lt_cv_with_aix_soname=$with_aix_soname],
8738    [AC_CACHE_VAL([lt_cv_with_aix_soname],
8739      [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)
8740    with_aix_soname=$lt_cv_with_aix_soname])
8741  AC_MSG_RESULT([$with_aix_soname])
8742  if test aix != "$with_aix_soname"; then
8743    # For the AIX way of multilib, we name the shared archive member
8744    # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o',
8745    # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File.
8746    # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag,
8747    # the AIX toolchain works better with OBJECT_MODE set (default 32).
8748    if test 64 = "${OBJECT_MODE-32}"; then
8749      shared_archive_member_spec=shr_64
8750    else
8751      shared_archive_member_spec=shr
8752    fi
8753  fi
8754  ;;
8755*)
8756  with_aix_soname=aix
8757  ;;
8758esac
8759
8760_LT_DECL([], [shared_archive_member_spec], [0],
8761    [Shared archive member basename, for filename based shared library versioning on AIX])dnl
8762])# _LT_WITH_AIX_SONAME
8763
8764LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])])
8765LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])])
8766LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])])
8767
8768
8769# _LT_WITH_PIC([MODE])
8770# --------------------
8771# implement the --with-pic flag, and support the 'pic-only' and 'no-pic'
8772# LT_INIT options.
8773# MODE is either 'yes' or 'no'.  If omitted, it defaults to 'both'.
8774m4_define([_LT_WITH_PIC],
8775[AC_ARG_WITH([pic],
8776    [AS_HELP_STRING([--with-pic@<:@=PKGS@:>@],
8777	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
8778    [lt_p=${PACKAGE-default}
8779    case $withval in
8780    yes|no) pic_mode=$withval ;;
8781    *)
8782      pic_mode=default
8783      # Look at the argument we got.  We use all the common list separators.
8784      lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR,
8785      for lt_pkg in $withval; do
8786	IFS=$lt_save_ifs
8787	if test "X$lt_pkg" = "X$lt_p"; then
8788	  pic_mode=yes
8789	fi
8790      done
8791      IFS=$lt_save_ifs
8792      ;;
8793    esac],
8794    [pic_mode=m4_default([$1], [default])])
8795
8796_LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl
8797])# _LT_WITH_PIC
8798
8799LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])])
8800LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])])
8801
8802# Old name:
8803AU_DEFUN([AC_LIBTOOL_PICMODE],
8804[_LT_SET_OPTION([LT_INIT], [pic-only])
8805AC_DIAGNOSE([obsolete],
8806[$0: Remove this warning and the call to _LT_SET_OPTION when you
8807put the 'pic-only' option into LT_INIT's first parameter.])
8808])
8809
8810dnl aclocal-1.4 backwards compatibility:
8811dnl AC_DEFUN([AC_LIBTOOL_PICMODE], [])
8812
8813
8814m4_define([_LTDL_MODE], [])
8815LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive],
8816		 [m4_define([_LTDL_MODE], [nonrecursive])])
8817LT_OPTION_DEFINE([LTDL_INIT], [recursive],
8818		 [m4_define([_LTDL_MODE], [recursive])])
8819LT_OPTION_DEFINE([LTDL_INIT], [subproject],
8820		 [m4_define([_LTDL_MODE], [subproject])])
8821
8822m4_define([_LTDL_TYPE], [])
8823LT_OPTION_DEFINE([LTDL_INIT], [installable],
8824		 [m4_define([_LTDL_TYPE], [installable])])
8825LT_OPTION_DEFINE([LTDL_INIT], [convenience],
8826		 [m4_define([_LTDL_TYPE], [convenience])])
8827
8828# ltsugar.m4 -- libtool m4 base layer.                         -*-Autoconf-*-
8829#
8830# Copyright (C) 2004-2005, 2007-2008, 2011-2018 Free Software
8831# Foundation, Inc.
8832# Written by Gary V. Vaughan, 2004
8833#
8834# This file is free software; the Free Software Foundation gives
8835# unlimited permission to copy and/or distribute it, with or without
8836# modifications, as long as this notice is preserved.
8837
8838# serial 6 ltsugar.m4
8839
8840# This is to help aclocal find these macros, as it can't see m4_define.
8841AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
8842
8843
8844# lt_join(SEP, ARG1, [ARG2...])
8845# -----------------------------
8846# Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their
8847# associated separator.
8848# Needed until we can rely on m4_join from Autoconf 2.62, since all earlier
8849# versions in m4sugar had bugs.
8850m4_define([lt_join],
8851[m4_if([$#], [1], [],
8852       [$#], [2], [[$2]],
8853       [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])])
8854m4_define([_lt_join],
8855[m4_if([$#$2], [2], [],
8856       [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])])
8857
8858
8859# lt_car(LIST)
8860# lt_cdr(LIST)
8861# ------------
8862# Manipulate m4 lists.
8863# These macros are necessary as long as will still need to support
8864# Autoconf-2.59, which quotes differently.
8865m4_define([lt_car], [[$1]])
8866m4_define([lt_cdr],
8867[m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])],
8868       [$#], 1, [],
8869       [m4_dquote(m4_shift($@))])])
8870m4_define([lt_unquote], $1)
8871
8872
8873# lt_append(MACRO-NAME, STRING, [SEPARATOR])
8874# ------------------------------------------
8875# Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'.
8876# Note that neither SEPARATOR nor STRING are expanded; they are appended
8877# to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked).
8878# No SEPARATOR is output if MACRO-NAME was previously undefined (different
8879# than defined and empty).
8880#
8881# This macro is needed until we can rely on Autoconf 2.62, since earlier
8882# versions of m4sugar mistakenly expanded SEPARATOR but not STRING.
8883m4_define([lt_append],
8884[m4_define([$1],
8885	   m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])])
8886
8887
8888
8889# lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...])
8890# ----------------------------------------------------------
8891# Produce a SEP delimited list of all paired combinations of elements of
8892# PREFIX-LIST with SUFFIX1 through SUFFIXn.  Each element of the list
8893# has the form PREFIXmINFIXSUFFIXn.
8894# Needed until we can rely on m4_combine added in Autoconf 2.62.
8895m4_define([lt_combine],
8896[m4_if(m4_eval([$# > 3]), [1],
8897       [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl
8898[[m4_foreach([_Lt_prefix], [$2],
8899	     [m4_foreach([_Lt_suffix],
8900		]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[,
8901	[_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])])
8902
8903
8904# lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ])
8905# -----------------------------------------------------------------------
8906# Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited
8907# by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ.
8908m4_define([lt_if_append_uniq],
8909[m4_ifdef([$1],
8910	  [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1],
8911		 [lt_append([$1], [$2], [$3])$4],
8912		 [$5])],
8913	  [lt_append([$1], [$2], [$3])$4])])
8914
8915
8916# lt_dict_add(DICT, KEY, VALUE)
8917# -----------------------------
8918m4_define([lt_dict_add],
8919[m4_define([$1($2)], [$3])])
8920
8921
8922# lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE)
8923# --------------------------------------------
8924m4_define([lt_dict_add_subkey],
8925[m4_define([$1($2:$3)], [$4])])
8926
8927
8928# lt_dict_fetch(DICT, KEY, [SUBKEY])
8929# ----------------------------------
8930m4_define([lt_dict_fetch],
8931[m4_ifval([$3],
8932	m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]),
8933    m4_ifdef([$1($2)], [m4_defn([$1($2)])]))])
8934
8935
8936# lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE])
8937# -----------------------------------------------------------------
8938m4_define([lt_if_dict_fetch],
8939[m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4],
8940	[$5],
8941    [$6])])
8942
8943
8944# lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...])
8945# --------------------------------------------------------------
8946m4_define([lt_dict_filter],
8947[m4_if([$5], [], [],
8948  [lt_join(m4_quote(m4_default([$4], [[, ]])),
8949           lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]),
8950		      [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl
8951])
8952
8953# ltversion.m4 -- version numbers			-*- Autoconf -*-
8954#
8955#   Copyright (C) 2004, 2011-2018 Free Software Foundation, Inc.
8956#   Written by Scott James Remnant, 2004
8957#
8958# This file is free software; the Free Software Foundation gives
8959# unlimited permission to copy and/or distribute it, with or without
8960# modifications, as long as this notice is preserved.
8961
8962# @configure_input@
8963
8964# serial 4221 ltversion.m4
8965# This file is part of GNU Libtool
8966
8967m4_define([LT_PACKAGE_VERSION], [2.4.6.42-b88ce])
8968m4_define([LT_PACKAGE_REVISION], [2.4.6.42])
8969
8970AC_DEFUN([LTVERSION_VERSION],
8971[macro_version='2.4.6.42-b88ce'
8972macro_revision='2.4.6.42'
8973_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
8974_LT_DECL(, macro_revision, 0)
8975])
8976
8977# lt~obsolete.m4 -- aclocal satisfying obsolete definitions.    -*-Autoconf-*-
8978#
8979#   Copyright (C) 2004-2005, 2007, 2009, 2011-2018 Free Software
8980#   Foundation, Inc.
8981#   Written by Scott James Remnant, 2004.
8982#
8983# This file is free software; the Free Software Foundation gives
8984# unlimited permission to copy and/or distribute it, with or without
8985# modifications, as long as this notice is preserved.
8986
8987# serial 5 lt~obsolete.m4
8988
8989# These exist entirely to fool aclocal when bootstrapping libtool.
8990#
8991# In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN),
8992# which have later been changed to m4_define as they aren't part of the
8993# exported API, or moved to Autoconf or Automake where they belong.
8994#
8995# The trouble is, aclocal is a bit thick.  It'll see the old AC_DEFUN
8996# in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us
8997# using a macro with the same name in our local m4/libtool.m4 it'll
8998# pull the old libtool.m4 in (it doesn't see our shiny new m4_define
8999# and doesn't know about Autoconf macros at all.)
9000#
9001# So we provide this file, which has a silly filename so it's always
9002# included after everything else.  This provides aclocal with the
9003# AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything
9004# because those macros already exist, or will be overwritten later.
9005# We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6.
9006#
9007# Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here.
9008# Yes, that means every name once taken will need to remain here until
9009# we give up compatibility with versions before 1.7, at which point
9010# we need to keep only those names which we still refer to.
9011
9012# This is to help aclocal find these macros, as it can't see m4_define.
9013AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
9014
9015m4_ifndef([AC_LIBTOOL_LINKER_OPTION],	[AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])])
9016m4_ifndef([AC_PROG_EGREP],		[AC_DEFUN([AC_PROG_EGREP])])
9017m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH],	[AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])])
9018m4_ifndef([_LT_AC_SHELL_INIT],		[AC_DEFUN([_LT_AC_SHELL_INIT])])
9019m4_ifndef([_LT_AC_SYS_LIBPATH_AIX],	[AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])])
9020m4_ifndef([_LT_PROG_LTMAIN],		[AC_DEFUN([_LT_PROG_LTMAIN])])
9021m4_ifndef([_LT_AC_TAGVAR],		[AC_DEFUN([_LT_AC_TAGVAR])])
9022m4_ifndef([AC_LTDL_ENABLE_INSTALL],	[AC_DEFUN([AC_LTDL_ENABLE_INSTALL])])
9023m4_ifndef([AC_LTDL_PREOPEN],		[AC_DEFUN([AC_LTDL_PREOPEN])])
9024m4_ifndef([_LT_AC_SYS_COMPILER],	[AC_DEFUN([_LT_AC_SYS_COMPILER])])
9025m4_ifndef([_LT_AC_LOCK],		[AC_DEFUN([_LT_AC_LOCK])])
9026m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE],	[AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])])
9027m4_ifndef([_LT_AC_TRY_DLOPEN_SELF],	[AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])])
9028m4_ifndef([AC_LIBTOOL_PROG_CC_C_O],	[AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])])
9029m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])])
9030m4_ifndef([AC_LIBTOOL_OBJDIR],		[AC_DEFUN([AC_LIBTOOL_OBJDIR])])
9031m4_ifndef([AC_LTDL_OBJDIR],		[AC_DEFUN([AC_LTDL_OBJDIR])])
9032m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])])
9033m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP],	[AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])])
9034m4_ifndef([AC_PATH_MAGIC],		[AC_DEFUN([AC_PATH_MAGIC])])
9035m4_ifndef([AC_PROG_LD_GNU],		[AC_DEFUN([AC_PROG_LD_GNU])])
9036m4_ifndef([AC_PROG_LD_RELOAD_FLAG],	[AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])])
9037m4_ifndef([AC_DEPLIBS_CHECK_METHOD],	[AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])])
9038m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])])
9039m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])])
9040m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])])
9041m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS],	[AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])])
9042m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP],	[AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])])
9043m4_ifndef([LT_AC_PROG_EGREP],		[AC_DEFUN([LT_AC_PROG_EGREP])])
9044m4_ifndef([LT_AC_PROG_SED],		[AC_DEFUN([LT_AC_PROG_SED])])
9045m4_ifndef([_LT_CC_BASENAME],		[AC_DEFUN([_LT_CC_BASENAME])])
9046m4_ifndef([_LT_COMPILER_BOILERPLATE],	[AC_DEFUN([_LT_COMPILER_BOILERPLATE])])
9047m4_ifndef([_LT_LINKER_BOILERPLATE],	[AC_DEFUN([_LT_LINKER_BOILERPLATE])])
9048m4_ifndef([_AC_PROG_LIBTOOL],		[AC_DEFUN([_AC_PROG_LIBTOOL])])
9049m4_ifndef([AC_LIBTOOL_SETUP],		[AC_DEFUN([AC_LIBTOOL_SETUP])])
9050m4_ifndef([_LT_AC_CHECK_DLFCN],		[AC_DEFUN([_LT_AC_CHECK_DLFCN])])
9051m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER],	[AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])])
9052m4_ifndef([_LT_AC_TAGCONFIG],		[AC_DEFUN([_LT_AC_TAGCONFIG])])
9053m4_ifndef([AC_DISABLE_FAST_INSTALL],	[AC_DEFUN([AC_DISABLE_FAST_INSTALL])])
9054m4_ifndef([_LT_AC_LANG_CXX],		[AC_DEFUN([_LT_AC_LANG_CXX])])
9055m4_ifndef([_LT_AC_LANG_F77],		[AC_DEFUN([_LT_AC_LANG_F77])])
9056m4_ifndef([_LT_AC_LANG_GCJ],		[AC_DEFUN([_LT_AC_LANG_GCJ])])
9057m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])])
9058m4_ifndef([_LT_AC_LANG_C_CONFIG],	[AC_DEFUN([_LT_AC_LANG_C_CONFIG])])
9059m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])])
9060m4_ifndef([_LT_AC_LANG_CXX_CONFIG],	[AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])])
9061m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])])
9062m4_ifndef([_LT_AC_LANG_F77_CONFIG],	[AC_DEFUN([_LT_AC_LANG_F77_CONFIG])])
9063m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])])
9064m4_ifndef([_LT_AC_LANG_GCJ_CONFIG],	[AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])])
9065m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG],	[AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])])
9066m4_ifndef([_LT_AC_LANG_RC_CONFIG],	[AC_DEFUN([_LT_AC_LANG_RC_CONFIG])])
9067m4_ifndef([AC_LIBTOOL_CONFIG],		[AC_DEFUN([AC_LIBTOOL_CONFIG])])
9068m4_ifndef([_LT_AC_FILE_LTDLL_C],	[AC_DEFUN([_LT_AC_FILE_LTDLL_C])])
9069m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS],	[AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])])
9070m4_ifndef([_LT_AC_PROG_CXXCPP],		[AC_DEFUN([_LT_AC_PROG_CXXCPP])])
9071m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS],	[AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])])
9072m4_ifndef([_LT_PROG_ECHO_BACKSLASH],	[AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])])
9073m4_ifndef([_LT_PROG_F77],		[AC_DEFUN([_LT_PROG_F77])])
9074m4_ifndef([_LT_PROG_FC],		[AC_DEFUN([_LT_PROG_FC])])
9075m4_ifndef([_LT_PROG_CXX],		[AC_DEFUN([_LT_PROG_CXX])])
9076
9077# pkg.m4 - Macros to locate and utilise pkg-config.   -*- Autoconf -*-
9078# serial 11 (pkg-config-0.29.1)
9079
9080dnl Copyright © 2004 Scott James Remnant <scott@netsplit.com>.
9081dnl Copyright © 2012-2015 Dan Nicholson <dbn.lists@gmail.com>
9082dnl
9083dnl This program is free software; you can redistribute it and/or modify
9084dnl it under the terms of the GNU General Public License as published by
9085dnl the Free Software Foundation; either version 2 of the License, or
9086dnl (at your option) any later version.
9087dnl
9088dnl This program is distributed in the hope that it will be useful, but
9089dnl WITHOUT ANY WARRANTY; without even the implied warranty of
9090dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
9091dnl General Public License for more details.
9092dnl
9093dnl You should have received a copy of the GNU General Public License
9094dnl along with this program; if not, write to the Free Software
9095dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
9096dnl 02111-1307, USA.
9097dnl
9098dnl As a special exception to the GNU General Public License, if you
9099dnl distribute this file as part of a program that contains a
9100dnl configuration script generated by Autoconf, you may include it under
9101dnl the same distribution terms that you use for the rest of that
9102dnl program.
9103
9104dnl PKG_PREREQ(MIN-VERSION)
9105dnl -----------------------
9106dnl Since: 0.29
9107dnl
9108dnl Verify that the version of the pkg-config macros are at least
9109dnl MIN-VERSION. Unlike PKG_PROG_PKG_CONFIG, which checks the user's
9110dnl installed version of pkg-config, this checks the developer's version
9111dnl of pkg.m4 when generating configure.
9112dnl
9113dnl To ensure that this macro is defined, also add:
9114dnl m4_ifndef([PKG_PREREQ],
9115dnl     [m4_fatal([must install pkg-config 0.29 or later before running autoconf/autogen])])
9116dnl
9117dnl See the "Since" comment for each macro you use to see what version
9118dnl of the macros you require.
9119m4_defun([PKG_PREREQ],
9120[m4_define([PKG_MACROS_VERSION], [0.29.1])
9121m4_if(m4_version_compare(PKG_MACROS_VERSION, [$1]), -1,
9122    [m4_fatal([pkg.m4 version $1 or higher is required but ]PKG_MACROS_VERSION[ found])])
9123])dnl PKG_PREREQ
9124
9125dnl PKG_PROG_PKG_CONFIG([MIN-VERSION])
9126dnl ----------------------------------
9127dnl Since: 0.16
9128dnl
9129dnl Search for the pkg-config tool and set the PKG_CONFIG variable to
9130dnl first found in the path. Checks that the version of pkg-config found
9131dnl is at least MIN-VERSION. If MIN-VERSION is not specified, 0.9.0 is
9132dnl used since that's the first version where most current features of
9133dnl pkg-config existed.
9134AC_DEFUN([PKG_PROG_PKG_CONFIG],
9135[m4_pattern_forbid([^_?PKG_[A-Z_]+$])
9136m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
9137m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
9138AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
9139AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
9140AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
9141
9142if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
9143	AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
9144fi
9145if test -n "$PKG_CONFIG"; then
9146	_pkg_min_version=m4_default([$1], [0.9.0])
9147	AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
9148	if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
9149		AC_MSG_RESULT([yes])
9150	else
9151		AC_MSG_RESULT([no])
9152		PKG_CONFIG=""
9153	fi
9154fi[]dnl
9155])dnl PKG_PROG_PKG_CONFIG
9156
9157dnl PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
9158dnl -------------------------------------------------------------------
9159dnl Since: 0.18
9160dnl
9161dnl Check to see whether a particular set of modules exists. Similar to
9162dnl PKG_CHECK_MODULES(), but does not set variables or print errors.
9163dnl
9164dnl Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG])
9165dnl only at the first occurence in configure.ac, so if the first place
9166dnl it's called might be skipped (such as if it is within an "if", you
9167dnl have to call PKG_CHECK_EXISTS manually
9168AC_DEFUN([PKG_CHECK_EXISTS],
9169[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
9170if test -n "$PKG_CONFIG" && \
9171    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
9172  m4_default([$2], [:])
9173m4_ifvaln([$3], [else
9174  $3])dnl
9175fi])
9176
9177dnl _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES])
9178dnl ---------------------------------------------
9179dnl Internal wrapper calling pkg-config via PKG_CONFIG and setting
9180dnl pkg_failed based on the result.
9181m4_define([_PKG_CONFIG],
9182[if test -n "$$1"; then
9183    pkg_cv_[]$1="$$1"
9184 elif test -n "$PKG_CONFIG"; then
9185    PKG_CHECK_EXISTS([$3],
9186                     [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`
9187		      test "x$?" != "x0" && pkg_failed=yes ],
9188		     [pkg_failed=yes])
9189 else
9190    pkg_failed=untried
9191fi[]dnl
9192])dnl _PKG_CONFIG
9193
9194dnl _PKG_SHORT_ERRORS_SUPPORTED
9195dnl ---------------------------
9196dnl Internal check to see if pkg-config supports short errors.
9197AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED],
9198[AC_REQUIRE([PKG_PROG_PKG_CONFIG])
9199if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
9200        _pkg_short_errors_supported=yes
9201else
9202        _pkg_short_errors_supported=no
9203fi[]dnl
9204])dnl _PKG_SHORT_ERRORS_SUPPORTED
9205
9206
9207dnl PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
9208dnl   [ACTION-IF-NOT-FOUND])
9209dnl --------------------------------------------------------------
9210dnl Since: 0.4.0
9211dnl
9212dnl Note that if there is a possibility the first call to
9213dnl PKG_CHECK_MODULES might not happen, you should be sure to include an
9214dnl explicit call to PKG_PROG_PKG_CONFIG in your configure.ac
9215AC_DEFUN([PKG_CHECK_MODULES],
9216[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
9217AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
9218AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
9219
9220pkg_failed=no
9221AC_MSG_CHECKING([for $1])
9222
9223_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
9224_PKG_CONFIG([$1][_LIBS], [libs], [$2])
9225
9226m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
9227and $1[]_LIBS to avoid the need to call pkg-config.
9228See the pkg-config man page for more details.])
9229
9230if test $pkg_failed = yes; then
9231   	AC_MSG_RESULT([no])
9232        _PKG_SHORT_ERRORS_SUPPORTED
9233        if test $_pkg_short_errors_supported = yes; then
9234	        $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
9235        else 
9236	        $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
9237        fi
9238	# Put the nasty error message in config.log where it belongs
9239	echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
9240
9241	m4_default([$4], [AC_MSG_ERROR(
9242[Package requirements ($2) were not met:
9243
9244$$1_PKG_ERRORS
9245
9246Consider adjusting the PKG_CONFIG_PATH environment variable if you
9247installed software in a non-standard prefix.
9248
9249_PKG_TEXT])[]dnl
9250        ])
9251elif test $pkg_failed = untried; then
9252     	AC_MSG_RESULT([no])
9253	m4_default([$4], [AC_MSG_FAILURE(
9254[The pkg-config script could not be found or is too old.  Make sure it
9255is in your PATH or set the PKG_CONFIG environment variable to the full
9256path to pkg-config.
9257
9258_PKG_TEXT
9259
9260To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
9261        ])
9262else
9263	$1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
9264	$1[]_LIBS=$pkg_cv_[]$1[]_LIBS
9265        AC_MSG_RESULT([yes])
9266	$3
9267fi[]dnl
9268])dnl PKG_CHECK_MODULES
9269
9270
9271dnl PKG_CHECK_MODULES_STATIC(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND],
9272dnl   [ACTION-IF-NOT-FOUND])
9273dnl ---------------------------------------------------------------------
9274dnl Since: 0.29
9275dnl
9276dnl Checks for existence of MODULES and gathers its build flags with
9277dnl static libraries enabled. Sets VARIABLE-PREFIX_CFLAGS from --cflags
9278dnl and VARIABLE-PREFIX_LIBS from --libs.
9279dnl
9280dnl Note that if there is a possibility the first call to
9281dnl PKG_CHECK_MODULES_STATIC might not happen, you should be sure to
9282dnl include an explicit call to PKG_PROG_PKG_CONFIG in your
9283dnl configure.ac.
9284AC_DEFUN([PKG_CHECK_MODULES_STATIC],
9285[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
9286_save_PKG_CONFIG=$PKG_CONFIG
9287PKG_CONFIG="$PKG_CONFIG --static"
9288PKG_CHECK_MODULES($@)
9289PKG_CONFIG=$_save_PKG_CONFIG[]dnl
9290])dnl PKG_CHECK_MODULES_STATIC
9291
9292
9293dnl PKG_INSTALLDIR([DIRECTORY])
9294dnl -------------------------
9295dnl Since: 0.27
9296dnl
9297dnl Substitutes the variable pkgconfigdir as the location where a module
9298dnl should install pkg-config .pc files. By default the directory is
9299dnl $libdir/pkgconfig, but the default can be changed by passing
9300dnl DIRECTORY. The user can override through the --with-pkgconfigdir
9301dnl parameter.
9302AC_DEFUN([PKG_INSTALLDIR],
9303[m4_pushdef([pkg_default], [m4_default([$1], ['${libdir}/pkgconfig'])])
9304m4_pushdef([pkg_description],
9305    [pkg-config installation directory @<:@]pkg_default[@:>@])
9306AC_ARG_WITH([pkgconfigdir],
9307    [AS_HELP_STRING([--with-pkgconfigdir], pkg_description)],,
9308    [with_pkgconfigdir=]pkg_default)
9309AC_SUBST([pkgconfigdir], [$with_pkgconfigdir])
9310m4_popdef([pkg_default])
9311m4_popdef([pkg_description])
9312])dnl PKG_INSTALLDIR
9313
9314
9315dnl PKG_NOARCH_INSTALLDIR([DIRECTORY])
9316dnl --------------------------------
9317dnl Since: 0.27
9318dnl
9319dnl Substitutes the variable noarch_pkgconfigdir as the location where a
9320dnl module should install arch-independent pkg-config .pc files. By
9321dnl default the directory is $datadir/pkgconfig, but the default can be
9322dnl changed by passing DIRECTORY. The user can override through the
9323dnl --with-noarch-pkgconfigdir parameter.
9324AC_DEFUN([PKG_NOARCH_INSTALLDIR],
9325[m4_pushdef([pkg_default], [m4_default([$1], ['${datadir}/pkgconfig'])])
9326m4_pushdef([pkg_description],
9327    [pkg-config arch-independent installation directory @<:@]pkg_default[@:>@])
9328AC_ARG_WITH([noarch-pkgconfigdir],
9329    [AS_HELP_STRING([--with-noarch-pkgconfigdir], pkg_description)],,
9330    [with_noarch_pkgconfigdir=]pkg_default)
9331AC_SUBST([noarch_pkgconfigdir], [$with_noarch_pkgconfigdir])
9332m4_popdef([pkg_default])
9333m4_popdef([pkg_description])
9334])dnl PKG_NOARCH_INSTALLDIR
9335
9336
9337dnl PKG_CHECK_VAR(VARIABLE, MODULE, CONFIG-VARIABLE,
9338dnl [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND])
9339dnl -------------------------------------------
9340dnl Since: 0.28
9341dnl
9342dnl Retrieves the value of the pkg-config variable for the given module.
9343AC_DEFUN([PKG_CHECK_VAR],
9344[AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
9345AC_ARG_VAR([$1], [value of $3 for $2, overriding pkg-config])dnl
9346
9347_PKG_CONFIG([$1], [variable="][$3]["], [$2])
9348AS_VAR_COPY([$1], [pkg_cv_][$1])
9349
9350AS_VAR_IF([$1], [""], [$5], [$4])dnl
9351])dnl PKG_CHECK_VAR
9352
9353dnl PKG_WITH_MODULES(VARIABLE-PREFIX, MODULES,
9354dnl   [ACTION-IF-FOUND],[ACTION-IF-NOT-FOUND],
9355dnl   [DESCRIPTION], [DEFAULT])
9356dnl ------------------------------------------
9357dnl
9358dnl Prepare a "--with-" configure option using the lowercase
9359dnl [VARIABLE-PREFIX] name, merging the behaviour of AC_ARG_WITH and
9360dnl PKG_CHECK_MODULES in a single macro.
9361AC_DEFUN([PKG_WITH_MODULES],
9362[
9363m4_pushdef([with_arg], m4_tolower([$1]))
9364
9365m4_pushdef([description],
9366           [m4_default([$5], [build with ]with_arg[ support])])
9367
9368m4_pushdef([def_arg], [m4_default([$6], [auto])])
9369m4_pushdef([def_action_if_found], [AS_TR_SH([with_]with_arg)=yes])
9370m4_pushdef([def_action_if_not_found], [AS_TR_SH([with_]with_arg)=no])
9371
9372m4_case(def_arg,
9373            [yes],[m4_pushdef([with_without], [--without-]with_arg)],
9374            [m4_pushdef([with_without],[--with-]with_arg)])
9375
9376AC_ARG_WITH(with_arg,
9377     AS_HELP_STRING(with_without, description[ @<:@default=]def_arg[@:>@]),,
9378    [AS_TR_SH([with_]with_arg)=def_arg])
9379
9380AS_CASE([$AS_TR_SH([with_]with_arg)],
9381            [yes],[PKG_CHECK_MODULES([$1],[$2],$3,$4)],
9382            [auto],[PKG_CHECK_MODULES([$1],[$2],
9383                                        [m4_n([def_action_if_found]) $3],
9384                                        [m4_n([def_action_if_not_found]) $4])])
9385
9386m4_popdef([with_arg])
9387m4_popdef([description])
9388m4_popdef([def_arg])
9389
9390])dnl PKG_WITH_MODULES
9391
9392dnl PKG_HAVE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
9393dnl   [DESCRIPTION], [DEFAULT])
9394dnl -----------------------------------------------
9395dnl
9396dnl Convenience macro to trigger AM_CONDITIONAL after PKG_WITH_MODULES
9397dnl check._[VARIABLE-PREFIX] is exported as make variable.
9398AC_DEFUN([PKG_HAVE_WITH_MODULES],
9399[
9400PKG_WITH_MODULES([$1],[$2],,,[$3],[$4])
9401
9402AM_CONDITIONAL([HAVE_][$1],
9403               [test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"])
9404])dnl PKG_HAVE_WITH_MODULES
9405
9406dnl PKG_HAVE_DEFINE_WITH_MODULES(VARIABLE-PREFIX, MODULES,
9407dnl   [DESCRIPTION], [DEFAULT])
9408dnl ------------------------------------------------------
9409dnl
9410dnl Convenience macro to run AM_CONDITIONAL and AC_DEFINE after
9411dnl PKG_WITH_MODULES check. HAVE_[VARIABLE-PREFIX] is exported as make
9412dnl and preprocessor variable.
9413AC_DEFUN([PKG_HAVE_DEFINE_WITH_MODULES],
9414[
9415PKG_HAVE_WITH_MODULES([$1],[$2],[$3],[$4])
9416
9417AS_IF([test "$AS_TR_SH([with_]m4_tolower([$1]))" = "yes"],
9418        [AC_DEFINE([HAVE_][$1], 1, [Enable ]m4_tolower([$1])[ support])])
9419])dnl PKG_HAVE_DEFINE_WITH_MODULES
9420
9421# Copyright (C) 2002-2018 Free Software Foundation, Inc.
9422#
9423# This file is free software; the Free Software Foundation
9424# gives unlimited permission to copy and/or distribute it,
9425# with or without modifications, as long as this notice is preserved.
9426
9427# AM_AUTOMAKE_VERSION(VERSION)
9428# ----------------------------
9429# Automake X.Y traces this macro to ensure aclocal.m4 has been
9430# generated from the m4 files accompanying Automake X.Y.
9431# (This private macro should not be called outside this file.)
9432AC_DEFUN([AM_AUTOMAKE_VERSION],
9433[am__api_version='1.16'
9434dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
9435dnl require some minimum version.  Point them to the right macro.
9436m4_if([$1], [1.16.1], [],
9437      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
9438])
9439
9440# _AM_AUTOCONF_VERSION(VERSION)
9441# -----------------------------
9442# aclocal traces this macro to find the Autoconf version.
9443# This is a private macro too.  Using m4_define simplifies
9444# the logic in aclocal, which can simply ignore this definition.
9445m4_define([_AM_AUTOCONF_VERSION], [])
9446
9447# AM_SET_CURRENT_AUTOMAKE_VERSION
9448# -------------------------------
9449# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
9450# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
9451AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
9452[AM_AUTOMAKE_VERSION([1.16.1])dnl
9453m4_ifndef([AC_AUTOCONF_VERSION],
9454  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
9455_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
9456
9457# AM_AUX_DIR_EXPAND                                         -*- Autoconf -*-
9458
9459# Copyright (C) 2001-2018 Free Software Foundation, Inc.
9460#
9461# This file is free software; the Free Software Foundation
9462# gives unlimited permission to copy and/or distribute it,
9463# with or without modifications, as long as this notice is preserved.
9464
9465# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
9466# $ac_aux_dir to '$srcdir/foo'.  In other projects, it is set to
9467# '$srcdir', '$srcdir/..', or '$srcdir/../..'.
9468#
9469# Of course, Automake must honor this variable whenever it calls a
9470# tool from the auxiliary directory.  The problem is that $srcdir (and
9471# therefore $ac_aux_dir as well) can be either absolute or relative,
9472# depending on how configure is run.  This is pretty annoying, since
9473# it makes $ac_aux_dir quite unusable in subdirectories: in the top
9474# source directory, any form will work fine, but in subdirectories a
9475# relative path needs to be adjusted first.
9476#
9477# $ac_aux_dir/missing
9478#    fails when called from a subdirectory if $ac_aux_dir is relative
9479# $top_srcdir/$ac_aux_dir/missing
9480#    fails if $ac_aux_dir is absolute,
9481#    fails when called from a subdirectory in a VPATH build with
9482#          a relative $ac_aux_dir
9483#
9484# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
9485# are both prefixed by $srcdir.  In an in-source build this is usually
9486# harmless because $srcdir is '.', but things will broke when you
9487# start a VPATH build or use an absolute $srcdir.
9488#
9489# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
9490# iff we strip the leading $srcdir from $ac_aux_dir.  That would be:
9491#   am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
9492# and then we would define $MISSING as
9493#   MISSING="\${SHELL} $am_aux_dir/missing"
9494# This will work as long as MISSING is not called from configure, because
9495# unfortunately $(top_srcdir) has no meaning in configure.
9496# However there are other variables, like CC, which are often used in
9497# configure, and could therefore not use this "fixed" $ac_aux_dir.
9498#
9499# Another solution, used here, is to always expand $ac_aux_dir to an
9500# absolute PATH.  The drawback is that using absolute paths prevent a
9501# configured tree to be moved without reconfiguration.
9502
9503AC_DEFUN([AM_AUX_DIR_EXPAND],
9504[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
9505# Expand $ac_aux_dir to an absolute path.
9506am_aux_dir=`cd "$ac_aux_dir" && pwd`
9507])
9508
9509# AM_CONDITIONAL                                            -*- Autoconf -*-
9510
9511# Copyright (C) 1997-2018 Free Software Foundation, Inc.
9512#
9513# This file is free software; the Free Software Foundation
9514# gives unlimited permission to copy and/or distribute it,
9515# with or without modifications, as long as this notice is preserved.
9516
9517# AM_CONDITIONAL(NAME, SHELL-CONDITION)
9518# -------------------------------------
9519# Define a conditional.
9520AC_DEFUN([AM_CONDITIONAL],
9521[AC_PREREQ([2.52])dnl
9522 m4_if([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
9523       [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
9524AC_SUBST([$1_TRUE])dnl
9525AC_SUBST([$1_FALSE])dnl
9526_AM_SUBST_NOTMAKE([$1_TRUE])dnl
9527_AM_SUBST_NOTMAKE([$1_FALSE])dnl
9528m4_define([_AM_COND_VALUE_$1], [$2])dnl
9529if $2; then
9530  $1_TRUE=
9531  $1_FALSE='#'
9532else
9533  $1_TRUE='#'
9534  $1_FALSE=
9535fi
9536AC_CONFIG_COMMANDS_PRE(
9537[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
9538  AC_MSG_ERROR([[conditional "$1" was never defined.
9539Usually this means the macro was only invoked conditionally.]])
9540fi])])
9541
9542# Copyright (C) 1999-2018 Free Software Foundation, Inc.
9543#
9544# This file is free software; the Free Software Foundation
9545# gives unlimited permission to copy and/or distribute it,
9546# with or without modifications, as long as this notice is preserved.
9547
9548
9549# There are a few dirty hacks below to avoid letting 'AC_PROG_CC' be
9550# written in clear, in which case automake, when reading aclocal.m4,
9551# will think it sees a *use*, and therefore will trigger all it's
9552# C support machinery.  Also note that it means that autoscan, seeing
9553# CC etc. in the Makefile, will ask for an AC_PROG_CC use...
9554
9555
9556# _AM_DEPENDENCIES(NAME)
9557# ----------------------
9558# See how the compiler implements dependency checking.
9559# NAME is "CC", "CXX", "OBJC", "OBJCXX", "UPC", or "GJC".
9560# We try a few techniques and use that to set a single cache variable.
9561#
9562# We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was
9563# modified to invoke _AM_DEPENDENCIES(CC); we would have a circular
9564# dependency, and given that the user is not expected to run this macro,
9565# just rely on AC_PROG_CC.
9566AC_DEFUN([_AM_DEPENDENCIES],
9567[AC_REQUIRE([AM_SET_DEPDIR])dnl
9568AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
9569AC_REQUIRE([AM_MAKE_INCLUDE])dnl
9570AC_REQUIRE([AM_DEP_TRACK])dnl
9571
9572m4_if([$1], [CC],   [depcc="$CC"   am_compiler_list=],
9573      [$1], [CXX],  [depcc="$CXX"  am_compiler_list=],
9574      [$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
9575      [$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
9576      [$1], [UPC],  [depcc="$UPC"  am_compiler_list=],
9577      [$1], [GCJ],  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
9578                    [depcc="$$1"   am_compiler_list=])
9579
9580AC_CACHE_CHECK([dependency style of $depcc],
9581               [am_cv_$1_dependencies_compiler_type],
9582[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
9583  # We make a subdir and do the tests there.  Otherwise we can end up
9584  # making bogus files that we don't know about and never remove.  For
9585  # instance it was reported that on HP-UX the gcc test will end up
9586  # making a dummy file named 'D' -- because '-MD' means "put the output
9587  # in D".
9588  rm -rf conftest.dir
9589  mkdir conftest.dir
9590  # Copy depcomp to subdir because otherwise we won't find it if we're
9591  # using a relative directory.
9592  cp "$am_depcomp" conftest.dir
9593  cd conftest.dir
9594  # We will build objects and dependencies in a subdirectory because
9595  # it helps to detect inapplicable dependency modes.  For instance
9596  # both Tru64's cc and ICC support -MD to output dependencies as a
9597  # side effect of compilation, but ICC will put the dependencies in
9598  # the current directory while Tru64 will put them in the object
9599  # directory.
9600  mkdir sub
9601
9602  am_cv_$1_dependencies_compiler_type=none
9603  if test "$am_compiler_list" = ""; then
9604     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
9605  fi
9606  am__universal=false
9607  m4_case([$1], [CC],
9608    [case " $depcc " in #(
9609     *\ -arch\ *\ -arch\ *) am__universal=true ;;
9610     esac],
9611    [CXX],
9612    [case " $depcc " in #(
9613     *\ -arch\ *\ -arch\ *) am__universal=true ;;
9614     esac])
9615
9616  for depmode in $am_compiler_list; do
9617    # Setup a source with many dependencies, because some compilers
9618    # like to wrap large dependency lists on column 80 (with \), and
9619    # we should not choose a depcomp mode which is confused by this.
9620    #
9621    # We need to recreate these files for each test, as the compiler may
9622    # overwrite some of them when testing with obscure command lines.
9623    # This happens at least with the AIX C compiler.
9624    : > sub/conftest.c
9625    for i in 1 2 3 4 5 6; do
9626      echo '#include "conftst'$i'.h"' >> sub/conftest.c
9627      # Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
9628      # Solaris 10 /bin/sh.
9629      echo '/* dummy */' > sub/conftst$i.h
9630    done
9631    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
9632
9633    # We check with '-c' and '-o' for the sake of the "dashmstdout"
9634    # mode.  It turns out that the SunPro C++ compiler does not properly
9635    # handle '-M -o', and we need to detect this.  Also, some Intel
9636    # versions had trouble with output in subdirs.
9637    am__obj=sub/conftest.${OBJEXT-o}
9638    am__minus_obj="-o $am__obj"
9639    case $depmode in
9640    gcc)
9641      # This depmode causes a compiler race in universal mode.
9642      test "$am__universal" = false || continue
9643      ;;
9644    nosideeffect)
9645      # After this tag, mechanisms are not by side-effect, so they'll
9646      # only be used when explicitly requested.
9647      if test "x$enable_dependency_tracking" = xyes; then
9648	continue
9649      else
9650	break
9651      fi
9652      ;;
9653    msvc7 | msvc7msys | msvisualcpp | msvcmsys)
9654      # This compiler won't grok '-c -o', but also, the minuso test has
9655      # not run yet.  These depmodes are late enough in the game, and
9656      # so weak that their functioning should not be impacted.
9657      am__obj=conftest.${OBJEXT-o}
9658      am__minus_obj=
9659      ;;
9660    none) break ;;
9661    esac
9662    if depmode=$depmode \
9663       source=sub/conftest.c object=$am__obj \
9664       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
9665       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
9666         >/dev/null 2>conftest.err &&
9667       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
9668       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
9669       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
9670       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
9671      # icc doesn't choke on unknown options, it will just issue warnings
9672      # or remarks (even with -Werror).  So we grep stderr for any message
9673      # that says an option was ignored or not supported.
9674      # When given -MP, icc 7.0 and 7.1 complain thusly:
9675      #   icc: Command line warning: ignoring option '-M'; no argument required
9676      # The diagnosis changed in icc 8.0:
9677      #   icc: Command line remark: option '-MP' not supported
9678      if (grep 'ignoring option' conftest.err ||
9679          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
9680        am_cv_$1_dependencies_compiler_type=$depmode
9681        break
9682      fi
9683    fi
9684  done
9685
9686  cd ..
9687  rm -rf conftest.dir
9688else
9689  am_cv_$1_dependencies_compiler_type=none
9690fi
9691])
9692AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
9693AM_CONDITIONAL([am__fastdep$1], [
9694  test "x$enable_dependency_tracking" != xno \
9695  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
9696])
9697
9698
9699# AM_SET_DEPDIR
9700# -------------
9701# Choose a directory name for dependency files.
9702# This macro is AC_REQUIREd in _AM_DEPENDENCIES.
9703AC_DEFUN([AM_SET_DEPDIR],
9704[AC_REQUIRE([AM_SET_LEADING_DOT])dnl
9705AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
9706])
9707
9708
9709# AM_DEP_TRACK
9710# ------------
9711AC_DEFUN([AM_DEP_TRACK],
9712[AC_ARG_ENABLE([dependency-tracking], [dnl
9713AS_HELP_STRING(
9714  [--enable-dependency-tracking],
9715  [do not reject slow dependency extractors])
9716AS_HELP_STRING(
9717  [--disable-dependency-tracking],
9718  [speeds up one-time build])])
9719if test "x$enable_dependency_tracking" != xno; then
9720  am_depcomp="$ac_aux_dir/depcomp"
9721  AMDEPBACKSLASH='\'
9722  am__nodep='_no'
9723fi
9724AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
9725AC_SUBST([AMDEPBACKSLASH])dnl
9726_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
9727AC_SUBST([am__nodep])dnl
9728_AM_SUBST_NOTMAKE([am__nodep])dnl
9729])
9730
9731# Generate code to set up dependency tracking.              -*- Autoconf -*-
9732
9733# Copyright (C) 1999-2018 Free Software Foundation, Inc.
9734#
9735# This file is free software; the Free Software Foundation
9736# gives unlimited permission to copy and/or distribute it,
9737# with or without modifications, as long as this notice is preserved.
9738
9739# _AM_OUTPUT_DEPENDENCY_COMMANDS
9740# ------------------------------
9741AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
9742[{
9743  # Older Autoconf quotes --file arguments for eval, but not when files
9744  # are listed without --file.  Let's play safe and only enable the eval
9745  # if we detect the quoting.
9746  # TODO: see whether this extra hack can be removed once we start
9747  # requiring Autoconf 2.70 or later.
9748  AS_CASE([$CONFIG_FILES],
9749          [*\'*], [eval set x "$CONFIG_FILES"],
9750          [*], [set x $CONFIG_FILES])
9751  shift
9752  # Used to flag and report bootstrapping failures.
9753  am_rc=0
9754  for am_mf
9755  do
9756    # Strip MF so we end up with the name of the file.
9757    am_mf=`AS_ECHO(["$am_mf"]) | sed -e 's/:.*$//'`
9758    # Check whether this is an Automake generated Makefile which includes
9759    # dependency-tracking related rules and includes.
9760    # Grep'ing the whole file directly is not great: AIX grep has a line
9761    # limit of 2048, but all sed's we know have understand at least 4000.
9762    sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \
9763      || continue
9764    am_dirpart=`AS_DIRNAME(["$am_mf"])`
9765    am_filepart=`AS_BASENAME(["$am_mf"])`
9766    AM_RUN_LOG([cd "$am_dirpart" \
9767      && sed -e '/# am--include-marker/d' "$am_filepart" \
9768        | $MAKE -f - am--depfiles]) || am_rc=$?
9769  done
9770  if test $am_rc -ne 0; then
9771    AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
9772    for automatic dependency tracking.  Try re-running configure with the
9773    '--disable-dependency-tracking' option to at least be able to build
9774    the package (albeit without support for automatic dependency tracking).])
9775  fi
9776  AS_UNSET([am_dirpart])
9777  AS_UNSET([am_filepart])
9778  AS_UNSET([am_mf])
9779  AS_UNSET([am_rc])
9780  rm -f conftest-deps.mk
9781}
9782])# _AM_OUTPUT_DEPENDENCY_COMMANDS
9783
9784
9785# AM_OUTPUT_DEPENDENCY_COMMANDS
9786# -----------------------------
9787# This macro should only be invoked once -- use via AC_REQUIRE.
9788#
9789# This code is only required when automatic dependency tracking is enabled.
9790# This creates each '.Po' and '.Plo' makefile fragment that we'll need in
9791# order to bootstrap the dependency handling code.
9792AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
9793[AC_CONFIG_COMMANDS([depfiles],
9794     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
9795     [AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}"])])
9796
9797# Do all the work for Automake.                             -*- Autoconf -*-
9798
9799# Copyright (C) 1996-2018 Free Software Foundation, Inc.
9800#
9801# This file is free software; the Free Software Foundation
9802# gives unlimited permission to copy and/or distribute it,
9803# with or without modifications, as long as this notice is preserved.
9804
9805# This macro actually does too much.  Some checks are only needed if
9806# your package does certain things.  But this isn't really a big deal.
9807
9808dnl Redefine AC_PROG_CC to automatically invoke _AM_PROG_CC_C_O.
9809m4_define([AC_PROG_CC],
9810m4_defn([AC_PROG_CC])
9811[_AM_PROG_CC_C_O
9812])
9813
9814# AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE])
9815# AM_INIT_AUTOMAKE([OPTIONS])
9816# -----------------------------------------------
9817# The call with PACKAGE and VERSION arguments is the old style
9818# call (pre autoconf-2.50), which is being phased out.  PACKAGE
9819# and VERSION should now be passed to AC_INIT and removed from
9820# the call to AM_INIT_AUTOMAKE.
9821# We support both call styles for the transition.  After
9822# the next Automake release, Autoconf can make the AC_INIT
9823# arguments mandatory, and then we can depend on a new Autoconf
9824# release and drop the old call support.
9825AC_DEFUN([AM_INIT_AUTOMAKE],
9826[AC_PREREQ([2.65])dnl
9827dnl Autoconf wants to disallow AM_ names.  We explicitly allow
9828dnl the ones we care about.
9829m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
9830AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
9831AC_REQUIRE([AC_PROG_INSTALL])dnl
9832if test "`cd $srcdir && pwd`" != "`pwd`"; then
9833  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
9834  # is not polluted with repeated "-I."
9835  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
9836  # test to see if srcdir already configured
9837  if test -f $srcdir/config.status; then
9838    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
9839  fi
9840fi
9841
9842# test whether we have cygpath
9843if test -z "$CYGPATH_W"; then
9844  if (cygpath --version) >/dev/null 2>/dev/null; then
9845    CYGPATH_W='cygpath -w'
9846  else
9847    CYGPATH_W=echo
9848  fi
9849fi
9850AC_SUBST([CYGPATH_W])
9851
9852# Define the identity of the package.
9853dnl Distinguish between old-style and new-style calls.
9854m4_ifval([$2],
9855[AC_DIAGNOSE([obsolete],
9856             [$0: two- and three-arguments forms are deprecated.])
9857m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
9858 AC_SUBST([PACKAGE], [$1])dnl
9859 AC_SUBST([VERSION], [$2])],
9860[_AM_SET_OPTIONS([$1])dnl
9861dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
9862m4_if(
9863  m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
9864  [ok:ok],,
9865  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
9866 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
9867 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
9868
9869_AM_IF_OPTION([no-define],,
9870[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
9871 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
9872
9873# Some tools Automake needs.
9874AC_REQUIRE([AM_SANITY_CHECK])dnl
9875AC_REQUIRE([AC_ARG_PROGRAM])dnl
9876AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
9877AM_MISSING_PROG([AUTOCONF], [autoconf])
9878AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
9879AM_MISSING_PROG([AUTOHEADER], [autoheader])
9880AM_MISSING_PROG([MAKEINFO], [makeinfo])
9881AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
9882AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
9883AC_REQUIRE([AC_PROG_MKDIR_P])dnl
9884# For better backward compatibility.  To be removed once Automake 1.9.x
9885# dies out for good.  For more background, see:
9886# <https://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
9887# <https://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
9888AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
9889# We need awk for the "check" target (and possibly the TAP driver).  The
9890# system "awk" is bad on some platforms.
9891AC_REQUIRE([AC_PROG_AWK])dnl
9892AC_REQUIRE([AC_PROG_MAKE_SET])dnl
9893AC_REQUIRE([AM_SET_LEADING_DOT])dnl
9894_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
9895	      [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
9896			     [_AM_PROG_TAR([v7])])])
9897_AM_IF_OPTION([no-dependencies],,
9898[AC_PROVIDE_IFELSE([AC_PROG_CC],
9899		  [_AM_DEPENDENCIES([CC])],
9900		  [m4_define([AC_PROG_CC],
9901			     m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
9902AC_PROVIDE_IFELSE([AC_PROG_CXX],
9903		  [_AM_DEPENDENCIES([CXX])],
9904		  [m4_define([AC_PROG_CXX],
9905			     m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
9906AC_PROVIDE_IFELSE([AC_PROG_OBJC],
9907		  [_AM_DEPENDENCIES([OBJC])],
9908		  [m4_define([AC_PROG_OBJC],
9909			     m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
9910AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
9911		  [_AM_DEPENDENCIES([OBJCXX])],
9912		  [m4_define([AC_PROG_OBJCXX],
9913			     m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
9914])
9915AC_REQUIRE([AM_SILENT_RULES])dnl
9916dnl The testsuite driver may need to know about EXEEXT, so add the
9917dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This
9918dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
9919AC_CONFIG_COMMANDS_PRE(dnl
9920[m4_provide_if([_AM_COMPILER_EXEEXT],
9921  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
9922
9923# POSIX will say in a future version that running "rm -f" with no argument
9924# is OK; and we want to be able to make that assumption in our Makefile
9925# recipes.  So use an aggressive probe to check that the usage we want is
9926# actually supported "in the wild" to an acceptable degree.
9927# See automake bug#10828.
9928# To make any issue more visible, cause the running configure to be aborted
9929# by default if the 'rm' program in use doesn't match our expectations; the
9930# user can still override this though.
9931if rm -f && rm -fr && rm -rf; then : OK; else
9932  cat >&2 <<'END'
9933Oops!
9934
9935Your 'rm' program seems unable to run without file operands specified
9936on the command line, even when the '-f' option is present.  This is contrary
9937to the behaviour of most rm programs out there, and not conforming with
9938the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
9939
9940Please tell bug-automake@gnu.org about your system, including the value
9941of your $PATH and any error possibly output before this message.  This
9942can help us improve future automake versions.
9943
9944END
9945  if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
9946    echo 'Configuration will proceed anyway, since you have set the' >&2
9947    echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
9948    echo >&2
9949  else
9950    cat >&2 <<'END'
9951Aborting the configuration process, to ensure you take notice of the issue.
9952
9953You can download and install GNU coreutils to get an 'rm' implementation
9954that behaves properly: <https://www.gnu.org/software/coreutils/>.
9955
9956If you want to complete the configuration process using your problematic
9957'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
9958to "yes", and re-run configure.
9959
9960END
9961    AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
9962  fi
9963fi
9964dnl The trailing newline in this macro's definition is deliberate, for
9965dnl backward compatibility and to allow trailing 'dnl'-style comments
9966dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
9967])
9968
9969dnl Hook into '_AC_COMPILER_EXEEXT' early to learn its expansion.  Do not
9970dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further
9971dnl mangled by Autoconf and run in a shell conditional statement.
9972m4_define([_AC_COMPILER_EXEEXT],
9973m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])])
9974
9975# When config.status generates a header, we must update the stamp-h file.
9976# This file resides in the same directory as the config header
9977# that is generated.  The stamp files are numbered to have different names.
9978
9979# Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the
9980# loop where config.status creates the headers, so we can generate
9981# our stamp files there.
9982AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK],
9983[# Compute $1's index in $config_headers.
9984_am_arg=$1
9985_am_stamp_count=1
9986for _am_header in $config_headers :; do
9987  case $_am_header in
9988    $_am_arg | $_am_arg:* )
9989      break ;;
9990    * )
9991      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
9992  esac
9993done
9994echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
9995
9996# Copyright (C) 2001-2018 Free Software Foundation, Inc.
9997#
9998# This file is free software; the Free Software Foundation
9999# gives unlimited permission to copy and/or distribute it,
10000# with or without modifications, as long as this notice is preserved.
10001
10002# AM_PROG_INSTALL_SH
10003# ------------------
10004# Define $install_sh.
10005AC_DEFUN([AM_PROG_INSTALL_SH],
10006[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
10007if test x"${install_sh+set}" != xset; then
10008  case $am_aux_dir in
10009  *\ * | *\	*)
10010    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
10011  *)
10012    install_sh="\${SHELL} $am_aux_dir/install-sh"
10013  esac
10014fi
10015AC_SUBST([install_sh])])
10016
10017# Copyright (C) 2003-2018 Free Software Foundation, Inc.
10018#
10019# This file is free software; the Free Software Foundation
10020# gives unlimited permission to copy and/or distribute it,
10021# with or without modifications, as long as this notice is preserved.
10022
10023# Check whether the underlying file-system supports filenames
10024# with a leading dot.  For instance MS-DOS doesn't.
10025AC_DEFUN([AM_SET_LEADING_DOT],
10026[rm -rf .tst 2>/dev/null
10027mkdir .tst 2>/dev/null
10028if test -d .tst; then
10029  am__leading_dot=.
10030else
10031  am__leading_dot=_
10032fi
10033rmdir .tst 2>/dev/null
10034AC_SUBST([am__leading_dot])])
10035
10036# Check to see how 'make' treats includes.	            -*- Autoconf -*-
10037
10038# Copyright (C) 2001-2018 Free Software Foundation, Inc.
10039#
10040# This file is free software; the Free Software Foundation
10041# gives unlimited permission to copy and/or distribute it,
10042# with or without modifications, as long as this notice is preserved.
10043
10044# AM_MAKE_INCLUDE()
10045# -----------------
10046# Check whether make has an 'include' directive that can support all
10047# the idioms we need for our automatic dependency tracking code.
10048AC_DEFUN([AM_MAKE_INCLUDE],
10049[AC_MSG_CHECKING([whether ${MAKE-make} supports the include directive])
10050cat > confinc.mk << 'END'
10051am__doit:
10052	@echo this is the am__doit target >confinc.out
10053.PHONY: am__doit
10054END
10055am__include="#"
10056am__quote=
10057# BSD make does it like this.
10058echo '.include "confinc.mk" # ignored' > confmf.BSD
10059# Other make implementations (GNU, Solaris 10, AIX) do it like this.
10060echo 'include confinc.mk # ignored' > confmf.GNU
10061_am_result=no
10062for s in GNU BSD; do
10063  AM_RUN_LOG([${MAKE-make} -f confmf.$s && cat confinc.out])
10064  AS_CASE([$?:`cat confinc.out 2>/dev/null`],
10065      ['0:this is the am__doit target'],
10066      [AS_CASE([$s],
10067          [BSD], [am__include='.include' am__quote='"'],
10068          [am__include='include' am__quote=''])])
10069  if test "$am__include" != "#"; then
10070    _am_result="yes ($s style)"
10071    break
10072  fi
10073done
10074rm -f confinc.* confmf.*
10075AC_MSG_RESULT([${_am_result}])
10076AC_SUBST([am__include])])
10077AC_SUBST([am__quote])])
10078
10079# Fake the existence of programs that GNU maintainers use.  -*- Autoconf -*-
10080
10081# Copyright (C) 1997-2018 Free Software Foundation, Inc.
10082#
10083# This file is free software; the Free Software Foundation
10084# gives unlimited permission to copy and/or distribute it,
10085# with or without modifications, as long as this notice is preserved.
10086
10087# AM_MISSING_PROG(NAME, PROGRAM)
10088# ------------------------------
10089AC_DEFUN([AM_MISSING_PROG],
10090[AC_REQUIRE([AM_MISSING_HAS_RUN])
10091$1=${$1-"${am_missing_run}$2"}
10092AC_SUBST($1)])
10093
10094# AM_MISSING_HAS_RUN
10095# ------------------
10096# Define MISSING if not defined so far and test if it is modern enough.
10097# If it is, set am_missing_run to use it, otherwise, to nothing.
10098AC_DEFUN([AM_MISSING_HAS_RUN],
10099[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
10100AC_REQUIRE_AUX_FILE([missing])dnl
10101if test x"${MISSING+set}" != xset; then
10102  case $am_aux_dir in
10103  *\ * | *\	*)
10104    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
10105  *)
10106    MISSING="\${SHELL} $am_aux_dir/missing" ;;
10107  esac
10108fi
10109# Use eval to expand $SHELL
10110if eval "$MISSING --is-lightweight"; then
10111  am_missing_run="$MISSING "
10112else
10113  am_missing_run=
10114  AC_MSG_WARN(['missing' script is too old or missing])
10115fi
10116])
10117
10118# Helper functions for option handling.                     -*- Autoconf -*-
10119
10120# Copyright (C) 2001-2018 Free Software Foundation, Inc.
10121#
10122# This file is free software; the Free Software Foundation
10123# gives unlimited permission to copy and/or distribute it,
10124# with or without modifications, as long as this notice is preserved.
10125
10126# _AM_MANGLE_OPTION(NAME)
10127# -----------------------
10128AC_DEFUN([_AM_MANGLE_OPTION],
10129[[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
10130
10131# _AM_SET_OPTION(NAME)
10132# --------------------
10133# Set option NAME.  Presently that only means defining a flag for this option.
10134AC_DEFUN([_AM_SET_OPTION],
10135[m4_define(_AM_MANGLE_OPTION([$1]), [1])])
10136
10137# _AM_SET_OPTIONS(OPTIONS)
10138# ------------------------
10139# OPTIONS is a space-separated list of Automake options.
10140AC_DEFUN([_AM_SET_OPTIONS],
10141[m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
10142
10143# _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET])
10144# -------------------------------------------
10145# Execute IF-SET if OPTION is set, IF-NOT-SET otherwise.
10146AC_DEFUN([_AM_IF_OPTION],
10147[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
10148
10149# Copyright (C) 1999-2018 Free Software Foundation, Inc.
10150#
10151# This file is free software; the Free Software Foundation
10152# gives unlimited permission to copy and/or distribute it,
10153# with or without modifications, as long as this notice is preserved.
10154
10155# _AM_PROG_CC_C_O
10156# ---------------
10157# Like AC_PROG_CC_C_O, but changed for automake.  We rewrite AC_PROG_CC
10158# to automatically call this.
10159AC_DEFUN([_AM_PROG_CC_C_O],
10160[AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
10161AC_REQUIRE_AUX_FILE([compile])dnl
10162AC_LANG_PUSH([C])dnl
10163AC_CACHE_CHECK(
10164  [whether $CC understands -c and -o together],
10165  [am_cv_prog_cc_c_o],
10166  [AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
10167  # Make sure it works both with $CC and with simple cc.
10168  # Following AC_PROG_CC_C_O, we do the test twice because some
10169  # compilers refuse to overwrite an existing .o file with -o,
10170  # though they will create one.
10171  am_cv_prog_cc_c_o=yes
10172  for am_i in 1 2; do
10173    if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
10174         && test -f conftest2.$ac_objext; then
10175      : OK
10176    else
10177      am_cv_prog_cc_c_o=no
10178      break
10179    fi
10180  done
10181  rm -f core conftest*
10182  unset am_i])
10183if test "$am_cv_prog_cc_c_o" != yes; then
10184   # Losing compiler, so override with the script.
10185   # FIXME: It is wrong to rewrite CC.
10186   # But if we don't then we get into trouble of one sort or another.
10187   # A longer-term fix would be to have automake use am__CC in this case,
10188   # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
10189   CC="$am_aux_dir/compile $CC"
10190fi
10191AC_LANG_POP([C])])
10192
10193# For backward compatibility.
10194AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
10195
10196# Copyright (C) 2001-2018 Free Software Foundation, Inc.
10197#
10198# This file is free software; the Free Software Foundation
10199# gives unlimited permission to copy and/or distribute it,
10200# with or without modifications, as long as this notice is preserved.
10201
10202# AM_RUN_LOG(COMMAND)
10203# -------------------
10204# Run COMMAND, save the exit status in ac_status, and log it.
10205# (This has been adapted from Autoconf's _AC_RUN_LOG macro.)
10206AC_DEFUN([AM_RUN_LOG],
10207[{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
10208   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
10209   ac_status=$?
10210   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
10211   (exit $ac_status); }])
10212
10213# Check to make sure that the build environment is sane.    -*- Autoconf -*-
10214
10215# Copyright (C) 1996-2018 Free Software Foundation, Inc.
10216#
10217# This file is free software; the Free Software Foundation
10218# gives unlimited permission to copy and/or distribute it,
10219# with or without modifications, as long as this notice is preserved.
10220
10221# AM_SANITY_CHECK
10222# ---------------
10223AC_DEFUN([AM_SANITY_CHECK],
10224[AC_MSG_CHECKING([whether build environment is sane])
10225# Reject unsafe characters in $srcdir or the absolute working directory
10226# name.  Accept space and tab only in the latter.
10227am_lf='
10228'
10229case `pwd` in
10230  *[[\\\"\#\$\&\'\`$am_lf]]*)
10231    AC_MSG_ERROR([unsafe absolute working directory name]);;
10232esac
10233case $srcdir in
10234  *[[\\\"\#\$\&\'\`$am_lf\ \	]]*)
10235    AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
10236esac
10237
10238# Do 'set' in a subshell so we don't clobber the current shell's
10239# arguments.  Must try -L first in case configure is actually a
10240# symlink; some systems play weird games with the mod time of symlinks
10241# (eg FreeBSD returns the mod time of the symlink's containing
10242# directory).
10243if (
10244   am_has_slept=no
10245   for am_try in 1 2; do
10246     echo "timestamp, slept: $am_has_slept" > conftest.file
10247     set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
10248     if test "$[*]" = "X"; then
10249	# -L didn't work.
10250	set X `ls -t "$srcdir/configure" conftest.file`
10251     fi
10252     if test "$[*]" != "X $srcdir/configure conftest.file" \
10253	&& test "$[*]" != "X conftest.file $srcdir/configure"; then
10254
10255	# If neither matched, then we have a broken ls.  This can happen
10256	# if, for instance, CONFIG_SHELL is bash and it inherits a
10257	# broken ls alias from the environment.  This has actually
10258	# happened.  Such a system could not be considered "sane".
10259	AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
10260  alias in your environment])
10261     fi
10262     if test "$[2]" = conftest.file || test $am_try -eq 2; then
10263       break
10264     fi
10265     # Just in case.
10266     sleep 1
10267     am_has_slept=yes
10268   done
10269   test "$[2]" = conftest.file
10270   )
10271then
10272   # Ok.
10273   :
10274else
10275   AC_MSG_ERROR([newly created file is older than distributed files!
10276Check your system clock])
10277fi
10278AC_MSG_RESULT([yes])
10279# If we didn't sleep, we still need to ensure time stamps of config.status and
10280# generated files are strictly newer.
10281am_sleep_pid=
10282if grep 'slept: no' conftest.file >/dev/null 2>&1; then
10283  ( sleep 1 ) &
10284  am_sleep_pid=$!
10285fi
10286AC_CONFIG_COMMANDS_PRE(
10287  [AC_MSG_CHECKING([that generated files are newer than configure])
10288   if test -n "$am_sleep_pid"; then
10289     # Hide warnings about reused PIDs.
10290     wait $am_sleep_pid 2>/dev/null
10291   fi
10292   AC_MSG_RESULT([done])])
10293rm -f conftest.file
10294])
10295
10296# Copyright (C) 2009-2018 Free Software Foundation, Inc.
10297#
10298# This file is free software; the Free Software Foundation
10299# gives unlimited permission to copy and/or distribute it,
10300# with or without modifications, as long as this notice is preserved.
10301
10302# AM_SILENT_RULES([DEFAULT])
10303# --------------------------
10304# Enable less verbose build rules; with the default set to DEFAULT
10305# ("yes" being less verbose, "no" or empty being verbose).
10306AC_DEFUN([AM_SILENT_RULES],
10307[AC_ARG_ENABLE([silent-rules], [dnl
10308AS_HELP_STRING(
10309  [--enable-silent-rules],
10310  [less verbose build output (undo: "make V=1")])
10311AS_HELP_STRING(
10312  [--disable-silent-rules],
10313  [verbose build output (undo: "make V=0")])dnl
10314])
10315case $enable_silent_rules in @%:@ (((
10316  yes) AM_DEFAULT_VERBOSITY=0;;
10317   no) AM_DEFAULT_VERBOSITY=1;;
10318    *) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
10319esac
10320dnl
10321dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
10322dnl do not support nested variable expansions.
10323dnl See automake bug#9928 and bug#10237.
10324am_make=${MAKE-make}
10325AC_CACHE_CHECK([whether $am_make supports nested variables],
10326   [am_cv_make_support_nested_variables],
10327   [if AS_ECHO([['TRUE=$(BAR$(V))
10328BAR0=false
10329BAR1=true
10330V=1
10331am__doit:
10332	@$(TRUE)
10333.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
10334  am_cv_make_support_nested_variables=yes
10335else
10336  am_cv_make_support_nested_variables=no
10337fi])
10338if test $am_cv_make_support_nested_variables = yes; then
10339  dnl Using '$V' instead of '$(V)' breaks IRIX make.
10340  AM_V='$(V)'
10341  AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
10342else
10343  AM_V=$AM_DEFAULT_VERBOSITY
10344  AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
10345fi
10346AC_SUBST([AM_V])dnl
10347AM_SUBST_NOTMAKE([AM_V])dnl
10348AC_SUBST([AM_DEFAULT_V])dnl
10349AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
10350AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
10351AM_BACKSLASH='\'
10352AC_SUBST([AM_BACKSLASH])dnl
10353_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
10354])
10355
10356# Copyright (C) 2001-2018 Free Software Foundation, Inc.
10357#
10358# This file is free software; the Free Software Foundation
10359# gives unlimited permission to copy and/or distribute it,
10360# with or without modifications, as long as this notice is preserved.
10361
10362# AM_PROG_INSTALL_STRIP
10363# ---------------------
10364# One issue with vendor 'install' (even GNU) is that you can't
10365# specify the program used to strip binaries.  This is especially
10366# annoying in cross-compiling environments, where the build's strip
10367# is unlikely to handle the host's binaries.
10368# Fortunately install-sh will honor a STRIPPROG variable, so we
10369# always use install-sh in "make install-strip", and initialize
10370# STRIPPROG with the value of the STRIP variable (set by the user).
10371AC_DEFUN([AM_PROG_INSTALL_STRIP],
10372[AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
10373# Installed binaries are usually stripped using 'strip' when the user
10374# run "make install-strip".  However 'strip' might not be the right
10375# tool to use in cross-compilation environments, therefore Automake
10376# will honor the 'STRIP' environment variable to overrule this program.
10377dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
10378if test "$cross_compiling" != no; then
10379  AC_CHECK_TOOL([STRIP], [strip], :)
10380fi
10381INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
10382AC_SUBST([INSTALL_STRIP_PROGRAM])])
10383
10384# Copyright (C) 2006-2018 Free Software Foundation, Inc.
10385#
10386# This file is free software; the Free Software Foundation
10387# gives unlimited permission to copy and/or distribute it,
10388# with or without modifications, as long as this notice is preserved.
10389
10390# _AM_SUBST_NOTMAKE(VARIABLE)
10391# ---------------------------
10392# Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in.
10393# This macro is traced by Automake.
10394AC_DEFUN([_AM_SUBST_NOTMAKE])
10395
10396# AM_SUBST_NOTMAKE(VARIABLE)
10397# --------------------------
10398# Public sister of _AM_SUBST_NOTMAKE.
10399AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
10400
10401# Check how to create a tarball.                            -*- Autoconf -*-
10402
10403# Copyright (C) 2004-2018 Free Software Foundation, Inc.
10404#
10405# This file is free software; the Free Software Foundation
10406# gives unlimited permission to copy and/or distribute it,
10407# with or without modifications, as long as this notice is preserved.
10408
10409# _AM_PROG_TAR(FORMAT)
10410# --------------------
10411# Check how to create a tarball in format FORMAT.
10412# FORMAT should be one of 'v7', 'ustar', or 'pax'.
10413#
10414# Substitute a variable $(am__tar) that is a command
10415# writing to stdout a FORMAT-tarball containing the directory
10416# $tardir.
10417#     tardir=directory && $(am__tar) > result.tar
10418#
10419# Substitute a variable $(am__untar) that extract such
10420# a tarball read from stdin.
10421#     $(am__untar) < result.tar
10422#
10423AC_DEFUN([_AM_PROG_TAR],
10424[# Always define AMTAR for backward compatibility.  Yes, it's still used
10425# in the wild :-(  We should find a proper way to deprecate it ...
10426AC_SUBST([AMTAR], ['$${TAR-tar}'])
10427
10428# We'll loop over all known methods to create a tar archive until one works.
10429_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
10430
10431m4_if([$1], [v7],
10432  [am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
10433
10434  [m4_case([$1],
10435    [ustar],
10436     [# The POSIX 1988 'ustar' format is defined with fixed-size fields.
10437      # There is notably a 21 bits limit for the UID and the GID.  In fact,
10438      # the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
10439      # and bug#13588).
10440      am_max_uid=2097151 # 2^21 - 1
10441      am_max_gid=$am_max_uid
10442      # The $UID and $GID variables are not portable, so we need to resort
10443      # to the POSIX-mandated id(1) utility.  Errors in the 'id' calls
10444      # below are definitely unexpected, so allow the users to see them
10445      # (that is, avoid stderr redirection).
10446      am_uid=`id -u || echo unknown`
10447      am_gid=`id -g || echo unknown`
10448      AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
10449      if test $am_uid -le $am_max_uid; then
10450         AC_MSG_RESULT([yes])
10451      else
10452         AC_MSG_RESULT([no])
10453         _am_tools=none
10454      fi
10455      AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
10456      if test $am_gid -le $am_max_gid; then
10457         AC_MSG_RESULT([yes])
10458      else
10459        AC_MSG_RESULT([no])
10460        _am_tools=none
10461      fi],
10462
10463  [pax],
10464    [],
10465
10466  [m4_fatal([Unknown tar format])])
10467
10468  AC_MSG_CHECKING([how to create a $1 tar archive])
10469
10470  # Go ahead even if we have the value already cached.  We do so because we
10471  # need to set the values for the 'am__tar' and 'am__untar' variables.
10472  _am_tools=${am_cv_prog_tar_$1-$_am_tools}
10473
10474  for _am_tool in $_am_tools; do
10475    case $_am_tool in
10476    gnutar)
10477      for _am_tar in tar gnutar gtar; do
10478        AM_RUN_LOG([$_am_tar --version]) && break
10479      done
10480      am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
10481      am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
10482      am__untar="$_am_tar -xf -"
10483      ;;
10484    plaintar)
10485      # Must skip GNU tar: if it does not support --format= it doesn't create
10486      # ustar tarball either.
10487      (tar --version) >/dev/null 2>&1 && continue
10488      am__tar='tar chf - "$$tardir"'
10489      am__tar_='tar chf - "$tardir"'
10490      am__untar='tar xf -'
10491      ;;
10492    pax)
10493      am__tar='pax -L -x $1 -w "$$tardir"'
10494      am__tar_='pax -L -x $1 -w "$tardir"'
10495      am__untar='pax -r'
10496      ;;
10497    cpio)
10498      am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
10499      am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
10500      am__untar='cpio -i -H $1 -d'
10501      ;;
10502    none)
10503      am__tar=false
10504      am__tar_=false
10505      am__untar=false
10506      ;;
10507    esac
10508
10509    # If the value was cached, stop now.  We just wanted to have am__tar
10510    # and am__untar set.
10511    test -n "${am_cv_prog_tar_$1}" && break
10512
10513    # tar/untar a dummy directory, and stop if the command works.
10514    rm -rf conftest.dir
10515    mkdir conftest.dir
10516    echo GrepMe > conftest.dir/file
10517    AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
10518    rm -rf conftest.dir
10519    if test -s conftest.tar; then
10520      AM_RUN_LOG([$am__untar <conftest.tar])
10521      AM_RUN_LOG([cat conftest.dir/file])
10522      grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
10523    fi
10524  done
10525  rm -rf conftest.dir
10526
10527  AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
10528  AC_MSG_RESULT([$am_cv_prog_tar_$1])])
10529
10530AC_SUBST([am__tar])
10531AC_SUBST([am__untar])
10532]) # _AM_PROG_TAR
10533
10534m4_include([acinclude.m4])
10535