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