diff options
author | Saul Wold <Saul.Wold@intel.com> | 2010-09-24 14:51:52 -0700 |
---|---|---|
committer | Saul Wold <Saul.Wold@intel.com> | 2010-09-24 16:40:10 -0700 |
commit | c5b9525263dac6844d152e40acf8cee4d27b60bc (patch) | |
tree | d23bb82411cbfba3e51694b41cdbd9b4c55b28c9 /meta | |
parent | 09f1f6939e5ec6a64c602bfb609e247082736ce8 (diff) | |
download | poky-c5b9525263dac6844d152e40acf8cee4d27b60bc.tar.gz |
taglib: move from moblin to recipes-support to support qmmp
Signed-off-by: Saul Wold <Saul.Wold@intel.com>
Diffstat (limited to 'meta')
-rw-r--r-- | meta/recipes-support/taglib/taglib-1.6.1/configuretweak.patch | 71 | ||||
-rw-r--r-- | meta/recipes-support/taglib/taglib-1.6.1/nolibtool.patch | 5914 | ||||
-rw-r--r-- | meta/recipes-support/taglib/taglib_1.6.1.bb | 23 |
3 files changed, 6008 insertions, 0 deletions
diff --git a/meta/recipes-support/taglib/taglib-1.6.1/configuretweak.patch b/meta/recipes-support/taglib/taglib-1.6.1/configuretweak.patch new file mode 100644 index 0000000000..07eb6d754c --- /dev/null +++ b/meta/recipes-support/taglib/taglib-1.6.1/configuretweak.patch | |||
@@ -0,0 +1,71 @@ | |||
1 | New autoconf gets upset if AC_PROC_CC and friends aren't called at | ||
2 | the top level (see http://www.gnu.org/software/hello/manual/autoconf/Expanded-Before-Required.html) | ||
3 | |||
4 | Fix macros accordingly fixing build failures | ||
5 | |||
6 | RP 2/2/10 | ||
7 | |||
8 | Index: taglib-1.6.1/acinclude.m4 | ||
9 | =================================================================== | ||
10 | --- taglib-1.6.1.orig/acinclude.m4 2010-02-01 23:57:16.857788731 +0000 | ||
11 | +++ taglib-1.6.1/acinclude.m4 2010-02-01 23:58:08.239039503 +0000 | ||
12 | @@ -3141,12 +3141,7 @@ | ||
13 | [kde_use_profiling="no"] | ||
14 | ) | ||
15 | |||
16 | - dnl this prevents stupid AC_PROG_CC to add "-g" to the default CFLAGS | ||
17 | - CFLAGS=" $CFLAGS" | ||
18 | |||
19 | - AC_PROG_CC | ||
20 | - | ||
21 | - AC_PROG_CPP | ||
22 | |||
23 | if test "$GCC" = "yes"; then | ||
24 | if test "$kde_use_debug_code" != "no"; then | ||
25 | @@ -3174,9 +3169,6 @@ | ||
26 | LDFLAGS="" | ||
27 | fi | ||
28 | |||
29 | - CXXFLAGS=" $CXXFLAGS" | ||
30 | - | ||
31 | - AC_PROG_CXX | ||
32 | |||
33 | KDE_CHECK_FOR_BAD_COMPILER | ||
34 | |||
35 | Index: taglib-1.6.1/configure.in | ||
36 | =================================================================== | ||
37 | --- taglib-1.6.1.orig/configure.in 2010-02-01 23:46:47.389039146 +0000 | ||
38 | +++ taglib-1.6.1/configure.in 2010-02-01 23:58:14.317819479 +0000 | ||
39 | @@ -36,6 +36,21 @@ | ||
40 | dnl This ksh/zsh feature conflicts with `cd blah ; pwd` | ||
41 | unset CDPATH | ||
42 | |||
43 | +dnl this prevents stupid AC_PROG_CC to add "-g" to the default CFLAGS | ||
44 | +CFLAGS=" $CFLAGS" | ||
45 | + | ||
46 | +AC_PROG_CC | ||
47 | + | ||
48 | +AC_PROG_CPP | ||
49 | + | ||
50 | +CXXFLAGS=" $CXXFLAGS" | ||
51 | + | ||
52 | +AC_PROG_CXX | ||
53 | + | ||
54 | +dnl checks for programs. | ||
55 | +dnl first check for c/c++ compilers | ||
56 | +AC_CHECK_COMPILERS | ||
57 | + | ||
58 | dnl Checking host/target/build systems, for make, install etc. | ||
59 | AC_CANONICAL_SYSTEM | ||
60 | dnl Perform program name transformation | ||
61 | @@ -62,9 +77,7 @@ | ||
62 | AM_CONFIG_HEADER(config.h) | ||
63 | AM_CONFIG_HEADER(taglib/taglib_config.h) | ||
64 | |||
65 | -dnl checks for programs. | ||
66 | -dnl first check for c/c++ compilers | ||
67 | -AC_CHECK_COMPILERS | ||
68 | + | ||
69 | |||
70 | dnl CXXFLAGS="$NOOPT_CXXFLAGS" dnl __kdevelop[noopt]__ | ||
71 | dnl CFLAGS="$NOOPT_CFLAGS" dnl __kdevelop[noopt]__ | ||
diff --git a/meta/recipes-support/taglib/taglib-1.6.1/nolibtool.patch b/meta/recipes-support/taglib/taglib-1.6.1/nolibtool.patch new file mode 100644 index 0000000000..b072cbcacb --- /dev/null +++ b/meta/recipes-support/taglib/taglib-1.6.1/nolibtool.patch | |||
@@ -0,0 +1,5914 @@ | |||
1 | Index: taglib-1.6.1/acinclude.m4 | ||
2 | =================================================================== | ||
3 | --- taglib-1.6.1.orig/acinclude.m4 2009-10-31 10:04:35.000000000 +0000 | ||
4 | +++ taglib-1.6.1/acinclude.m4 2010-02-01 15:25:38.887788993 +0000 | ||
5 | @@ -5997,5894 +5997,3 @@ | ||
6 | KDE_USE_PIE="-pie" | ||
7 | fi | ||
8 | ]) | ||
9 | -# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- | ||
10 | -## Copyright 1996, 1997, 1998, 1999, 2000, 2001 | ||
11 | -## Free Software Foundation, Inc. | ||
12 | -## Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 | ||
13 | -## | ||
14 | -## This program is free software; you can redistribute it and/or modify | ||
15 | -## it under the terms of the GNU General Public License as published by | ||
16 | -## the Free Software Foundation; either version 2 of the License, or | ||
17 | -## (at your option) any later version. | ||
18 | -## | ||
19 | -## This program is distributed in the hope that it will be useful, but | ||
20 | -## WITHOUT ANY WARRANTY; without even the implied warranty of | ||
21 | -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
22 | -## General Public License for more details. | ||
23 | -## | ||
24 | -## You should have received a copy of the GNU General Public License | ||
25 | -## along with this program; if not, write to the Free Software | ||
26 | -## Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
27 | -## | ||
28 | -## As a special exception to the GNU General Public License, if you | ||
29 | -## distribute this file as part of a program that contains a | ||
30 | -## configuration script generated by Autoconf, you may include it under | ||
31 | -## the same distribution terms that you use for the rest of that program. | ||
32 | - | ||
33 | -# serial 47 AC_PROG_LIBTOOL | ||
34 | - | ||
35 | - | ||
36 | -# AC_PROVIDE_IFELSE(MACRO-NAME, IF-PROVIDED, IF-NOT-PROVIDED) | ||
37 | -# ----------------------------------------------------------- | ||
38 | -# If this macro is not defined by Autoconf, define it here. | ||
39 | -m4_ifdef([AC_PROVIDE_IFELSE], | ||
40 | - [], | ||
41 | - [m4_define([AC_PROVIDE_IFELSE], | ||
42 | - [m4_ifdef([AC_PROVIDE_$1], | ||
43 | - [$2], [$3])])]) | ||
44 | - | ||
45 | - | ||
46 | -# AC_PROG_LIBTOOL | ||
47 | -# --------------- | ||
48 | -AC_DEFUN([AC_PROG_LIBTOOL], | ||
49 | -[AC_REQUIRE([_AC_PROG_LIBTOOL])dnl | ||
50 | -dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX | ||
51 | -dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX. | ||
52 | - AC_PROVIDE_IFELSE([AC_PROG_CXX], | ||
53 | - [AC_LIBTOOL_CXX], | ||
54 | - [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX | ||
55 | - ])]) | ||
56 | -dnl And a similar setup for Fortran 77 support | ||
57 | - AC_PROVIDE_IFELSE([AC_PROG_F77], | ||
58 | - [AC_LIBTOOL_F77], | ||
59 | - [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77 | ||
60 | -])]) | ||
61 | - | ||
62 | -dnl Quote A][M_PROG_GCJ so that aclocal doesn't bring it in needlessly. | ||
63 | -dnl If either AC_PROG_GCJ or A][M_PROG_GCJ have already been expanded, run | ||
64 | -dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both. | ||
65 | - AC_PROVIDE_IFELSE([AC_PROG_GCJ], | ||
66 | - [AC_LIBTOOL_GCJ], | ||
67 | - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], | ||
68 | - [AC_LIBTOOL_GCJ], | ||
69 | - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ], | ||
70 | - [AC_LIBTOOL_GCJ], | ||
71 | - [ifdef([AC_PROG_GCJ], | ||
72 | - [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])]) | ||
73 | - ifdef([A][M_PROG_GCJ], | ||
74 | - [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])]) | ||
75 | - ifdef([LT_AC_PROG_GCJ], | ||
76 | - [define([LT_AC_PROG_GCJ], | ||
77 | - defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])]) | ||
78 | -])])# AC_PROG_LIBTOOL | ||
79 | - | ||
80 | - | ||
81 | -# _AC_PROG_LIBTOOL | ||
82 | -# ---------------- | ||
83 | -AC_DEFUN([_AC_PROG_LIBTOOL], | ||
84 | -[AC_REQUIRE([AC_LIBTOOL_SETUP])dnl | ||
85 | -AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl | ||
86 | -AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl | ||
87 | -AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl | ||
88 | - | ||
89 | -# This can be used to rebuild libtool when needed | ||
90 | -LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh" | ||
91 | - | ||
92 | -# Always use our own libtool. | ||
93 | -LIBTOOL='$(SHELL) $(top_builddir)/libtool --silent' | ||
94 | -AC_SUBST(LIBTOOL)dnl | ||
95 | - | ||
96 | -# Prevent multiple expansion | ||
97 | -define([AC_PROG_LIBTOOL], []) | ||
98 | -])# _AC_PROG_LIBTOOL | ||
99 | - | ||
100 | - | ||
101 | -# AC_LIBTOOL_SETUP | ||
102 | -# ---------------- | ||
103 | -AC_DEFUN([AC_LIBTOOL_SETUP], | ||
104 | -[AC_PREREQ(2.50)dnl | ||
105 | -AC_REQUIRE([AC_ENABLE_SHARED])dnl | ||
106 | -AC_REQUIRE([AC_ENABLE_STATIC])dnl | ||
107 | -AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl | ||
108 | -AC_REQUIRE([AC_CANONICAL_HOST])dnl | ||
109 | -AC_REQUIRE([AC_CANONICAL_BUILD])dnl | ||
110 | -AC_REQUIRE([AC_PROG_CC])dnl | ||
111 | -AC_REQUIRE([AC_PROG_LD])dnl | ||
112 | -AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl | ||
113 | -AC_REQUIRE([AC_PROG_NM])dnl | ||
114 | - | ||
115 | -AC_REQUIRE([AC_PROG_LN_S])dnl | ||
116 | -AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl | ||
117 | -# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! | ||
118 | -AC_REQUIRE([AC_OBJEXT])dnl | ||
119 | -AC_REQUIRE([AC_EXEEXT])dnl | ||
120 | -dnl | ||
121 | - | ||
122 | -AC_LIBTOOL_SYS_MAX_CMD_LEN | ||
123 | -AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE | ||
124 | -AC_LIBTOOL_OBJDIR | ||
125 | - | ||
126 | -AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl | ||
127 | -_LT_AC_PROG_ECHO_BACKSLASH | ||
128 | - | ||
129 | -case $host_os in | ||
130 | -aix3*) | ||
131 | - # AIX sometimes has problems with the GCC collect2 program. For some | ||
132 | - # reason, if we set the COLLECT_NAMES environment variable, the problems | ||
133 | - # vanish in a puff of smoke. | ||
134 | - if test "X${COLLECT_NAMES+set}" != Xset; then | ||
135 | - COLLECT_NAMES= | ||
136 | - export COLLECT_NAMES | ||
137 | - fi | ||
138 | - ;; | ||
139 | -esac | ||
140 | - | ||
141 | -# Sed substitution that helps us do robust quoting. It backslashifies | ||
142 | -# metacharacters that are still active within double-quoted strings. | ||
143 | -Xsed='sed -e s/^X//' | ||
144 | -[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g'] | ||
145 | - | ||
146 | -# Same as above, but do not quote variable references. | ||
147 | -[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g'] | ||
148 | - | ||
149 | -# Sed substitution to delay expansion of an escaped shell variable in a | ||
150 | -# double_quote_subst'ed string. | ||
151 | -delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' | ||
152 | - | ||
153 | -# Sed substitution to avoid accidental globbing in evaled expressions | ||
154 | -no_glob_subst='s/\*/\\\*/g' | ||
155 | - | ||
156 | -# Constants: | ||
157 | -rm="rm -f" | ||
158 | - | ||
159 | -# Global variables: | ||
160 | -default_ofile=libtool | ||
161 | -can_build_shared=yes | ||
162 | - | ||
163 | -# All known linkers require a `.a' archive for static linking (except M$VC, | ||
164 | -# which needs '.lib'). | ||
165 | -libext=a | ||
166 | -ltmain="$ac_aux_dir/ltmain.sh" | ||
167 | -ofile="$default_ofile" | ||
168 | -with_gnu_ld="$lt_cv_prog_gnu_ld" | ||
169 | - | ||
170 | -AC_CHECK_TOOL(AR, ar, false) | ||
171 | -AC_CHECK_TOOL(RANLIB, ranlib, :) | ||
172 | -AC_CHECK_TOOL(STRIP, strip, :) | ||
173 | - | ||
174 | -old_CC="$CC" | ||
175 | -old_CFLAGS="$CFLAGS" | ||
176 | - | ||
177 | -# Set sane defaults for various variables | ||
178 | -test -z "$AR" && AR=ar | ||
179 | -test -z "$AR_FLAGS" && AR_FLAGS=cru | ||
180 | -test -z "$AS" && AS=as | ||
181 | -test -z "$CC" && CC=cc | ||
182 | -test -z "$LTCC" && LTCC=$CC | ||
183 | -test -z "$DLLTOOL" && DLLTOOL=dlltool | ||
184 | -test -z "$LD" && LD=ld | ||
185 | -test -z "$LN_S" && LN_S="ln -s" | ||
186 | -test -z "$MAGIC_CMD" && MAGIC_CMD=file | ||
187 | -test -z "$NM" && NM=nm | ||
188 | -test -z "$SED" && SED=sed | ||
189 | -test -z "$OBJDUMP" && OBJDUMP=objdump | ||
190 | -test -z "$RANLIB" && RANLIB=: | ||
191 | -test -z "$STRIP" && STRIP=: | ||
192 | -test -z "$ac_objext" && ac_objext=o | ||
193 | - | ||
194 | -# Determine commands to create old-style static archives. | ||
195 | -old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs' | ||
196 | -old_postinstall_cmds='chmod 644 $oldlib' | ||
197 | -old_postuninstall_cmds= | ||
198 | - | ||
199 | -if test -n "$RANLIB"; then | ||
200 | - case $host_os in | ||
201 | - openbsd*) | ||
202 | - old_postinstall_cmds="\$RANLIB -t \$oldlib~$old_postinstall_cmds" | ||
203 | - ;; | ||
204 | - *) | ||
205 | - old_postinstall_cmds="\$RANLIB \$oldlib~$old_postinstall_cmds" | ||
206 | - ;; | ||
207 | - esac | ||
208 | - old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" | ||
209 | -fi | ||
210 | - | ||
211 | -# Only perform the check for file, if the check method requires it | ||
212 | -case $deplibs_check_method in | ||
213 | -file_magic*) | ||
214 | - if test "$file_magic_cmd" = '$MAGIC_CMD'; then | ||
215 | - AC_PATH_MAGIC | ||
216 | - fi | ||
217 | - ;; | ||
218 | -esac | ||
219 | - | ||
220 | -AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no) | ||
221 | -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], | ||
222 | -enable_win32_dll=yes, enable_win32_dll=no) | ||
223 | - | ||
224 | -AC_ARG_ENABLE([libtool-lock], | ||
225 | - [AC_HELP_STRING([--disable-libtool-lock], | ||
226 | - [avoid locking (might break parallel builds)])]) | ||
227 | -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes | ||
228 | - | ||
229 | -AC_ARG_WITH([pic], | ||
230 | - [AC_HELP_STRING([--with-pic], | ||
231 | - [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], | ||
232 | - [pic_mode="$withval"], | ||
233 | - [pic_mode=default]) | ||
234 | -test -z "$pic_mode" && pic_mode=default | ||
235 | - | ||
236 | -# Use C for the default configuration in the libtool script | ||
237 | -tagname= | ||
238 | -AC_LIBTOOL_LANG_C_CONFIG | ||
239 | -_LT_AC_TAGCONFIG | ||
240 | -])# AC_LIBTOOL_SETUP | ||
241 | - | ||
242 | - | ||
243 | -# _LT_AC_SYS_COMPILER | ||
244 | -# ------------------- | ||
245 | -AC_DEFUN([_LT_AC_SYS_COMPILER], | ||
246 | -[AC_REQUIRE([AC_PROG_CC])dnl | ||
247 | - | ||
248 | -# If no C compiler was specified, use CC. | ||
249 | -LTCC=${LTCC-"$CC"} | ||
250 | - | ||
251 | -# Allow CC to be a program name with arguments. | ||
252 | -compiler=$CC | ||
253 | -])# _LT_AC_SYS_COMPILER | ||
254 | - | ||
255 | - | ||
256 | -# _LT_AC_SYS_LIBPATH_AIX | ||
257 | -# ---------------------- | ||
258 | -# Links a minimal program and checks the executable | ||
259 | -# for the system default hardcoded library path. In most cases, | ||
260 | -# this is /usr/lib:/lib, but when the MPI compilers are used | ||
261 | -# the location of the communication and MPI libs are included too. | ||
262 | -# If we don't find anything, use the default library path according | ||
263 | -# to the aix ld manual. | ||
264 | -AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], | ||
265 | -[AC_LINK_IFELSE(AC_LANG_PROGRAM,[ | ||
266 | -aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } | ||
267 | -}'` | ||
268 | -# Check for a 64-bit object if we didn't find anything. | ||
269 | -if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/; p; } | ||
270 | -}'`; fi],[]) | ||
271 | -if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi | ||
272 | -])# _LT_AC_SYS_LIBPATH_AIX | ||
273 | - | ||
274 | - | ||
275 | -# _LT_AC_SHELL_INIT(ARG) | ||
276 | -# ---------------------- | ||
277 | -AC_DEFUN([_LT_AC_SHELL_INIT], | ||
278 | -[ifdef([AC_DIVERSION_NOTICE], | ||
279 | - [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], | ||
280 | - [AC_DIVERT_PUSH(NOTICE)]) | ||
281 | -$1 | ||
282 | -AC_DIVERT_POP | ||
283 | -])# _LT_AC_SHELL_INIT | ||
284 | - | ||
285 | - | ||
286 | -# _LT_AC_PROG_ECHO_BACKSLASH | ||
287 | -# -------------------------- | ||
288 | -# Add some code to the start of the generated configure script which | ||
289 | -# will find an echo command which doesn't interpret backslashes. | ||
290 | -AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], | ||
291 | -[_LT_AC_SHELL_INIT([ | ||
292 | -# Check that we are running under the correct shell. | ||
293 | -SHELL=${CONFIG_SHELL-/bin/sh} | ||
294 | - | ||
295 | -case X$ECHO in | ||
296 | -X*--fallback-echo) | ||
297 | - # Remove one level of quotation (which was required for Make). | ||
298 | - ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` | ||
299 | - ;; | ||
300 | -esac | ||
301 | - | ||
302 | -echo=${ECHO-echo} | ||
303 | -if test "X[$]1" = X--no-reexec; then | ||
304 | - # Discard the --no-reexec flag, and continue. | ||
305 | - shift | ||
306 | -elif test "X[$]1" = X--fallback-echo; then | ||
307 | - # Avoid inline document here, it may be left over | ||
308 | - : | ||
309 | -elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then | ||
310 | - # Yippee, $echo works! | ||
311 | - : | ||
312 | -else | ||
313 | - # Restart under the correct shell. | ||
314 | - exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} | ||
315 | -fi | ||
316 | - | ||
317 | -if test "X[$]1" = X--fallback-echo; then | ||
318 | - # used as fallback echo | ||
319 | - shift | ||
320 | - cat <<EOF | ||
321 | -[$]* | ||
322 | -EOF | ||
323 | - exit 0 | ||
324 | -fi | ||
325 | - | ||
326 | -# The HP-UX ksh and POSIX shell print the target directory to stdout | ||
327 | -# if CDPATH is set. | ||
328 | -if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi | ||
329 | - | ||
330 | -if test -z "$ECHO"; then | ||
331 | -if test "X${echo_test_string+set}" != Xset; then | ||
332 | -# find a string as large as possible, as long as the shell can cope with it | ||
333 | - for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do | ||
334 | - # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... | ||
335 | - if (echo_test_string="`eval $cmd`") 2>/dev/null && | ||
336 | - echo_test_string="`eval $cmd`" && | ||
337 | - (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null | ||
338 | - then | ||
339 | - break | ||
340 | - fi | ||
341 | - done | ||
342 | -fi | ||
343 | - | ||
344 | -if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && | ||
345 | - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && | ||
346 | - test "X$echo_testing_string" = "X$echo_test_string"; then | ||
347 | - : | ||
348 | -else | ||
349 | - # The Solaris, AIX, and Digital Unix default echo programs unquote | ||
350 | - # backslashes. This makes it impossible to quote backslashes using | ||
351 | - # echo "$something" | sed 's/\\/\\\\/g' | ||
352 | - # | ||
353 | - # So, first we look for a working echo in the user's PATH. | ||
354 | - | ||
355 | - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | ||
356 | - for dir in $PATH /usr/ucb; do | ||
357 | - IFS="$lt_save_ifs" | ||
358 | - if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && | ||
359 | - test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && | ||
360 | - echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && | ||
361 | - test "X$echo_testing_string" = "X$echo_test_string"; then | ||
362 | - echo="$dir/echo" | ||
363 | - break | ||
364 | - fi | ||
365 | - done | ||
366 | - IFS="$lt_save_ifs" | ||
367 | - | ||
368 | - if test "X$echo" = Xecho; then | ||
369 | - # We didn't find a better echo, so look for alternatives. | ||
370 | - if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' && | ||
371 | - echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` && | ||
372 | - test "X$echo_testing_string" = "X$echo_test_string"; then | ||
373 | - # This shell has a builtin print -r that does the trick. | ||
374 | - echo='print -r' | ||
375 | - elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) && | ||
376 | - test "X$CONFIG_SHELL" != X/bin/ksh; then | ||
377 | - # If we have ksh, try running configure again with it. | ||
378 | - ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} | ||
379 | - export ORIGINAL_CONFIG_SHELL | ||
380 | - CONFIG_SHELL=/bin/ksh | ||
381 | - export CONFIG_SHELL | ||
382 | - exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} | ||
383 | - else | ||
384 | - # Try using printf. | ||
385 | - echo='printf %s\n' | ||
386 | - if test "X`($echo '\t') 2>/dev/null`" = 'X\t' && | ||
387 | - echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` && | ||
388 | - test "X$echo_testing_string" = "X$echo_test_string"; then | ||
389 | - # Cool, printf works | ||
390 | - : | ||
391 | - elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && | ||
392 | - test "X$echo_testing_string" = 'X\t' && | ||
393 | - echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && | ||
394 | - test "X$echo_testing_string" = "X$echo_test_string"; then | ||
395 | - CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL | ||
396 | - export CONFIG_SHELL | ||
397 | - SHELL="$CONFIG_SHELL" | ||
398 | - export SHELL | ||
399 | - echo="$CONFIG_SHELL [$]0 --fallback-echo" | ||
400 | - elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && | ||
401 | - test "X$echo_testing_string" = 'X\t' && | ||
402 | - echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && | ||
403 | - test "X$echo_testing_string" = "X$echo_test_string"; then | ||
404 | - echo="$CONFIG_SHELL [$]0 --fallback-echo" | ||
405 | - else | ||
406 | - # maybe with a smaller string... | ||
407 | - prev=: | ||
408 | - | ||
409 | - for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do | ||
410 | - if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null | ||
411 | - then | ||
412 | - break | ||
413 | - fi | ||
414 | - prev="$cmd" | ||
415 | - done | ||
416 | - | ||
417 | - if test "$prev" != 'sed 50q "[$]0"'; then | ||
418 | - echo_test_string=`eval $prev` | ||
419 | - export echo_test_string | ||
420 | - exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} | ||
421 | - else | ||
422 | - # Oops. We lost completely, so just stick with echo. | ||
423 | - echo=echo | ||
424 | - fi | ||
425 | - fi | ||
426 | - fi | ||
427 | - fi | ||
428 | -fi | ||
429 | -fi | ||
430 | - | ||
431 | -# Copy echo and quote the copy suitably for passing to libtool from | ||
432 | -# the Makefile, instead of quoting the original, which is used later. | ||
433 | -ECHO=$echo | ||
434 | -if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then | ||
435 | - ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" | ||
436 | -fi | ||
437 | - | ||
438 | -AC_SUBST(ECHO) | ||
439 | -])])# _LT_AC_PROG_ECHO_BACKSLASH | ||
440 | - | ||
441 | - | ||
442 | -# _LT_AC_LOCK | ||
443 | -# ----------- | ||
444 | -AC_DEFUN([_LT_AC_LOCK], | ||
445 | -[AC_ARG_ENABLE([libtool-lock], | ||
446 | - [AC_HELP_STRING([--disable-libtool-lock], | ||
447 | - [avoid locking (might break parallel builds)])]) | ||
448 | -test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes | ||
449 | - | ||
450 | -# Some flags need to be propagated to the compiler or linker for good | ||
451 | -# libtool support. | ||
452 | -case $host in | ||
453 | -ia64-*-hpux*) | ||
454 | - # Find out which ABI we are using. | ||
455 | - echo 'int i;' > conftest.$ac_ext | ||
456 | - if AC_TRY_EVAL(ac_compile); then | ||
457 | - case `/usr/bin/file conftest.$ac_objext` in | ||
458 | - *ELF-32*) | ||
459 | - HPUX_IA64_MODE="32" | ||
460 | - ;; | ||
461 | - *ELF-64*) | ||
462 | - HPUX_IA64_MODE="64" | ||
463 | - ;; | ||
464 | - esac | ||
465 | - fi | ||
466 | - rm -rf conftest* | ||
467 | - ;; | ||
468 | -*-*-irix6*) | ||
469 | - # Find out which ABI we are using. | ||
470 | - echo '[#]line __oline__ "configure"' > conftest.$ac_ext | ||
471 | - if AC_TRY_EVAL(ac_compile); then | ||
472 | - if test "$lt_cv_prog_gnu_ld" = yes; then | ||
473 | - case `/usr/bin/file conftest.$ac_objext` in | ||
474 | - *32-bit*) | ||
475 | - LD="${LD-ld} -melf32bsmip" | ||
476 | - ;; | ||
477 | - *N32*) | ||
478 | - LD="${LD-ld} -melf32bmipn32" | ||
479 | - ;; | ||
480 | - *64-bit*) | ||
481 | - LD="${LD-ld} -melf64bmip" | ||
482 | - ;; | ||
483 | - esac | ||
484 | - else | ||
485 | - case `/usr/bin/file conftest.$ac_objext` in | ||
486 | - *32-bit*) | ||
487 | - LD="${LD-ld} -32" | ||
488 | - ;; | ||
489 | - *N32*) | ||
490 | - LD="${LD-ld} -n32" | ||
491 | - ;; | ||
492 | - *64-bit*) | ||
493 | - LD="${LD-ld} -64" | ||
494 | - ;; | ||
495 | - esac | ||
496 | - fi | ||
497 | - fi | ||
498 | - rm -rf conftest* | ||
499 | - ;; | ||
500 | - | ||
501 | -x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*) | ||
502 | - # Find out which ABI we are using. | ||
503 | - echo 'int i;' > conftest.$ac_ext | ||
504 | - if AC_TRY_EVAL(ac_compile); then | ||
505 | - case "`/usr/bin/file conftest.o`" in | ||
506 | - *32-bit*) | ||
507 | - LINUX_64_MODE="32" | ||
508 | - case $host in | ||
509 | - x86_64-*linux*) | ||
510 | - LD="${LD-ld} -m elf_i386" | ||
511 | - ;; | ||
512 | - ppc64-*linux*) | ||
513 | - LD="${LD-ld} -m elf32ppclinux" | ||
514 | - ;; | ||
515 | - s390x-*linux*) | ||
516 | - LD="${LD-ld} -m elf_s390" | ||
517 | - ;; | ||
518 | - sparc64-*linux*) | ||
519 | - LD="${LD-ld} -m elf32_sparc" | ||
520 | - ;; | ||
521 | - esac | ||
522 | - ;; | ||
523 | - *64-bit*) | ||
524 | - LINUX_64_MODE="64" | ||
525 | - case $host in | ||
526 | - x86_64-*linux*) | ||
527 | - LD="${LD-ld} -m elf_x86_64" | ||
528 | - ;; | ||
529 | - ppc*-*linux*|powerpc*-*linux*) | ||
530 | - LD="${LD-ld} -m elf64ppc" | ||
531 | - ;; | ||
532 | - s390*-*linux*) | ||
533 | - LD="${LD-ld} -m elf64_s390" | ||
534 | - ;; | ||
535 | - sparc*-*linux*) | ||
536 | - LD="${LD-ld} -m elf64_sparc" | ||
537 | - ;; | ||
538 | - esac | ||
539 | - ;; | ||
540 | - esac | ||
541 | - fi | ||
542 | - rm -rf conftest* | ||
543 | - ;; | ||
544 | - | ||
545 | -*-*-sco3.2v5*) | ||
546 | - # On SCO OpenServer 5, we need -belf to get full-featured binaries. | ||
547 | - SAVE_CFLAGS="$CFLAGS" | ||
548 | - CFLAGS="$CFLAGS -belf" | ||
549 | - AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, | ||
550 | - [AC_LANG_PUSH(C) | ||
551 | - AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) | ||
552 | - AC_LANG_POP]) | ||
553 | - if test x"$lt_cv_cc_needs_belf" != x"yes"; then | ||
554 | - # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf | ||
555 | - CFLAGS="$SAVE_CFLAGS" | ||
556 | - fi | ||
557 | - ;; | ||
558 | -AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL], | ||
559 | -[*-*-cygwin* | *-*-mingw* | *-*-pw32*) | ||
560 | - AC_CHECK_TOOL(DLLTOOL, dlltool, false) | ||
561 | - AC_CHECK_TOOL(AS, as, false) | ||
562 | - AC_CHECK_TOOL(OBJDUMP, objdump, false) | ||
563 | - ;; | ||
564 | - ]) | ||
565 | -esac | ||
566 | - | ||
567 | -need_locks="$enable_libtool_lock" | ||
568 | - | ||
569 | -])# _LT_AC_LOCK | ||
570 | - | ||
571 | - | ||
572 | -# AC_LIBTOOL_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, | ||
573 | -# [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) | ||
574 | -# ---------------------------------------------------------------- | ||
575 | -# Check whether the given compiler option works | ||
576 | -AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], | ||
577 | -[AC_REQUIRE([LT_AC_PROG_SED]) | ||
578 | -AC_CACHE_CHECK([$1], [$2], | ||
579 | - [$2=no | ||
580 | - ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) | ||
581 | - printf "$lt_simple_compile_test_code" > conftest.$ac_ext | ||
582 | - lt_compiler_flag="$3" | ||
583 | - # Insert the option either (1) after the last *FLAGS variable, or | ||
584 | - # (2) before a word containing "conftest.", or (3) at the end. | ||
585 | - # Note that $ac_compile itself does not contain backslashes and begins | ||
586 | - # with a dollar sign (not a hyphen), so the echo should work correctly. | ||
587 | - # The option is referenced via a variable to avoid confusing sed. | ||
588 | - lt_compile=`echo "$ac_compile" | $SED \ | ||
589 | - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | ||
590 | - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ | ||
591 | - -e 's:$: $lt_compiler_flag:'` | ||
592 | - (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) | ||
593 | - (eval "$lt_compile" 2>conftest.err) | ||
594 | - ac_status=$? | ||
595 | - cat conftest.err >&AS_MESSAGE_LOG_FD | ||
596 | - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD | ||
597 | - if (exit $ac_status) && test -s "$ac_outfile"; then | ||
598 | - # The compiler can only warn and ignore the option if not recognized | ||
599 | - # So say no if there are warnings | ||
600 | - if test ! -s conftest.err; then | ||
601 | - $2=yes | ||
602 | - fi | ||
603 | - fi | ||
604 | - $rm conftest* | ||
605 | -]) | ||
606 | - | ||
607 | -if test x"[$]$2" = xyes; then | ||
608 | - ifelse([$5], , :, [$5]) | ||
609 | -else | ||
610 | - ifelse([$6], , :, [$6]) | ||
611 | -fi | ||
612 | -])# AC_LIBTOOL_COMPILER_OPTION | ||
613 | - | ||
614 | - | ||
615 | -# AC_LIBTOOL_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, | ||
616 | -# [ACTION-SUCCESS], [ACTION-FAILURE]) | ||
617 | -# ------------------------------------------------------------ | ||
618 | -# Check whether the given compiler option works | ||
619 | -AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], | ||
620 | -[AC_CACHE_CHECK([$1], [$2], | ||
621 | - [$2=no | ||
622 | - save_LDFLAGS="$LDFLAGS" | ||
623 | - LDFLAGS="$LDFLAGS $3" | ||
624 | - printf "$lt_simple_link_test_code" > conftest.$ac_ext | ||
625 | - if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then | ||
626 | - # The compiler can only warn and ignore the option if not recognized | ||
627 | - # So say no if there are warnings | ||
628 | - if test -s conftest.err; then | ||
629 | - # Append any errors to the config.log. | ||
630 | - cat conftest.err 1>&AS_MESSAGE_LOG_FD | ||
631 | - else | ||
632 | - $2=yes | ||
633 | - fi | ||
634 | - fi | ||
635 | - $rm conftest* | ||
636 | - LDFLAGS="$save_LDFLAGS" | ||
637 | -]) | ||
638 | - | ||
639 | -if test x"[$]$2" = xyes; then | ||
640 | - ifelse([$4], , :, [$4]) | ||
641 | -else | ||
642 | - ifelse([$5], , :, [$5]) | ||
643 | -fi | ||
644 | -])# AC_LIBTOOL_LINKER_OPTION | ||
645 | - | ||
646 | - | ||
647 | -# AC_LIBTOOL_SYS_MAX_CMD_LEN | ||
648 | -# -------------------------- | ||
649 | -AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], | ||
650 | -[# find the maximum length of command line arguments | ||
651 | -AC_MSG_CHECKING([the maximum length of command line arguments]) | ||
652 | -AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl | ||
653 | - i=0 | ||
654 | - testring="ABCD" | ||
655 | - | ||
656 | - case $build_os in | ||
657 | - msdosdjgpp*) | ||
658 | - # On DJGPP, this test can blow up pretty badly due to problems in libc | ||
659 | - # (any single argument exceeding 2000 bytes causes a buffer overrun | ||
660 | - # during glob expansion). Even if it were fixed, the result of this | ||
661 | - # check would be larger than it should be. | ||
662 | - lt_cv_sys_max_cmd_len=12288; # 12K is about right | ||
663 | - ;; | ||
664 | - | ||
665 | - gnu*) | ||
666 | - # Under GNU Hurd, this test is not required because there is | ||
667 | - # no limit to the length of command line arguments. | ||
668 | - # Libtool will interpret -1 as no limit whatsoever | ||
669 | - lt_cv_sys_max_cmd_len=-1; | ||
670 | - ;; | ||
671 | - | ||
672 | - cygwin* | mingw*) | ||
673 | - # On Win9x/ME, this test blows up -- it succeeds, but takes | ||
674 | - # about 5 minutes as the teststring grows exponentially. | ||
675 | - # Worse, since 9x/ME are not pre-emptively multitasking, | ||
676 | - # you end up with a "frozen" computer, even though with patience | ||
677 | - # the test eventually succeeds (with a max line length of 256k). | ||
678 | - # Instead, let's just punt: use the minimum linelength reported by | ||
679 | - # all of the supported platforms: 8192 (on NT/2K/XP). | ||
680 | - lt_cv_sys_max_cmd_len=8192; | ||
681 | - ;; | ||
682 | - | ||
683 | - *) | ||
684 | - # If test is not a shell built-in, we'll probably end up computing a | ||
685 | - # maximum length that is only half of the actual maximum length, but | ||
686 | - # we can't tell. | ||
687 | - while (test "X"`$CONFIG_SHELL [$]0 --fallback-echo "X$testring" 2>/dev/null` \ | ||
688 | - = "XX$testring") >/dev/null 2>&1 && | ||
689 | - new_result=`expr "X$testring" : ".*" 2>&1` && | ||
690 | - lt_cv_sys_max_cmd_len=$new_result && | ||
691 | - test $i != 17 # 1/2 MB should be enough | ||
692 | - do | ||
693 | - i=`expr $i + 1` | ||
694 | - testring=$testring$testring | ||
695 | - done | ||
696 | - testring= | ||
697 | - # Add a significant safety factor because C++ compilers can tack on massive | ||
698 | - # amounts of additional arguments before passing them to the linker. | ||
699 | - # It appears as though 1/2 is a usable value. | ||
700 | - lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` | ||
701 | - ;; | ||
702 | - esac | ||
703 | -]) | ||
704 | -if test -n $lt_cv_sys_max_cmd_len ; then | ||
705 | - AC_MSG_RESULT($lt_cv_sys_max_cmd_len) | ||
706 | -else | ||
707 | - AC_MSG_RESULT(none) | ||
708 | -fi | ||
709 | -])# AC_LIBTOOL_SYS_MAX_CMD_LEN | ||
710 | - | ||
711 | - | ||
712 | -# _LT_AC_CHECK_DLFCN | ||
713 | -# -------------------- | ||
714 | -AC_DEFUN([_LT_AC_CHECK_DLFCN], | ||
715 | -[AC_CHECK_HEADERS(dlfcn.h)dnl | ||
716 | -])# _LT_AC_CHECK_DLFCN | ||
717 | - | ||
718 | - | ||
719 | -# _LT_AC_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, | ||
720 | -# ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) | ||
721 | -# ------------------------------------------------------------------ | ||
722 | -AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], | ||
723 | -[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl | ||
724 | -if test "$cross_compiling" = yes; then : | ||
725 | - [$4] | ||
726 | -else | ||
727 | - lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 | ||
728 | - lt_status=$lt_dlunknown | ||
729 | - cat > conftest.$ac_ext <<EOF | ||
730 | -[#line __oline__ "configure" | ||
731 | -#include "confdefs.h" | ||
732 | - | ||
733 | -#if HAVE_DLFCN_H | ||
734 | -#include <dlfcn.h> | ||
735 | -#endif | ||
736 | - | ||
737 | -#include <stdio.h> | ||
738 | - | ||
739 | -#ifdef RTLD_GLOBAL | ||
740 | -# define LT_DLGLOBAL RTLD_GLOBAL | ||
741 | -#else | ||
742 | -# ifdef DL_GLOBAL | ||
743 | -# define LT_DLGLOBAL DL_GLOBAL | ||
744 | -# else | ||
745 | -# define LT_DLGLOBAL 0 | ||
746 | -# endif | ||
747 | -#endif | ||
748 | - | ||
749 | -/* We may have to define LT_DLLAZY_OR_NOW in the command line if we | ||
750 | - find out it does not work in some platform. */ | ||
751 | -#ifndef LT_DLLAZY_OR_NOW | ||
752 | -# ifdef RTLD_LAZY | ||
753 | -# define LT_DLLAZY_OR_NOW RTLD_LAZY | ||
754 | -# else | ||
755 | -# ifdef DL_LAZY | ||
756 | -# define LT_DLLAZY_OR_NOW DL_LAZY | ||
757 | -# else | ||
758 | -# ifdef RTLD_NOW | ||
759 | -# define LT_DLLAZY_OR_NOW RTLD_NOW | ||
760 | -# else | ||
761 | -# ifdef DL_NOW | ||
762 | -# define LT_DLLAZY_OR_NOW DL_NOW | ||
763 | -# else | ||
764 | -# define LT_DLLAZY_OR_NOW 0 | ||
765 | -# endif | ||
766 | -# endif | ||
767 | -# endif | ||
768 | -# endif | ||
769 | -#endif | ||
770 | - | ||
771 | -#ifdef __cplusplus | ||
772 | -extern "C" void exit (int); | ||
773 | -#endif | ||
774 | - | ||
775 | -void fnord() { int i=42;} | ||
776 | -int main () | ||
777 | -{ | ||
778 | - void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); | ||
779 | - int status = $lt_dlunknown; | ||
780 | - | ||
781 | - if (self) | ||
782 | - { | ||
783 | - if (dlsym (self,"fnord")) status = $lt_dlno_uscore; | ||
784 | - else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; | ||
785 | - /* dlclose (self); */ | ||
786 | - } | ||
787 | - | ||
788 | - exit (status); | ||
789 | -}] | ||
790 | -EOF | ||
791 | - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then | ||
792 | - (./conftest; exit; ) 2>/dev/null | ||
793 | - lt_status=$? | ||
794 | - case x$lt_status in | ||
795 | - x$lt_dlno_uscore) $1 ;; | ||
796 | - x$lt_dlneed_uscore) $2 ;; | ||
797 | - x$lt_unknown|x*) $3 ;; | ||
798 | - esac | ||
799 | - else : | ||
800 | - # compilation failed | ||
801 | - $3 | ||
802 | - fi | ||
803 | -fi | ||
804 | -rm -fr conftest* | ||
805 | -])# _LT_AC_TRY_DLOPEN_SELF | ||
806 | - | ||
807 | - | ||
808 | -# AC_LIBTOOL_DLOPEN_SELF | ||
809 | -# ------------------- | ||
810 | -AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], | ||
811 | -[AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl | ||
812 | -if test "x$enable_dlopen" != xyes; then | ||
813 | - enable_dlopen=unknown | ||
814 | - enable_dlopen_self=unknown | ||
815 | - enable_dlopen_self_static=unknown | ||
816 | -else | ||
817 | - lt_cv_dlopen=no | ||
818 | - lt_cv_dlopen_libs= | ||
819 | - | ||
820 | - case $host_os in | ||
821 | - beos*) | ||
822 | - lt_cv_dlopen="load_add_on" | ||
823 | - lt_cv_dlopen_libs= | ||
824 | - lt_cv_dlopen_self=yes | ||
825 | - ;; | ||
826 | - | ||
827 | - mingw* | pw32*) | ||
828 | - lt_cv_dlopen="LoadLibrary" | ||
829 | - lt_cv_dlopen_libs= | ||
830 | - ;; | ||
831 | - | ||
832 | - cygwin*) | ||
833 | - lt_cv_dlopen="dlopen" | ||
834 | - lt_cv_dlopen_libs= | ||
835 | - ;; | ||
836 | - | ||
837 | - darwin*) | ||
838 | - # if libdl is installed we need to link against it | ||
839 | - AC_CHECK_LIB([dl], [dlopen], | ||
840 | - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ | ||
841 | - lt_cv_dlopen="dyld" | ||
842 | - lt_cv_dlopen_libs= | ||
843 | - lt_cv_dlopen_self=yes | ||
844 | - ]) | ||
845 | - ;; | ||
846 | - | ||
847 | - *) | ||
848 | - AC_CHECK_FUNC([shl_load], | ||
849 | - [lt_cv_dlopen="shl_load"], | ||
850 | - [AC_CHECK_LIB([dld], [shl_load], | ||
851 | - [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], | ||
852 | - [AC_CHECK_FUNC([dlopen], | ||
853 | - [lt_cv_dlopen="dlopen"], | ||
854 | - [AC_CHECK_LIB([dl], [dlopen], | ||
855 | - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], | ||
856 | - [AC_CHECK_LIB([svld], [dlopen], | ||
857 | - [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], | ||
858 | - [AC_CHECK_LIB([dld], [dld_link], | ||
859 | - [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"]) | ||
860 | - ]) | ||
861 | - ]) | ||
862 | - ]) | ||
863 | - ]) | ||
864 | - ]) | ||
865 | - ;; | ||
866 | - esac | ||
867 | - | ||
868 | - if test "x$lt_cv_dlopen" != xno; then | ||
869 | - enable_dlopen=yes | ||
870 | - else | ||
871 | - enable_dlopen=no | ||
872 | - fi | ||
873 | - | ||
874 | - case $lt_cv_dlopen in | ||
875 | - dlopen) | ||
876 | - save_CPPFLAGS="$CPPFLAGS" | ||
877 | - test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" | ||
878 | - | ||
879 | - save_LDFLAGS="$LDFLAGS" | ||
880 | - eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" | ||
881 | - | ||
882 | - save_LIBS="$LIBS" | ||
883 | - LIBS="$lt_cv_dlopen_libs $LIBS" | ||
884 | - | ||
885 | - AC_CACHE_CHECK([whether a program can dlopen itself], | ||
886 | - lt_cv_dlopen_self, [dnl | ||
887 | - _LT_AC_TRY_DLOPEN_SELF( | ||
888 | - lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, | ||
889 | - lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) | ||
890 | - ]) | ||
891 | - | ||
892 | - if test "x$lt_cv_dlopen_self" = xyes; then | ||
893 | - LDFLAGS="$LDFLAGS $link_static_flag" | ||
894 | - AC_CACHE_CHECK([whether a statically linked program can dlopen itself], | ||
895 | - lt_cv_dlopen_self_static, [dnl | ||
896 | - _LT_AC_TRY_DLOPEN_SELF( | ||
897 | - lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, | ||
898 | - lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) | ||
899 | - ]) | ||
900 | - fi | ||
901 | - | ||
902 | - CPPFLAGS="$save_CPPFLAGS" | ||
903 | - LDFLAGS="$save_LDFLAGS" | ||
904 | - LIBS="$save_LIBS" | ||
905 | - ;; | ||
906 | - esac | ||
907 | - | ||
908 | - case $lt_cv_dlopen_self in | ||
909 | - yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; | ||
910 | - *) enable_dlopen_self=unknown ;; | ||
911 | - esac | ||
912 | - | ||
913 | - case $lt_cv_dlopen_self_static in | ||
914 | - yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; | ||
915 | - *) enable_dlopen_self_static=unknown ;; | ||
916 | - esac | ||
917 | -fi | ||
918 | -])# AC_LIBTOOL_DLOPEN_SELF | ||
919 | - | ||
920 | - | ||
921 | -# AC_LIBTOOL_PROG_CC_C_O([TAGNAME]) | ||
922 | -# --------------------------------- | ||
923 | -# Check to see if options -c and -o are simultaneously supported by compiler | ||
924 | -AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], | ||
925 | -[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl | ||
926 | -AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], | ||
927 | - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)], | ||
928 | - [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no | ||
929 | - $rm -r conftest 2>/dev/null | ||
930 | - mkdir conftest | ||
931 | - cd conftest | ||
932 | - mkdir out | ||
933 | - printf "$lt_simple_compile_test_code" > conftest.$ac_ext | ||
934 | - | ||
935 | - # According to Tom Tromey, Ian Lance Taylor reported there are C compilers | ||
936 | - # that will create temporary files in the current directory regardless of | ||
937 | - # the output directory. Thus, making CWD read-only will cause this test | ||
938 | - # to fail, enabling locking or at least warning the user not to do parallel | ||
939 | - # builds. | ||
940 | - chmod -w . | ||
941 | - | ||
942 | - lt_compiler_flag="-o out/conftest2.$ac_objext" | ||
943 | - # Insert the option either (1) after the last *FLAGS variable, or | ||
944 | - # (2) before a word containing "conftest.", or (3) at the end. | ||
945 | - # Note that $ac_compile itself does not contain backslashes and begins | ||
946 | - # with a dollar sign (not a hyphen), so the echo should work correctly. | ||
947 | - lt_compile=`echo "$ac_compile" | $SED \ | ||
948 | - -e 's:.*FLAGS}? :&$lt_compiler_flag :; t' \ | ||
949 | - -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ | ||
950 | - -e 's:$: $lt_compiler_flag:'` | ||
951 | - (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) | ||
952 | - (eval "$lt_compile" 2>out/conftest.err) | ||
953 | - ac_status=$? | ||
954 | - cat out/conftest.err >&AS_MESSAGE_LOG_FD | ||
955 | - echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD | ||
956 | - if (exit $ac_status) && test -s out/conftest2.$ac_objext | ||
957 | - then | ||
958 | - # The compiler can only warn and ignore the option if not recognized | ||
959 | - # So say no if there are warnings | ||
960 | - if test ! -s out/conftest.err; then | ||
961 | - _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes | ||
962 | - fi | ||
963 | - fi | ||
964 | - chmod u+w . | ||
965 | - $rm conftest* out/* | ||
966 | - rmdir out | ||
967 | - cd .. | ||
968 | - rmdir conftest | ||
969 | - $rm conftest* | ||
970 | -]) | ||
971 | -])# AC_LIBTOOL_PROG_CC_C_O | ||
972 | - | ||
973 | - | ||
974 | -# AC_LIBTOOL_SYS_HARD_LINK_LOCKS([TAGNAME]) | ||
975 | -# ----------------------------------------- | ||
976 | -# Check to see if we can do hard links to lock some files if needed | ||
977 | -AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], | ||
978 | -[AC_REQUIRE([_LT_AC_LOCK])dnl | ||
979 | - | ||
980 | -hard_links="nottested" | ||
981 | -if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then | ||
982 | - # do not overwrite the value of need_locks provided by the user | ||
983 | - AC_MSG_CHECKING([if we can lock with hard links]) | ||
984 | - hard_links=yes | ||
985 | - $rm conftest* | ||
986 | - ln conftest.a conftest.b 2>/dev/null && hard_links=no | ||
987 | - touch conftest.a | ||
988 | - ln conftest.a conftest.b 2>&5 || hard_links=no | ||
989 | - ln conftest.a conftest.b 2>/dev/null && hard_links=no | ||
990 | - AC_MSG_RESULT([$hard_links]) | ||
991 | - if test "$hard_links" = no; then | ||
992 | - AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) | ||
993 | - need_locks=warn | ||
994 | - fi | ||
995 | -else | ||
996 | - need_locks=no | ||
997 | -fi | ||
998 | -])# AC_LIBTOOL_SYS_HARD_LINK_LOCKS | ||
999 | - | ||
1000 | - | ||
1001 | -# AC_LIBTOOL_OBJDIR | ||
1002 | -# ----------------- | ||
1003 | -AC_DEFUN([AC_LIBTOOL_OBJDIR], | ||
1004 | -[AC_CACHE_CHECK([for objdir], [lt_cv_objdir], | ||
1005 | -[rm -f .libs 2>/dev/null | ||
1006 | -mkdir .libs 2>/dev/null | ||
1007 | -if test -d .libs; then | ||
1008 | - lt_cv_objdir=.libs | ||
1009 | -else | ||
1010 | - # MS-DOS does not allow filenames that begin with a dot. | ||
1011 | - lt_cv_objdir=_libs | ||
1012 | -fi | ||
1013 | -rmdir .libs 2>/dev/null]) | ||
1014 | -objdir=$lt_cv_objdir | ||
1015 | -])# AC_LIBTOOL_OBJDIR | ||
1016 | - | ||
1017 | - | ||
1018 | -# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([TAGNAME]) | ||
1019 | -# ---------------------------------------------- | ||
1020 | -# Check hardcoding attributes. | ||
1021 | -AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], | ||
1022 | -[AC_MSG_CHECKING([how to hardcode library paths into programs]) | ||
1023 | -_LT_AC_TAGVAR(hardcode_action, $1)= | ||
1024 | -if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \ | ||
1025 | - test -n "$_LT_AC_TAGVAR(runpath_var $1)" || \ | ||
1026 | - test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)"="Xyes" ; then | ||
1027 | - | ||
1028 | - # We can hardcode non-existant directories. | ||
1029 | - if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no && | ||
1030 | - # If the only mechanism to avoid hardcoding is shlibpath_var, we | ||
1031 | - # have to relink, otherwise we might link with an installed library | ||
1032 | - # when we should be linking with a yet-to-be-installed one | ||
1033 | - ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no && | ||
1034 | - test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then | ||
1035 | - # Linking always hardcodes the temporary library directory. | ||
1036 | - _LT_AC_TAGVAR(hardcode_action, $1)=relink | ||
1037 | - else | ||
1038 | - # We can link without hardcoding, and we can hardcode nonexisting dirs. | ||
1039 | - _LT_AC_TAGVAR(hardcode_action, $1)=immediate | ||
1040 | - fi | ||
1041 | -else | ||
1042 | - # We cannot hardcode anything, or else we can only hardcode existing | ||
1043 | - # directories. | ||
1044 | - _LT_AC_TAGVAR(hardcode_action, $1)=unsupported | ||
1045 | -fi | ||
1046 | -AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)]) | ||
1047 | - | ||
1048 | -if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then | ||
1049 | - # Fast installation is not supported | ||
1050 | - enable_fast_install=no | ||
1051 | -elif test "$shlibpath_overrides_runpath" = yes || | ||
1052 | - test "$enable_shared" = no; then | ||
1053 | - # Fast installation is not necessary | ||
1054 | - enable_fast_install=needless | ||
1055 | -fi | ||
1056 | -])# AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH | ||
1057 | - | ||
1058 | - | ||
1059 | -# AC_LIBTOOL_SYS_LIB_STRIP | ||
1060 | -# ------------------------ | ||
1061 | -AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], | ||
1062 | -[striplib= | ||
1063 | -old_striplib= | ||
1064 | -AC_MSG_CHECKING([whether stripping libraries is possible]) | ||
1065 | -if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then | ||
1066 | - test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" | ||
1067 | - test -z "$striplib" && striplib="$STRIP --strip-unneeded" | ||
1068 | - AC_MSG_RESULT([yes]) | ||
1069 | -else | ||
1070 | -# FIXME - insert some real tests, host_os isn't really good enough | ||
1071 | - case $host_os in | ||
1072 | - darwin*) | ||
1073 | - if test -n "$STRIP" ; then | ||
1074 | - striplib="$STRIP -x" | ||
1075 | - AC_MSG_RESULT([yes]) | ||
1076 | - else | ||
1077 | - AC_MSG_RESULT([no]) | ||
1078 | -fi | ||
1079 | - ;; | ||
1080 | - *) | ||
1081 | - AC_MSG_RESULT([no]) | ||
1082 | - ;; | ||
1083 | - esac | ||
1084 | -fi | ||
1085 | -])# AC_LIBTOOL_SYS_LIB_STRIP | ||
1086 | - | ||
1087 | - | ||
1088 | -# AC_LIBTOOL_SYS_DYNAMIC_LINKER | ||
1089 | -# ----------------------------- | ||
1090 | -# PORTME Fill in your ld.so characteristics | ||
1091 | -AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], | ||
1092 | -[AC_MSG_CHECKING([dynamic linker characteristics]) | ||
1093 | -library_names_spec= | ||
1094 | -libname_spec='lib$name' | ||
1095 | -soname_spec= | ||
1096 | -shrext=".so" | ||
1097 | -postinstall_cmds= | ||
1098 | -postuninstall_cmds= | ||
1099 | -finish_cmds= | ||
1100 | -finish_eval= | ||
1101 | -shlibpath_var= | ||
1102 | -shlibpath_overrides_runpath=unknown | ||
1103 | -version_type=none | ||
1104 | -dynamic_linker="$host_os ld.so" | ||
1105 | -sys_lib_dlsearch_path_spec="/lib /usr/lib" | ||
1106 | -sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" | ||
1107 | -need_lib_prefix=unknown | ||
1108 | -hardcode_into_libs=no | ||
1109 | - | ||
1110 | -# when you set need_version to no, make sure it does not cause -set_version | ||
1111 | -# flags to be left without arguments | ||
1112 | -need_version=unknown | ||
1113 | - | ||
1114 | -case $host_os in | ||
1115 | -aix3*) | ||
1116 | - version_type=linux | ||
1117 | - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' | ||
1118 | - shlibpath_var=LIBPATH | ||
1119 | - | ||
1120 | - # AIX 3 has no versioning support, so we append a major version to the name. | ||
1121 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1122 | - ;; | ||
1123 | - | ||
1124 | -aix4* | aix5*) | ||
1125 | - version_type=linux | ||
1126 | - need_lib_prefix=no | ||
1127 | - need_version=no | ||
1128 | - hardcode_into_libs=yes | ||
1129 | - if test "$host_cpu" = ia64; then | ||
1130 | - # AIX 5 supports IA64 | ||
1131 | - library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' | ||
1132 | - shlibpath_var=LD_LIBRARY_PATH | ||
1133 | - else | ||
1134 | - # With GCC up to 2.95.x, collect2 would create an import file | ||
1135 | - # for dependence libraries. The import file would start with | ||
1136 | - # the line `#! .'. This would cause the generated library to | ||
1137 | - # depend on `.', always an invalid library. This was fixed in | ||
1138 | - # development snapshots of GCC prior to 3.0. | ||
1139 | - case $host_os in | ||
1140 | - aix4 | aix4.[[01]] | aix4.[[01]].*) | ||
1141 | - if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' | ||
1142 | - echo ' yes ' | ||
1143 | - echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then | ||
1144 | - : | ||
1145 | - else | ||
1146 | - can_build_shared=no | ||
1147 | - fi | ||
1148 | - ;; | ||
1149 | - esac | ||
1150 | - # AIX (on Power*) has no versioning support, so currently we can not hardcode correct | ||
1151 | - # soname into executable. Probably we can add versioning support to | ||
1152 | - # collect2, so additional links can be useful in future. | ||
1153 | - if test "$aix_use_runtimelinking" = yes; then | ||
1154 | - # If using run time linking (on AIX 4.2 or later) use lib<name>.so | ||
1155 | - # instead of lib<name>.a to let people know that these are not | ||
1156 | - # typical AIX shared libraries. | ||
1157 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1158 | - else | ||
1159 | - # We preserve .a as extension for shared libraries through AIX4.2 | ||
1160 | - # and later when we are not doing run time linking. | ||
1161 | - library_names_spec='${libname}${release}.a $libname.a' | ||
1162 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1163 | - fi | ||
1164 | - shlibpath_var=LIBPATH | ||
1165 | - fi | ||
1166 | - ;; | ||
1167 | - | ||
1168 | -amigaos*) | ||
1169 | - library_names_spec='$libname.ixlibrary $libname.a' | ||
1170 | - # Create ${libname}_ixlibrary.a entries in /sys/libs. | ||
1171 | - finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$echo "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $rm /sys/libs/${libname}_ixlibrary.a; $show "(cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a)"; (cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a) || exit 1; done' | ||
1172 | - ;; | ||
1173 | - | ||
1174 | -beos*) | ||
1175 | - library_names_spec='${libname}${shared_ext}' | ||
1176 | - dynamic_linker="$host_os ld.so" | ||
1177 | - shlibpath_var=LIBRARY_PATH | ||
1178 | - ;; | ||
1179 | - | ||
1180 | -bsdi4*) | ||
1181 | - version_type=linux | ||
1182 | - need_version=no | ||
1183 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1184 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1185 | - finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' | ||
1186 | - shlibpath_var=LD_LIBRARY_PATH | ||
1187 | - sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" | ||
1188 | - sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" | ||
1189 | - # the default ld.so.conf also contains /usr/contrib/lib and | ||
1190 | - # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow | ||
1191 | - # libtool to hard-code these into programs | ||
1192 | - ;; | ||
1193 | - | ||
1194 | -cygwin* | mingw* | pw32*) | ||
1195 | - version_type=windows | ||
1196 | - shrext=".dll" | ||
1197 | - need_version=no | ||
1198 | - need_lib_prefix=no | ||
1199 | - | ||
1200 | - case $GCC,$host_os in | ||
1201 | - yes,cygwin* | yes,mingw* | yes,pw32*) | ||
1202 | - library_names_spec='$libname.dll.a' | ||
1203 | - # DLL is installed to $(libdir)/../bin by postinstall_cmds | ||
1204 | - postinstall_cmds='base_file=`basename \${file}`~ | ||
1205 | - dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~ | ||
1206 | - dldir=$destdir/`dirname \$dlpath`~ | ||
1207 | - test -d \$dldir || mkdir -p \$dldir~ | ||
1208 | - $install_prog $dir/$dlname \$dldir/$dlname' | ||
1209 | - postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ | ||
1210 | - dlpath=$dir/\$dldll~ | ||
1211 | - $rm \$dlpath' | ||
1212 | - shlibpath_overrides_runpath=yes | ||
1213 | - | ||
1214 | - case $host_os in | ||
1215 | - cygwin*) | ||
1216 | - # Cygwin DLLs use 'cyg' prefix rather than 'lib' | ||
1217 | - soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' | ||
1218 | - sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" | ||
1219 | - ;; | ||
1220 | - mingw*) | ||
1221 | - # MinGW DLLs use traditional 'lib' prefix | ||
1222 | - soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' | ||
1223 | - sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` | ||
1224 | - if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then | ||
1225 | - # It is most probably a Windows format PATH printed by | ||
1226 | - # mingw gcc, but we are running on Cygwin. Gcc prints its search | ||
1227 | - # path with ; separators, and with drive letters. We can handle the | ||
1228 | - # drive letters (cygwin fileutils understands them), so leave them, | ||
1229 | - # especially as we might pass files found there to a mingw objdump, | ||
1230 | - # which wouldn't understand a cygwinified path. Ahh. | ||
1231 | - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` | ||
1232 | - else | ||
1233 | - sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` | ||
1234 | - fi | ||
1235 | - ;; | ||
1236 | - pw32*) | ||
1237 | - # pw32 DLLs use 'pw' prefix rather than 'lib' | ||
1238 | - library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' | ||
1239 | - ;; | ||
1240 | - esac | ||
1241 | - ;; | ||
1242 | - | ||
1243 | - *) | ||
1244 | - library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' | ||
1245 | - ;; | ||
1246 | - esac | ||
1247 | - dynamic_linker='Win32 ld.exe' | ||
1248 | - # FIXME: first we should search . and the directory the executable is in | ||
1249 | - shlibpath_var=PATH | ||
1250 | - ;; | ||
1251 | - | ||
1252 | -darwin* | rhapsody*) | ||
1253 | - dynamic_linker="$host_os dyld" | ||
1254 | - version_type=darwin | ||
1255 | - need_lib_prefix=no | ||
1256 | - need_version=no | ||
1257 | - library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext' | ||
1258 | - soname_spec='${libname}${release}${major}$shared_ext' | ||
1259 | - shlibpath_overrides_runpath=yes | ||
1260 | - shlibpath_var=DYLD_LIBRARY_PATH | ||
1261 | - shrext='$(test .$module = .yes && echo .so || echo .dylib)' | ||
1262 | - # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same. | ||
1263 | - if test "$GCC" = yes; then | ||
1264 | - sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"` | ||
1265 | - else | ||
1266 | - sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib' | ||
1267 | - fi | ||
1268 | - sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' | ||
1269 | - ;; | ||
1270 | - | ||
1271 | -dgux*) | ||
1272 | - version_type=linux | ||
1273 | - need_lib_prefix=no | ||
1274 | - need_version=no | ||
1275 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' | ||
1276 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1277 | - shlibpath_var=LD_LIBRARY_PATH | ||
1278 | - ;; | ||
1279 | - | ||
1280 | -freebsd1*) | ||
1281 | - dynamic_linker=no | ||
1282 | - ;; | ||
1283 | - | ||
1284 | -kfreebsd*-gnu*) | ||
1285 | - version_type=linux | ||
1286 | - need_lib_prefix=no | ||
1287 | - need_version=no | ||
1288 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' | ||
1289 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1290 | - shlibpath_var=LD_LIBRARY_PATH | ||
1291 | - shlibpath_overrides_runpath=no | ||
1292 | - hardcode_into_libs=yes | ||
1293 | - dynamic_linker='GNU ld.so' | ||
1294 | - ;; | ||
1295 | - | ||
1296 | -freebsd*) | ||
1297 | - objformat=`test -x /usr/bin/objformat && /usr/bin/objformat || echo aout` | ||
1298 | - version_type=freebsd-$objformat | ||
1299 | - case $version_type in | ||
1300 | - freebsd-elf*) | ||
1301 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' | ||
1302 | - need_version=no | ||
1303 | - need_lib_prefix=no | ||
1304 | - ;; | ||
1305 | - freebsd-*) | ||
1306 | - library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' | ||
1307 | - need_version=yes | ||
1308 | - ;; | ||
1309 | - esac | ||
1310 | - shlibpath_var=LD_LIBRARY_PATH | ||
1311 | - case $host_os in | ||
1312 | - freebsd2*) | ||
1313 | - shlibpath_overrides_runpath=yes | ||
1314 | - ;; | ||
1315 | - freebsd3.[01]* | freebsdelf3.[01]*) | ||
1316 | - shlibpath_overrides_runpath=yes | ||
1317 | - hardcode_into_libs=yes | ||
1318 | - ;; | ||
1319 | - *) # from 3.2 on | ||
1320 | - shlibpath_overrides_runpath=no | ||
1321 | - hardcode_into_libs=yes | ||
1322 | - ;; | ||
1323 | - esac | ||
1324 | - ;; | ||
1325 | - | ||
1326 | -gnu*) | ||
1327 | - version_type=linux | ||
1328 | - need_lib_prefix=no | ||
1329 | - need_version=no | ||
1330 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' | ||
1331 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1332 | - shlibpath_var=LD_LIBRARY_PATH | ||
1333 | - hardcode_into_libs=yes | ||
1334 | - ;; | ||
1335 | - | ||
1336 | -hpux9* | hpux10* | hpux11*) | ||
1337 | - # Give a soname corresponding to the major version so that dld.sl refuses to | ||
1338 | - # link against other versions. | ||
1339 | - version_type=sunos | ||
1340 | - need_lib_prefix=no | ||
1341 | - need_version=no | ||
1342 | - case "$host_cpu" in | ||
1343 | - ia64*) | ||
1344 | - shrext='.so' | ||
1345 | - hardcode_into_libs=yes | ||
1346 | - dynamic_linker="$host_os dld.so" | ||
1347 | - shlibpath_var=LD_LIBRARY_PATH | ||
1348 | - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. | ||
1349 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1350 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1351 | - if test "X$HPUX_IA64_MODE" = X32; then | ||
1352 | - sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" | ||
1353 | - else | ||
1354 | - sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" | ||
1355 | - fi | ||
1356 | - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec | ||
1357 | - ;; | ||
1358 | - hppa*64*) | ||
1359 | - shrext='.sl' | ||
1360 | - hardcode_into_libs=yes | ||
1361 | - dynamic_linker="$host_os dld.sl" | ||
1362 | - shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH | ||
1363 | - shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. | ||
1364 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1365 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1366 | - sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" | ||
1367 | - sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec | ||
1368 | - ;; | ||
1369 | - *) | ||
1370 | - shrext='.sl' | ||
1371 | - dynamic_linker="$host_os dld.sl" | ||
1372 | - shlibpath_var=SHLIB_PATH | ||
1373 | - shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH | ||
1374 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1375 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1376 | - ;; | ||
1377 | - esac | ||
1378 | - # HP-UX runs *really* slowly unless shared libraries are mode 555. | ||
1379 | - postinstall_cmds='chmod 555 $lib' | ||
1380 | - ;; | ||
1381 | - | ||
1382 | -irix5* | irix6* | nonstopux*) | ||
1383 | - case $host_os in | ||
1384 | - nonstopux*) version_type=nonstopux ;; | ||
1385 | - *) | ||
1386 | - if test "$lt_cv_prog_gnu_ld" = yes; then | ||
1387 | - version_type=linux | ||
1388 | - else | ||
1389 | - version_type=irix | ||
1390 | - fi ;; | ||
1391 | - esac | ||
1392 | - need_lib_prefix=no | ||
1393 | - need_version=no | ||
1394 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1395 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' | ||
1396 | - case $host_os in | ||
1397 | - irix5* | nonstopux*) | ||
1398 | - libsuff= shlibsuff= | ||
1399 | - ;; | ||
1400 | - *) | ||
1401 | - case $LD in # libtool.m4 will add one of these switches to LD | ||
1402 | - *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") | ||
1403 | - libsuff= shlibsuff= libmagic=32-bit;; | ||
1404 | - *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") | ||
1405 | - libsuff=32 shlibsuff=N32 libmagic=N32;; | ||
1406 | - *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") | ||
1407 | - libsuff=64 shlibsuff=64 libmagic=64-bit;; | ||
1408 | - *) libsuff= shlibsuff= libmagic=never-match;; | ||
1409 | - esac | ||
1410 | - ;; | ||
1411 | - esac | ||
1412 | - shlibpath_var=LD_LIBRARY${shlibsuff}_PATH | ||
1413 | - shlibpath_overrides_runpath=no | ||
1414 | - sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" | ||
1415 | - sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" | ||
1416 | - hardcode_into_libs=yes | ||
1417 | - ;; | ||
1418 | - | ||
1419 | -# No shared lib support for Linux oldld, aout, or coff. | ||
1420 | -linux*oldld* | linux*aout* | linux*coff*) | ||
1421 | - dynamic_linker=no | ||
1422 | - ;; | ||
1423 | - | ||
1424 | -# This must be Linux ELF. | ||
1425 | -linux*) | ||
1426 | - version_type=linux | ||
1427 | - need_lib_prefix=no | ||
1428 | - need_version=no | ||
1429 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1430 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1431 | - finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' | ||
1432 | - libsuff= | ||
1433 | - if test "x$LINUX_64_MODE" = x64; then | ||
1434 | - # Some platforms are per default 64-bit, so there's no /lib64 | ||
1435 | - if test -d /lib64 -a ! -h /lib64; then | ||
1436 | - libsuff=64 | ||
1437 | - fi | ||
1438 | - fi | ||
1439 | - shlibpath_var=LD_LIBRARY_PATH | ||
1440 | - shlibpath_overrides_runpath=no | ||
1441 | - sys_lib_dlsearch_path_spec="/lib${libsuff} /usr/lib${libsuff}" | ||
1442 | - sys_lib_search_path_spec="/lib${libsuff} /usr/lib${libsuff} /usr/local/lib${libsuff}" | ||
1443 | - # This implies no fast_install, which is unacceptable. | ||
1444 | - # Some rework will be needed to allow for fast_install | ||
1445 | - # before this can be enabled. | ||
1446 | - hardcode_into_libs=yes | ||
1447 | - | ||
1448 | - # We used to test for /lib/ld.so.1 and disable shared libraries on | ||
1449 | - # powerpc, because MkLinux only supported shared libraries with the | ||
1450 | - # GNU dynamic linker. Since this was broken with cross compilers, | ||
1451 | - # most powerpc-linux boxes support dynamic linking these days and | ||
1452 | - # people can always --disable-shared, the test was removed, and we | ||
1453 | - # assume the GNU/Linux dynamic linker is in use. | ||
1454 | - dynamic_linker='GNU/Linux ld.so' | ||
1455 | - ;; | ||
1456 | - | ||
1457 | -netbsd*) | ||
1458 | - version_type=sunos | ||
1459 | - need_lib_prefix=no | ||
1460 | - need_version=no | ||
1461 | - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then | ||
1462 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' | ||
1463 | - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' | ||
1464 | - dynamic_linker='NetBSD (a.out) ld.so' | ||
1465 | - else | ||
1466 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} ${libname}${shared_ext}' | ||
1467 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1468 | - dynamic_linker='NetBSD ld.elf_so' | ||
1469 | - fi | ||
1470 | - shlibpath_var=LD_LIBRARY_PATH | ||
1471 | - shlibpath_overrides_runpath=yes | ||
1472 | - hardcode_into_libs=yes | ||
1473 | - ;; | ||
1474 | - | ||
1475 | -newsos6) | ||
1476 | - version_type=linux | ||
1477 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1478 | - shlibpath_var=LD_LIBRARY_PATH | ||
1479 | - shlibpath_overrides_runpath=yes | ||
1480 | - ;; | ||
1481 | - | ||
1482 | -nto-qnx*) | ||
1483 | - version_type=linux | ||
1484 | - need_lib_prefix=no | ||
1485 | - need_version=no | ||
1486 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1487 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1488 | - shlibpath_var=LD_LIBRARY_PATH | ||
1489 | - shlibpath_overrides_runpath=yes | ||
1490 | - ;; | ||
1491 | - | ||
1492 | -openbsd*) | ||
1493 | - version_type=sunos | ||
1494 | - need_lib_prefix=no | ||
1495 | - need_version=no | ||
1496 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' | ||
1497 | - finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' | ||
1498 | - shlibpath_var=LD_LIBRARY_PATH | ||
1499 | - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then | ||
1500 | - case $host_os in | ||
1501 | - openbsd2.[[89]] | openbsd2.[[89]].*) | ||
1502 | - shlibpath_overrides_runpath=no | ||
1503 | - ;; | ||
1504 | - *) | ||
1505 | - shlibpath_overrides_runpath=yes | ||
1506 | - ;; | ||
1507 | - esac | ||
1508 | - else | ||
1509 | - shlibpath_overrides_runpath=yes | ||
1510 | - fi | ||
1511 | - ;; | ||
1512 | - | ||
1513 | -os2*) | ||
1514 | - libname_spec='$name' | ||
1515 | - shrext=".dll" | ||
1516 | - need_lib_prefix=no | ||
1517 | - library_names_spec='$libname${shared_ext} $libname.a' | ||
1518 | - dynamic_linker='OS/2 ld.exe' | ||
1519 | - shlibpath_var=LIBPATH | ||
1520 | - ;; | ||
1521 | - | ||
1522 | -osf3* | osf4* | osf5*) | ||
1523 | - version_type=osf | ||
1524 | - need_lib_prefix=no | ||
1525 | - need_version=no | ||
1526 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1527 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1528 | - shlibpath_var=LD_LIBRARY_PATH | ||
1529 | - sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" | ||
1530 | - sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" | ||
1531 | - ;; | ||
1532 | - | ||
1533 | -sco3.2v5*) | ||
1534 | - version_type=osf | ||
1535 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1536 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1537 | - shlibpath_var=LD_LIBRARY_PATH | ||
1538 | - ;; | ||
1539 | - | ||
1540 | -solaris*) | ||
1541 | - version_type=linux | ||
1542 | - need_lib_prefix=no | ||
1543 | - need_version=no | ||
1544 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1545 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1546 | - shlibpath_var=LD_LIBRARY_PATH | ||
1547 | - shlibpath_overrides_runpath=yes | ||
1548 | - hardcode_into_libs=yes | ||
1549 | - # ldd complains unless libraries are executable | ||
1550 | - postinstall_cmds='chmod +x $lib' | ||
1551 | - ;; | ||
1552 | - | ||
1553 | -sunos4*) | ||
1554 | - version_type=sunos | ||
1555 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' | ||
1556 | - finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' | ||
1557 | - shlibpath_var=LD_LIBRARY_PATH | ||
1558 | - shlibpath_overrides_runpath=yes | ||
1559 | - if test "$with_gnu_ld" = yes; then | ||
1560 | - need_lib_prefix=no | ||
1561 | - fi | ||
1562 | - need_version=yes | ||
1563 | - ;; | ||
1564 | - | ||
1565 | -sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) | ||
1566 | - version_type=linux | ||
1567 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1568 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1569 | - shlibpath_var=LD_LIBRARY_PATH | ||
1570 | - case $host_vendor in | ||
1571 | - sni) | ||
1572 | - shlibpath_overrides_runpath=no | ||
1573 | - need_lib_prefix=no | ||
1574 | - export_dynamic_flag_spec='${wl}-Blargedynsym' | ||
1575 | - runpath_var=LD_RUN_PATH | ||
1576 | - ;; | ||
1577 | - siemens) | ||
1578 | - need_lib_prefix=no | ||
1579 | - ;; | ||
1580 | - motorola) | ||
1581 | - need_lib_prefix=no | ||
1582 | - need_version=no | ||
1583 | - shlibpath_overrides_runpath=no | ||
1584 | - sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' | ||
1585 | - ;; | ||
1586 | - esac | ||
1587 | - ;; | ||
1588 | - | ||
1589 | -sysv4*MP*) | ||
1590 | - if test -d /usr/nec ;then | ||
1591 | - version_type=linux | ||
1592 | - library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' | ||
1593 | - soname_spec='$libname${shared_ext}.$major' | ||
1594 | - shlibpath_var=LD_LIBRARY_PATH | ||
1595 | - fi | ||
1596 | - ;; | ||
1597 | - | ||
1598 | -uts4*) | ||
1599 | - version_type=linux | ||
1600 | - library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' | ||
1601 | - soname_spec='${libname}${release}${shared_ext}$major' | ||
1602 | - shlibpath_var=LD_LIBRARY_PATH | ||
1603 | - ;; | ||
1604 | - | ||
1605 | -*) | ||
1606 | - dynamic_linker=no | ||
1607 | - ;; | ||
1608 | -esac | ||
1609 | -AC_MSG_RESULT([$dynamic_linker]) | ||
1610 | -test "$dynamic_linker" = no && can_build_shared=no | ||
1611 | -])# AC_LIBTOOL_SYS_DYNAMIC_LINKER | ||
1612 | - | ||
1613 | - | ||
1614 | -# _LT_AC_TAGCONFIG | ||
1615 | -# ---------------- | ||
1616 | -AC_DEFUN([_LT_AC_TAGCONFIG], | ||
1617 | -[AC_ARG_WITH([tags], | ||
1618 | - [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@], | ||
1619 | - [include additional configurations @<:@automatic@:>@])], | ||
1620 | - [tagnames="$withval"]) | ||
1621 | - | ||
1622 | -if test -f "$ltmain" && test -n "$tagnames"; then | ||
1623 | - if test ! -f "${ofile}"; then | ||
1624 | - AC_MSG_WARN([output file `$ofile' does not exist]) | ||
1625 | - fi | ||
1626 | - | ||
1627 | - if test -z "$LTCC"; then | ||
1628 | - eval "`$SHELL ${ofile} --config | grep '^LTCC='`" | ||
1629 | - if test -z "$LTCC"; then | ||
1630 | - AC_MSG_WARN([output file `$ofile' does not look like a libtool script]) | ||
1631 | - else | ||
1632 | - AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile']) | ||
1633 | - fi | ||
1634 | - fi | ||
1635 | - | ||
1636 | - # Extract list of available tagged configurations in $ofile. | ||
1637 | - # Note that this assumes the entire list is on one line. | ||
1638 | - available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'` | ||
1639 | - | ||
1640 | - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | ||
1641 | - for tagname in $tagnames; do | ||
1642 | - IFS="$lt_save_ifs" | ||
1643 | - # Check whether tagname contains only valid characters | ||
1644 | - case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in | ||
1645 | - "") ;; | ||
1646 | - *) AC_MSG_ERROR([invalid tag name: $tagname]) | ||
1647 | - ;; | ||
1648 | - esac | ||
1649 | - | ||
1650 | - if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null | ||
1651 | - then | ||
1652 | - AC_MSG_ERROR([tag name \"$tagname\" already exists]) | ||
1653 | - fi | ||
1654 | - | ||
1655 | - # Update the list of available tags. | ||
1656 | - if test -n "$tagname"; then | ||
1657 | - echo appending configuration tag \"$tagname\" to $ofile | ||
1658 | - | ||
1659 | - case $tagname in | ||
1660 | - CXX) | ||
1661 | - if test -n "$CXX" && test "X$CXX" != "Xno"; then | ||
1662 | - AC_LIBTOOL_LANG_CXX_CONFIG | ||
1663 | - else | ||
1664 | - tagname="" | ||
1665 | - fi | ||
1666 | - ;; | ||
1667 | - | ||
1668 | - F77) | ||
1669 | - if test -n "$F77" && test "X$F77" != "Xno"; then | ||
1670 | - AC_LIBTOOL_LANG_F77_CONFIG | ||
1671 | - else | ||
1672 | - tagname="" | ||
1673 | - fi | ||
1674 | - ;; | ||
1675 | - | ||
1676 | - GCJ) | ||
1677 | - if test -n "$GCJ" && test "X$GCJ" != "Xno"; then | ||
1678 | - AC_LIBTOOL_LANG_GCJ_CONFIG | ||
1679 | - else | ||
1680 | - tagname="" | ||
1681 | - fi | ||
1682 | - ;; | ||
1683 | - | ||
1684 | - RC) | ||
1685 | - AC_LIBTOOL_LANG_RC_CONFIG | ||
1686 | - ;; | ||
1687 | - | ||
1688 | - *) | ||
1689 | - AC_MSG_ERROR([Unsupported tag name: $tagname]) | ||
1690 | - ;; | ||
1691 | - esac | ||
1692 | - | ||
1693 | - # Append the new tag name to the list of available tags. | ||
1694 | - if test -n "$tagname" ; then | ||
1695 | - available_tags="$available_tags $tagname" | ||
1696 | - fi | ||
1697 | - fi | ||
1698 | - done | ||
1699 | - IFS="$lt_save_ifs" | ||
1700 | - | ||
1701 | - # Now substitute the updated list of available tags. | ||
1702 | - if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then | ||
1703 | - mv "${ofile}T" "$ofile" | ||
1704 | - chmod +x "$ofile" | ||
1705 | - else | ||
1706 | - rm -f "${ofile}T" | ||
1707 | - AC_MSG_ERROR([unable to update list of available tagged configurations.]) | ||
1708 | - fi | ||
1709 | -fi | ||
1710 | -])# _LT_AC_TAGCONFIG | ||
1711 | - | ||
1712 | - | ||
1713 | -# AC_LIBTOOL_DLOPEN | ||
1714 | -# ----------------- | ||
1715 | -# enable checks for dlopen support | ||
1716 | -AC_DEFUN([AC_LIBTOOL_DLOPEN], | ||
1717 | - [AC_BEFORE([$0],[AC_LIBTOOL_SETUP]) | ||
1718 | -])# AC_LIBTOOL_DLOPEN | ||
1719 | - | ||
1720 | - | ||
1721 | -# AC_LIBTOOL_WIN32_DLL | ||
1722 | -# -------------------- | ||
1723 | -# declare package support for building win32 dll's | ||
1724 | -AC_DEFUN([AC_LIBTOOL_WIN32_DLL], | ||
1725 | -[AC_BEFORE([$0], [AC_LIBTOOL_SETUP]) | ||
1726 | -])# AC_LIBTOOL_WIN32_DLL | ||
1727 | - | ||
1728 | - | ||
1729 | -# AC_ENABLE_SHARED([DEFAULT]) | ||
1730 | -# --------------------------- | ||
1731 | -# implement the --enable-shared flag | ||
1732 | -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. | ||
1733 | -AC_DEFUN([AC_ENABLE_SHARED], | ||
1734 | -[define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl | ||
1735 | -AC_ARG_ENABLE([shared], | ||
1736 | - [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@], | ||
1737 | - [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])], | ||
1738 | - [p=${PACKAGE-default} | ||
1739 | - case $enableval in | ||
1740 | - yes) enable_shared=yes ;; | ||
1741 | - no) enable_shared=no ;; | ||
1742 | - *) | ||
1743 | - enable_shared=no | ||
1744 | - # Look at the argument we got. We use all the common list separators. | ||
1745 | - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | ||
1746 | - for pkg in $enableval; do | ||
1747 | - IFS="$lt_save_ifs" | ||
1748 | - if test "X$pkg" = "X$p"; then | ||
1749 | - enable_shared=yes | ||
1750 | - fi | ||
1751 | - done | ||
1752 | - IFS="$lt_save_ifs" | ||
1753 | - ;; | ||
1754 | - esac], | ||
1755 | - [enable_shared=]AC_ENABLE_SHARED_DEFAULT) | ||
1756 | -])# AC_ENABLE_SHARED | ||
1757 | - | ||
1758 | - | ||
1759 | -# AC_DISABLE_SHARED | ||
1760 | -# ----------------- | ||
1761 | -#- set the default shared flag to --disable-shared | ||
1762 | -AC_DEFUN([AC_DISABLE_SHARED], | ||
1763 | -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl | ||
1764 | -AC_ENABLE_SHARED(no) | ||
1765 | -])# AC_DISABLE_SHARED | ||
1766 | - | ||
1767 | - | ||
1768 | -# AC_ENABLE_STATIC([DEFAULT]) | ||
1769 | -# --------------------------- | ||
1770 | -# implement the --enable-static flag | ||
1771 | -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. | ||
1772 | -AC_DEFUN([AC_ENABLE_STATIC], | ||
1773 | -[define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl | ||
1774 | -AC_ARG_ENABLE([static], | ||
1775 | - [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@], | ||
1776 | - [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])], | ||
1777 | - [p=${PACKAGE-default} | ||
1778 | - case $enableval in | ||
1779 | - yes) enable_static=yes ;; | ||
1780 | - no) enable_static=no ;; | ||
1781 | - *) | ||
1782 | - enable_static=no | ||
1783 | - # Look at the argument we got. We use all the common list separators. | ||
1784 | - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | ||
1785 | - for pkg in $enableval; do | ||
1786 | - IFS="$lt_save_ifs" | ||
1787 | - if test "X$pkg" = "X$p"; then | ||
1788 | - enable_static=yes | ||
1789 | - fi | ||
1790 | - done | ||
1791 | - IFS="$lt_save_ifs" | ||
1792 | - ;; | ||
1793 | - esac], | ||
1794 | - [enable_static=]AC_ENABLE_STATIC_DEFAULT) | ||
1795 | -])# AC_ENABLE_STATIC | ||
1796 | - | ||
1797 | - | ||
1798 | -# AC_DISABLE_STATIC | ||
1799 | -# ----------------- | ||
1800 | -# set the default static flag to --disable-static | ||
1801 | -AC_DEFUN([AC_DISABLE_STATIC], | ||
1802 | -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl | ||
1803 | -AC_ENABLE_STATIC(no) | ||
1804 | -])# AC_DISABLE_STATIC | ||
1805 | - | ||
1806 | - | ||
1807 | -# AC_ENABLE_FAST_INSTALL([DEFAULT]) | ||
1808 | -# --------------------------------- | ||
1809 | -# implement the --enable-fast-install flag | ||
1810 | -# DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. | ||
1811 | -AC_DEFUN([AC_ENABLE_FAST_INSTALL], | ||
1812 | -[define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl | ||
1813 | -AC_ARG_ENABLE([fast-install], | ||
1814 | - [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], | ||
1815 | - [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], | ||
1816 | - [p=${PACKAGE-default} | ||
1817 | - case $enableval in | ||
1818 | - yes) enable_fast_install=yes ;; | ||
1819 | - no) enable_fast_install=no ;; | ||
1820 | - *) | ||
1821 | - enable_fast_install=no | ||
1822 | - # Look at the argument we got. We use all the common list separators. | ||
1823 | - lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," | ||
1824 | - for pkg in $enableval; do | ||
1825 | - IFS="$lt_save_ifs" | ||
1826 | - if test "X$pkg" = "X$p"; then | ||
1827 | - enable_fast_install=yes | ||
1828 | - fi | ||
1829 | - done | ||
1830 | - IFS="$lt_save_ifs" | ||
1831 | - ;; | ||
1832 | - esac], | ||
1833 | - [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT) | ||
1834 | -])# AC_ENABLE_FAST_INSTALL | ||
1835 | - | ||
1836 | - | ||
1837 | -# AC_DISABLE_FAST_INSTALL | ||
1838 | -# ----------------------- | ||
1839 | -# set the default to --disable-fast-install | ||
1840 | -AC_DEFUN([AC_DISABLE_FAST_INSTALL], | ||
1841 | -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl | ||
1842 | -AC_ENABLE_FAST_INSTALL(no) | ||
1843 | -])# AC_DISABLE_FAST_INSTALL | ||
1844 | - | ||
1845 | - | ||
1846 | -# AC_LIBTOOL_PICMODE([MODE]) | ||
1847 | -# -------------------------- | ||
1848 | -# implement the --with-pic flag | ||
1849 | -# MODE is either `yes' or `no'. If omitted, it defaults to `both'. | ||
1850 | -AC_DEFUN([AC_LIBTOOL_PICMODE], | ||
1851 | -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl | ||
1852 | -pic_mode=ifelse($#,1,$1,default) | ||
1853 | -])# AC_LIBTOOL_PICMODE | ||
1854 | - | ||
1855 | - | ||
1856 | -# AC_PROG_EGREP | ||
1857 | -# ------------- | ||
1858 | -# This is predefined starting with Autoconf 2.54, so this conditional | ||
1859 | -# definition can be removed once we require Autoconf 2.54 or later. | ||
1860 | -m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP], | ||
1861 | -[AC_CACHE_CHECK([for egrep], [ac_cv_prog_egrep], | ||
1862 | - [if echo a | (grep -E '(a|b)') >/dev/null 2>&1 | ||
1863 | - then ac_cv_prog_egrep='grep -E' | ||
1864 | - else ac_cv_prog_egrep='egrep' | ||
1865 | - fi]) | ||
1866 | - EGREP=$ac_cv_prog_egrep | ||
1867 | - AC_SUBST([EGREP]) | ||
1868 | -])]) | ||
1869 | - | ||
1870 | - | ||
1871 | -# AC_PATH_TOOL_PREFIX | ||
1872 | -# ------------------- | ||
1873 | -# find a file program which can recognise shared library | ||
1874 | -AC_DEFUN([AC_PATH_TOOL_PREFIX], | ||
1875 | -[AC_REQUIRE([AC_PROG_EGREP])dnl | ||
1876 | -AC_MSG_CHECKING([for $1]) | ||
1877 | -AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, | ||
1878 | -[case $MAGIC_CMD in | ||
1879 | -[[\\/*] | ?:[\\/]*]) | ||
1880 | - lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. | ||
1881 | - ;; | ||
1882 | -*) | ||
1883 | - lt_save_MAGIC_CMD="$MAGIC_CMD" | ||
1884 | - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | ||
1885 | -dnl $ac_dummy forces splitting on constant user-supplied paths. | ||
1886 | -dnl POSIX.2 word splitting is done only on the output of word expansions, | ||
1887 | -dnl not every word. This closes a longstanding sh security hole. | ||
1888 | - ac_dummy="ifelse([$2], , $PATH, [$2])" | ||
1889 | - for ac_dir in $ac_dummy; do | ||
1890 | - IFS="$lt_save_ifs" | ||
1891 | - test -z "$ac_dir" && ac_dir=. | ||
1892 | - if test -f $ac_dir/$1; then | ||
1893 | - lt_cv_path_MAGIC_CMD="$ac_dir/$1" | ||
1894 | - if test -n "$file_magic_test_file"; then | ||
1895 | - case $deplibs_check_method in | ||
1896 | - "file_magic "*) | ||
1897 | - file_magic_regex="`expr \"$deplibs_check_method\" : \"file_magic \(.*\)\"`" | ||
1898 | - MAGIC_CMD="$lt_cv_path_MAGIC_CMD" | ||
1899 | - if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | | ||
1900 | - $EGREP "$file_magic_regex" > /dev/null; then | ||
1901 | - : | ||
1902 | - else | ||
1903 | - cat <<EOF 1>&2 | ||
1904 | - | ||
1905 | -*** Warning: the command libtool uses to detect shared libraries, | ||
1906 | -*** $file_magic_cmd, produces output that libtool cannot recognize. | ||
1907 | -*** The result is that libtool may fail to recognize shared libraries | ||
1908 | -*** as such. This will affect the creation of libtool libraries that | ||
1909 | -*** depend on shared libraries, but programs linked with such libtool | ||
1910 | -*** libraries will work regardless of this problem. Nevertheless, you | ||
1911 | -*** may want to report the problem to your system manager and/or to | ||
1912 | -*** bug-libtool@gnu.org | ||
1913 | - | ||
1914 | -EOF | ||
1915 | - fi ;; | ||
1916 | - esac | ||
1917 | - fi | ||
1918 | - break | ||
1919 | - fi | ||
1920 | - done | ||
1921 | - IFS="$lt_save_ifs" | ||
1922 | - MAGIC_CMD="$lt_save_MAGIC_CMD" | ||
1923 | - ;; | ||
1924 | -esac]) | ||
1925 | -MAGIC_CMD="$lt_cv_path_MAGIC_CMD" | ||
1926 | -if test -n "$MAGIC_CMD"; then | ||
1927 | - AC_MSG_RESULT($MAGIC_CMD) | ||
1928 | -else | ||
1929 | - AC_MSG_RESULT(no) | ||
1930 | -fi | ||
1931 | -])# AC_PATH_TOOL_PREFIX | ||
1932 | - | ||
1933 | - | ||
1934 | -# AC_PATH_MAGIC | ||
1935 | -# ------------- | ||
1936 | -# find a file program which can recognise a shared library | ||
1937 | -AC_DEFUN([AC_PATH_MAGIC], | ||
1938 | -[AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) | ||
1939 | -if test -z "$lt_cv_path_MAGIC_CMD"; then | ||
1940 | - if test -n "$ac_tool_prefix"; then | ||
1941 | - AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) | ||
1942 | - else | ||
1943 | - MAGIC_CMD=: | ||
1944 | - fi | ||
1945 | -fi | ||
1946 | -])# AC_PATH_MAGIC | ||
1947 | - | ||
1948 | - | ||
1949 | -# AC_PROG_LD | ||
1950 | -# ---------- | ||
1951 | -# find the pathname to the GNU or non-GNU linker | ||
1952 | -AC_DEFUN([AC_PROG_LD], | ||
1953 | -[AC_ARG_WITH([gnu-ld], | ||
1954 | - [AC_HELP_STRING([--with-gnu-ld], | ||
1955 | - [assume the C compiler uses GNU ld @<:@default=no@:>@])], | ||
1956 | - [test "$withval" = no || with_gnu_ld=yes], | ||
1957 | - [with_gnu_ld=no]) | ||
1958 | -AC_REQUIRE([LT_AC_PROG_SED])dnl | ||
1959 | -AC_REQUIRE([AC_PROG_CC])dnl | ||
1960 | -AC_REQUIRE([AC_CANONICAL_HOST])dnl | ||
1961 | -AC_REQUIRE([AC_CANONICAL_BUILD])dnl | ||
1962 | -ac_prog=ld | ||
1963 | -if test "$GCC" = yes; then | ||
1964 | - # Check if gcc -print-prog-name=ld gives a path. | ||
1965 | - AC_MSG_CHECKING([for ld used by $CC]) | ||
1966 | - case $host in | ||
1967 | - *-*-mingw*) | ||
1968 | - # gcc leaves a trailing carriage return which upsets mingw | ||
1969 | - ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; | ||
1970 | - *) | ||
1971 | - ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; | ||
1972 | - esac | ||
1973 | - case $ac_prog in | ||
1974 | - # Accept absolute paths. | ||
1975 | - [[\\/]]* | ?:[[\\/]]*) | ||
1976 | - re_direlt='/[[^/]][[^/]]*/\.\./' | ||
1977 | - # Canonicalize the pathname of ld | ||
1978 | - ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'` | ||
1979 | - while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do | ||
1980 | - ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"` | ||
1981 | - done | ||
1982 | - test -z "$LD" && LD="$ac_prog" | ||
1983 | - ;; | ||
1984 | - "") | ||
1985 | - # If it fails, then pretend we aren't using GCC. | ||
1986 | - ac_prog=ld | ||
1987 | - ;; | ||
1988 | - *) | ||
1989 | - # If it is relative, then search for the first ld in PATH. | ||
1990 | - with_gnu_ld=unknown | ||
1991 | - ;; | ||
1992 | - esac | ||
1993 | -elif test "$with_gnu_ld" = yes; then | ||
1994 | - AC_MSG_CHECKING([for GNU ld]) | ||
1995 | -else | ||
1996 | - AC_MSG_CHECKING([for non-GNU ld]) | ||
1997 | -fi | ||
1998 | -AC_CACHE_VAL(lt_cv_path_LD, | ||
1999 | -[if test -z "$LD"; then | ||
2000 | - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | ||
2001 | - for ac_dir in $PATH; do | ||
2002 | - IFS="$lt_save_ifs" | ||
2003 | - test -z "$ac_dir" && ac_dir=. | ||
2004 | - if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then | ||
2005 | - lt_cv_path_LD="$ac_dir/$ac_prog" | ||
2006 | - # Check to see if the program is GNU ld. I'd rather use --version, | ||
2007 | - # but apparently some GNU ld's only accept -v. | ||
2008 | - # Break only if it was the GNU/non-GNU ld that we prefer. | ||
2009 | - case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in | ||
2010 | - *GNU* | *'with BFD'*) | ||
2011 | - test "$with_gnu_ld" != no && break | ||
2012 | - ;; | ||
2013 | - *) | ||
2014 | - test "$with_gnu_ld" != yes && break | ||
2015 | - ;; | ||
2016 | - esac | ||
2017 | - fi | ||
2018 | - done | ||
2019 | - IFS="$lt_save_ifs" | ||
2020 | -else | ||
2021 | - lt_cv_path_LD="$LD" # Let the user override the test with a path. | ||
2022 | -fi]) | ||
2023 | -LD="$lt_cv_path_LD" | ||
2024 | -if test -n "$LD"; then | ||
2025 | - AC_MSG_RESULT($LD) | ||
2026 | -else | ||
2027 | - AC_MSG_RESULT(no) | ||
2028 | -fi | ||
2029 | -test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH]) | ||
2030 | -AC_PROG_LD_GNU | ||
2031 | -])# AC_PROG_LD | ||
2032 | - | ||
2033 | - | ||
2034 | -# AC_PROG_LD_GNU | ||
2035 | -# -------------- | ||
2036 | -AC_DEFUN([AC_PROG_LD_GNU], | ||
2037 | -[AC_REQUIRE([AC_PROG_EGREP])dnl | ||
2038 | -AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld, | ||
2039 | -[# I'd rather use --version here, but apparently some GNU ld's only accept -v. | ||
2040 | -case `$LD -v 2>&1 </dev/null` in | ||
2041 | -*GNU* | *'with BFD'*) | ||
2042 | - lt_cv_prog_gnu_ld=yes | ||
2043 | - ;; | ||
2044 | -*) | ||
2045 | - lt_cv_prog_gnu_ld=no | ||
2046 | - ;; | ||
2047 | -esac]) | ||
2048 | -with_gnu_ld=$lt_cv_prog_gnu_ld | ||
2049 | -])# AC_PROG_LD_GNU | ||
2050 | - | ||
2051 | - | ||
2052 | -# AC_PROG_LD_RELOAD_FLAG | ||
2053 | -# ---------------------- | ||
2054 | -# find reload flag for linker | ||
2055 | -# -- PORTME Some linkers may need a different reload flag. | ||
2056 | -AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], | ||
2057 | -[AC_CACHE_CHECK([for $LD option to reload object files], | ||
2058 | - lt_cv_ld_reload_flag, | ||
2059 | - [lt_cv_ld_reload_flag='-r']) | ||
2060 | -reload_flag=$lt_cv_ld_reload_flag | ||
2061 | -case $reload_flag in | ||
2062 | -"" | " "*) ;; | ||
2063 | -*) reload_flag=" $reload_flag" ;; | ||
2064 | -esac | ||
2065 | -reload_cmds='$LD$reload_flag -o $output$reload_objs' | ||
2066 | -])# AC_PROG_LD_RELOAD_FLAG | ||
2067 | - | ||
2068 | - | ||
2069 | -# AC_DEPLIBS_CHECK_METHOD | ||
2070 | -# ----------------------- | ||
2071 | -# how to check for library dependencies | ||
2072 | -# -- PORTME fill in with the dynamic library characteristics | ||
2073 | -AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], | ||
2074 | -[AC_CACHE_CHECK([how to recognise dependent libraries], | ||
2075 | -lt_cv_deplibs_check_method, | ||
2076 | -[lt_cv_file_magic_cmd='$MAGIC_CMD' | ||
2077 | -lt_cv_file_magic_test_file= | ||
2078 | -lt_cv_deplibs_check_method='unknown' | ||
2079 | -# Need to set the preceding variable on all platforms that support | ||
2080 | -# interlibrary dependencies. | ||
2081 | -# 'none' -- dependencies not supported. | ||
2082 | -# `unknown' -- same as none, but documents that we really don't know. | ||
2083 | -# 'pass_all' -- all dependencies passed with no checks. | ||
2084 | -# 'test_compile' -- check by making test program. | ||
2085 | -# 'file_magic [[regex]]' -- check by looking for files in library path | ||
2086 | -# which responds to the $file_magic_cmd with a given extended regex. | ||
2087 | -# If you have `file' or equivalent on your system and you're not sure | ||
2088 | -# whether `pass_all' will *always* work, you probably want this one. | ||
2089 | - | ||
2090 | -case $host_os in | ||
2091 | -aix4* | aix5*) | ||
2092 | - lt_cv_deplibs_check_method=pass_all | ||
2093 | - ;; | ||
2094 | - | ||
2095 | -beos*) | ||
2096 | - lt_cv_deplibs_check_method=pass_all | ||
2097 | - ;; | ||
2098 | - | ||
2099 | -bsdi4*) | ||
2100 | - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)' | ||
2101 | - lt_cv_file_magic_cmd='/usr/bin/file -L' | ||
2102 | - lt_cv_file_magic_test_file=/shlib/libc.so | ||
2103 | - ;; | ||
2104 | - | ||
2105 | -cygwin*) | ||
2106 | - lt_cv_deplibs_check_method=pass_all | ||
2107 | - ;; | ||
2108 | - | ||
2109 | -mingw* | pw32*) | ||
2110 | - # win32_libid is a shell function defined in ltmain.sh | ||
2111 | - lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' | ||
2112 | - lt_cv_file_magic_cmd='win32_libid' | ||
2113 | - ;; | ||
2114 | - | ||
2115 | -darwin* | rhapsody*) | ||
2116 | - # this will be overwritten by pass_all, but leave it in just in case | ||
2117 | - lt_cv_deplibs_check_method='file_magic Mach-O dynamically linked shared library' | ||
2118 | - lt_cv_file_magic_cmd='/usr/bin/file -L' | ||
2119 | - case "$host_os" in | ||
2120 | - rhapsody* | darwin1.[[012]]) | ||
2121 | - lt_cv_file_magic_test_file=`/System/Library/Frameworks/System.framework/System` | ||
2122 | - ;; | ||
2123 | - *) # Darwin 1.3 on | ||
2124 | - lt_cv_file_magic_test_file='/usr/lib/libSystem.dylib' | ||
2125 | - ;; | ||
2126 | - esac | ||
2127 | - lt_cv_deplibs_check_method=pass_all | ||
2128 | - ;; | ||
2129 | - | ||
2130 | -freebsd* | kfreebsd*-gnu) | ||
2131 | - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then | ||
2132 | - case $host_cpu in | ||
2133 | - i*86 ) | ||
2134 | - # Not sure whether the presence of OpenBSD here was a mistake. | ||
2135 | - # Let's accept both of them until this is cleared up. | ||
2136 | - lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD)/i[[3-9]]86 (compact )?demand paged shared library' | ||
2137 | - lt_cv_file_magic_cmd=/usr/bin/file | ||
2138 | - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` | ||
2139 | - ;; | ||
2140 | - esac | ||
2141 | - else | ||
2142 | - lt_cv_deplibs_check_method=pass_all | ||
2143 | - fi | ||
2144 | - ;; | ||
2145 | - | ||
2146 | -gnu*) | ||
2147 | - lt_cv_deplibs_check_method=pass_all | ||
2148 | - ;; | ||
2149 | - | ||
2150 | -hpux10.20* | hpux11*) | ||
2151 | - lt_cv_file_magic_cmd=/usr/bin/file | ||
2152 | - case "$host_cpu" in | ||
2153 | - ia64*) | ||
2154 | - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' | ||
2155 | - lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so | ||
2156 | - ;; | ||
2157 | - hppa*64*) | ||
2158 | - [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] | ||
2159 | - lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl | ||
2160 | - ;; | ||
2161 | - *) | ||
2162 | - lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' | ||
2163 | - lt_cv_file_magic_test_file=/usr/lib/libc.sl | ||
2164 | - ;; | ||
2165 | - esac | ||
2166 | - ;; | ||
2167 | - | ||
2168 | -irix5* | irix6* | nonstopux*) | ||
2169 | - case $host_os in | ||
2170 | - irix5* | nonstopux*) | ||
2171 | - # this will be overridden with pass_all, but let us keep it just in case | ||
2172 | - lt_cv_deplibs_check_method="file_magic ELF 32-bit MSB dynamic lib MIPS - version 1" | ||
2173 | - ;; | ||
2174 | - *) | ||
2175 | - case $LD in | ||
2176 | - *-32|*"-32 ") libmagic=32-bit;; | ||
2177 | - *-n32|*"-n32 ") libmagic=N32;; | ||
2178 | - *-64|*"-64 ") libmagic=64-bit;; | ||
2179 | - *) libmagic=never-match;; | ||
2180 | - esac | ||
2181 | - # this will be overridden with pass_all, but let us keep it just in case | ||
2182 | - lt_cv_deplibs_check_method="file_magic ELF ${libmagic} MSB mips-[[1234]] dynamic lib MIPS - version 1" | ||
2183 | - ;; | ||
2184 | - esac | ||
2185 | - lt_cv_file_magic_test_file=`echo /lib${libsuff}/libc.so*` | ||
2186 | - lt_cv_deplibs_check_method=pass_all | ||
2187 | - ;; | ||
2188 | - | ||
2189 | -# This must be Linux ELF. | ||
2190 | -linux*) | ||
2191 | - case $host_cpu in | ||
2192 | - alpha* | hppa* | i*86 | ia64* | m68* | mips* | powerpc* | sparc* | s390* | sh* | x86_64* ) | ||
2193 | - lt_cv_deplibs_check_method=pass_all ;; | ||
2194 | - # the debian people say, arm and glibc 2.3.1 works for them with pass_all | ||
2195 | - arm* ) | ||
2196 | - lt_cv_deplibs_check_method=pass_all ;; | ||
2197 | - *) | ||
2198 | - # glibc up to 2.1.1 does not perform some relocations on ARM | ||
2199 | - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; | ||
2200 | - esac | ||
2201 | - lt_cv_file_magic_test_file=`echo /lib/libc.so* /lib/libc-*.so` | ||
2202 | - ;; | ||
2203 | - | ||
2204 | -netbsd*) | ||
2205 | - if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then | ||
2206 | - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' | ||
2207 | - else | ||
2208 | - lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' | ||
2209 | - fi | ||
2210 | - ;; | ||
2211 | - | ||
2212 | -newos6*) | ||
2213 | - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' | ||
2214 | - lt_cv_file_magic_cmd=/usr/bin/file | ||
2215 | - lt_cv_file_magic_test_file=/usr/lib/libnls.so | ||
2216 | - ;; | ||
2217 | - | ||
2218 | -nto-qnx*) | ||
2219 | - lt_cv_deplibs_check_method=unknown | ||
2220 | - ;; | ||
2221 | - | ||
2222 | -openbsd*) | ||
2223 | - lt_cv_file_magic_cmd=/usr/bin/file | ||
2224 | - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` | ||
2225 | - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then | ||
2226 | - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB shared object' | ||
2227 | - else | ||
2228 | - lt_cv_deplibs_check_method='file_magic OpenBSD.* shared library' | ||
2229 | - fi | ||
2230 | - ;; | ||
2231 | - | ||
2232 | -osf3* | osf4* | osf5*) | ||
2233 | - # this will be overridden with pass_all, but let us keep it just in case | ||
2234 | - lt_cv_deplibs_check_method='file_magic COFF format alpha shared library' | ||
2235 | - lt_cv_file_magic_test_file=/shlib/libc.so | ||
2236 | - lt_cv_deplibs_check_method=pass_all | ||
2237 | - ;; | ||
2238 | - | ||
2239 | -sco3.2v5*) | ||
2240 | - lt_cv_deplibs_check_method=pass_all | ||
2241 | - ;; | ||
2242 | - | ||
2243 | -solaris*) | ||
2244 | - lt_cv_deplibs_check_method=pass_all | ||
2245 | - lt_cv_file_magic_test_file=/lib/libc.so | ||
2246 | - ;; | ||
2247 | - | ||
2248 | -sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) | ||
2249 | - case $host_vendor in | ||
2250 | - motorola) | ||
2251 | - 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]]' | ||
2252 | - lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` | ||
2253 | - ;; | ||
2254 | - ncr) | ||
2255 | - lt_cv_deplibs_check_method=pass_all | ||
2256 | - ;; | ||
2257 | - sequent) | ||
2258 | - lt_cv_file_magic_cmd='/bin/file' | ||
2259 | - lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' | ||
2260 | - ;; | ||
2261 | - sni) | ||
2262 | - lt_cv_file_magic_cmd='/bin/file' | ||
2263 | - lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" | ||
2264 | - lt_cv_file_magic_test_file=/lib/libc.so | ||
2265 | - ;; | ||
2266 | - siemens) | ||
2267 | - lt_cv_deplibs_check_method=pass_all | ||
2268 | - ;; | ||
2269 | - esac | ||
2270 | - ;; | ||
2271 | - | ||
2272 | -sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7* | sysv4*uw2*) | ||
2273 | - lt_cv_deplibs_check_method=pass_all | ||
2274 | - ;; | ||
2275 | -esac | ||
2276 | -]) | ||
2277 | -file_magic_cmd=$lt_cv_file_magic_cmd | ||
2278 | -deplibs_check_method=$lt_cv_deplibs_check_method | ||
2279 | -test -z "$deplibs_check_method" && deplibs_check_method=unknown | ||
2280 | -])# AC_DEPLIBS_CHECK_METHOD | ||
2281 | - | ||
2282 | - | ||
2283 | -# AC_PROG_NM | ||
2284 | -# ---------- | ||
2285 | -# find the pathname to a BSD-compatible name lister | ||
2286 | -AC_DEFUN([AC_PROG_NM], | ||
2287 | -[AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM, | ||
2288 | -[if test -n "$NM"; then | ||
2289 | - # Let the user override the test. | ||
2290 | - lt_cv_path_NM="$NM" | ||
2291 | -else | ||
2292 | - lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR | ||
2293 | - for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do | ||
2294 | - IFS="$lt_save_ifs" | ||
2295 | - test -z "$ac_dir" && ac_dir=. | ||
2296 | - tmp_nm="$ac_dir/${ac_tool_prefix}nm" | ||
2297 | - if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then | ||
2298 | - # Check to see if the nm accepts a BSD-compat flag. | ||
2299 | - # Adding the `sed 1q' prevents false positives on HP-UX, which says: | ||
2300 | - # nm: unknown option "B" ignored | ||
2301 | - # Tru64's nm complains that /dev/null is an invalid object file | ||
2302 | - case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in | ||
2303 | - */dev/null* | *'Invalid file or object type'*) | ||
2304 | - lt_cv_path_NM="$tmp_nm -B" | ||
2305 | - break | ||
2306 | - ;; | ||
2307 | - *) | ||
2308 | - case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in | ||
2309 | - */dev/null*) | ||
2310 | - lt_cv_path_NM="$tmp_nm -p" | ||
2311 | - break | ||
2312 | - ;; | ||
2313 | - *) | ||
2314 | - lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but | ||
2315 | - continue # so that we can try to find one that supports BSD flags | ||
2316 | - ;; | ||
2317 | - esac | ||
2318 | - esac | ||
2319 | - fi | ||
2320 | - done | ||
2321 | - IFS="$lt_save_ifs" | ||
2322 | - test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm | ||
2323 | -fi]) | ||
2324 | -NM="$lt_cv_path_NM" | ||
2325 | -])# AC_PROG_NM | ||
2326 | - | ||
2327 | - | ||
2328 | -# AC_CHECK_LIBM | ||
2329 | -# ------------- | ||
2330 | -# check for math library | ||
2331 | -AC_DEFUN([AC_CHECK_LIBM], | ||
2332 | -[AC_REQUIRE([AC_CANONICAL_HOST])dnl | ||
2333 | -LIBM= | ||
2334 | -case $host in | ||
2335 | -*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) | ||
2336 | - # These system don't have libm, or don't need it | ||
2337 | - ;; | ||
2338 | -*-ncr-sysv4.3*) | ||
2339 | - AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") | ||
2340 | - AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") | ||
2341 | - ;; | ||
2342 | -*) | ||
2343 | - AC_CHECK_LIB(m, cos, LIBM="-lm") | ||
2344 | - ;; | ||
2345 | -esac | ||
2346 | -])# AC_CHECK_LIBM | ||
2347 | - | ||
2348 | - | ||
2349 | -# AC_LIBLTDL_CONVENIENCE([DIRECTORY]) | ||
2350 | -# ----------------------------------- | ||
2351 | -# sets LIBLTDL to the link flags for the libltdl convenience library and | ||
2352 | -# LTDLINCL to the include flags for the libltdl header and adds | ||
2353 | -# --enable-ltdl-convenience to the configure arguments. Note that LIBLTDL | ||
2354 | -# and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If | ||
2355 | -# DIRECTORY is not provided, it is assumed to be `libltdl'. LIBLTDL will | ||
2356 | -# be prefixed with '${top_builddir}/' and LTDLINCL will be prefixed with | ||
2357 | -# '${top_srcdir}/' (note the single quotes!). If your package is not | ||
2358 | -# flat and you're not using automake, define top_builddir and | ||
2359 | -# top_srcdir appropriately in the Makefiles. | ||
2360 | -AC_DEFUN([AC_LIBLTDL_CONVENIENCE], | ||
2361 | -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl | ||
2362 | - case $enable_ltdl_convenience in | ||
2363 | - no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;; | ||
2364 | - "") enable_ltdl_convenience=yes | ||
2365 | - ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;; | ||
2366 | - esac | ||
2367 | - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la | ||
2368 | - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) | ||
2369 | - # For backwards non-gettext consistent compatibility... | ||
2370 | - INCLTDL="$LTDLINCL" | ||
2371 | -])# AC_LIBLTDL_CONVENIENCE | ||
2372 | - | ||
2373 | - | ||
2374 | -# AC_LIBLTDL_INSTALLABLE([DIRECTORY]) | ||
2375 | -# ----------------------------------- | ||
2376 | -# sets LIBLTDL to the link flags for the libltdl installable library and | ||
2377 | -# LTDLINCL to the include flags for the libltdl header and adds | ||
2378 | -# --enable-ltdl-install to the configure arguments. Note that LIBLTDL | ||
2379 | -# and LTDLINCL are not AC_SUBSTed, nor is AC_CONFIG_SUBDIRS called. If | ||
2380 | -# DIRECTORY is not provided and an installed libltdl is not found, it is | ||
2381 | -# assumed to be `libltdl'. LIBLTDL will be prefixed with '${top_builddir}/' | ||
2382 | -# and LTDLINCL will be prefixed with '${top_srcdir}/' (note the single | ||
2383 | -# quotes!). If your package is not flat and you're not using automake, | ||
2384 | -# define top_builddir and top_srcdir appropriately in the Makefiles. | ||
2385 | -# In the future, this macro may have to be called after AC_PROG_LIBTOOL. | ||
2386 | -AC_DEFUN([AC_LIBLTDL_INSTALLABLE], | ||
2387 | -[AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl | ||
2388 | - AC_CHECK_LIB(ltdl, lt_dlinit, | ||
2389 | - [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no], | ||
2390 | - [if test x"$enable_ltdl_install" = xno; then | ||
2391 | - AC_MSG_WARN([libltdl not installed, but installation disabled]) | ||
2392 | - else | ||
2393 | - enable_ltdl_install=yes | ||
2394 | - fi | ||
2395 | - ]) | ||
2396 | - if test x"$enable_ltdl_install" = x"yes"; then | ||
2397 | - ac_configure_args="$ac_configure_args --enable-ltdl-install" | ||
2398 | - LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la | ||
2399 | - LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl']) | ||
2400 | - else | ||
2401 | - ac_configure_args="$ac_configure_args --enable-ltdl-install=no" | ||
2402 | - LIBLTDL="-lltdl" | ||
2403 | - LTDLINCL= | ||
2404 | - fi | ||
2405 | - # For backwards non-gettext consistent compatibility... | ||
2406 | - INCLTDL="$LTDLINCL" | ||
2407 | -])# AC_LIBLTDL_INSTALLABLE | ||
2408 | - | ||
2409 | - | ||
2410 | -# AC_LIBTOOL_CXX | ||
2411 | -# -------------- | ||
2412 | -# enable support for C++ libraries | ||
2413 | -AC_DEFUN([AC_LIBTOOL_CXX], | ||
2414 | -[AC_REQUIRE([_LT_AC_LANG_CXX]) | ||
2415 | -])# AC_LIBTOOL_CXX | ||
2416 | - | ||
2417 | - | ||
2418 | -# _LT_AC_LANG_CXX | ||
2419 | -# --------------- | ||
2420 | -AC_DEFUN([_LT_AC_LANG_CXX], | ||
2421 | -[AC_REQUIRE([AC_PROG_CXX]) | ||
2422 | -AC_REQUIRE([AC_PROG_CXXCPP]) | ||
2423 | -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX]) | ||
2424 | -])# _LT_AC_LANG_CXX | ||
2425 | - | ||
2426 | - | ||
2427 | -# AC_LIBTOOL_F77 | ||
2428 | -# -------------- | ||
2429 | -# enable support for Fortran 77 libraries | ||
2430 | -AC_DEFUN([AC_LIBTOOL_F77], | ||
2431 | -[AC_REQUIRE([_LT_AC_LANG_F77]) | ||
2432 | -])# AC_LIBTOOL_F77 | ||
2433 | - | ||
2434 | - | ||
2435 | -# _LT_AC_LANG_F77 | ||
2436 | -# --------------- | ||
2437 | -AC_DEFUN([_LT_AC_LANG_F77], | ||
2438 | -[AC_REQUIRE([AC_PROG_F77]) | ||
2439 | -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77]) | ||
2440 | -])# _LT_AC_LANG_F77 | ||
2441 | - | ||
2442 | - | ||
2443 | -# AC_LIBTOOL_GCJ | ||
2444 | -# -------------- | ||
2445 | -# enable support for GCJ libraries | ||
2446 | -AC_DEFUN([AC_LIBTOOL_GCJ], | ||
2447 | -[AC_REQUIRE([_LT_AC_LANG_GCJ]) | ||
2448 | -])# AC_LIBTOOL_GCJ | ||
2449 | - | ||
2450 | - | ||
2451 | -# _LT_AC_LANG_GCJ | ||
2452 | -# --------------- | ||
2453 | -AC_DEFUN([_LT_AC_LANG_GCJ], | ||
2454 | -[AC_PROVIDE_IFELSE([AC_PROG_GCJ],[], | ||
2455 | - [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[], | ||
2456 | - [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[], | ||
2457 | - [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])], | ||
2458 | - [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])], | ||
2459 | - [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])]) | ||
2460 | -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ]) | ||
2461 | -])# _LT_AC_LANG_GCJ | ||
2462 | - | ||
2463 | - | ||
2464 | -# AC_LIBTOOL_RC | ||
2465 | -# -------------- | ||
2466 | -# enable support for Windows resource files | ||
2467 | -AC_DEFUN([AC_LIBTOOL_RC], | ||
2468 | -[AC_REQUIRE([LT_AC_PROG_RC]) | ||
2469 | -_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC]) | ||
2470 | -])# AC_LIBTOOL_RC | ||
2471 | - | ||
2472 | - | ||
2473 | -# AC_LIBTOOL_LANG_C_CONFIG | ||
2474 | -# ------------------------ | ||
2475 | -# Ensure that the configuration vars for the C compiler are | ||
2476 | -# suitably defined. Those variables are subsequently used by | ||
2477 | -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. | ||
2478 | -AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG]) | ||
2479 | -AC_DEFUN([_LT_AC_LANG_C_CONFIG], | ||
2480 | -[lt_save_CC="$CC" | ||
2481 | -AC_LANG_PUSH(C) | ||
2482 | - | ||
2483 | -# Source file extension for C test sources. | ||
2484 | -ac_ext=c | ||
2485 | - | ||
2486 | -# Object file extension for compiled C test sources. | ||
2487 | -objext=o | ||
2488 | -_LT_AC_TAGVAR(objext, $1)=$objext | ||
2489 | - | ||
2490 | -# Code to be used in simple compile tests | ||
2491 | -lt_simple_compile_test_code="int some_variable = 0;\n" | ||
2492 | - | ||
2493 | -# Code to be used in simple link tests | ||
2494 | -lt_simple_link_test_code='int main(){return(0);}\n' | ||
2495 | - | ||
2496 | -_LT_AC_SYS_COMPILER | ||
2497 | - | ||
2498 | -# | ||
2499 | -# Check for any special shared library compilation flags. | ||
2500 | -# | ||
2501 | -_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)= | ||
2502 | -if test "$GCC" = no; then | ||
2503 | - case $host_os in | ||
2504 | - sco3.2v5*) | ||
2505 | - _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)='-belf' | ||
2506 | - ;; | ||
2507 | - esac | ||
2508 | -fi | ||
2509 | -if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then | ||
2510 | - AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries]) | ||
2511 | - if echo "$old_CC $old_CFLAGS " | grep "[[ ]]$]_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[[ ]]" >/dev/null; then : | ||
2512 | - else | ||
2513 | - AC_MSG_WARN([add `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to the CC or CFLAGS env variable and reconfigure]) | ||
2514 | - _LT_AC_TAGVAR(lt_cv_prog_cc_can_build_shared, $1)=no | ||
2515 | - fi | ||
2516 | -fi | ||
2517 | - | ||
2518 | - | ||
2519 | -# | ||
2520 | -# Check to make sure the static flag actually works. | ||
2521 | -# | ||
2522 | -AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, $1) works], | ||
2523 | - _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1), | ||
2524 | - $_LT_AC_TAGVAR(lt_prog_compiler_static, $1), | ||
2525 | - [], | ||
2526 | - [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=]) | ||
2527 | - | ||
2528 | - | ||
2529 | -## CAVEAT EMPTOR: | ||
2530 | -## There is no encapsulation within the following macros, do not change | ||
2531 | -## the running order or otherwise move them around unless you know exactly | ||
2532 | -## what you are doing... | ||
2533 | -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) | ||
2534 | -AC_LIBTOOL_PROG_COMPILER_PIC($1) | ||
2535 | -AC_LIBTOOL_PROG_CC_C_O($1) | ||
2536 | -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) | ||
2537 | -AC_LIBTOOL_PROG_LD_SHLIBS($1) | ||
2538 | -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) | ||
2539 | -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) | ||
2540 | -AC_LIBTOOL_SYS_LIB_STRIP | ||
2541 | -AC_LIBTOOL_DLOPEN_SELF($1) | ||
2542 | - | ||
2543 | -# Report which librarie types wil actually be built | ||
2544 | -AC_MSG_CHECKING([if libtool supports shared libraries]) | ||
2545 | -AC_MSG_RESULT([$can_build_shared]) | ||
2546 | - | ||
2547 | -AC_MSG_CHECKING([whether to build shared libraries]) | ||
2548 | -test "$can_build_shared" = "no" && enable_shared=no | ||
2549 | - | ||
2550 | -# On AIX, shared libraries and static libraries use the same namespace, and | ||
2551 | -# are all built from PIC. | ||
2552 | -case "$host_os" in | ||
2553 | -aix3*) | ||
2554 | - test "$enable_shared" = yes && enable_static=no | ||
2555 | - if test -n "$RANLIB"; then | ||
2556 | - archive_cmds="$archive_cmds~\$RANLIB \$lib" | ||
2557 | - postinstall_cmds='$RANLIB $lib' | ||
2558 | - fi | ||
2559 | - ;; | ||
2560 | - | ||
2561 | -aix4*) | ||
2562 | - if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then | ||
2563 | - test "$enable_shared" = yes && enable_static=no | ||
2564 | - fi | ||
2565 | - ;; | ||
2566 | - darwin* | rhapsody*) | ||
2567 | - if test "$GCC" = yes; then | ||
2568 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
2569 | - case "$host_os" in | ||
2570 | - rhapsody* | darwin1.[[012]]) | ||
2571 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,suppress' | ||
2572 | - ;; | ||
2573 | - *) # Darwin 1.3 on | ||
2574 | - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then | ||
2575 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress' | ||
2576 | - else | ||
2577 | - case ${MACOSX_DEPLOYMENT_TARGET} in | ||
2578 | - 10.[012]) | ||
2579 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress' | ||
2580 | - ;; | ||
2581 | - 10.*) | ||
2582 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,dynamic_lookup' | ||
2583 | - ;; | ||
2584 | - esac | ||
2585 | - fi | ||
2586 | - ;; | ||
2587 | - esac | ||
2588 | - output_verbose_link_cmd='echo' | ||
2589 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring' | ||
2590 | - _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs' | ||
2591 | - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's | ||
2592 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
2593 | - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
2594 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
2595 | - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes | ||
2596 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported | ||
2597 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' | ||
2598 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
2599 | - else | ||
2600 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2601 | - fi | ||
2602 | - ;; | ||
2603 | -esac | ||
2604 | -AC_MSG_RESULT([$enable_shared]) | ||
2605 | - | ||
2606 | -AC_MSG_CHECKING([whether to build static libraries]) | ||
2607 | -# Make sure either enable_shared or enable_static is yes. | ||
2608 | -test "$enable_shared" = yes || enable_static=yes | ||
2609 | -AC_MSG_RESULT([$enable_static]) | ||
2610 | - | ||
2611 | -AC_LIBTOOL_CONFIG($1) | ||
2612 | - | ||
2613 | -AC_LANG_POP | ||
2614 | -CC="$lt_save_CC" | ||
2615 | -])# AC_LIBTOOL_LANG_C_CONFIG | ||
2616 | - | ||
2617 | - | ||
2618 | -# AC_LIBTOOL_LANG_CXX_CONFIG | ||
2619 | -# -------------------------- | ||
2620 | -# Ensure that the configuration vars for the C compiler are | ||
2621 | -# suitably defined. Those variables are subsequently used by | ||
2622 | -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. | ||
2623 | -AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)]) | ||
2624 | -AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], | ||
2625 | -[AC_LANG_PUSH(C++) | ||
2626 | -AC_REQUIRE([AC_PROG_CXX]) | ||
2627 | -AC_REQUIRE([AC_PROG_CXXCPP]) | ||
2628 | - | ||
2629 | -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
2630 | -_LT_AC_TAGVAR(allow_undefined_flag, $1)= | ||
2631 | -_LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
2632 | -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= | ||
2633 | -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= | ||
2634 | -_LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
2635 | -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= | ||
2636 | -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= | ||
2637 | -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= | ||
2638 | -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no | ||
2639 | -_LT_AC_TAGVAR(hardcode_automatic, $1)=no | ||
2640 | -_LT_AC_TAGVAR(module_cmds, $1)= | ||
2641 | -_LT_AC_TAGVAR(module_expsym_cmds, $1)= | ||
2642 | -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown | ||
2643 | -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds | ||
2644 | -_LT_AC_TAGVAR(no_undefined_flag, $1)= | ||
2645 | -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= | ||
2646 | -_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no | ||
2647 | - | ||
2648 | -# Dependencies to place before and after the object being linked: | ||
2649 | -_LT_AC_TAGVAR(predep_objects, $1)= | ||
2650 | -_LT_AC_TAGVAR(postdep_objects, $1)= | ||
2651 | -_LT_AC_TAGVAR(predeps, $1)= | ||
2652 | -_LT_AC_TAGVAR(postdeps, $1)= | ||
2653 | -_LT_AC_TAGVAR(compiler_lib_search_path, $1)= | ||
2654 | - | ||
2655 | -# Source file extension for C++ test sources. | ||
2656 | -ac_ext=cc | ||
2657 | - | ||
2658 | -# Object file extension for compiled C++ test sources. | ||
2659 | -objext=o | ||
2660 | -_LT_AC_TAGVAR(objext, $1)=$objext | ||
2661 | - | ||
2662 | -# Code to be used in simple compile tests | ||
2663 | -lt_simple_compile_test_code="int some_variable = 0;\n" | ||
2664 | - | ||
2665 | -# Code to be used in simple link tests | ||
2666 | -lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n' | ||
2667 | - | ||
2668 | -# ltmain only uses $CC for tagged configurations so make sure $CC is set. | ||
2669 | -_LT_AC_SYS_COMPILER | ||
2670 | - | ||
2671 | -# Allow CC to be a program name with arguments. | ||
2672 | -lt_save_CC=$CC | ||
2673 | -lt_save_LD=$LD | ||
2674 | -lt_save_GCC=$GCC | ||
2675 | -GCC=$GXX | ||
2676 | -lt_save_with_gnu_ld=$with_gnu_ld | ||
2677 | -lt_save_path_LD=$lt_cv_path_LD | ||
2678 | -if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then | ||
2679 | - lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx | ||
2680 | -else | ||
2681 | - unset lt_cv_prog_gnu_ld | ||
2682 | -fi | ||
2683 | -if test -n "${lt_cv_path_LDCXX+set}"; then | ||
2684 | - lt_cv_path_LD=$lt_cv_path_LDCXX | ||
2685 | -else | ||
2686 | - unset lt_cv_path_LD | ||
2687 | -fi | ||
2688 | -test -z "${LDCXX+set}" || LD=$LDCXX | ||
2689 | -CC=${CXX-"c++"} | ||
2690 | -compiler=$CC | ||
2691 | -_LT_AC_TAGVAR(compiler, $1)=$CC | ||
2692 | -cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` | ||
2693 | - | ||
2694 | -# We don't want -fno-exception wen compiling C++ code, so set the | ||
2695 | -# no_builtin_flag separately | ||
2696 | -if test "$GXX" = yes; then | ||
2697 | - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' | ||
2698 | -else | ||
2699 | - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= | ||
2700 | -fi | ||
2701 | - | ||
2702 | -if test "$GXX" = yes; then | ||
2703 | - # Set up default GNU C++ configuration | ||
2704 | - | ||
2705 | - AC_PROG_LD | ||
2706 | - | ||
2707 | - # Check if GNU C++ uses GNU ld as the underlying linker, since the | ||
2708 | - # archiving commands below assume that GNU ld is being used. | ||
2709 | - if test "$with_gnu_ld" = yes; then | ||
2710 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname -o $lib' | ||
2711 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | ||
2712 | - | ||
2713 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' | ||
2714 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' | ||
2715 | - | ||
2716 | - # If archive_cmds runs LD, not CC, wlarc should be empty | ||
2717 | - # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to | ||
2718 | - # investigate it a little bit more. (MM) | ||
2719 | - wlarc='${wl}' | ||
2720 | - | ||
2721 | - # ancient GNU ld didn't support --whole-archive et. al. | ||
2722 | - if eval "`$CC -print-prog-name=ld` --help 2>&1" | \ | ||
2723 | - grep 'no-whole-archive' > /dev/null; then | ||
2724 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' | ||
2725 | - else | ||
2726 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= | ||
2727 | - fi | ||
2728 | - else | ||
2729 | - with_gnu_ld=no | ||
2730 | - wlarc= | ||
2731 | - | ||
2732 | - # A generic and very simple default shared library creation | ||
2733 | - # command for GNU C++ for the case where it uses the native | ||
2734 | - # linker, instead of GNU ld. If possible, this setting should | ||
2735 | - # overridden to take advantage of the native linker features on | ||
2736 | - # the platform it is being used on. | ||
2737 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -o $lib' | ||
2738 | - fi | ||
2739 | - | ||
2740 | - # Commands to make compiler produce verbose output that lists | ||
2741 | - # what "hidden" libraries, object files and flags are used when | ||
2742 | - # linking a shared library. | ||
2743 | - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' | ||
2744 | - | ||
2745 | -else | ||
2746 | - GXX=no | ||
2747 | - with_gnu_ld=no | ||
2748 | - wlarc= | ||
2749 | -fi | ||
2750 | - | ||
2751 | -# PORTME: fill in a description of your system's C++ link characteristics | ||
2752 | -AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) | ||
2753 | -_LT_AC_TAGVAR(ld_shlibs, $1)=yes | ||
2754 | -case $host_os in | ||
2755 | - aix3*) | ||
2756 | - # FIXME: insert proper C++ library support | ||
2757 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2758 | - ;; | ||
2759 | - aix4* | aix5*) | ||
2760 | - if test "$host_cpu" = ia64; then | ||
2761 | - # On IA64, the linker does run time linking by default, so we don't | ||
2762 | - # have to do anything special. | ||
2763 | - aix_use_runtimelinking=no | ||
2764 | - exp_sym_flag='-Bexport' | ||
2765 | - no_entry_flag="" | ||
2766 | - else | ||
2767 | - # KDE requires run time linking. Make it the default. | ||
2768 | - aix_use_runtimelinking=yes | ||
2769 | - exp_sym_flag='-bexport' | ||
2770 | - no_entry_flag='-bnoentry' | ||
2771 | - fi | ||
2772 | - | ||
2773 | - # When large executables or shared objects are built, AIX ld can | ||
2774 | - # have problems creating the table of contents. If linking a library | ||
2775 | - # or program results in "error TOC overflow" add -mminimal-toc to | ||
2776 | - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not | ||
2777 | - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. | ||
2778 | - | ||
2779 | - _LT_AC_TAGVAR(archive_cmds, $1)='' | ||
2780 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
2781 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' | ||
2782 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
2783 | - | ||
2784 | - if test "$GXX" = yes; then | ||
2785 | - case $host_os in aix4.[012]|aix4.[012].*) | ||
2786 | - # We only want to do this on AIX 4.2 and lower, the check | ||
2787 | - # below for broken collect2 doesn't work under 4.3+ | ||
2788 | - collect2name=`${CC} -print-prog-name=collect2` | ||
2789 | - if test -f "$collect2name" && \ | ||
2790 | - strings "$collect2name" | grep resolve_lib_name >/dev/null | ||
2791 | - then | ||
2792 | - # We have reworked collect2 | ||
2793 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
2794 | - else | ||
2795 | - # We have old collect2 | ||
2796 | - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported | ||
2797 | - # It fails to find uninstalled libraries when the uninstalled | ||
2798 | - # path is not listed in the libpath. Setting hardcode_minus_L | ||
2799 | - # to unsupported forces relinking | ||
2800 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
2801 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
2802 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= | ||
2803 | - fi | ||
2804 | - esac | ||
2805 | - shared_flag='-shared' | ||
2806 | - else | ||
2807 | - # not using gcc | ||
2808 | - if test "$host_cpu" = ia64; then | ||
2809 | - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release | ||
2810 | - # chokes on -Wl,-G. The following line is correct: | ||
2811 | - shared_flag='-G' | ||
2812 | - else | ||
2813 | - if test "$aix_use_runtimelinking" = yes; then | ||
2814 | - shared_flag='-qmkshrobj ${wl}-G' | ||
2815 | - else | ||
2816 | - shared_flag='-qmkshrobj' | ||
2817 | - fi | ||
2818 | - fi | ||
2819 | - fi | ||
2820 | - | ||
2821 | - # Let the compiler handle the export list. | ||
2822 | - _LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
2823 | - if test "$aix_use_runtimelinking" = yes; then | ||
2824 | - # Warning - without using the other runtime loading flags (-brtl), | ||
2825 | - # -berok will link without error, but may produce a broken library. | ||
2826 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' | ||
2827 | - # Determine the default libpath from the value encoded in an empty executable. | ||
2828 | - _LT_AC_SYS_LIBPATH_AIX | ||
2829 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" | ||
2830 | - | ||
2831 | - _LT_AC_TAGVAR(archive_cmds, $1)="\$CC"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '" $shared_flag" | ||
2832 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" | ||
2833 | - else | ||
2834 | - if test "$host_cpu" = ia64; then | ||
2835 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' | ||
2836 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" | ||
2837 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" | ||
2838 | - else | ||
2839 | - # Determine the default libpath from the value encoded in an empty executable. | ||
2840 | - _LT_AC_SYS_LIBPATH_AIX | ||
2841 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" | ||
2842 | - # Warning - without using the other run time loading flags, | ||
2843 | - # -berok will link without error, but may produce a broken library. | ||
2844 | - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' | ||
2845 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' | ||
2846 | - # -bexpall does not export symbols beginning with underscore (_) | ||
2847 | - _LT_AC_TAGVAR(always_export_symbols, $1)=yes | ||
2848 | - # Exported symbols can be pulled into shared objects from archives | ||
2849 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' ' | ||
2850 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes | ||
2851 | - # This is similar to how AIX traditionally builds it's shared libraries. | ||
2852 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' | ||
2853 | - fi | ||
2854 | - fi | ||
2855 | - ;; | ||
2856 | - chorus*) | ||
2857 | - case $cc_basename in | ||
2858 | - *) | ||
2859 | - # FIXME: insert proper C++ library support | ||
2860 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2861 | - ;; | ||
2862 | - esac | ||
2863 | - ;; | ||
2864 | - | ||
2865 | - cygwin* | mingw* | pw32*) | ||
2866 | - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, | ||
2867 | - # as there is no search path for DLLs. | ||
2868 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
2869 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=no | ||
2870 | - _LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
2871 | - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes | ||
2872 | - | ||
2873 | - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then | ||
2874 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' | ||
2875 | - # If the export-symbols file already is a .def file (1st line | ||
2876 | - # is EXPORTS), use it as is; otherwise, prepend... | ||
2877 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then | ||
2878 | - cp $export_symbols $output_objdir/$soname.def; | ||
2879 | - else | ||
2880 | - echo EXPORTS > $output_objdir/$soname.def; | ||
2881 | - cat $export_symbols >> $output_objdir/$soname.def; | ||
2882 | - fi~ | ||
2883 | - $CC -shared -nostdlib $output_objdir/$soname.def $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' | ||
2884 | - else | ||
2885 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2886 | - fi | ||
2887 | - ;; | ||
2888 | - | ||
2889 | - darwin* | rhapsody*) | ||
2890 | - if test "$GXX" = yes; then | ||
2891 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
2892 | - case "$host_os" in | ||
2893 | - rhapsody* | darwin1.[[012]]) | ||
2894 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,suppress' | ||
2895 | - ;; | ||
2896 | - *) # Darwin 1.3 on | ||
2897 | - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then | ||
2898 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress' | ||
2899 | - else | ||
2900 | - case ${MACOSX_DEPLOYMENT_TARGET} in | ||
2901 | - 10.[012]) | ||
2902 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress' | ||
2903 | - ;; | ||
2904 | - 10.*) | ||
2905 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,dynamic_lookup' | ||
2906 | - ;; | ||
2907 | - esac | ||
2908 | - fi | ||
2909 | - ;; | ||
2910 | - esac | ||
2911 | - lt_int_apple_cc_single_mod=no | ||
2912 | - output_verbose_link_cmd='echo' | ||
2913 | - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then | ||
2914 | - lt_int_apple_cc_single_mod=yes | ||
2915 | - fi | ||
2916 | - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then | ||
2917 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring' | ||
2918 | - else | ||
2919 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $compiler_flags $deplibs -install_name $rpath/$soname $verstring' | ||
2920 | - fi | ||
2921 | - _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs' | ||
2922 | - | ||
2923 | - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's | ||
2924 | - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then | ||
2925 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
2926 | - else | ||
2927 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $compiler_flags $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
2928 | - fi | ||
2929 | - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
2930 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
2931 | - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes | ||
2932 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported | ||
2933 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' | ||
2934 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
2935 | - else | ||
2936 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2937 | - fi | ||
2938 | - ;; | ||
2939 | - | ||
2940 | - dgux*) | ||
2941 | - case $cc_basename in | ||
2942 | - ec++) | ||
2943 | - # FIXME: insert proper C++ library support | ||
2944 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2945 | - ;; | ||
2946 | - ghcx) | ||
2947 | - # Green Hills C++ Compiler | ||
2948 | - # FIXME: insert proper C++ library support | ||
2949 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2950 | - ;; | ||
2951 | - *) | ||
2952 | - # FIXME: insert proper C++ library support | ||
2953 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2954 | - ;; | ||
2955 | - esac | ||
2956 | - ;; | ||
2957 | - freebsd[12]*) | ||
2958 | - # C++ shared libraries reported to be fairly broken before switch to ELF | ||
2959 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2960 | - ;; | ||
2961 | - freebsd-elf*) | ||
2962 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
2963 | - ;; | ||
2964 | - freebsd* | kfreebsd*-gnu) | ||
2965 | - # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF | ||
2966 | - # conventions | ||
2967 | - _LT_AC_TAGVAR(ld_shlibs, $1)=yes | ||
2968 | - ;; | ||
2969 | - gnu*) | ||
2970 | - ;; | ||
2971 | - hpux9*) | ||
2972 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' | ||
2973 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
2974 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' | ||
2975 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
2976 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, | ||
2977 | - # but as the default | ||
2978 | - # location of the library. | ||
2979 | - | ||
2980 | - case $cc_basename in | ||
2981 | - CC) | ||
2982 | - # FIXME: insert proper C++ library support | ||
2983 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
2984 | - ;; | ||
2985 | - aCC) | ||
2986 | - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' | ||
2987 | - # Commands to make compiler produce verbose output that lists | ||
2988 | - # what "hidden" libraries, object files and flags are used when | ||
2989 | - # linking a shared library. | ||
2990 | - # | ||
2991 | - # There doesn't appear to be a way to prevent this compiler from | ||
2992 | - # explicitly linking system object files so we need to strip them | ||
2993 | - # from the output so that they don't get included in the library | ||
2994 | - # dependencies. | ||
2995 | - 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; echo $list' | ||
2996 | - ;; | ||
2997 | - *) | ||
2998 | - if test "$GXX" = yes; then | ||
2999 | - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' | ||
3000 | - else | ||
3001 | - # FIXME: insert proper C++ library support | ||
3002 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3003 | - fi | ||
3004 | - ;; | ||
3005 | - esac | ||
3006 | - ;; | ||
3007 | - hpux10*|hpux11*) | ||
3008 | - if test $with_gnu_ld = no; then | ||
3009 | - case "$host_cpu" in | ||
3010 | - hppa*64*) | ||
3011 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' | ||
3012 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' | ||
3013 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3014 | - ;; | ||
3015 | - ia64*) | ||
3016 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
3017 | - ;; | ||
3018 | - *) | ||
3019 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' | ||
3020 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3021 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' | ||
3022 | - ;; | ||
3023 | - esac | ||
3024 | - fi | ||
3025 | - case "$host_cpu" in | ||
3026 | - hppa*64*) | ||
3027 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
3028 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
3029 | - ;; | ||
3030 | - ia64*) | ||
3031 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
3032 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
3033 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, | ||
3034 | - # but as the default | ||
3035 | - # location of the library. | ||
3036 | - ;; | ||
3037 | - *) | ||
3038 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
3039 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, | ||
3040 | - # but as the default | ||
3041 | - # location of the library. | ||
3042 | - ;; | ||
3043 | - esac | ||
3044 | - | ||
3045 | - case $cc_basename in | ||
3046 | - CC) | ||
3047 | - # FIXME: insert proper C++ library support | ||
3048 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3049 | - ;; | ||
3050 | - aCC) | ||
3051 | - case "$host_cpu" in | ||
3052 | - hppa*64*|ia64*) | ||
3053 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' | ||
3054 | - ;; | ||
3055 | - *) | ||
3056 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects' | ||
3057 | - ;; | ||
3058 | - esac | ||
3059 | - # Commands to make compiler produce verbose output that lists | ||
3060 | - # what "hidden" libraries, object files and flags are used when | ||
3061 | - # linking a shared library. | ||
3062 | - # | ||
3063 | - # There doesn't appear to be a way to prevent this compiler from | ||
3064 | - # explicitly linking system object files so we need to strip them | ||
3065 | - # from the output so that they don't get included in the library | ||
3066 | - # dependencies. | ||
3067 | - 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; echo $list' | ||
3068 | - ;; | ||
3069 | - *) | ||
3070 | - if test "$GXX" = yes; then | ||
3071 | - if test $with_gnu_ld = no; then | ||
3072 | - case "$host_cpu" in | ||
3073 | - ia64*|hppa*64*) | ||
3074 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs' | ||
3075 | - ;; | ||
3076 | - *) | ||
3077 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects' | ||
3078 | - ;; | ||
3079 | - esac | ||
3080 | - fi | ||
3081 | - else | ||
3082 | - # FIXME: insert proper C++ library support | ||
3083 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3084 | - fi | ||
3085 | - ;; | ||
3086 | - esac | ||
3087 | - ;; | ||
3088 | - irix5* | irix6*) | ||
3089 | - case $cc_basename in | ||
3090 | - CC) | ||
3091 | - # SGI C++ | ||
3092 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' | ||
3093 | - | ||
3094 | - # Archives containing C++ object files must be created using | ||
3095 | - # "CC -ar", where "CC" is the IRIX C++ compiler. This is | ||
3096 | - # necessary to make sure instantiated templates are included | ||
3097 | - # in the archive. | ||
3098 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' | ||
3099 | - ;; | ||
3100 | - *) | ||
3101 | - if test "$GXX" = yes; then | ||
3102 | - if test "$with_gnu_ld" = no; then | ||
3103 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' | ||
3104 | - else | ||
3105 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib' | ||
3106 | - fi | ||
3107 | - fi | ||
3108 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
3109 | - ;; | ||
3110 | - esac | ||
3111 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
3112 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3113 | - ;; | ||
3114 | - linux*) | ||
3115 | - case $cc_basename in | ||
3116 | - KCC) | ||
3117 | - # Kuck and Associates, Inc. (KAI) C++ Compiler | ||
3118 | - | ||
3119 | - # KCC will only create a shared library if the output file | ||
3120 | - # ends with ".so" (or ".sl" for HP-UX), so rename the library | ||
3121 | - # to its proper name (with version) after linking. | ||
3122 | - _LT_AC_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 $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects --soname $soname -o \$templib; mv \$templib $lib' | ||
3123 | - _LT_AC_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 $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' | ||
3124 | - # Commands to make compiler produce verbose output that lists | ||
3125 | - # what "hidden" libraries, object files and flags are used when | ||
3126 | - # linking a shared library. | ||
3127 | - # | ||
3128 | - # There doesn't appear to be a way to prevent this compiler from | ||
3129 | - # explicitly linking system object files so we need to strip them | ||
3130 | - # from the output so that they don't get included in the library | ||
3131 | - # dependencies. | ||
3132 | - 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; echo $list' | ||
3133 | - | ||
3134 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir' | ||
3135 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' | ||
3136 | - | ||
3137 | - # Archives containing C++ object files must be created using | ||
3138 | - # "CC -Bstatic", where "CC" is the KAI C++ compiler. | ||
3139 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' | ||
3140 | - ;; | ||
3141 | - icpc) | ||
3142 | - # Intel C++ | ||
3143 | - with_gnu_ld=yes | ||
3144 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
3145 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname -o $lib' | ||
3146 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | ||
3147 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' | ||
3148 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' | ||
3149 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' | ||
3150 | - ;; | ||
3151 | - cxx) | ||
3152 | - # Compaq C++ | ||
3153 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname -o $lib' | ||
3154 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' | ||
3155 | - | ||
3156 | - runpath_var=LD_RUN_PATH | ||
3157 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' | ||
3158 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3159 | - | ||
3160 | - # Commands to make compiler produce verbose output that lists | ||
3161 | - # what "hidden" libraries, object files and flags are used when | ||
3162 | - # linking a shared library. | ||
3163 | - # | ||
3164 | - # There doesn't appear to be a way to prevent this compiler from | ||
3165 | - # explicitly linking system object files so we need to strip them | ||
3166 | - # from the output so that they don't get included in the library | ||
3167 | - # dependencies. | ||
3168 | - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $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; echo $list' | ||
3169 | - ;; | ||
3170 | - esac | ||
3171 | - ;; | ||
3172 | - lynxos*) | ||
3173 | - # FIXME: insert proper C++ library support | ||
3174 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3175 | - ;; | ||
3176 | - m88k*) | ||
3177 | - # FIXME: insert proper C++ library support | ||
3178 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3179 | - ;; | ||
3180 | - mvs*) | ||
3181 | - case $cc_basename in | ||
3182 | - cxx) | ||
3183 | - # FIXME: insert proper C++ library support | ||
3184 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3185 | - ;; | ||
3186 | - *) | ||
3187 | - # FIXME: insert proper C++ library support | ||
3188 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3189 | - ;; | ||
3190 | - esac | ||
3191 | - ;; | ||
3192 | - netbsd*) | ||
3193 | - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then | ||
3194 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' | ||
3195 | - wlarc= | ||
3196 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
3197 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
3198 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
3199 | - fi | ||
3200 | - # Workaround some broken pre-1.5 toolchains | ||
3201 | - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' | ||
3202 | - ;; | ||
3203 | - osf3*) | ||
3204 | - case $cc_basename in | ||
3205 | - KCC) | ||
3206 | - # Kuck and Associates, Inc. (KAI) C++ Compiler | ||
3207 | - | ||
3208 | - # KCC will only create a shared library if the output file | ||
3209 | - # ends with ".so" (or ".sl" for HP-UX), so rename the library | ||
3210 | - # to its proper name (with version) after linking. | ||
3211 | - _LT_AC_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 $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects --soname $soname -o \$templib; mv \$templib $lib' | ||
3212 | - | ||
3213 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' | ||
3214 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3215 | - | ||
3216 | - # Archives containing C++ object files must be created using | ||
3217 | - # "CC -Bstatic", where "CC" is the KAI C++ compiler. | ||
3218 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' | ||
3219 | - | ||
3220 | - ;; | ||
3221 | - RCC) | ||
3222 | - # Rational C++ 2.4.1 | ||
3223 | - # FIXME: insert proper C++ library support | ||
3224 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3225 | - ;; | ||
3226 | - cxx) | ||
3227 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' | ||
3228 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' | ||
3229 | - | ||
3230 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
3231 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3232 | - | ||
3233 | - # Commands to make compiler produce verbose output that lists | ||
3234 | - # what "hidden" libraries, object files and flags are used when | ||
3235 | - # linking a shared library. | ||
3236 | - # | ||
3237 | - # There doesn't appear to be a way to prevent this compiler from | ||
3238 | - # explicitly linking system object files so we need to strip them | ||
3239 | - # from the output so that they don't get included in the library | ||
3240 | - # dependencies. | ||
3241 | - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $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; echo $list' | ||
3242 | - ;; | ||
3243 | - *) | ||
3244 | - if test "$GXX" = yes && test "$with_gnu_ld" = no; then | ||
3245 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' | ||
3246 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' | ||
3247 | - | ||
3248 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
3249 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3250 | - | ||
3251 | - # Commands to make compiler produce verbose output that lists | ||
3252 | - # what "hidden" libraries, object files and flags are used when | ||
3253 | - # linking a shared library. | ||
3254 | - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' | ||
3255 | - | ||
3256 | - else | ||
3257 | - # FIXME: insert proper C++ library support | ||
3258 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3259 | - fi | ||
3260 | - ;; | ||
3261 | - esac | ||
3262 | - ;; | ||
3263 | - osf4* | osf5*) | ||
3264 | - case $cc_basename in | ||
3265 | - KCC) | ||
3266 | - # Kuck and Associates, Inc. (KAI) C++ Compiler | ||
3267 | - | ||
3268 | - # KCC will only create a shared library if the output file | ||
3269 | - # ends with ".so" (or ".sl" for HP-UX), so rename the library | ||
3270 | - # to its proper name (with version) after linking. | ||
3271 | - _LT_AC_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 $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects --soname $soname -o \$templib; mv \$templib $lib' | ||
3272 | - | ||
3273 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' | ||
3274 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3275 | - | ||
3276 | - # Archives containing C++ object files must be created using | ||
3277 | - # the KAI C++ compiler. | ||
3278 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' | ||
3279 | - ;; | ||
3280 | - RCC) | ||
3281 | - # Rational C++ 2.4.1 | ||
3282 | - # FIXME: insert proper C++ library support | ||
3283 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3284 | - ;; | ||
3285 | - cxx) | ||
3286 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' | ||
3287 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' | ||
3288 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ | ||
3289 | - echo "-hidden">> $lib.exp~ | ||
3290 | - $CC -shared$allow_undefined_flag $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry $objdir/so_locations -o $lib~ | ||
3291 | - $rm $lib.exp' | ||
3292 | - | ||
3293 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' | ||
3294 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3295 | - | ||
3296 | - # Commands to make compiler produce verbose output that lists | ||
3297 | - # what "hidden" libraries, object files and flags are used when | ||
3298 | - # linking a shared library. | ||
3299 | - # | ||
3300 | - # There doesn't appear to be a way to prevent this compiler from | ||
3301 | - # explicitly linking system object files so we need to strip them | ||
3302 | - # from the output so that they don't get included in the library | ||
3303 | - # dependencies. | ||
3304 | - output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $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; echo $list' | ||
3305 | - ;; | ||
3306 | - *) | ||
3307 | - if test "$GXX" = yes && test "$with_gnu_ld" = no; then | ||
3308 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' | ||
3309 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' | ||
3310 | - | ||
3311 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
3312 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
3313 | - | ||
3314 | - # Commands to make compiler produce verbose output that lists | ||
3315 | - # what "hidden" libraries, object files and flags are used when | ||
3316 | - # linking a shared library. | ||
3317 | - output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"' | ||
3318 | - | ||
3319 | - else | ||
3320 | - # FIXME: insert proper C++ library support | ||
3321 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3322 | - fi | ||
3323 | - ;; | ||
3324 | - esac | ||
3325 | - ;; | ||
3326 | - psos*) | ||
3327 | - # FIXME: insert proper C++ library support | ||
3328 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3329 | - ;; | ||
3330 | - sco*) | ||
3331 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
3332 | - case $cc_basename in | ||
3333 | - CC) | ||
3334 | - # FIXME: insert proper C++ library support | ||
3335 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3336 | - ;; | ||
3337 | - *) | ||
3338 | - # FIXME: insert proper C++ library support | ||
3339 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3340 | - ;; | ||
3341 | - esac | ||
3342 | - ;; | ||
3343 | - sunos4*) | ||
3344 | - case $cc_basename in | ||
3345 | - CC) | ||
3346 | - # Sun C++ 4.x | ||
3347 | - # FIXME: insert proper C++ library support | ||
3348 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3349 | - ;; | ||
3350 | - lcc) | ||
3351 | - # Lucid | ||
3352 | - # FIXME: insert proper C++ library support | ||
3353 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3354 | - ;; | ||
3355 | - *) | ||
3356 | - # FIXME: insert proper C++ library support | ||
3357 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3358 | - ;; | ||
3359 | - esac | ||
3360 | - ;; | ||
3361 | - solaris*) | ||
3362 | - case $cc_basename in | ||
3363 | - CC) | ||
3364 | - # Sun C++ 4.2, 5.x and Centerline C++ | ||
3365 | - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs' | ||
3366 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects' | ||
3367 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ | ||
3368 | - $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects~$rm $lib.exp' | ||
3369 | - | ||
3370 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
3371 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
3372 | - case $host_os in | ||
3373 | - solaris2.[0-5] | solaris2.[0-5].*) ;; | ||
3374 | - *) | ||
3375 | - # The C++ compiler is used as linker so we must use $wl | ||
3376 | - # flag to pass the commands to the underlying system | ||
3377 | - # linker. | ||
3378 | - # Supported since Solaris 2.6 (maybe 2.5.1?) | ||
3379 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' | ||
3380 | - ;; | ||
3381 | - esac | ||
3382 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
3383 | - | ||
3384 | - # Commands to make compiler produce verbose output that lists | ||
3385 | - # what "hidden" libraries, object files and flags are used when | ||
3386 | - # linking a shared library. | ||
3387 | - # | ||
3388 | - # There doesn't appear to be a way to prevent this compiler from | ||
3389 | - # explicitly linking system object files so we need to strip them | ||
3390 | - # from the output so that they don't get included in the library | ||
3391 | - # dependencies. | ||
3392 | - output_verbose_link_cmd='templist=`$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep "\-[[LR]]"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' | ||
3393 | - | ||
3394 | - # Archives containing C++ object files must be created using | ||
3395 | - # "CC -xar", where "CC" is the Sun C++ compiler. This is | ||
3396 | - # necessary to make sure instantiated templates are included | ||
3397 | - # in the archive. | ||
3398 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' | ||
3399 | - ;; | ||
3400 | - gcx) | ||
3401 | - # Green Hills C++ Compiler | ||
3402 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-h $wl$soname -o $lib' | ||
3403 | - | ||
3404 | - # The C++ compiler must be used to create the archive. | ||
3405 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' | ||
3406 | - ;; | ||
3407 | - *) | ||
3408 | - # GNU C++ compiler with Solaris linker | ||
3409 | - if test "$GXX" = yes && test "$with_gnu_ld" = no; then | ||
3410 | - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' | ||
3411 | - if $CC --version | grep -v '^2\.7' > /dev/null; then | ||
3412 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-h $wl$soname -o $lib' | ||
3413 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ | ||
3414 | - $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects~$rm $lib.exp' | ||
3415 | - | ||
3416 | - # Commands to make compiler produce verbose output that lists | ||
3417 | - # what "hidden" libraries, object files and flags are used when | ||
3418 | - # linking a shared library. | ||
3419 | - output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" | ||
3420 | - else | ||
3421 | - # g++ 2.7 appears to require `-G' NOT `-shared' on this | ||
3422 | - # platform. | ||
3423 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects ${wl}-h $wl$soname -o $lib' | ||
3424 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ | ||
3425 | - $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $compiler_flags $predep_objects $libobjs $deplibs $postdep_objects~$rm $lib.exp' | ||
3426 | - | ||
3427 | - # Commands to make compiler produce verbose output that lists | ||
3428 | - # what "hidden" libraries, object files and flags are used when | ||
3429 | - # linking a shared library. | ||
3430 | - output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\"" | ||
3431 | - fi | ||
3432 | - | ||
3433 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' | ||
3434 | - fi | ||
3435 | - ;; | ||
3436 | - esac | ||
3437 | - ;; | ||
3438 | - sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*) | ||
3439 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
3440 | - ;; | ||
3441 | - tandem*) | ||
3442 | - case $cc_basename in | ||
3443 | - NCC) | ||
3444 | - # NonStop-UX NCC 3.20 | ||
3445 | - # FIXME: insert proper C++ library support | ||
3446 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3447 | - ;; | ||
3448 | - *) | ||
3449 | - # FIXME: insert proper C++ library support | ||
3450 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3451 | - ;; | ||
3452 | - esac | ||
3453 | - ;; | ||
3454 | - vxworks*) | ||
3455 | - # FIXME: insert proper C++ library support | ||
3456 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3457 | - ;; | ||
3458 | - *) | ||
3459 | - # FIXME: insert proper C++ library support | ||
3460 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
3461 | - ;; | ||
3462 | -esac | ||
3463 | -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) | ||
3464 | -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no | ||
3465 | - | ||
3466 | -_LT_AC_TAGVAR(GCC, $1)="$GXX" | ||
3467 | -_LT_AC_TAGVAR(LD, $1)="$LD" | ||
3468 | - | ||
3469 | -## CAVEAT EMPTOR: | ||
3470 | -## There is no encapsulation within the following macros, do not change | ||
3471 | -## the running order or otherwise move them around unless you know exactly | ||
3472 | -## what you are doing... | ||
3473 | -AC_LIBTOOL_POSTDEP_PREDEP($1) | ||
3474 | -AC_LIBTOOL_PROG_COMPILER_PIC($1) | ||
3475 | -AC_LIBTOOL_PROG_CC_C_O($1) | ||
3476 | -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) | ||
3477 | -AC_LIBTOOL_PROG_LD_SHLIBS($1) | ||
3478 | -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) | ||
3479 | -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) | ||
3480 | -AC_LIBTOOL_SYS_LIB_STRIP | ||
3481 | -AC_LIBTOOL_DLOPEN_SELF($1) | ||
3482 | - | ||
3483 | -AC_LIBTOOL_CONFIG($1) | ||
3484 | - | ||
3485 | -AC_LANG_POP | ||
3486 | -CC=$lt_save_CC | ||
3487 | -LDCXX=$LD | ||
3488 | -LD=$lt_save_LD | ||
3489 | -GCC=$lt_save_GCC | ||
3490 | -with_gnu_ldcxx=$with_gnu_ld | ||
3491 | -with_gnu_ld=$lt_save_with_gnu_ld | ||
3492 | -lt_cv_path_LDCXX=$lt_cv_path_LD | ||
3493 | -lt_cv_path_LD=$lt_save_path_LD | ||
3494 | -lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld | ||
3495 | -lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld | ||
3496 | -])# AC_LIBTOOL_LANG_CXX_CONFIG | ||
3497 | - | ||
3498 | -# AC_LIBTOOL_POSTDEP_PREDEP([TAGNAME]) | ||
3499 | -# ------------------------ | ||
3500 | -# Figure out "hidden" library dependencies from verbose | ||
3501 | -# compiler output when linking a shared library. | ||
3502 | -# Parse the compiler output and extract the necessary | ||
3503 | -# objects, libraries and library flags. | ||
3504 | -AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP],[ | ||
3505 | -dnl we can't use the lt_simple_compile_test_code here, | ||
3506 | -dnl because it contains code intended for an executable, | ||
3507 | -dnl not a library. It's possible we should let each | ||
3508 | -dnl tag define a new lt_????_link_test_code variable, | ||
3509 | -dnl but it's only used here... | ||
3510 | -ifelse([$1],[],[cat > conftest.$ac_ext <<EOF | ||
3511 | -int a; | ||
3512 | -void foo (void) { a = 0; } | ||
3513 | -EOF | ||
3514 | -],[$1],[CXX],[cat > conftest.$ac_ext <<EOF | ||
3515 | -class Foo | ||
3516 | -{ | ||
3517 | -public: | ||
3518 | - Foo (void) { a = 0; } | ||
3519 | -private: | ||
3520 | - int a; | ||
3521 | -}; | ||
3522 | -EOF | ||
3523 | -],[$1],[F77],[cat > conftest.$ac_ext <<EOF | ||
3524 | - subroutine foo | ||
3525 | - implicit none | ||
3526 | - integer*4 a | ||
3527 | - a=0 | ||
3528 | - return | ||
3529 | - end | ||
3530 | -EOF | ||
3531 | -],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF | ||
3532 | -public class foo { | ||
3533 | - private int a; | ||
3534 | - public void bar (void) { | ||
3535 | - a = 0; | ||
3536 | - } | ||
3537 | -}; | ||
3538 | -EOF | ||
3539 | -]) | ||
3540 | -dnl Parse the compiler output and extract the necessary | ||
3541 | -dnl objects, libraries and library flags. | ||
3542 | -if AC_TRY_EVAL(ac_compile); then | ||
3543 | - # Parse the compiler output and extract the necessary | ||
3544 | - # objects, libraries and library flags. | ||
3545 | - | ||
3546 | - # Sentinel used to keep track of whether or not we are before | ||
3547 | - # the conftest object file. | ||
3548 | - pre_test_object_deps_done=no | ||
3549 | - | ||
3550 | - # The `*' in the case matches for architectures that use `case' in | ||
3551 | - # $output_verbose_cmd can trigger glob expansion during the loop | ||
3552 | - # eval without this substitution. | ||
3553 | - output_verbose_link_cmd="`$echo \"X$output_verbose_link_cmd\" | $Xsed -e \"$no_glob_subst\"`" | ||
3554 | - | ||
3555 | - for p in `eval $output_verbose_link_cmd`; do | ||
3556 | - case $p in | ||
3557 | - | ||
3558 | - -L* | -R* | -l*) | ||
3559 | - # Some compilers place space between "-{L,R}" and the path. | ||
3560 | - # Remove the space. | ||
3561 | - if test $p = "-L" \ | ||
3562 | - || test $p = "-R"; then | ||
3563 | - prev=$p | ||
3564 | - continue | ||
3565 | - else | ||
3566 | - prev= | ||
3567 | - fi | ||
3568 | - | ||
3569 | - if test "$pre_test_object_deps_done" = no; then | ||
3570 | - case $p in | ||
3571 | - -L* | -R*) | ||
3572 | - # Internal compiler library paths should come after those | ||
3573 | - # provided the user. The postdeps already come after the | ||
3574 | - # user supplied libs so there is no need to process them. | ||
3575 | - if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then | ||
3576 | - _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" | ||
3577 | - else | ||
3578 | - _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" | ||
3579 | - fi | ||
3580 | - ;; | ||
3581 | - # The "-l" case would never come before the object being | ||
3582 | - # linked, so don't bother handling this case. | ||
3583 | - esac | ||
3584 | - else | ||
3585 | - if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then | ||
3586 | - _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}" | ||
3587 | - else | ||
3588 | - _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}" | ||
3589 | - fi | ||
3590 | - fi | ||
3591 | - ;; | ||
3592 | - | ||
3593 | - *.$objext|*.$libext) | ||
3594 | - # This assumes that the test object file only shows up | ||
3595 | - # once in the compiler output. | ||
3596 | - if test "$p" = "conftest.$objext"; then | ||
3597 | - pre_test_object_deps_done=yes | ||
3598 | - continue | ||
3599 | - fi | ||
3600 | - | ||
3601 | - if test "$pre_test_object_deps_done" = no; then | ||
3602 | - if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then | ||
3603 | - _LT_AC_TAGVAR(predep_objects, $1)="$p" | ||
3604 | - else | ||
3605 | - _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p" | ||
3606 | - fi | ||
3607 | - else | ||
3608 | - if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then | ||
3609 | - _LT_AC_TAGVAR(postdep_objects, $1)="$p" | ||
3610 | - else | ||
3611 | - _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p" | ||
3612 | - fi | ||
3613 | - fi | ||
3614 | - ;; | ||
3615 | - | ||
3616 | - *) ;; # Ignore the rest. | ||
3617 | - | ||
3618 | - esac | ||
3619 | - done | ||
3620 | - | ||
3621 | - # Clean up. | ||
3622 | - rm -f a.out a.exe | ||
3623 | -else | ||
3624 | - echo "libtool.m4: error: problem compiling $1 test program" | ||
3625 | -fi | ||
3626 | - | ||
3627 | -$rm -f confest.$objext | ||
3628 | - | ||
3629 | -case " $_LT_AC_TAGVAR(postdeps, $1) " in | ||
3630 | -*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;; | ||
3631 | -esac | ||
3632 | -])# AC_LIBTOOL_POSTDEP_PREDEP | ||
3633 | - | ||
3634 | -# AC_LIBTOOL_LANG_F77_CONFIG | ||
3635 | -# ------------------------ | ||
3636 | -# Ensure that the configuration vars for the C compiler are | ||
3637 | -# suitably defined. Those variables are subsequently used by | ||
3638 | -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. | ||
3639 | -AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)]) | ||
3640 | -AC_DEFUN([_LT_AC_LANG_F77_CONFIG], | ||
3641 | -[AC_REQUIRE([AC_PROG_F77]) | ||
3642 | -AC_LANG_PUSH(Fortran 77) | ||
3643 | - | ||
3644 | -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
3645 | -_LT_AC_TAGVAR(allow_undefined_flag, $1)= | ||
3646 | -_LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
3647 | -_LT_AC_TAGVAR(archive_expsym_cmds, $1)= | ||
3648 | -_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= | ||
3649 | -_LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
3650 | -_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= | ||
3651 | -_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= | ||
3652 | -_LT_AC_TAGVAR(hardcode_libdir_separator, $1)= | ||
3653 | -_LT_AC_TAGVAR(hardcode_minus_L, $1)=no | ||
3654 | -_LT_AC_TAGVAR(hardcode_automatic, $1)=no | ||
3655 | -_LT_AC_TAGVAR(module_cmds, $1)= | ||
3656 | -_LT_AC_TAGVAR(module_expsym_cmds, $1)= | ||
3657 | -_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown | ||
3658 | -_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds | ||
3659 | -_LT_AC_TAGVAR(no_undefined_flag, $1)= | ||
3660 | -_LT_AC_TAGVAR(whole_archive_flag_spec, $1)= | ||
3661 | -_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no | ||
3662 | - | ||
3663 | -# Source file extension for f77 test sources. | ||
3664 | -ac_ext=f | ||
3665 | - | ||
3666 | -# Object file extension for compiled f77 test sources. | ||
3667 | -objext=o | ||
3668 | -_LT_AC_TAGVAR(objext, $1)=$objext | ||
3669 | - | ||
3670 | -# Code to be used in simple compile tests | ||
3671 | -lt_simple_compile_test_code=" subroutine t\n return\n end\n" | ||
3672 | - | ||
3673 | -# Code to be used in simple link tests | ||
3674 | -lt_simple_link_test_code=" program t\n end\n" | ||
3675 | - | ||
3676 | -# ltmain only uses $CC for tagged configurations so make sure $CC is set. | ||
3677 | -_LT_AC_SYS_COMPILER | ||
3678 | - | ||
3679 | -# Allow CC to be a program name with arguments. | ||
3680 | -lt_save_CC="$CC" | ||
3681 | -CC=${F77-"f77"} | ||
3682 | -compiler=$CC | ||
3683 | -_LT_AC_TAGVAR(compiler, $1)=$CC | ||
3684 | -cc_basename=`$echo X"$compiler" | $Xsed -e 's%^.*/%%'` | ||
3685 | - | ||
3686 | -AC_MSG_CHECKING([if libtool supports shared libraries]) | ||
3687 | -AC_MSG_RESULT([$can_build_shared]) | ||
3688 | - | ||
3689 | -AC_MSG_CHECKING([whether to build shared libraries]) | ||
3690 | -test "$can_build_shared" = "no" && enable_shared=no | ||
3691 | - | ||
3692 | -# On AIX, shared libraries and static libraries use the same namespace, and | ||
3693 | -# are all built from PIC. | ||
3694 | -case "$host_os" in | ||
3695 | -aix3*) | ||
3696 | - test "$enable_shared" = yes && enable_static=no | ||
3697 | - if test -n "$RANLIB"; then | ||
3698 | - archive_cmds="$archive_cmds~\$RANLIB \$lib" | ||
3699 | - postinstall_cmds='$RANLIB $lib' | ||
3700 | - fi | ||
3701 | - ;; | ||
3702 | -aix4*) | ||
3703 | - test "$enable_shared" = yes && enable_static=no | ||
3704 | - ;; | ||
3705 | -esac | ||
3706 | -AC_MSG_RESULT([$enable_shared]) | ||
3707 | - | ||
3708 | -AC_MSG_CHECKING([whether to build static libraries]) | ||
3709 | -# Make sure either enable_shared or enable_static is yes. | ||
3710 | -test "$enable_shared" = yes || enable_static=yes | ||
3711 | -AC_MSG_RESULT([$enable_static]) | ||
3712 | - | ||
3713 | -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no | ||
3714 | - | ||
3715 | -_LT_AC_TAGVAR(GCC, $1)="$G77" | ||
3716 | -_LT_AC_TAGVAR(LD, $1)="$LD" | ||
3717 | - | ||
3718 | -AC_LIBTOOL_PROG_COMPILER_PIC($1) | ||
3719 | -AC_LIBTOOL_PROG_CC_C_O($1) | ||
3720 | -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) | ||
3721 | -AC_LIBTOOL_PROG_LD_SHLIBS($1) | ||
3722 | -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) | ||
3723 | -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) | ||
3724 | -AC_LIBTOOL_SYS_LIB_STRIP | ||
3725 | - | ||
3726 | - | ||
3727 | -AC_LIBTOOL_CONFIG($1) | ||
3728 | - | ||
3729 | -AC_LANG_POP | ||
3730 | -CC="$lt_save_CC" | ||
3731 | -])# AC_LIBTOOL_LANG_F77_CONFIG | ||
3732 | - | ||
3733 | - | ||
3734 | -# AC_LIBTOOL_LANG_GCJ_CONFIG | ||
3735 | -# -------------------------- | ||
3736 | -# Ensure that the configuration vars for the C compiler are | ||
3737 | -# suitably defined. Those variables are subsequently used by | ||
3738 | -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. | ||
3739 | -AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)]) | ||
3740 | -AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], | ||
3741 | -[AC_LANG_SAVE | ||
3742 | - | ||
3743 | -# Source file extension for Java test sources. | ||
3744 | -ac_ext=java | ||
3745 | - | ||
3746 | -# Object file extension for compiled Java test sources. | ||
3747 | -objext=o | ||
3748 | -_LT_AC_TAGVAR(objext, $1)=$objext | ||
3749 | - | ||
3750 | -# Code to be used in simple compile tests | ||
3751 | -lt_simple_compile_test_code="class foo {}\n" | ||
3752 | - | ||
3753 | -# Code to be used in simple link tests | ||
3754 | -lt_simple_link_test_code='public class conftest { public static void main(String[] argv) {}; }\n' | ||
3755 | - | ||
3756 | -# ltmain only uses $CC for tagged configurations so make sure $CC is set. | ||
3757 | -_LT_AC_SYS_COMPILER | ||
3758 | - | ||
3759 | -# Allow CC to be a program name with arguments. | ||
3760 | -lt_save_CC="$CC" | ||
3761 | -CC=${GCJ-"gcj"} | ||
3762 | -compiler=$CC | ||
3763 | -_LT_AC_TAGVAR(compiler, $1)=$CC | ||
3764 | - | ||
3765 | -# GCJ did not exist at the time GCC didn't implicitly link libc in. | ||
3766 | -_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
3767 | - | ||
3768 | -## CAVEAT EMPTOR: | ||
3769 | -## There is no encapsulation within the following macros, do not change | ||
3770 | -## the running order or otherwise move them around unless you know exactly | ||
3771 | -## what you are doing... | ||
3772 | -AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1) | ||
3773 | -AC_LIBTOOL_PROG_COMPILER_PIC($1) | ||
3774 | -AC_LIBTOOL_PROG_CC_C_O($1) | ||
3775 | -AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1) | ||
3776 | -AC_LIBTOOL_PROG_LD_SHLIBS($1) | ||
3777 | -AC_LIBTOOL_SYS_DYNAMIC_LINKER($1) | ||
3778 | -AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1) | ||
3779 | -AC_LIBTOOL_SYS_LIB_STRIP | ||
3780 | -AC_LIBTOOL_DLOPEN_SELF($1) | ||
3781 | - | ||
3782 | -AC_LIBTOOL_CONFIG($1) | ||
3783 | - | ||
3784 | -AC_LANG_RESTORE | ||
3785 | -CC="$lt_save_CC" | ||
3786 | -])# AC_LIBTOOL_LANG_GCJ_CONFIG | ||
3787 | - | ||
3788 | - | ||
3789 | -# AC_LIBTOOL_LANG_RC_CONFIG | ||
3790 | -# -------------------------- | ||
3791 | -# Ensure that the configuration vars for the Windows resource compiler are | ||
3792 | -# suitably defined. Those variables are subsequently used by | ||
3793 | -# AC_LIBTOOL_CONFIG to write the compiler configuration to `libtool'. | ||
3794 | -AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)]) | ||
3795 | -AC_DEFUN([_LT_AC_LANG_RC_CONFIG], | ||
3796 | -[AC_LANG_SAVE | ||
3797 | - | ||
3798 | -# Source file extension for RC test sources. | ||
3799 | -ac_ext=rc | ||
3800 | - | ||
3801 | -# Object file extension for compiled RC test sources. | ||
3802 | -objext=o | ||
3803 | -_LT_AC_TAGVAR(objext, $1)=$objext | ||
3804 | - | ||
3805 | -# Code to be used in simple compile tests | ||
3806 | -lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n' | ||
3807 | - | ||
3808 | -# Code to be used in simple link tests | ||
3809 | -lt_simple_link_test_code="$lt_simple_compile_test_code" | ||
3810 | - | ||
3811 | -# ltmain only uses $CC for tagged configurations so make sure $CC is set. | ||
3812 | -_LT_AC_SYS_COMPILER | ||
3813 | - | ||
3814 | -# Allow CC to be a program name with arguments. | ||
3815 | -lt_save_CC="$CC" | ||
3816 | -CC=${RC-"windres"} | ||
3817 | -compiler=$CC | ||
3818 | -_LT_AC_TAGVAR(compiler, $1)=$CC | ||
3819 | -_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes | ||
3820 | - | ||
3821 | -AC_LIBTOOL_CONFIG($1) | ||
3822 | - | ||
3823 | -AC_LANG_RESTORE | ||
3824 | -CC="$lt_save_CC" | ||
3825 | -])# AC_LIBTOOL_LANG_RC_CONFIG | ||
3826 | - | ||
3827 | - | ||
3828 | -# AC_LIBTOOL_CONFIG([TAGNAME]) | ||
3829 | -# ---------------------------- | ||
3830 | -# If TAGNAME is not passed, then create an initial libtool script | ||
3831 | -# with a default configuration from the untagged config vars. Otherwise | ||
3832 | -# add code to config.status for appending the configuration named by | ||
3833 | -# TAGNAME from the matching tagged config vars. | ||
3834 | -AC_DEFUN([AC_LIBTOOL_CONFIG], | ||
3835 | -[# The else clause should only fire when bootstrapping the | ||
3836 | -# libtool distribution, otherwise you forgot to ship ltmain.sh | ||
3837 | -# with your package, and you will get complaints that there are | ||
3838 | -# no rules to generate ltmain.sh. | ||
3839 | -if test -f "$ltmain"; then | ||
3840 | - # See if we are running on zsh, and set the options which allow our commands through | ||
3841 | - # without removal of \ escapes. | ||
3842 | - if test -n "${ZSH_VERSION+set}" ; then | ||
3843 | - setopt NO_GLOB_SUBST | ||
3844 | - fi | ||
3845 | - # Now quote all the things that may contain metacharacters while being | ||
3846 | - # careful not to overquote the AC_SUBSTed values. We take copies of the | ||
3847 | - # variables and quote the copies for generation of the libtool script. | ||
3848 | - for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM SED SHELL \ | ||
3849 | - libname_spec library_names_spec soname_spec extract_expsyms_cmds \ | ||
3850 | - old_striplib striplib file_magic_cmd finish_cmds finish_eval \ | ||
3851 | - deplibs_check_method reload_flag reload_cmds need_locks \ | ||
3852 | - lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \ | ||
3853 | - lt_cv_sys_global_symbol_to_c_name_address \ | ||
3854 | - sys_lib_search_path_spec sys_lib_dlsearch_path_spec \ | ||
3855 | - old_postinstall_cmds old_postuninstall_cmds \ | ||
3856 | - _LT_AC_TAGVAR(compiler, $1) \ | ||
3857 | - _LT_AC_TAGVAR(CC, $1) \ | ||
3858 | - _LT_AC_TAGVAR(LD, $1) \ | ||
3859 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \ | ||
3860 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \ | ||
3861 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \ | ||
3862 | - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \ | ||
3863 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \ | ||
3864 | - _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \ | ||
3865 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \ | ||
3866 | - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \ | ||
3867 | - _LT_AC_TAGVAR(old_archive_cmds, $1) \ | ||
3868 | - _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \ | ||
3869 | - _LT_AC_TAGVAR(predep_objects, $1) \ | ||
3870 | - _LT_AC_TAGVAR(postdep_objects, $1) \ | ||
3871 | - _LT_AC_TAGVAR(predeps, $1) \ | ||
3872 | - _LT_AC_TAGVAR(postdeps, $1) \ | ||
3873 | - _LT_AC_TAGVAR(compiler_lib_search_path, $1) \ | ||
3874 | - _LT_AC_TAGVAR(archive_cmds, $1) \ | ||
3875 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1) \ | ||
3876 | - _LT_AC_TAGVAR(postinstall_cmds, $1) \ | ||
3877 | - _LT_AC_TAGVAR(postuninstall_cmds, $1) \ | ||
3878 | - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \ | ||
3879 | - _LT_AC_TAGVAR(allow_undefined_flag, $1) \ | ||
3880 | - _LT_AC_TAGVAR(no_undefined_flag, $1) \ | ||
3881 | - _LT_AC_TAGVAR(export_symbols_cmds, $1) \ | ||
3882 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \ | ||
3883 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \ | ||
3884 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \ | ||
3885 | - _LT_AC_TAGVAR(hardcode_automatic, $1) \ | ||
3886 | - _LT_AC_TAGVAR(module_cmds, $1) \ | ||
3887 | - _LT_AC_TAGVAR(module_expsym_cmds, $1) \ | ||
3888 | - _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \ | ||
3889 | - _LT_AC_TAGVAR(exclude_expsyms, $1) \ | ||
3890 | - _LT_AC_TAGVAR(include_expsyms, $1); do | ||
3891 | - | ||
3892 | - case $var in | ||
3893 | - _LT_AC_TAGVAR(old_archive_cmds, $1) | \ | ||
3894 | - _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \ | ||
3895 | - _LT_AC_TAGVAR(archive_cmds, $1) | \ | ||
3896 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \ | ||
3897 | - _LT_AC_TAGVAR(module_cmds, $1) | \ | ||
3898 | - _LT_AC_TAGVAR(module_expsym_cmds, $1) | \ | ||
3899 | - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \ | ||
3900 | - _LT_AC_TAGVAR(export_symbols_cmds, $1) | \ | ||
3901 | - extract_expsyms_cmds | reload_cmds | finish_cmds | \ | ||
3902 | - postinstall_cmds | postuninstall_cmds | \ | ||
3903 | - old_postinstall_cmds | old_postuninstall_cmds | \ | ||
3904 | - sys_lib_search_path_spec | sys_lib_dlsearch_path_spec) | ||
3905 | - # Double-quote double-evaled strings. | ||
3906 | - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\"" | ||
3907 | - ;; | ||
3908 | - *) | ||
3909 | - eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\"" | ||
3910 | - ;; | ||
3911 | - esac | ||
3912 | - done | ||
3913 | - | ||
3914 | - case $lt_echo in | ||
3915 | - *'\[$]0 --fallback-echo"') | ||
3916 | - lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'` | ||
3917 | - ;; | ||
3918 | - esac | ||
3919 | - | ||
3920 | -ifelse([$1], [], | ||
3921 | - [cfgfile="${ofile}T" | ||
3922 | - trap "$rm \"$cfgfile\"; exit 1" 1 2 15 | ||
3923 | - $rm -f "$cfgfile" | ||
3924 | - AC_MSG_NOTICE([creating $ofile])], | ||
3925 | - [cfgfile="$ofile"]) | ||
3926 | - | ||
3927 | - cat <<__EOF__ >> "$cfgfile" | ||
3928 | -ifelse([$1], [], | ||
3929 | -[#! $SHELL | ||
3930 | - | ||
3931 | -# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services. | ||
3932 | -# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP) | ||
3933 | -# NOTE: Changes made to this file will be lost: look at ltmain.sh. | ||
3934 | -# | ||
3935 | -# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001 | ||
3936 | -# Free Software Foundation, Inc. | ||
3937 | -# | ||
3938 | -# This file is part of GNU Libtool: | ||
3939 | -# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996 | ||
3940 | -# | ||
3941 | -# This program is free software; you can redistribute it and/or modify | ||
3942 | -# it under the terms of the GNU General Public License as published by | ||
3943 | -# the Free Software Foundation; either version 2 of the License, or | ||
3944 | -# (at your option) any later version. | ||
3945 | -# | ||
3946 | -# This program is distributed in the hope that it will be useful, but | ||
3947 | -# WITHOUT ANY WARRANTY; without even the implied warranty of | ||
3948 | -# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
3949 | -# General Public License for more details. | ||
3950 | -# | ||
3951 | -# You should have received a copy of the GNU General Public License | ||
3952 | -# along with this program; if not, write to the Free Software | ||
3953 | -# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. | ||
3954 | -# | ||
3955 | -# As a special exception to the GNU General Public License, if you | ||
3956 | -# distribute this file as part of a program that contains a | ||
3957 | -# configuration script generated by Autoconf, you may include it under | ||
3958 | -# the same distribution terms that you use for the rest of that program. | ||
3959 | - | ||
3960 | -# A sed program that does not truncate output. | ||
3961 | -SED=$lt_SED | ||
3962 | - | ||
3963 | -# Sed that helps us avoid accidentally triggering echo(1) options like -n. | ||
3964 | -Xsed="$SED -e s/^X//" | ||
3965 | - | ||
3966 | -# The HP-UX ksh and POSIX shell print the target directory to stdout | ||
3967 | -# if CDPATH is set. | ||
3968 | -if test "X\${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi | ||
3969 | - | ||
3970 | -# The names of the tagged configurations supported by this script. | ||
3971 | -available_tags= | ||
3972 | - | ||
3973 | -# ### BEGIN LIBTOOL CONFIG], | ||
3974 | -[# ### BEGIN LIBTOOL TAG CONFIG: $tagname]) | ||
3975 | - | ||
3976 | -# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: | ||
3977 | - | ||
3978 | -# Shell to use when invoking shell scripts. | ||
3979 | -SHELL=$lt_SHELL | ||
3980 | - | ||
3981 | -# Whether or not to build shared libraries. | ||
3982 | -build_libtool_libs=$enable_shared | ||
3983 | - | ||
3984 | -# Whether or not to build static libraries. | ||
3985 | -build_old_libs=$enable_static | ||
3986 | - | ||
3987 | -# Whether or not to add -lc for building shared libraries. | ||
3988 | -build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1) | ||
3989 | - | ||
3990 | -# Whether or not to disallow shared libs when runtime libs are static | ||
3991 | -allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) | ||
3992 | - | ||
3993 | -# Whether or not to optimize for fast installation. | ||
3994 | -fast_install=$enable_fast_install | ||
3995 | - | ||
3996 | -# The host system. | ||
3997 | -host_alias=$host_alias | ||
3998 | -host=$host | ||
3999 | - | ||
4000 | -# An echo program that does not interpret backslashes. | ||
4001 | -echo=$lt_echo | ||
4002 | - | ||
4003 | -# The archiver. | ||
4004 | -AR=$lt_AR | ||
4005 | -AR_FLAGS=$lt_AR_FLAGS | ||
4006 | - | ||
4007 | -# A C compiler. | ||
4008 | -LTCC=$lt_LTCC | ||
4009 | - | ||
4010 | -# A language-specific compiler. | ||
4011 | -CC=$lt_[]_LT_AC_TAGVAR(compiler, $1) | ||
4012 | - | ||
4013 | -# Is the compiler the GNU C compiler? | ||
4014 | -with_gcc=$_LT_AC_TAGVAR(GCC, $1) | ||
4015 | - | ||
4016 | -# An ERE matcher. | ||
4017 | -EGREP=$lt_EGREP | ||
4018 | - | ||
4019 | -# The linker used to build libraries. | ||
4020 | -LD=$lt_[]_LT_AC_TAGVAR(LD, $1) | ||
4021 | - | ||
4022 | -# Whether we need hard or soft links. | ||
4023 | -LN_S=$lt_LN_S | ||
4024 | - | ||
4025 | -# A BSD-compatible nm program. | ||
4026 | -NM=$lt_NM | ||
4027 | - | ||
4028 | -# A symbol stripping program | ||
4029 | -STRIP=$STRIP | ||
4030 | - | ||
4031 | -# Used to examine libraries when file_magic_cmd begins "file" | ||
4032 | -MAGIC_CMD=$MAGIC_CMD | ||
4033 | - | ||
4034 | -# Used on cygwin: DLL creation program. | ||
4035 | -DLLTOOL="$DLLTOOL" | ||
4036 | - | ||
4037 | -# Used on cygwin: object dumper. | ||
4038 | -OBJDUMP="$OBJDUMP" | ||
4039 | - | ||
4040 | -# Used on cygwin: assembler. | ||
4041 | -AS="$AS" | ||
4042 | - | ||
4043 | -# The name of the directory that contains temporary libtool files. | ||
4044 | -objdir=$objdir | ||
4045 | - | ||
4046 | -# How to create reloadable object files. | ||
4047 | -reload_flag=$lt_reload_flag | ||
4048 | -reload_cmds=$lt_reload_cmds | ||
4049 | - | ||
4050 | -# How to pass a linker flag through the compiler. | ||
4051 | -wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) | ||
4052 | - | ||
4053 | -# Object file suffix (normally "o"). | ||
4054 | -objext="$ac_objext" | ||
4055 | - | ||
4056 | -# Old archive suffix (normally "a"). | ||
4057 | -libext="$libext" | ||
4058 | - | ||
4059 | -# Shared library suffix (normally ".so"). | ||
4060 | -shrext='$shrext' | ||
4061 | - | ||
4062 | -# Executable file suffix (normally ""). | ||
4063 | -exeext="$exeext" | ||
4064 | - | ||
4065 | -# Additional compiler flags for building library objects. | ||
4066 | -pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) | ||
4067 | -pic_mode=$pic_mode | ||
4068 | - | ||
4069 | -# What is the maximum length of a command? | ||
4070 | -max_cmd_len=$lt_cv_sys_max_cmd_len | ||
4071 | - | ||
4072 | -# Does compiler simultaneously support -c and -o options? | ||
4073 | -compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) | ||
4074 | - | ||
4075 | -# Must we lock files when doing compilation ? | ||
4076 | -need_locks=$lt_need_locks | ||
4077 | - | ||
4078 | -# Do we need the lib prefix for modules? | ||
4079 | -need_lib_prefix=$need_lib_prefix | ||
4080 | - | ||
4081 | -# Do we need a version for libraries? | ||
4082 | -need_version=$need_version | ||
4083 | - | ||
4084 | -# Whether dlopen is supported. | ||
4085 | -dlopen_support=$enable_dlopen | ||
4086 | - | ||
4087 | -# Whether dlopen of programs is supported. | ||
4088 | -dlopen_self=$enable_dlopen_self | ||
4089 | - | ||
4090 | -# Whether dlopen of statically linked programs is supported. | ||
4091 | -dlopen_self_static=$enable_dlopen_self_static | ||
4092 | - | ||
4093 | -# Compiler flag to prevent dynamic linking. | ||
4094 | -link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1) | ||
4095 | - | ||
4096 | -# Compiler flag to turn off builtin functions. | ||
4097 | -no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) | ||
4098 | - | ||
4099 | -# Compiler flag to allow reflexive dlopens. | ||
4100 | -export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1) | ||
4101 | - | ||
4102 | -# Compiler flag to generate shared objects directly from archives. | ||
4103 | -whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1) | ||
4104 | - | ||
4105 | -# Compiler flag to generate thread-safe objects. | ||
4106 | -thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1) | ||
4107 | - | ||
4108 | -# Library versioning type. | ||
4109 | -version_type=$version_type | ||
4110 | - | ||
4111 | -# Format of library name prefix. | ||
4112 | -libname_spec=$lt_libname_spec | ||
4113 | - | ||
4114 | -# List of archive names. First name is the real one, the rest are links. | ||
4115 | -# The last name is the one that the linker finds with -lNAME. | ||
4116 | -library_names_spec=$lt_library_names_spec | ||
4117 | - | ||
4118 | -# The coded name of the library, if different from the real name. | ||
4119 | -soname_spec=$lt_soname_spec | ||
4120 | - | ||
4121 | -# Commands used to build and install an old-style archive. | ||
4122 | -RANLIB=$lt_RANLIB | ||
4123 | -old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1) | ||
4124 | -old_postinstall_cmds=$lt_old_postinstall_cmds | ||
4125 | -old_postuninstall_cmds=$lt_old_postuninstall_cmds | ||
4126 | - | ||
4127 | -# Create an old-style archive from a shared archive. | ||
4128 | -old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | ||
4129 | - | ||
4130 | -# Create a temporary old-style archive to link instead of a shared archive. | ||
4131 | -old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | ||
4132 | - | ||
4133 | -# Commands used to build and install a shared archive. | ||
4134 | -archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1) | ||
4135 | -archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1) | ||
4136 | -postinstall_cmds=$lt_postinstall_cmds | ||
4137 | -postuninstall_cmds=$lt_postuninstall_cmds | ||
4138 | - | ||
4139 | -# Commands used to build a loadable module (assumed same as above if empty) | ||
4140 | -module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1) | ||
4141 | -module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1) | ||
4142 | - | ||
4143 | -# Commands to strip libraries. | ||
4144 | -old_striplib=$lt_old_striplib | ||
4145 | -striplib=$lt_striplib | ||
4146 | - | ||
4147 | -# Dependencies to place before the objects being linked to create a | ||
4148 | -# shared library. | ||
4149 | -predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1) | ||
4150 | - | ||
4151 | -# Dependencies to place after the objects being linked to create a | ||
4152 | -# shared library. | ||
4153 | -postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1) | ||
4154 | - | ||
4155 | -# Dependencies to place before the objects being linked to create a | ||
4156 | -# shared library. | ||
4157 | -predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1) | ||
4158 | - | ||
4159 | -# Dependencies to place after the objects being linked to create a | ||
4160 | -# shared library. | ||
4161 | -postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1) | ||
4162 | - | ||
4163 | -# The library search path used internally by the compiler when linking | ||
4164 | -# a shared library. | ||
4165 | -compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1) | ||
4166 | - | ||
4167 | -# Method to check whether dependent libraries are shared objects. | ||
4168 | -deplibs_check_method=$lt_deplibs_check_method | ||
4169 | - | ||
4170 | -# Command to use when deplibs_check_method == file_magic. | ||
4171 | -file_magic_cmd=$lt_file_magic_cmd | ||
4172 | - | ||
4173 | -# Flag that allows shared libraries with undefined symbols to be built. | ||
4174 | -allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1) | ||
4175 | - | ||
4176 | -# Flag that forces no undefined symbols. | ||
4177 | -no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1) | ||
4178 | - | ||
4179 | -# Commands used to finish a libtool library installation in a directory. | ||
4180 | -finish_cmds=$lt_finish_cmds | ||
4181 | - | ||
4182 | -# Same as above, but a single script fragment to be evaled but not shown. | ||
4183 | -finish_eval=$lt_finish_eval | ||
4184 | - | ||
4185 | -# Take the output of nm and produce a listing of raw symbols and C names. | ||
4186 | -global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe | ||
4187 | - | ||
4188 | -# Transform the output of nm in a proper C declaration | ||
4189 | -global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl | ||
4190 | - | ||
4191 | -# Transform the output of nm in a C name address pair | ||
4192 | -global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address | ||
4193 | - | ||
4194 | -# This is the shared library runtime path variable. | ||
4195 | -runpath_var=$runpath_var | ||
4196 | - | ||
4197 | -# This is the shared library path variable. | ||
4198 | -shlibpath_var=$shlibpath_var | ||
4199 | - | ||
4200 | -# Is shlibpath searched before the hard-coded library search path? | ||
4201 | -shlibpath_overrides_runpath=$shlibpath_overrides_runpath | ||
4202 | - | ||
4203 | -# How to hardcode a shared library path into an executable. | ||
4204 | -hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1) | ||
4205 | - | ||
4206 | -# Whether we should hardcode library paths into libraries. | ||
4207 | -hardcode_into_libs=$hardcode_into_libs | ||
4208 | - | ||
4209 | -# Flag to hardcode \$libdir into a binary during linking. | ||
4210 | -# This must work even if \$libdir does not exist. | ||
4211 | -hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) | ||
4212 | - | ||
4213 | -# If ld is used when linking, flag to hardcode \$libdir into | ||
4214 | -# a binary during linking. This must work even if \$libdir does | ||
4215 | -# not exist. | ||
4216 | -hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) | ||
4217 | - | ||
4218 | -# Whether we need a single -rpath flag with a separated argument. | ||
4219 | -hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1) | ||
4220 | - | ||
4221 | -# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the | ||
4222 | -# resulting binary. | ||
4223 | -hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1) | ||
4224 | - | ||
4225 | -# Set to yes if using the -LDIR flag during linking hardcodes DIR into the | ||
4226 | -# resulting binary. | ||
4227 | -hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1) | ||
4228 | - | ||
4229 | -# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into | ||
4230 | -# the resulting binary. | ||
4231 | -hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1) | ||
4232 | - | ||
4233 | -# Set to yes if building a shared library automatically hardcodes DIR into the library | ||
4234 | -# and all subsequent libraries and executables linked against it. | ||
4235 | -hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1) | ||
4236 | - | ||
4237 | -# Variables whose values should be saved in libtool wrapper scripts and | ||
4238 | -# restored at relink time. | ||
4239 | -variables_saved_for_relink="$variables_saved_for_relink" | ||
4240 | - | ||
4241 | -# Whether libtool must link a program against all its dependency libraries. | ||
4242 | -link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1) | ||
4243 | - | ||
4244 | -# Compile-time system search path for libraries | ||
4245 | -sys_lib_search_path_spec=$lt_sys_lib_search_path_spec | ||
4246 | - | ||
4247 | -# Run-time system search path for libraries | ||
4248 | -sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec | ||
4249 | - | ||
4250 | -# Fix the shell variable \$srcfile for the compiler. | ||
4251 | -fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)" | ||
4252 | - | ||
4253 | -# Set to yes if exported symbols are required. | ||
4254 | -always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1) | ||
4255 | - | ||
4256 | -# The commands to list exported symbols. | ||
4257 | -export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1) | ||
4258 | - | ||
4259 | -# The commands to extract the exported symbol list from a shared archive. | ||
4260 | -extract_expsyms_cmds=$lt_extract_expsyms_cmds | ||
4261 | - | ||
4262 | -# Symbols that should not be listed in the preloaded symbols. | ||
4263 | -exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1) | ||
4264 | - | ||
4265 | -# Symbols that must always be exported. | ||
4266 | -include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1) | ||
4267 | - | ||
4268 | -ifelse([$1],[], | ||
4269 | -[# ### END LIBTOOL CONFIG], | ||
4270 | -[# ### END LIBTOOL TAG CONFIG: $tagname]) | ||
4271 | - | ||
4272 | -__EOF__ | ||
4273 | - | ||
4274 | -ifelse([$1],[], [ | ||
4275 | - case $host_os in | ||
4276 | - aix3*) | ||
4277 | - cat <<\EOF >> "$cfgfile" | ||
4278 | - | ||
4279 | -# AIX sometimes has problems with the GCC collect2 program. For some | ||
4280 | -# reason, if we set the COLLECT_NAMES environment variable, the problems | ||
4281 | -# vanish in a puff of smoke. | ||
4282 | -if test "X${COLLECT_NAMES+set}" != Xset; then | ||
4283 | - COLLECT_NAMES= | ||
4284 | - export COLLECT_NAMES | ||
4285 | -fi | ||
4286 | -EOF | ||
4287 | - ;; | ||
4288 | - esac | ||
4289 | - | ||
4290 | - # We use sed instead of cat because bash on DJGPP gets confused if | ||
4291 | - # if finds mixed CR/LF and LF-only lines. Since sed operates in | ||
4292 | - # text mode, it properly converts lines to CR/LF. This bash problem | ||
4293 | - # is reportedly fixed, but why not run on old versions too? | ||
4294 | - sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1) | ||
4295 | - | ||
4296 | - mv -f "$cfgfile" "$ofile" || \ | ||
4297 | - (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") | ||
4298 | - chmod +x "$ofile" | ||
4299 | -]) | ||
4300 | -else | ||
4301 | - # If there is no Makefile yet, we rely on a make rule to execute | ||
4302 | - # `config.status --recheck' to rerun these tests and create the | ||
4303 | - # libtool script then. | ||
4304 | - test -f Makefile && make "$ltmain" | ||
4305 | -fi | ||
4306 | -])# AC_LIBTOOL_CONFIG | ||
4307 | - | ||
4308 | - | ||
4309 | -# AC_LIBTOOL_PROG_COMPILER_NO_RTTI([TAGNAME]) | ||
4310 | -# ------------------------------------------- | ||
4311 | -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], | ||
4312 | -[AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl | ||
4313 | - | ||
4314 | -_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= | ||
4315 | - | ||
4316 | -if test "$GCC" = yes; then | ||
4317 | - _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' | ||
4318 | - | ||
4319 | - AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], | ||
4320 | - lt_cv_prog_compiler_rtti_exceptions, | ||
4321 | - [-fno-rtti -fno-exceptions], [], | ||
4322 | - [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) | ||
4323 | -fi | ||
4324 | -])# AC_LIBTOOL_PROG_COMPILER_NO_RTTI | ||
4325 | - | ||
4326 | - | ||
4327 | -# AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE | ||
4328 | -# --------------------------------- | ||
4329 | -AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], | ||
4330 | -[AC_REQUIRE([AC_CANONICAL_HOST]) | ||
4331 | -AC_REQUIRE([AC_PROG_NM]) | ||
4332 | -AC_REQUIRE([AC_OBJEXT]) | ||
4333 | -# Check for command to grab the raw symbol name followed by C symbol from nm. | ||
4334 | -AC_MSG_CHECKING([command to parse $NM output from $compiler object]) | ||
4335 | -AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], | ||
4336 | -[ | ||
4337 | -# These are sane defaults that work on at least a few old systems. | ||
4338 | -# [They come from Ultrix. What could be older than Ultrix?!! ;)] | ||
4339 | - | ||
4340 | -# Character class describing NM global symbol codes. | ||
4341 | -symcode='[[BCDEGRST]]' | ||
4342 | - | ||
4343 | -# Regexp to match symbols that can be accessed directly from C. | ||
4344 | -sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' | ||
4345 | - | ||
4346 | -# Transform the above into a raw symbol and a C symbol. | ||
4347 | -symxfrm='\1 \2\3 \3' | ||
4348 | - | ||
4349 | -# Transform an extracted symbol line into a proper C declaration | ||
4350 | -lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'" | ||
4351 | - | ||
4352 | -# Transform an extracted symbol line into symbol name and symbol address | ||
4353 | -lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" | ||
4354 | - | ||
4355 | -# Define system-specific variables. | ||
4356 | -case $host_os in | ||
4357 | -aix*) | ||
4358 | - symcode='[[BCDT]]' | ||
4359 | - ;; | ||
4360 | -cygwin* | mingw* | pw32*) | ||
4361 | - symcode='[[ABCDGISTW]]' | ||
4362 | - ;; | ||
4363 | -hpux*) # Its linker distinguishes data from code symbols | ||
4364 | - if test "$host_cpu" = ia64; then | ||
4365 | - symcode='[[ABCDEGRST]]' | ||
4366 | - fi | ||
4367 | - lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" | ||
4368 | - lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (lt_ptr) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (lt_ptr) \&\2},/p'" | ||
4369 | - ;; | ||
4370 | -irix* | nonstopux*) | ||
4371 | - symcode='[[BCDEGRST]]' | ||
4372 | - ;; | ||
4373 | -osf*) | ||
4374 | - symcode='[[BCDEGQRST]]' | ||
4375 | - ;; | ||
4376 | -solaris* | sysv5*) | ||
4377 | - symcode='[[BDT]]' | ||
4378 | - ;; | ||
4379 | -sysv4) | ||
4380 | - symcode='[[DFNSTU]]' | ||
4381 | - ;; | ||
4382 | -esac | ||
4383 | - | ||
4384 | -# Handle CRLF in mingw tool chain | ||
4385 | -opt_cr= | ||
4386 | -case $build_os in | ||
4387 | -mingw*) | ||
4388 | - opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp | ||
4389 | - ;; | ||
4390 | -esac | ||
4391 | - | ||
4392 | -# If we're using GNU nm, then use its standard symbol codes. | ||
4393 | -case `$NM -V 2>&1` in | ||
4394 | -*GNU* | *'with BFD'*) | ||
4395 | - symcode='[[ABCDGISTW]]' ;; | ||
4396 | -esac | ||
4397 | - | ||
4398 | -# Try without a prefix undercore, then with it. | ||
4399 | -for ac_symprfx in "" "_"; do | ||
4400 | - | ||
4401 | - # Write the raw and C identifiers. | ||
4402 | - lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*\($ac_symprfx\)$sympat$opt_cr$/$symxfrm/p'" | ||
4403 | - | ||
4404 | - # Check to see that the pipe works correctly. | ||
4405 | - pipe_works=no | ||
4406 | - | ||
4407 | - rm -f conftest* | ||
4408 | - cat > conftest.$ac_ext <<EOF | ||
4409 | -#ifdef __cplusplus | ||
4410 | -extern "C" { | ||
4411 | -#endif | ||
4412 | -char nm_test_var; | ||
4413 | -void nm_test_func(){} | ||
4414 | -#ifdef __cplusplus | ||
4415 | -} | ||
4416 | -#endif | ||
4417 | -int main(){nm_test_var='a';nm_test_func();return(0);} | ||
4418 | -EOF | ||
4419 | - | ||
4420 | - if AC_TRY_EVAL(ac_compile); then | ||
4421 | - # Now try to grab the symbols. | ||
4422 | - nlist=conftest.nm | ||
4423 | - if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then | ||
4424 | - # Try sorting and uniquifying the output. | ||
4425 | - if sort "$nlist" | uniq > "$nlist"T; then | ||
4426 | - mv -f "$nlist"T "$nlist" | ||
4427 | - else | ||
4428 | - rm -f "$nlist"T | ||
4429 | - fi | ||
4430 | - | ||
4431 | - # Make sure that we snagged all the symbols we need. | ||
4432 | - if grep ' nm_test_var$' "$nlist" >/dev/null; then | ||
4433 | - if grep ' nm_test_func$' "$nlist" >/dev/null; then | ||
4434 | - cat <<EOF > conftest.$ac_ext | ||
4435 | -#ifdef __cplusplus | ||
4436 | -extern "C" { | ||
4437 | -#endif | ||
4438 | - | ||
4439 | -EOF | ||
4440 | - # Now generate the symbol file. | ||
4441 | - eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext' | ||
4442 | - | ||
4443 | - cat <<EOF >> conftest.$ac_ext | ||
4444 | -#if defined (__STDC__) && __STDC__ | ||
4445 | -# define lt_ptr_t void * | ||
4446 | -#else | ||
4447 | -# define lt_ptr_t char * | ||
4448 | -# define const | ||
4449 | -#endif | ||
4450 | - | ||
4451 | -/* The mapping between symbol names and symbols. */ | ||
4452 | -const struct { | ||
4453 | - const char *name; | ||
4454 | - lt_ptr_t address; | ||
4455 | -} | ||
4456 | -lt_preloaded_symbols[[]] = | ||
4457 | -{ | ||
4458 | -EOF | ||
4459 | - $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext | ||
4460 | - cat <<\EOF >> conftest.$ac_ext | ||
4461 | - {0, (lt_ptr_t) 0} | ||
4462 | -}; | ||
4463 | - | ||
4464 | -#ifdef __cplusplus | ||
4465 | -} | ||
4466 | -#endif | ||
4467 | -EOF | ||
4468 | - # Now try linking the two files. | ||
4469 | - mv conftest.$ac_objext conftstm.$ac_objext | ||
4470 | - lt_save_LIBS="$LIBS" | ||
4471 | - lt_save_CFLAGS="$CFLAGS" | ||
4472 | - LIBS="conftstm.$ac_objext" | ||
4473 | - CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" | ||
4474 | - if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then | ||
4475 | - pipe_works=yes | ||
4476 | - fi | ||
4477 | - LIBS="$lt_save_LIBS" | ||
4478 | - CFLAGS="$lt_save_CFLAGS" | ||
4479 | - else | ||
4480 | - echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD | ||
4481 | - fi | ||
4482 | - else | ||
4483 | - echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD | ||
4484 | - fi | ||
4485 | - else | ||
4486 | - echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD | ||
4487 | - fi | ||
4488 | - else | ||
4489 | - echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD | ||
4490 | - cat conftest.$ac_ext >&5 | ||
4491 | - fi | ||
4492 | - rm -f conftest* conftst* | ||
4493 | - | ||
4494 | - # Do not use the global_symbol_pipe unless it works. | ||
4495 | - if test "$pipe_works" = yes; then | ||
4496 | - break | ||
4497 | - else | ||
4498 | - lt_cv_sys_global_symbol_pipe= | ||
4499 | - fi | ||
4500 | -done | ||
4501 | -]) | ||
4502 | -if test -z "$lt_cv_sys_global_symbol_pipe"; then | ||
4503 | - lt_cv_sys_global_symbol_to_cdecl= | ||
4504 | -fi | ||
4505 | -if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then | ||
4506 | - AC_MSG_RESULT(failed) | ||
4507 | -else | ||
4508 | - AC_MSG_RESULT(ok) | ||
4509 | -fi | ||
4510 | -]) # AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE | ||
4511 | - | ||
4512 | - | ||
4513 | -# AC_LIBTOOL_PROG_COMPILER_PIC([TAGNAME]) | ||
4514 | -# --------------------------------------- | ||
4515 | -AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], | ||
4516 | -[_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)= | ||
4517 | -_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= | ||
4518 | -_LT_AC_TAGVAR(lt_prog_compiler_static, $1)= | ||
4519 | - | ||
4520 | -AC_MSG_CHECKING([for $compiler option to produce PIC]) | ||
4521 | - ifelse([$1],[CXX],[ | ||
4522 | - # C++ specific cases for pic, static, wl, etc. | ||
4523 | - if test "$GXX" = yes; then | ||
4524 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4525 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' | ||
4526 | - | ||
4527 | - case $host_os in | ||
4528 | - aix*) | ||
4529 | - # All AIX code is PIC. | ||
4530 | - if test "$host_cpu" = ia64; then | ||
4531 | - # AIX 5 now supports IA64 processor | ||
4532 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4533 | - fi | ||
4534 | - ;; | ||
4535 | - amigaos*) | ||
4536 | - # FIXME: we need at least 68020 code to build shared libraries, but | ||
4537 | - # adding the `-m68020' flag to GCC prevents building anything better, | ||
4538 | - # like `-m68040'. | ||
4539 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' | ||
4540 | - ;; | ||
4541 | - beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) | ||
4542 | - # PIC is the default for these OSes. | ||
4543 | - ;; | ||
4544 | - mingw* | os2* | pw32*) | ||
4545 | - # This hack is so that the source file can tell whether it is being | ||
4546 | - # built for inclusion in a dll (and should export symbols for example). | ||
4547 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' | ||
4548 | - ;; | ||
4549 | - darwin* | rhapsody*) | ||
4550 | - # PIC is the default on this platform | ||
4551 | - # Common symbols not allowed in MH_DYLIB files | ||
4552 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' | ||
4553 | - ;; | ||
4554 | - *djgpp*) | ||
4555 | - # DJGPP does not support shared libraries at all | ||
4556 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= | ||
4557 | - ;; | ||
4558 | - sysv4*MP*) | ||
4559 | - if test -d /usr/nec; then | ||
4560 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic | ||
4561 | - fi | ||
4562 | - ;; | ||
4563 | - hpux*) | ||
4564 | - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but | ||
4565 | - # not for PA HP-UX. | ||
4566 | - case "$host_cpu" in | ||
4567 | - hppa*64*|ia64*) | ||
4568 | - ;; | ||
4569 | - *) | ||
4570 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' | ||
4571 | - ;; | ||
4572 | - esac | ||
4573 | - ;; | ||
4574 | - *) | ||
4575 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' | ||
4576 | - ;; | ||
4577 | - esac | ||
4578 | - else | ||
4579 | - case $host_os in | ||
4580 | - aix4* | aix5*) | ||
4581 | - # All AIX code is PIC. | ||
4582 | - if test "$host_cpu" = ia64; then | ||
4583 | - # AIX 5 now supports IA64 processor | ||
4584 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4585 | - else | ||
4586 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' | ||
4587 | - fi | ||
4588 | - ;; | ||
4589 | - chorus*) | ||
4590 | - case $cc_basename in | ||
4591 | - cxch68) | ||
4592 | - # Green Hills C++ Compiler | ||
4593 | - # _LT_AC_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" | ||
4594 | - ;; | ||
4595 | - esac | ||
4596 | - ;; | ||
4597 | - dgux*) | ||
4598 | - case $cc_basename in | ||
4599 | - ec++) | ||
4600 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4601 | - ;; | ||
4602 | - ghcx) | ||
4603 | - # Green Hills C++ Compiler | ||
4604 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' | ||
4605 | - ;; | ||
4606 | - *) | ||
4607 | - ;; | ||
4608 | - esac | ||
4609 | - ;; | ||
4610 | - freebsd* | kfreebsd*-gnu) | ||
4611 | - # FreeBSD uses GNU C++ | ||
4612 | - ;; | ||
4613 | - hpux9* | hpux10* | hpux11*) | ||
4614 | - case $cc_basename in | ||
4615 | - CC) | ||
4616 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4617 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" | ||
4618 | - if test "$host_cpu" != ia64; then | ||
4619 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' | ||
4620 | - fi | ||
4621 | - ;; | ||
4622 | - aCC) | ||
4623 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4624 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive" | ||
4625 | - case "$host_cpu" in | ||
4626 | - hppa*64*|ia64*) | ||
4627 | - # +Z the default | ||
4628 | - ;; | ||
4629 | - *) | ||
4630 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' | ||
4631 | - ;; | ||
4632 | - esac | ||
4633 | - ;; | ||
4634 | - *) | ||
4635 | - ;; | ||
4636 | - esac | ||
4637 | - ;; | ||
4638 | - irix5* | irix6* | nonstopux*) | ||
4639 | - case $cc_basename in | ||
4640 | - CC) | ||
4641 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4642 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' | ||
4643 | - # CC pic flag -KPIC is the default. | ||
4644 | - ;; | ||
4645 | - *) | ||
4646 | - ;; | ||
4647 | - esac | ||
4648 | - ;; | ||
4649 | - linux*) | ||
4650 | - case $cc_basename in | ||
4651 | - KCC) | ||
4652 | - # KAI C++ Compiler | ||
4653 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' | ||
4654 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' | ||
4655 | - ;; | ||
4656 | - icpc) | ||
4657 | - # Intel C++ | ||
4658 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4659 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4660 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' | ||
4661 | - ;; | ||
4662 | - cxx) | ||
4663 | - # Compaq C++ | ||
4664 | - # Make sure the PIC flag is empty. It appears that all Alpha | ||
4665 | - # Linux and Compaq Tru64 Unix objects are PIC. | ||
4666 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= | ||
4667 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' | ||
4668 | - ;; | ||
4669 | - *) | ||
4670 | - ;; | ||
4671 | - esac | ||
4672 | - ;; | ||
4673 | - lynxos*) | ||
4674 | - ;; | ||
4675 | - m88k*) | ||
4676 | - ;; | ||
4677 | - mvs*) | ||
4678 | - case $cc_basename in | ||
4679 | - cxx) | ||
4680 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' | ||
4681 | - ;; | ||
4682 | - *) | ||
4683 | - ;; | ||
4684 | - esac | ||
4685 | - ;; | ||
4686 | - netbsd*) | ||
4687 | - ;; | ||
4688 | - osf3* | osf4* | osf5*) | ||
4689 | - case $cc_basename in | ||
4690 | - KCC) | ||
4691 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' | ||
4692 | - ;; | ||
4693 | - RCC) | ||
4694 | - # Rational C++ 2.4.1 | ||
4695 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' | ||
4696 | - ;; | ||
4697 | - cxx) | ||
4698 | - # Digital/Compaq C++ | ||
4699 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4700 | - # Make sure the PIC flag is empty. It appears that all Alpha | ||
4701 | - # Linux and Compaq Tru64 Unix objects are PIC. | ||
4702 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= | ||
4703 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' | ||
4704 | - ;; | ||
4705 | - *) | ||
4706 | - ;; | ||
4707 | - esac | ||
4708 | - ;; | ||
4709 | - psos*) | ||
4710 | - ;; | ||
4711 | - sco*) | ||
4712 | - case $cc_basename in | ||
4713 | - CC) | ||
4714 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' | ||
4715 | - ;; | ||
4716 | - *) | ||
4717 | - ;; | ||
4718 | - esac | ||
4719 | - ;; | ||
4720 | - solaris*) | ||
4721 | - case $cc_basename in | ||
4722 | - CC) | ||
4723 | - # Sun C++ 4.2, 5.x and Centerline C++ | ||
4724 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4725 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4726 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' | ||
4727 | - ;; | ||
4728 | - gcx) | ||
4729 | - # Green Hills C++ Compiler | ||
4730 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' | ||
4731 | - ;; | ||
4732 | - *) | ||
4733 | - ;; | ||
4734 | - esac | ||
4735 | - ;; | ||
4736 | - sunos4*) | ||
4737 | - case $cc_basename in | ||
4738 | - CC) | ||
4739 | - # Sun C++ 4.x | ||
4740 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' | ||
4741 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4742 | - ;; | ||
4743 | - lcc) | ||
4744 | - # Lucid | ||
4745 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' | ||
4746 | - ;; | ||
4747 | - *) | ||
4748 | - ;; | ||
4749 | - esac | ||
4750 | - ;; | ||
4751 | - tandem*) | ||
4752 | - case $cc_basename in | ||
4753 | - NCC) | ||
4754 | - # NonStop-UX NCC 3.20 | ||
4755 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4756 | - ;; | ||
4757 | - *) | ||
4758 | - ;; | ||
4759 | - esac | ||
4760 | - ;; | ||
4761 | - unixware*) | ||
4762 | - ;; | ||
4763 | - vxworks*) | ||
4764 | - ;; | ||
4765 | - *) | ||
4766 | - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no | ||
4767 | - ;; | ||
4768 | - esac | ||
4769 | - fi | ||
4770 | -], | ||
4771 | -[ | ||
4772 | - if test "$GCC" = yes; then | ||
4773 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4774 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' | ||
4775 | - | ||
4776 | - case $host_os in | ||
4777 | - aix*) | ||
4778 | - # All AIX code is PIC. | ||
4779 | - if test "$host_cpu" = ia64; then | ||
4780 | - # AIX 5 now supports IA64 processor | ||
4781 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4782 | - fi | ||
4783 | - ;; | ||
4784 | - | ||
4785 | - amigaos*) | ||
4786 | - # FIXME: we need at least 68020 code to build shared libraries, but | ||
4787 | - # adding the `-m68020' flag to GCC prevents building anything better, | ||
4788 | - # like `-m68040'. | ||
4789 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' | ||
4790 | - ;; | ||
4791 | - | ||
4792 | - beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) | ||
4793 | - # PIC is the default for these OSes. | ||
4794 | - ;; | ||
4795 | - | ||
4796 | - mingw* | pw32* | os2*) | ||
4797 | - # This hack is so that the source file can tell whether it is being | ||
4798 | - # built for inclusion in a dll (and should export symbols for example). | ||
4799 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' | ||
4800 | - ;; | ||
4801 | - | ||
4802 | - darwin* | rhapsody*) | ||
4803 | - # PIC is the default on this platform | ||
4804 | - # Common symbols not allowed in MH_DYLIB files | ||
4805 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' | ||
4806 | - ;; | ||
4807 | - | ||
4808 | - msdosdjgpp*) | ||
4809 | - # Just because we use GCC doesn't mean we suddenly get shared libraries | ||
4810 | - # on systems that don't support them. | ||
4811 | - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no | ||
4812 | - enable_shared=no | ||
4813 | - ;; | ||
4814 | - | ||
4815 | - sysv4*MP*) | ||
4816 | - if test -d /usr/nec; then | ||
4817 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic | ||
4818 | - fi | ||
4819 | - ;; | ||
4820 | - | ||
4821 | - hpux*) | ||
4822 | - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but | ||
4823 | - # not for PA HP-UX. | ||
4824 | - case "$host_cpu" in | ||
4825 | - hppa*64*|ia64*) | ||
4826 | - # +Z the default | ||
4827 | - ;; | ||
4828 | - *) | ||
4829 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' | ||
4830 | - ;; | ||
4831 | - esac | ||
4832 | - ;; | ||
4833 | - | ||
4834 | - *) | ||
4835 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' | ||
4836 | - ;; | ||
4837 | - esac | ||
4838 | - else | ||
4839 | - # PORTME Check for flag to pass linker flags through the system compiler. | ||
4840 | - case $host_os in | ||
4841 | - aix*) | ||
4842 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4843 | - if test "$host_cpu" = ia64; then | ||
4844 | - # AIX 5 now supports IA64 processor | ||
4845 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4846 | - else | ||
4847 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' | ||
4848 | - fi | ||
4849 | - ;; | ||
4850 | - | ||
4851 | - mingw* | pw32* | os2*) | ||
4852 | - # This hack is so that the source file can tell whether it is being | ||
4853 | - # built for inclusion in a dll (and should export symbols for example). | ||
4854 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT' | ||
4855 | - ;; | ||
4856 | - | ||
4857 | - hpux9* | hpux10* | hpux11*) | ||
4858 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4859 | - # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but | ||
4860 | - # not for PA HP-UX. | ||
4861 | - case "$host_cpu" in | ||
4862 | - hppa*64*|ia64*) | ||
4863 | - # +Z the default | ||
4864 | - ;; | ||
4865 | - *) | ||
4866 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z' | ||
4867 | - ;; | ||
4868 | - esac | ||
4869 | - # Is there a better lt_prog_compiler_static that works with the bundled CC? | ||
4870 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' | ||
4871 | - ;; | ||
4872 | - | ||
4873 | - irix5* | irix6* | nonstopux*) | ||
4874 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4875 | - # PIC (with -KPIC) is the default. | ||
4876 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' | ||
4877 | - ;; | ||
4878 | - | ||
4879 | - newsos6) | ||
4880 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4881 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4882 | - ;; | ||
4883 | - | ||
4884 | - linux*) | ||
4885 | - case $CC in | ||
4886 | - icc* | ecc*) | ||
4887 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4888 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4889 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static' | ||
4890 | - ;; | ||
4891 | - ccc*) | ||
4892 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4893 | - # All Alpha code is PIC. | ||
4894 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' | ||
4895 | - ;; | ||
4896 | - esac | ||
4897 | - ;; | ||
4898 | - | ||
4899 | - osf3* | osf4* | osf5*) | ||
4900 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4901 | - # All OSF/1 code is PIC. | ||
4902 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' | ||
4903 | - ;; | ||
4904 | - | ||
4905 | - sco3.2v5*) | ||
4906 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kpic' | ||
4907 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-dn' | ||
4908 | - ;; | ||
4909 | - | ||
4910 | - solaris*) | ||
4911 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4912 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4913 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4914 | - ;; | ||
4915 | - | ||
4916 | - sunos4*) | ||
4917 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' | ||
4918 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' | ||
4919 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4920 | - ;; | ||
4921 | - | ||
4922 | - sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) | ||
4923 | - _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' | ||
4924 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' | ||
4925 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4926 | - ;; | ||
4927 | - | ||
4928 | - sysv4*MP*) | ||
4929 | - if test -d /usr/nec ;then | ||
4930 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' | ||
4931 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4932 | - fi | ||
4933 | - ;; | ||
4934 | - | ||
4935 | - uts4*) | ||
4936 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic' | ||
4937 | - _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' | ||
4938 | - ;; | ||
4939 | - | ||
4940 | - *) | ||
4941 | - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no | ||
4942 | - ;; | ||
4943 | - esac | ||
4944 | - fi | ||
4945 | -]) | ||
4946 | -AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)]) | ||
4947 | - | ||
4948 | -# | ||
4949 | -# Check to make sure the PIC flag actually works. | ||
4950 | -# | ||
4951 | -if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then | ||
4952 | - AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works], | ||
4953 | - _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1), | ||
4954 | - [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [], | ||
4955 | - [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in | ||
4956 | - "" | " "*) ;; | ||
4957 | - *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;; | ||
4958 | - esac], | ||
4959 | - [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= | ||
4960 | - _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) | ||
4961 | -fi | ||
4962 | -case "$host_os" in | ||
4963 | - # For platforms which do not support PIC, -DPIC is meaningless: | ||
4964 | - *djgpp*) | ||
4965 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)= | ||
4966 | - ;; | ||
4967 | - *) | ||
4968 | - _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])" | ||
4969 | - ;; | ||
4970 | -esac | ||
4971 | -]) | ||
4972 | - | ||
4973 | - | ||
4974 | -# AC_LIBTOOL_PROG_LD_SHLIBS([TAGNAME]) | ||
4975 | -# ------------------------------------ | ||
4976 | -# See if the linker supports building shared libraries. | ||
4977 | -AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], | ||
4978 | -[AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) | ||
4979 | -ifelse([$1],[CXX],[ | ||
4980 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' | ||
4981 | - case $host_os in | ||
4982 | - aix4* | aix5*) | ||
4983 | - # If we're using GNU nm, then we don't want the "-C" option. | ||
4984 | - # -C means demangle to AIX nm, but means don't demangle with GNU nm | ||
4985 | - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then | ||
4986 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' | ||
4987 | - else | ||
4988 | - _LT_AC_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' | ||
4989 | - fi | ||
4990 | - ;; | ||
4991 | - pw32*) | ||
4992 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" | ||
4993 | - ;; | ||
4994 | - cygwin* | mingw*) | ||
4995 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' | ||
4996 | - ;; | ||
4997 | - *) | ||
4998 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' | ||
4999 | - ;; | ||
5000 | - esac | ||
5001 | -],[ | ||
5002 | - runpath_var= | ||
5003 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)= | ||
5004 | - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no | ||
5005 | - _LT_AC_TAGVAR(archive_cmds, $1)= | ||
5006 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)= | ||
5007 | - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)= | ||
5008 | - _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)= | ||
5009 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)= | ||
5010 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= | ||
5011 | - _LT_AC_TAGVAR(thread_safe_flag_spec, $1)= | ||
5012 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= | ||
5013 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= | ||
5014 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= | ||
5015 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
5016 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=no | ||
5017 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported | ||
5018 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown | ||
5019 | - _LT_AC_TAGVAR(hardcode_automatic, $1)=no | ||
5020 | - _LT_AC_TAGVAR(module_cmds, $1)= | ||
5021 | - _LT_AC_TAGVAR(module_expsym_cmds, $1)= | ||
5022 | - _LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
5023 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' | ||
5024 | - # include_expsyms should be a list of space-separated symbols to be *always* | ||
5025 | - # included in the symbol list | ||
5026 | - _LT_AC_TAGVAR(include_expsyms, $1)= | ||
5027 | - # exclude_expsyms can be an extended regexp of symbols to exclude | ||
5028 | - # it will be wrapped by ` (' and `)$', so one must not match beginning or | ||
5029 | - # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', | ||
5030 | - # as well as any symbol that contains `d'. | ||
5031 | - _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_" | ||
5032 | - # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out | ||
5033 | - # platforms (ab)use it in PIC code, but their linkers get confused if | ||
5034 | - # the symbol is explicitly referenced. Since portable code cannot | ||
5035 | - # rely on this symbol name, it's probably fine to never include it in | ||
5036 | - # preloaded symbol tables. | ||
5037 | - extract_expsyms_cmds= | ||
5038 | - | ||
5039 | - case $host_os in | ||
5040 | - cygwin* | mingw* | pw32*) | ||
5041 | - # FIXME: the MSVC++ port hasn't been tested in a loooong time | ||
5042 | - # When not using gcc, we currently assume that we are using | ||
5043 | - # Microsoft Visual C++. | ||
5044 | - if test "$GCC" != yes; then | ||
5045 | - with_gnu_ld=no | ||
5046 | - fi | ||
5047 | - ;; | ||
5048 | - openbsd*) | ||
5049 | - with_gnu_ld=no | ||
5050 | - ;; | ||
5051 | - esac | ||
5052 | - | ||
5053 | - _LT_AC_TAGVAR(ld_shlibs, $1)=yes | ||
5054 | - if test "$with_gnu_ld" = yes; then | ||
5055 | - # If archive_cmds runs LD, not CC, wlarc should be empty | ||
5056 | - wlarc='${wl}' | ||
5057 | - | ||
5058 | - # See if GNU ld supports shared libraries. | ||
5059 | - case $host_os in | ||
5060 | - aix3* | aix4* | aix5*) | ||
5061 | - # On AIX/PPC, the GNU linker is very broken | ||
5062 | - if test "$host_cpu" != ia64; then | ||
5063 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5064 | - cat <<EOF 1>&2 | ||
5065 | - | ||
5066 | -*** Warning: the GNU linker, at least up to release 2.9.1, is reported | ||
5067 | -*** to be unable to reliably create shared libraries on AIX. | ||
5068 | -*** Therefore, libtool is disabling shared libraries support. If you | ||
5069 | -*** really care for shared libraries, you may want to modify your PATH | ||
5070 | -*** so that a non-GNU linker is found, and then restart. | ||
5071 | - | ||
5072 | -EOF | ||
5073 | - fi | ||
5074 | - ;; | ||
5075 | - | ||
5076 | - amigaos*) | ||
5077 | - _LT_AC_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)' | ||
5078 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5079 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5080 | - | ||
5081 | - # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports | ||
5082 | - # that the semantics of dynamic libraries on AmigaOS, at least up | ||
5083 | - # to version 4, is to share data among multiple programs linked | ||
5084 | - # with the same dynamic library. Since this doesn't match the | ||
5085 | - # behavior of shared libraries on other platforms, we can't use | ||
5086 | - # them. | ||
5087 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5088 | - ;; | ||
5089 | - | ||
5090 | - beos*) | ||
5091 | - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then | ||
5092 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported | ||
5093 | - # Joseph Beckenbach <jrb3@best.com> says some releases of gcc | ||
5094 | - # support --undefined. This deserves some investigation. FIXME | ||
5095 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname -o $lib' | ||
5096 | - else | ||
5097 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5098 | - fi | ||
5099 | - ;; | ||
5100 | - | ||
5101 | - cygwin* | mingw* | pw32*) | ||
5102 | - # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, | ||
5103 | - # as there is no search path for DLLs. | ||
5104 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5105 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=no | ||
5106 | - _LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
5107 | - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes | ||
5108 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols' | ||
5109 | - | ||
5110 | - if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then | ||
5111 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' | ||
5112 | - # If the export-symbols file already is a .def file (1st line | ||
5113 | - # is EXPORTS), use it as is; otherwise, prepend... | ||
5114 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then | ||
5115 | - cp $export_symbols $output_objdir/$soname.def; | ||
5116 | - else | ||
5117 | - echo EXPORTS > $output_objdir/$soname.def; | ||
5118 | - cat $export_symbols >> $output_objdir/$soname.def; | ||
5119 | - fi~ | ||
5120 | - $CC -shared $output_objdir/$soname.def $compiler_flags $libobjs $deplibs -o $output_objdir/$soname ${wl}--image-base=0x10000000 ${wl}--out-implib,$lib' | ||
5121 | - else | ||
5122 | - ld_shlibs=no | ||
5123 | - fi | ||
5124 | - ;; | ||
5125 | - | ||
5126 | - netbsd*) | ||
5127 | - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then | ||
5128 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' | ||
5129 | - wlarc= | ||
5130 | - else | ||
5131 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname -o $lib' | ||
5132 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | ||
5133 | - fi | ||
5134 | - ;; | ||
5135 | - | ||
5136 | - solaris* | sysv5*) | ||
5137 | - if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then | ||
5138 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5139 | - cat <<EOF 1>&2 | ||
5140 | - | ||
5141 | -*** Warning: The releases 2.8.* of the GNU linker cannot reliably | ||
5142 | -*** create shared libraries on Solaris systems. Therefore, libtool | ||
5143 | -*** is disabling shared libraries support. We urge you to upgrade GNU | ||
5144 | -*** binutils to release 2.9.1 or newer. Another option is to modify | ||
5145 | -*** your PATH or compiler configuration so that the native linker is | ||
5146 | -*** used, and then restart. | ||
5147 | - | ||
5148 | -EOF | ||
5149 | - elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then | ||
5150 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname -o $lib' | ||
5151 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | ||
5152 | - else | ||
5153 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5154 | - fi | ||
5155 | - ;; | ||
5156 | - | ||
5157 | - sunos4*) | ||
5158 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' | ||
5159 | - wlarc= | ||
5160 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5161 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5162 | - ;; | ||
5163 | - | ||
5164 | - *) | ||
5165 | - if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then | ||
5166 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname -o $lib' | ||
5167 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' | ||
5168 | - else | ||
5169 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5170 | - fi | ||
5171 | - ;; | ||
5172 | - esac | ||
5173 | - | ||
5174 | - if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = yes; then | ||
5175 | - runpath_var=LD_RUN_PATH | ||
5176 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' | ||
5177 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' | ||
5178 | - # ancient GNU ld didn't support --whole-archive et. al. | ||
5179 | - if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then | ||
5180 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' | ||
5181 | - else | ||
5182 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)= | ||
5183 | - fi | ||
5184 | - fi | ||
5185 | - else | ||
5186 | - # PORTME fill in a description of your system's linker (not GNU ld) | ||
5187 | - case $host_os in | ||
5188 | - aix3*) | ||
5189 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported | ||
5190 | - _LT_AC_TAGVAR(always_export_symbols, $1)=yes | ||
5191 | - _LT_AC_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' | ||
5192 | - # Note: this linker hardcodes the directories in LIBPATH if there | ||
5193 | - # are no directories specified by -L. | ||
5194 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5195 | - if test "$GCC" = yes && test -z "$link_static_flag"; then | ||
5196 | - # Neither direct hardcoding nor static linking is supported with a | ||
5197 | - # broken collect2. | ||
5198 | - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported | ||
5199 | - fi | ||
5200 | - ;; | ||
5201 | - | ||
5202 | - aix4* | aix5*) | ||
5203 | - if test "$host_cpu" = ia64; then | ||
5204 | - # On IA64, the linker does run time linking by default, so we don't | ||
5205 | - # have to do anything special. | ||
5206 | - aix_use_runtimelinking=no | ||
5207 | - exp_sym_flag='-Bexport' | ||
5208 | - no_entry_flag="" | ||
5209 | - else | ||
5210 | - # If we're using GNU nm, then we don't want the "-C" option. | ||
5211 | - # -C means demangle to AIX nm, but means don't demangle with GNU nm | ||
5212 | - if $NM -V 2>&1 | grep 'GNU' > /dev/null; then | ||
5213 | - _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\[$]2 == "T") || (\[$]2 == "D") || (\[$]2 == "B")) && ([substr](\[$]3,1,1) != ".")) { print \[$]3 } }'\'' | sort -u > $export_symbols' | ||
5214 | - else | ||
5215 | - _LT_AC_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' | ||
5216 | - fi | ||
5217 | - | ||
5218 | - # KDE requires run time linking. Make it the default. | ||
5219 | - aix_use_runtimelinking=yes | ||
5220 | - exp_sym_flag='-bexport' | ||
5221 | - no_entry_flag='-bnoentry' | ||
5222 | - fi | ||
5223 | - | ||
5224 | - # When large executables or shared objects are built, AIX ld can | ||
5225 | - # have problems creating the table of contents. If linking a library | ||
5226 | - # or program results in "error TOC overflow" add -mminimal-toc to | ||
5227 | - # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not | ||
5228 | - # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. | ||
5229 | - | ||
5230 | - _LT_AC_TAGVAR(archive_cmds, $1)='' | ||
5231 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5232 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':' | ||
5233 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
5234 | - | ||
5235 | - if test "$GCC" = yes; then | ||
5236 | - case $host_os in aix4.[012]|aix4.[012].*) | ||
5237 | - # We only want to do this on AIX 4.2 and lower, the check | ||
5238 | - # below for broken collect2 doesn't work under 4.3+ | ||
5239 | - collect2name=`${CC} -print-prog-name=collect2` | ||
5240 | - if test -f "$collect2name" && \ | ||
5241 | - strings "$collect2name" | grep resolve_lib_name >/dev/null | ||
5242 | - then | ||
5243 | - # We have reworked collect2 | ||
5244 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5245 | - else | ||
5246 | - # We have old collect2 | ||
5247 | - _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported | ||
5248 | - # It fails to find uninstalled libraries when the uninstalled | ||
5249 | - # path is not listed in the libpath. Setting hardcode_minus_L | ||
5250 | - # to unsupported forces relinking | ||
5251 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5252 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5253 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)= | ||
5254 | - fi | ||
5255 | - esac | ||
5256 | - shared_flag='-shared' | ||
5257 | - else | ||
5258 | - # not using gcc | ||
5259 | - if test "$host_cpu" = ia64; then | ||
5260 | - # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release | ||
5261 | - # chokes on -Wl,-G. The following line is correct: | ||
5262 | - shared_flag='-G' | ||
5263 | - else | ||
5264 | - if test "$aix_use_runtimelinking" = yes; then | ||
5265 | - shared_flag='-qmkshrobj ${wl}-G' | ||
5266 | - else | ||
5267 | - shared_flag='-qmkshrobj' | ||
5268 | - fi | ||
5269 | - fi | ||
5270 | - fi | ||
5271 | - | ||
5272 | - # Let the compiler handle the export list. | ||
5273 | - _LT_AC_TAGVAR(always_export_symbols, $1)=no | ||
5274 | - if test "$aix_use_runtimelinking" = yes; then | ||
5275 | - # Warning - without using the other runtime loading flags (-brtl), | ||
5276 | - # -berok will link without error, but may produce a broken library. | ||
5277 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok' | ||
5278 | - # Determine the default libpath from the value encoded in an empty executable. | ||
5279 | - _LT_AC_SYS_LIBPATH_AIX | ||
5280 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" | ||
5281 | - _LT_AC_TAGVAR(archive_cmds, $1)="\$CC"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '" $shared_flag" | ||
5282 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" | ||
5283 | - else | ||
5284 | - if test "$host_cpu" = ia64; then | ||
5285 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' | ||
5286 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs" | ||
5287 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols" | ||
5288 | - else | ||
5289 | - # Determine the default libpath from the value encoded in an empty executable. | ||
5290 | - _LT_AC_SYS_LIBPATH_AIX | ||
5291 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" | ||
5292 | - # Warning - without using the other run time loading flags, | ||
5293 | - # -berok will link without error, but may produce a broken library. | ||
5294 | - _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' | ||
5295 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' | ||
5296 | - # -bexpall does not export symbols beginning with underscore (_) | ||
5297 | - _LT_AC_TAGVAR(always_export_symbols, $1)=yes | ||
5298 | - # Exported symbols can be pulled into shared objects from archives | ||
5299 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' ' | ||
5300 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes | ||
5301 | - # This is similar to how AIX traditionally builds it's shared libraries. | ||
5302 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $compiler_flags $libobjs $deplibs ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' | ||
5303 | - fi | ||
5304 | - fi | ||
5305 | - ;; | ||
5306 | - | ||
5307 | - amigaos*) | ||
5308 | - _LT_AC_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)' | ||
5309 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5310 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5311 | - # see comment about different semantics on the GNU ld section | ||
5312 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5313 | - ;; | ||
5314 | - | ||
5315 | - bsdi4*) | ||
5316 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic | ||
5317 | - ;; | ||
5318 | - | ||
5319 | - cygwin* | mingw* | pw32*) | ||
5320 | - # When not using gcc, we currently assume that we are using | ||
5321 | - # Microsoft Visual C++. | ||
5322 | - # hardcode_libdir_flag_spec is actually meaningless, as there is | ||
5323 | - # no search path for DLLs. | ||
5324 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' | ||
5325 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=no | ||
5326 | - # Tell ltmain to make .lib files, not .a files. | ||
5327 | - libext=lib | ||
5328 | - # Tell ltmain to make .dll files, not .so files. | ||
5329 | - shrext=".dll" | ||
5330 | - # FIXME: Setting linknames here is a bad hack. | ||
5331 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $compiler_flags $libobjs `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames=' | ||
5332 | - # The linker will automatically build a .lib file if we build a DLL. | ||
5333 | - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true' | ||
5334 | - # FIXME: Should let the user specify the lib program. | ||
5335 | - _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs' | ||
5336 | - fix_srcfile_path='`cygpath -w "$srcfile"`' | ||
5337 | - _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes | ||
5338 | - ;; | ||
5339 | - | ||
5340 | - darwin* | rhapsody*) | ||
5341 | - if test "$GXX" = yes ; then | ||
5342 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
5343 | - case "$host_os" in | ||
5344 | - rhapsody* | darwin1.[[012]]) | ||
5345 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,suppress' | ||
5346 | - ;; | ||
5347 | - *) # Darwin 1.3 on | ||
5348 | - if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then | ||
5349 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress' | ||
5350 | - else | ||
5351 | - case ${MACOSX_DEPLOYMENT_TARGET} in | ||
5352 | - 10.[012]) | ||
5353 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-flat_namespace -Wl,-undefined -Wl,suppress' | ||
5354 | - ;; | ||
5355 | - 10.*) | ||
5356 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)='-Wl,-undefined -Wl,dynamic_lookup' | ||
5357 | - ;; | ||
5358 | - esac | ||
5359 | - fi | ||
5360 | - ;; | ||
5361 | - esac | ||
5362 | - lt_int_apple_cc_single_mod=no | ||
5363 | - output_verbose_link_cmd='echo' | ||
5364 | - if $CC -dumpspecs 2>&1 | grep 'single_module' >/dev/null ; then | ||
5365 | - lt_int_apple_cc_single_mod=yes | ||
5366 | - fi | ||
5367 | - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then | ||
5368 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring' | ||
5369 | - else | ||
5370 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $compiler_flags $deplibs -install_name $rpath/$soname $verstring' | ||
5371 | - fi | ||
5372 | - _LT_AC_TAGVAR(module_cmds, $1)='$CC ${wl}-bind_at_load $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs' | ||
5373 | - # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin ld's | ||
5374 | - if test "X$lt_int_apple_cc_single_mod" = Xyes ; then | ||
5375 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $compiler_flags $libobjs $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
5376 | - else | ||
5377 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -r ${wl}-bind_at_load -keep_private_externs -nostdlib -o ${lib}-master.o $libobjs~$CC -dynamiclib $allow_undefined_flag -o $lib ${lib}-master.o $compiler_flags $deplibs -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
5378 | - fi | ||
5379 | - _LT_AC_TAGVAR(module_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC $allow_undefined_flag -o $lib -bundle $compiler_flags $libobjs $deplibs~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}' | ||
5380 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
5381 | - _LT_AC_TAGVAR(hardcode_automatic, $1)=yes | ||
5382 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported | ||
5383 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-all_load $convenience' | ||
5384 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
5385 | - else | ||
5386 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5387 | - fi | ||
5388 | - ;; | ||
5389 | - | ||
5390 | - dgux*) | ||
5391 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5392 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5393 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5394 | - ;; | ||
5395 | - | ||
5396 | - freebsd1*) | ||
5397 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5398 | - ;; | ||
5399 | - | ||
5400 | - # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor | ||
5401 | - # support. Future versions do this automatically, but an explicit c++rt0.o | ||
5402 | - # does not break anything, and helps significantly (at the cost of a little | ||
5403 | - # extra space). | ||
5404 | - freebsd2.2*) | ||
5405 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' | ||
5406 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
5407 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5408 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5409 | - ;; | ||
5410 | - | ||
5411 | - # Unfortunately, older versions of FreeBSD 2 do not have this feature. | ||
5412 | - freebsd2*) | ||
5413 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' | ||
5414 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5415 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5416 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5417 | - ;; | ||
5418 | - | ||
5419 | - # FreeBSD 3 and greater uses gcc -shared to do shared libraries. | ||
5420 | - freebsd* | kfreebsd*-gnu) | ||
5421 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $compiler_flags $libobjs $deplibs' | ||
5422 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
5423 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5424 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5425 | - ;; | ||
5426 | - | ||
5427 | - hpux9*) | ||
5428 | - if test "$GCC" = yes; then | ||
5429 | - _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $compiler_flags $libobjs $deplibs~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' | ||
5430 | - else | ||
5431 | - _LT_AC_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' | ||
5432 | - fi | ||
5433 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' | ||
5434 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5435 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5436 | - | ||
5437 | - # hardcode_minus_L: Not really in the search PATH, | ||
5438 | - # but as the default location of the library. | ||
5439 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5440 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' | ||
5441 | - ;; | ||
5442 | - | ||
5443 | - hpux10* | hpux11*) | ||
5444 | - if test "$GCC" = yes -a "$with_gnu_ld" = no; then | ||
5445 | - case "$host_cpu" in | ||
5446 | - hppa*64*|ia64*) | ||
5447 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs' | ||
5448 | - ;; | ||
5449 | - *) | ||
5450 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $compiler_flags $libobjs $deplibs' | ||
5451 | - ;; | ||
5452 | - esac | ||
5453 | - else | ||
5454 | - case "$host_cpu" in | ||
5455 | - hppa*64*|ia64*) | ||
5456 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5457 | - ;; | ||
5458 | - *) | ||
5459 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' | ||
5460 | - ;; | ||
5461 | - esac | ||
5462 | - fi | ||
5463 | - if test "$with_gnu_ld" = no; then | ||
5464 | - case "$host_cpu" in | ||
5465 | - hppa*64*) | ||
5466 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' | ||
5467 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' | ||
5468 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5469 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
5470 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5471 | - ;; | ||
5472 | - ia64*) | ||
5473 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5474 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
5475 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5476 | - | ||
5477 | - # hardcode_minus_L: Not really in the search PATH, | ||
5478 | - # but as the default location of the library. | ||
5479 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5480 | - ;; | ||
5481 | - *) | ||
5482 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' | ||
5483 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5484 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5485 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' | ||
5486 | - | ||
5487 | - # hardcode_minus_L: Not really in the search PATH, | ||
5488 | - # but as the default location of the library. | ||
5489 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5490 | - ;; | ||
5491 | - esac | ||
5492 | - fi | ||
5493 | - ;; | ||
5494 | - | ||
5495 | - irix5* | irix6* | nonstopux*) | ||
5496 | - if test "$GCC" = yes; then | ||
5497 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $compiler_flags $libobjs $deplibs ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' | ||
5498 | - else | ||
5499 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' | ||
5500 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' | ||
5501 | - fi | ||
5502 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
5503 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5504 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
5505 | - ;; | ||
5506 | - | ||
5507 | - netbsd*) | ||
5508 | - if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then | ||
5509 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out | ||
5510 | - else | ||
5511 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF | ||
5512 | - fi | ||
5513 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
5514 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5515 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5516 | - ;; | ||
5517 | - | ||
5518 | - newsos6) | ||
5519 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5520 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5521 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
5522 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5523 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5524 | - ;; | ||
5525 | - | ||
5526 | - openbsd*) | ||
5527 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5528 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5529 | - if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then | ||
5530 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $compiler_flags $libobjs $deplibs' | ||
5531 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' | ||
5532 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' | ||
5533 | - else | ||
5534 | - case $host_os in | ||
5535 | - openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) | ||
5536 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' | ||
5537 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
5538 | - ;; | ||
5539 | - *) | ||
5540 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $compiler_flags $libobjs $deplibs' | ||
5541 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' | ||
5542 | - ;; | ||
5543 | - esac | ||
5544 | - fi | ||
5545 | - ;; | ||
5546 | - | ||
5547 | - os2*) | ||
5548 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5549 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5550 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported | ||
5551 | - _LT_AC_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 $compiler_flags $libobjs $deplibs$output_objdir/$libname.def' | ||
5552 | - _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' | ||
5553 | - ;; | ||
5554 | - | ||
5555 | - osf3*) | ||
5556 | - if test "$GCC" = yes; then | ||
5557 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' | ||
5558 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $compiler_flags $libobjs $deplibs ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' | ||
5559 | - else | ||
5560 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' | ||
5561 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' | ||
5562 | - fi | ||
5563 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
5564 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5565 | - ;; | ||
5566 | - | ||
5567 | - osf4* | osf5*) # as osf3* with the addition of -msym flag | ||
5568 | - if test "$GCC" = yes; then | ||
5569 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' | ||
5570 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $compiler_flags $libobjs $deplibs ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' | ||
5571 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' | ||
5572 | - else | ||
5573 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' | ||
5574 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared${allow_undefined_flag} $libobjs $deplibs $linker_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib' | ||
5575 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; echo "-hidden">> $lib.exp~ | ||
5576 | - $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${objdir}/so_locations -o $lib~$rm $lib.exp' | ||
5577 | - | ||
5578 | - # Both c and cxx compiler support -rpath directly | ||
5579 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' | ||
5580 | - fi | ||
5581 | - _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=: | ||
5582 | - ;; | ||
5583 | - | ||
5584 | - sco3.2v5*) | ||
5585 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5586 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5587 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' | ||
5588 | - runpath_var=LD_RUN_PATH | ||
5589 | - hardcode_runpath_var=yes | ||
5590 | - ;; | ||
5591 | - | ||
5592 | - solaris*) | ||
5593 | - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' | ||
5594 | - if test "$GCC" = yes; then | ||
5595 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs' | ||
5596 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ | ||
5597 | - $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs~$rm $lib.exp' | ||
5598 | - else | ||
5599 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5600 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ | ||
5601 | - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' | ||
5602 | - fi | ||
5603 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' | ||
5604 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5605 | - case $host_os in | ||
5606 | - solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; | ||
5607 | - *) # Supported since Solaris 2.6 (maybe 2.5.1?) | ||
5608 | - _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; | ||
5609 | - esac | ||
5610 | - _LT_AC_TAGVAR(link_all_deplibs, $1)=yes | ||
5611 | - ;; | ||
5612 | - | ||
5613 | - sunos4*) | ||
5614 | - if test "x$host_vendor" = xsequent; then | ||
5615 | - # Use $CC to link under sequent, because it throws in some extra .o | ||
5616 | - # files that make .init and .fini sections work. | ||
5617 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $compiler_flags $libobjs $deplibs' | ||
5618 | - else | ||
5619 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' | ||
5620 | - fi | ||
5621 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5622 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5623 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes | ||
5624 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5625 | - ;; | ||
5626 | - | ||
5627 | - sysv4) | ||
5628 | - case $host_vendor in | ||
5629 | - sni) | ||
5630 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5631 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true??? | ||
5632 | - ;; | ||
5633 | - siemens) | ||
5634 | - ## LD is ld it makes a PLAMLIB | ||
5635 | - ## CC just makes a GrossModule. | ||
5636 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' | ||
5637 | - _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' | ||
5638 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no | ||
5639 | - ;; | ||
5640 | - motorola) | ||
5641 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5642 | - _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie | ||
5643 | - ;; | ||
5644 | - esac | ||
5645 | - runpath_var='LD_RUN_PATH' | ||
5646 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5647 | - ;; | ||
5648 | - | ||
5649 | - sysv4.3*) | ||
5650 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5651 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5652 | - _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' | ||
5653 | - ;; | ||
5654 | - | ||
5655 | - sysv4*MP*) | ||
5656 | - if test -d /usr/nec; then | ||
5657 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5658 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5659 | - runpath_var=LD_RUN_PATH | ||
5660 | - hardcode_runpath_var=yes | ||
5661 | - _LT_AC_TAGVAR(ld_shlibs, $1)=yes | ||
5662 | - fi | ||
5663 | - ;; | ||
5664 | - | ||
5665 | - sysv4.2uw2*) | ||
5666 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' | ||
5667 | - _LT_AC_TAGVAR(hardcode_direct, $1)=yes | ||
5668 | - _LT_AC_TAGVAR(hardcode_minus_L, $1)=no | ||
5669 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5670 | - hardcode_runpath_var=yes | ||
5671 | - runpath_var=LD_RUN_PATH | ||
5672 | - ;; | ||
5673 | - | ||
5674 | - sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*) | ||
5675 | - _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text' | ||
5676 | - if test "$GCC" = yes; then | ||
5677 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs' | ||
5678 | - else | ||
5679 | - _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $compiler_flags $libobjs $deplibs' | ||
5680 | - fi | ||
5681 | - runpath_var='LD_RUN_PATH' | ||
5682 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5683 | - ;; | ||
5684 | - | ||
5685 | - sysv5*) | ||
5686 | - _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text' | ||
5687 | - # $CC -shared without GNU ld will not create a library from C++ | ||
5688 | - # object files and a static libstdc++, better avoid it by now | ||
5689 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5690 | - _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ | ||
5691 | - $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp' | ||
5692 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)= | ||
5693 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5694 | - runpath_var='LD_RUN_PATH' | ||
5695 | - ;; | ||
5696 | - | ||
5697 | - uts4*) | ||
5698 | - _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' | ||
5699 | - _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' | ||
5700 | - _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no | ||
5701 | - ;; | ||
5702 | - | ||
5703 | - *) | ||
5704 | - _LT_AC_TAGVAR(ld_shlibs, $1)=no | ||
5705 | - ;; | ||
5706 | - esac | ||
5707 | - fi | ||
5708 | -]) | ||
5709 | -AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)]) | ||
5710 | -test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no | ||
5711 | - | ||
5712 | -variables_saved_for_relink="PATH $shlibpath_var $runpath_var" | ||
5713 | -if test "$GCC" = yes; then | ||
5714 | - variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" | ||
5715 | -fi | ||
5716 | - | ||
5717 | -# | ||
5718 | -# Do we need to explicitly link libc? | ||
5719 | -# | ||
5720 | -case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in | ||
5721 | -x|xyes) | ||
5722 | - # Assume -lc should be added | ||
5723 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes | ||
5724 | - | ||
5725 | - if test "$enable_shared" = yes && test "$GCC" = yes; then | ||
5726 | - case $_LT_AC_TAGVAR(archive_cmds, $1) in | ||
5727 | - *'~'*) | ||
5728 | - # FIXME: we may have to deal with multi-command sequences. | ||
5729 | - ;; | ||
5730 | - '$CC '*) | ||
5731 | - # Test whether the compiler implicitly links with -lc since on some | ||
5732 | - # systems, -lgcc has to come before -lc. If gcc already passes -lc | ||
5733 | - # to ld, don't add -lc before -lgcc. | ||
5734 | - AC_MSG_CHECKING([whether -lc should be explicitly linked in]) | ||
5735 | - $rm conftest* | ||
5736 | - printf "$lt_simple_compile_test_code" > conftest.$ac_ext | ||
5737 | - | ||
5738 | - if AC_TRY_EVAL(ac_compile) 2>conftest.err; then | ||
5739 | - soname=conftest | ||
5740 | - lib=conftest | ||
5741 | - libobjs=conftest.$ac_objext | ||
5742 | - deplibs= | ||
5743 | - wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) | ||
5744 | - compiler_flags=-v | ||
5745 | - linker_flags=-v | ||
5746 | - verstring= | ||
5747 | - output_objdir=. | ||
5748 | - libname=conftest | ||
5749 | - lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1) | ||
5750 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)= | ||
5751 | - if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1) | ||
5752 | - then | ||
5753 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no | ||
5754 | - else | ||
5755 | - _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes | ||
5756 | - fi | ||
5757 | - _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag | ||
5758 | - else | ||
5759 | - cat conftest.err 1>&5 | ||
5760 | - fi | ||
5761 | - $rm conftest* | ||
5762 | - AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)]) | ||
5763 | - ;; | ||
5764 | - esac | ||
5765 | - fi | ||
5766 | - ;; | ||
5767 | -esac | ||
5768 | -])# AC_LIBTOOL_PROG_LD_SHLIBS | ||
5769 | - | ||
5770 | - | ||
5771 | -# _LT_AC_FILE_LTDLL_C | ||
5772 | -# ------------------- | ||
5773 | -# Be careful that the start marker always follows a newline. | ||
5774 | -AC_DEFUN([_LT_AC_FILE_LTDLL_C], [ | ||
5775 | -# /* ltdll.c starts here */ | ||
5776 | -# #define WIN32_LEAN_AND_MEAN | ||
5777 | -# #include <windows.h> | ||
5778 | -# #undef WIN32_LEAN_AND_MEAN | ||
5779 | -# #include <stdio.h> | ||
5780 | -# | ||
5781 | -# #ifndef __CYGWIN__ | ||
5782 | -# # ifdef __CYGWIN32__ | ||
5783 | -# # define __CYGWIN__ __CYGWIN32__ | ||
5784 | -# # endif | ||
5785 | -# #endif | ||
5786 | -# | ||
5787 | -# #ifdef __cplusplus | ||
5788 | -# extern "C" { | ||
5789 | -# #endif | ||
5790 | -# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved); | ||
5791 | -# #ifdef __cplusplus | ||
5792 | -# } | ||
5793 | -# #endif | ||
5794 | -# | ||
5795 | -# #ifdef __CYGWIN__ | ||
5796 | -# #include <cygwin/cygwin_dll.h> | ||
5797 | -# DECLARE_CYGWIN_DLL( DllMain ); | ||
5798 | -# #endif | ||
5799 | -# HINSTANCE __hDllInstance_base; | ||
5800 | -# | ||
5801 | -# BOOL APIENTRY | ||
5802 | -# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved) | ||
5803 | -# { | ||
5804 | -# __hDllInstance_base = hInst; | ||
5805 | -# return TRUE; | ||
5806 | -# } | ||
5807 | -# /* ltdll.c ends here */ | ||
5808 | -])# _LT_AC_FILE_LTDLL_C | ||
5809 | - | ||
5810 | - | ||
5811 | -# _LT_AC_TAGVAR(VARNAME, [TAGNAME]) | ||
5812 | -# --------------------------------- | ||
5813 | -AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])]) | ||
5814 | - | ||
5815 | - | ||
5816 | -# old names | ||
5817 | -AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL]) | ||
5818 | -AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) | ||
5819 | -AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) | ||
5820 | -AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) | ||
5821 | -AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) | ||
5822 | -AC_DEFUN([AM_PROG_LD], [AC_PROG_LD]) | ||
5823 | -AC_DEFUN([AM_PROG_NM], [AC_PROG_NM]) | ||
5824 | - | ||
5825 | -# This is just to silence aclocal about the macro not being used | ||
5826 | -ifelse([AC_DISABLE_FAST_INSTALL]) | ||
5827 | - | ||
5828 | -AC_DEFUN([LT_AC_PROG_GCJ], | ||
5829 | -[AC_CHECK_TOOL(GCJ, gcj, no) | ||
5830 | - test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" | ||
5831 | - AC_SUBST(GCJFLAGS) | ||
5832 | -]) | ||
5833 | - | ||
5834 | -AC_DEFUN([LT_AC_PROG_RC], | ||
5835 | -[AC_CHECK_TOOL(RC, windres, no) | ||
5836 | -]) | ||
5837 | - | ||
5838 | -############################################################ | ||
5839 | -# NOTE: This macro has been submitted for inclusion into # | ||
5840 | -# GNU Autoconf as AC_PROG_SED. When it is available in # | ||
5841 | -# a released version of Autoconf we should remove this # | ||
5842 | -# macro and use it instead. # | ||
5843 | -############################################################ | ||
5844 | -# LT_AC_PROG_SED | ||
5845 | -# -------------- | ||
5846 | -# Check for a fully-functional sed program, that truncates | ||
5847 | -# as few characters as possible. Prefer GNU sed if found. | ||
5848 | -AC_DEFUN([LT_AC_PROG_SED], | ||
5849 | -[AC_MSG_CHECKING([for a sed that does not truncate output]) | ||
5850 | -AC_CACHE_VAL(lt_cv_path_SED, | ||
5851 | -[# Loop through the user's path and test for sed and gsed. | ||
5852 | -# Then use that list of sed's as ones to test for truncation. | ||
5853 | -as_save_IFS=$IFS; IFS=$PATH_SEPARATOR | ||
5854 | -for as_dir in $PATH | ||
5855 | -do | ||
5856 | - IFS=$as_save_IFS | ||
5857 | - test -z "$as_dir" && as_dir=. | ||
5858 | - for lt_ac_prog in sed gsed; do | ||
5859 | - for ac_exec_ext in '' $ac_executable_extensions; do | ||
5860 | - if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then | ||
5861 | - lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" | ||
5862 | - fi | ||
5863 | - done | ||
5864 | - done | ||
5865 | -done | ||
5866 | -lt_ac_max=0 | ||
5867 | -lt_ac_count=0 | ||
5868 | -# Add /usr/xpg4/bin/sed as it is typically found on Solaris | ||
5869 | -# along with /bin/sed that truncates output. | ||
5870 | -for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do | ||
5871 | - test ! -f $lt_ac_sed && break | ||
5872 | - cat /dev/null > conftest.in | ||
5873 | - lt_ac_count=0 | ||
5874 | - echo $ECHO_N "0123456789$ECHO_C" >conftest.in | ||
5875 | - # Check for GNU sed and select it if it is found. | ||
5876 | - if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then | ||
5877 | - lt_cv_path_SED=$lt_ac_sed | ||
5878 | - break | ||
5879 | - fi | ||
5880 | - while true; do | ||
5881 | - cat conftest.in conftest.in >conftest.tmp | ||
5882 | - mv conftest.tmp conftest.in | ||
5883 | - cp conftest.in conftest.nl | ||
5884 | - echo >>conftest.nl | ||
5885 | - $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break | ||
5886 | - cmp -s conftest.out conftest.nl || break | ||
5887 | - # 10000 chars as input seems more than enough | ||
5888 | - test $lt_ac_count -gt 10 && break | ||
5889 | - lt_ac_count=`expr $lt_ac_count + 1` | ||
5890 | - if test $lt_ac_count -gt $lt_ac_max; then | ||
5891 | - lt_ac_max=$lt_ac_count | ||
5892 | - lt_cv_path_SED=$lt_ac_sed | ||
5893 | - fi | ||
5894 | - done | ||
5895 | -done | ||
5896 | -]) | ||
5897 | -SED=$lt_cv_path_SED | ||
5898 | -AC_MSG_RESULT([$SED]) | ||
5899 | -]) | ||
5900 | Index: taglib-1.6.1/Makefile.am | ||
5901 | =================================================================== | ||
5902 | --- taglib-1.6.1.orig/Makefile.am 2010-02-01 16:47:11.687791360 +0000 | ||
5903 | +++ taglib-1.6.1/Makefile.am 2010-02-01 16:47:33.217875703 +0000 | ||
5904 | @@ -8,8 +8,8 @@ | ||
5905 | $(top_srcdir)/subdirs: | ||
5906 | cd $(top_srcdir) && $(MAKE) -f admin/Makefile.common subdirs | ||
5907 | |||
5908 | -$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in $(top_srcdir)/admin/libtool.m4.in | ||
5909 | - @cd $(top_srcdir) && cat admin/acinclude.m4.in admin/libtool.m4.in > acinclude.m4 | ||
5910 | +$(top_srcdir)/acinclude.m4: $(top_srcdir)/admin/acinclude.m4.in | ||
5911 | + @cd $(top_srcdir) && cat admin/acinclude.m4.in > acinclude.m4 | ||
5912 | |||
5913 | MAINTAINERCLEANFILES = subdirs configure.in acinclude.m4 configure.files | ||
5914 | |||
diff --git a/meta/recipes-support/taglib/taglib_1.6.1.bb b/meta/recipes-support/taglib/taglib_1.6.1.bb new file mode 100644 index 0000000000..f1a87368a7 --- /dev/null +++ b/meta/recipes-support/taglib/taglib_1.6.1.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | DESCRIPTION = "TagLib is a library for reading and editing the meta-data of several popular audio formats" | ||
2 | SECTION = "libs/multimedia" | ||
3 | HOMEPAGE = "http://developer.kde.org/~wheeler/taglib.html" | ||
4 | LICENSE = "LGPL" | ||
5 | PR = "r3" | ||
6 | |||
7 | SRC_URI = "http://developer.kde.org/~wheeler/files/src/taglib-${PV}.tar.gz \ | ||
8 | file://configuretweak.patch;patch=1 \ | ||
9 | file://nolibtool.patch;patch=1" | ||
10 | |||
11 | S = "${WORKDIR}/taglib-${PV}" | ||
12 | |||
13 | inherit autotools pkgconfig binconfig | ||
14 | |||
15 | PACKAGES =+ "${PN}-c" | ||
16 | FILES_${PN}-dbg += "${bindir}/taglib-config" | ||
17 | FILES_${PN}-c = "${libdir}/libtag_c.so.*" | ||
18 | |||
19 | do_configure_prepend () { | ||
20 | rm -f ${S}/admin/ltmain.sh | ||
21 | rm -f ${S}/admin/libtool.m4.in | ||
22 | } | ||
23 | |||