blob: 86353d22893b2cfc8b9e300bb4a17fc690db4678 [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -07001m4trace:/usr/share/aclocal/libtool.m4:25: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
2dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
3dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.
4 AC_PROVIDE_IFELSE([AC_PROG_CXX],
5 [AC_LIBTOOL_CXX],
6 [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX
7 ])])
8dnl And a similar setup for Fortran 77 support
9 AC_PROVIDE_IFELSE([AC_PROG_F77],
10 [AC_LIBTOOL_F77],
11 [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77
12])])
13
14dnl Quote AM_PROG_GCJ so that aclocal doesn't bring it in needlessly.
15dnl If either AC_PROG_GCJ or AM_PROG_GCJ have already been expanded, run
16dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.
17 AC_PROVIDE_IFELSE([AC_PROG_GCJ],
18 [AC_LIBTOOL_GCJ],
19 [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
20 [AC_LIBTOOL_GCJ],
21 [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],
22 [AC_LIBTOOL_GCJ],
23 [ifdef([AC_PROG_GCJ],
24 [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])
25 ifdef([A][M_PROG_GCJ],
26 [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])
27 ifdef([LT_AC_PROG_GCJ],
28 [define([LT_AC_PROG_GCJ],
29 defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])
30])])
31m4trace:/usr/share/aclocal/libtool.m4:60: -1- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
32AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
33AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
34AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
35
36# This can be used to rebuild libtool when needed
37LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
38
39# Always use our own libtool.
40LIBTOOL='$(SHELL) $(top_builddir)/libtool'
41AC_SUBST(LIBTOOL)dnl
42
43# Prevent multiple expansion
44define([AC_PROG_LIBTOOL], [])
45])
46m4trace:/usr/share/aclocal/libtool.m4:80: -1- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl
47AC_REQUIRE([AC_ENABLE_SHARED])dnl
48AC_REQUIRE([AC_ENABLE_STATIC])dnl
49AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
50AC_REQUIRE([AC_CANONICAL_HOST])dnl
51AC_REQUIRE([AC_CANONICAL_BUILD])dnl
52AC_REQUIRE([AC_PROG_CC])dnl
53AC_REQUIRE([AC_PROG_LD])dnl
54AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
55AC_REQUIRE([AC_PROG_NM])dnl
56
57AC_REQUIRE([AC_PROG_LN_S])dnl
58AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
59# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
60AC_REQUIRE([AC_OBJEXT])dnl
61AC_REQUIRE([AC_EXEEXT])dnl
62dnl
63AC_LIBTOOL_SYS_MAX_CMD_LEN
64AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
65AC_LIBTOOL_OBJDIR
66
67AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
68_LT_AC_PROG_ECHO_BACKSLASH
69
70case $host_os in
71aix3*)
72 # AIX sometimes has problems with the GCC collect2 program. For some
73 # reason, if we set the COLLECT_NAMES environment variable, the problems
74 # vanish in a puff of smoke.
75 if test "X${COLLECT_NAMES+set}" != Xset; then
76 COLLECT_NAMES=
77 export COLLECT_NAMES
78 fi
79 ;;
80esac
81
82# Sed substitution that helps us do robust quoting. It backslashifies
83# metacharacters that are still active within double-quoted strings.
84Xsed='sed -e 1s/^X//'
85[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']
86
87# Same as above, but do not quote variable references.
88[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']
89
90# Sed substitution to delay expansion of an escaped shell variable in a
91# double_quote_subst'ed string.
92delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
93
94# Sed substitution to avoid accidental globbing in evaled expressions
95no_glob_subst='s/\*/\\\*/g'
96
97# Constants:
98rm="rm -f"
99
100# Global variables:
101default_ofile=libtool
102can_build_shared=yes
103
104# All known linkers require a `.a' archive for static linking (except MSVC,
105# which needs '.lib').
106libext=a
107ltmain="$ac_aux_dir/ltmain.sh"
108ofile="$default_ofile"
109with_gnu_ld="$lt_cv_prog_gnu_ld"
110
111AC_CHECK_TOOL(AR, ar, false)
112AC_CHECK_TOOL(RANLIB, ranlib, :)
113AC_CHECK_TOOL(STRIP, strip, :)
114
115old_CC="$CC"
116old_CFLAGS="$CFLAGS"
117
118# Set sane defaults for various variables
119test -z "$AR" && AR=ar
120test -z "$AR_FLAGS" && AR_FLAGS=cru
121test -z "$AS" && AS=as
122test -z "$CC" && CC=cc
123test -z "$LTCC" && LTCC=$CC
124test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
125test -z "$DLLTOOL" && DLLTOOL=dlltool
126test -z "$LD" && LD=ld
127test -z "$LN_S" && LN_S="ln -s"
128test -z "$MAGIC_CMD" && MAGIC_CMD=file
129test -z "$NM" && NM=nm
130test -z "$SED" && SED=sed
131test -z "$OBJDUMP" && OBJDUMP=objdump
132test -z "$RANLIB" && RANLIB=:
133test -z "$STRIP" && STRIP=:
134test -z "$ac_objext" && ac_objext=o
135
136# Determine commands to create old-style static archives.
137old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
138old_postinstall_cmds='chmod 644 $oldlib'
139old_postuninstall_cmds=
140
141if test -n "$RANLIB"; then
142 case $host_os in
143 openbsd*)
144 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
145 ;;
146 *)
147 old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
148 ;;
149 esac
150 old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
151fi
152
153_LT_CC_BASENAME([$compiler])
154
155# Only perform the check for file, if the check method requires it
156case $deplibs_check_method in
157file_magic*)
158 if test "$file_magic_cmd" = '$MAGIC_CMD'; then
159 AC_PATH_MAGIC
160 fi
161 ;;
162esac
163
164_LT_REQUIRED_DARWIN_CHECKS
165
166AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
167AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
168enable_win32_dll=yes, enable_win32_dll=no)
169
170AC_ARG_ENABLE([libtool-lock],
171 [AC_HELP_STRING([--disable-libtool-lock],
172 [avoid locking (might break parallel builds)])])
173test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
174
175AC_ARG_WITH([pic],
176 [AC_HELP_STRING([--with-pic],
177 [try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
178 [pic_mode="$withval"],
179 [pic_mode=default])
180test -z "$pic_mode" && pic_mode=default
181
182# Use C for the default configuration in the libtool script
183tagname=
184AC_LIBTOOL_LANG_C_CONFIG
185_LT_AC_TAGCONFIG
186])
187m4trace:/usr/share/aclocal/libtool.m4:226: -1- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl
188
189# If no C compiler was specified, use CC.
190LTCC=${LTCC-"$CC"}
191
192# If no C compiler flags were specified, use CFLAGS.
193LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
194
195# Allow CC to be a program name with arguments.
196compiler=$CC
197])
198m4trace:/usr/share/aclocal/libtool.m4:243: -1- AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do
199 case $cc_temp in
200 compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
201 distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
202 \-*) ;;
203 *) break;;
204 esac
205done
206cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
207])
208m4trace:/usr/share/aclocal/libtool.m4:260: -1- AC_DEFUN([_LT_COMPILER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl
209ac_outfile=conftest.$ac_objext
210echo "$lt_simple_compile_test_code" >conftest.$ac_ext
211eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
212_lt_compiler_boilerplate=`cat conftest.err`
213$rm conftest*
214])
215m4trace:/usr/share/aclocal/libtool.m4:274: -1- AC_DEFUN([_LT_LINKER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl
216ac_outfile=conftest.$ac_objext
217echo "$lt_simple_link_test_code" >conftest.$ac_ext
218eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
219_lt_linker_boilerplate=`cat conftest.err`
220$rm -r conftest*
221])
222m4trace:/usr/share/aclocal/libtool.m4:286: -1- AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS], [
223 case $host_os in
224 rhapsody* | darwin*)
225 AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:])
226 AC_CHECK_TOOL([NMEDIT], [nmedit], [:])
227
228 AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod],
229 [lt_cv_apple_cc_single_mod=no
230 if test -z "${LT_MULTI_MODULE}"; then
231 # By default we will add the -single_module flag. You can override
232 # by either setting the environment variable LT_MULTI_MODULE
233 # non-empty at configure time, or by adding -multi_module to the
234 # link flags.
235 echo "int foo(void){return 1;}" > conftest.c
236 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \
237 -dynamiclib ${wl}-single_module conftest.c
238 if test -f libconftest.dylib; then
239 lt_cv_apple_cc_single_mod=yes
240 rm -rf libconftest.dylib*
241 fi
242 rm conftest.c
243 fi])
244 AC_CACHE_CHECK([for -exported_symbols_list linker flag],
245 [lt_cv_ld_exported_symbols_list],
246 [lt_cv_ld_exported_symbols_list=no
247 save_LDFLAGS=$LDFLAGS
248 echo "_main" > conftest.sym
249 LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym"
250 AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])],
251 [lt_cv_ld_exported_symbols_list=yes],
252 [lt_cv_ld_exported_symbols_list=no])
253 LDFLAGS="$save_LDFLAGS"
254 ])
255 case $host_os in
256 rhapsody* | darwin1.[[0123]])
257 _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;;
258 darwin1.*)
259 _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
260 darwin*)
261 # if running on 10.5 or later, the deployment target defaults
262 # to the OS version, if on x86, and 10.4, the deployment
263 # target defaults to 10.4. Don't you love it?
264 case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in
265 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*)
266 _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
267 10.[[012]]*)
268 _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;;
269 10.*)
270 _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;;
271 esac
272 ;;
273 esac
274 if test "$lt_cv_apple_cc_single_mod" = "yes"; then
275 _lt_dar_single_mod='$single_module'
276 fi
277 if test "$lt_cv_ld_exported_symbols_list" = "yes"; then
278 _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym'
279 else
280 _lt_dar_export_syms="~$NMEDIT -s \$output_objdir/\${libname}-symbols.expsym \${lib}"
281 fi
282 if test "$DSYMUTIL" != ":"; then
283 _lt_dsymutil="~$DSYMUTIL \$lib || :"
284 else
285 _lt_dsymutil=
286 fi
287 ;;
288 esac
289])
290m4trace:/usr/share/aclocal/libtool.m4:363: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_REQUIRE([LT_AC_PROG_SED])dnl
291AC_LINK_IFELSE(AC_LANG_PROGRAM,[
292lt_aix_libpath_sed='
293 /Import File Strings/,/^$/ {
294 /^0/ {
295 s/^0 *\(.*\)$/\1/
296 p
297 }
298 }'
299aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
300# Check for a 64-bit object if we didn't find anything.
301if test -z "$aix_libpath"; then
302 aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
303fi],[])
304if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
305])
306m4trace:/usr/share/aclocal/libtool.m4:384: -1- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE],
307 [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
308 [AC_DIVERT_PUSH(NOTICE)])
309$1
310AC_DIVERT_POP
311])
312m4trace:/usr/share/aclocal/libtool.m4:397: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([
313# Check that we are running under the correct shell.
314SHELL=${CONFIG_SHELL-/bin/sh}
315
316case X$ECHO in
317X*--fallback-echo)
318 # Remove one level of quotation (which was required for Make).
319 ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
320 ;;
321esac
322
323echo=${ECHO-echo}
324if test "X[$]1" = X--no-reexec; then
325 # Discard the --no-reexec flag, and continue.
326 shift
327elif test "X[$]1" = X--fallback-echo; then
328 # Avoid inline document here, it may be left over
329 :
330elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
331 # Yippee, $echo works!
332 :
333else
334 # Restart under the correct shell.
335 exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
336fi
337
338if test "X[$]1" = X--fallback-echo; then
339 # used as fallback echo
340 shift
341 cat <<EOF
342[$]*
343EOF
344 exit 0
345fi
346
347# The HP-UX ksh and POSIX shell print the target directory to stdout
348# if CDPATH is set.
349(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
350
351if test -z "$ECHO"; then
352if test "X${echo_test_string+set}" != Xset; then
353# find a string as large as possible, as long as the shell can cope with it
354 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
355 # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
356 if (echo_test_string=`eval $cmd`) 2>/dev/null &&
357 echo_test_string=`eval $cmd` &&
358 (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
359 then
360 break
361 fi
362 done
363fi
364
365if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
366 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
367 test "X$echo_testing_string" = "X$echo_test_string"; then
368 :
369else
370 # The Solaris, AIX, and Digital Unix default echo programs unquote
371 # backslashes. This makes it impossible to quote backslashes using
372 # echo "$something" | sed 's/\\/\\\\/g'
373 #
374 # So, first we look for a working echo in the user's PATH.
375
376 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
377 for dir in $PATH /usr/ucb; do
378 IFS="$lt_save_ifs"
379 if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
380 test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
381 echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
382 test "X$echo_testing_string" = "X$echo_test_string"; then
383 echo="$dir/echo"
384 break
385 fi
386 done
387 IFS="$lt_save_ifs"
388
389 if test "X$echo" = Xecho; then
390 # We didn't find a better echo, so look for alternatives.
391 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
392 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
393 test "X$echo_testing_string" = "X$echo_test_string"; then
394 # This shell has a builtin print -r that does the trick.
395 echo='print -r'
396 elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
397 test "X$CONFIG_SHELL" != X/bin/ksh; then
398 # If we have ksh, try running configure again with it.
399 ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
400 export ORIGINAL_CONFIG_SHELL
401 CONFIG_SHELL=/bin/ksh
402 export CONFIG_SHELL
403 exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
404 else
405 # Try using printf.
406 echo='printf %s\n'
407 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
408 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
409 test "X$echo_testing_string" = "X$echo_test_string"; then
410 # Cool, printf works
411 :
412 elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
413 test "X$echo_testing_string" = 'X\t' &&
414 echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
415 test "X$echo_testing_string" = "X$echo_test_string"; then
416 CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
417 export CONFIG_SHELL
418 SHELL="$CONFIG_SHELL"
419 export SHELL
420 echo="$CONFIG_SHELL [$]0 --fallback-echo"
421 elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
422 test "X$echo_testing_string" = 'X\t' &&
423 echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
424 test "X$echo_testing_string" = "X$echo_test_string"; then
425 echo="$CONFIG_SHELL [$]0 --fallback-echo"
426 else
427 # maybe with a smaller string...
428 prev=:
429
430 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
431 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
432 then
433 break
434 fi
435 prev="$cmd"
436 done
437
438 if test "$prev" != 'sed 50q "[$]0"'; then
439 echo_test_string=`eval $prev`
440 export echo_test_string
441 exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
442 else
443 # Oops. We lost completely, so just stick with echo.
444 echo=echo
445 fi
446 fi
447 fi
448 fi
449fi
450fi
451
452# Copy echo and quote the copy suitably for passing to libtool from
453# the Makefile, instead of quoting the original, which is used later.
454ECHO=$echo
455if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
456 ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
457fi
458
459AC_SUBST(ECHO)
460])])
461m4trace:/usr/share/aclocal/libtool.m4:551: -1- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock],
462 [AC_HELP_STRING([--disable-libtool-lock],
463 [avoid locking (might break parallel builds)])])
464test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
465
466# Some flags need to be propagated to the compiler or linker for good
467# libtool support.
468case $host in
469ia64-*-hpux*)
470 # Find out which ABI we are using.
471 echo 'int i;' > conftest.$ac_ext
472 if AC_TRY_EVAL(ac_compile); then
473 case `/usr/bin/file conftest.$ac_objext` in
474 *ELF-32*)
475 HPUX_IA64_MODE="32"
476 ;;
477 *ELF-64*)
478 HPUX_IA64_MODE="64"
479 ;;
480 esac
481 fi
482 rm -rf conftest*
483 ;;
484*-*-irix6*)
485 # Find out which ABI we are using.
486 echo '[#]line __oline__ "configure"' > conftest.$ac_ext
487 if AC_TRY_EVAL(ac_compile); then
488 if test "$lt_cv_prog_gnu_ld" = yes; then
489 case `/usr/bin/file conftest.$ac_objext` in
490 *32-bit*)
491 LD="${LD-ld} -melf32bsmip"
492 ;;
493 *N32*)
494 LD="${LD-ld} -melf32bmipn32"
495 ;;
496 *64-bit*)
497 LD="${LD-ld} -melf64bmip"
498 ;;
499 esac
500 else
501 case `/usr/bin/file conftest.$ac_objext` in
502 *32-bit*)
503 LD="${LD-ld} -32"
504 ;;
505 *N32*)
506 LD="${LD-ld} -n32"
507 ;;
508 *64-bit*)
509 LD="${LD-ld} -64"
510 ;;
511 esac
512 fi
513 fi
514 rm -rf conftest*
515 ;;
516
517x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
518s390*-*linux*|sparc*-*linux*)
519 # Find out which ABI we are using.
520 echo 'int i;' > conftest.$ac_ext
521 if AC_TRY_EVAL(ac_compile); then
522 case `/usr/bin/file conftest.o` in
523 *32-bit*)
524 case $host in
525 x86_64-*kfreebsd*-gnu)
526 LD="${LD-ld} -m elf_i386_fbsd"
527 ;;
528 x86_64-*linux*)
529 LD="${LD-ld} -m elf_i386"
530 ;;
531 ppc64-*linux*|powerpc64-*linux*)
532 LD="${LD-ld} -m elf32ppclinux"
533 ;;
534 s390x-*linux*)
535 LD="${LD-ld} -m elf_s390"
536 ;;
537 sparc64-*linux*)
538 LD="${LD-ld} -m elf32_sparc"
539 ;;
540 esac
541 ;;
542 *64-bit*)
543 case $host in
544 x86_64-*kfreebsd*-gnu)
545 LD="${LD-ld} -m elf_x86_64_fbsd"
546 ;;
547 x86_64-*linux*)
548 LD="${LD-ld} -m elf_x86_64"
549 ;;
550 ppc*-*linux*|powerpc*-*linux*)
551 LD="${LD-ld} -m elf64ppc"
552 ;;
553 s390*-*linux*)
554 LD="${LD-ld} -m elf64_s390"
555 ;;
556 sparc*-*linux*)
557 LD="${LD-ld} -m elf64_sparc"
558 ;;
559 esac
560 ;;
561 esac
562 fi
563 rm -rf conftest*
564 ;;
565
566*-*-sco3.2v5*)
567 # On SCO OpenServer 5, we need -belf to get full-featured binaries.
568 SAVE_CFLAGS="$CFLAGS"
569 CFLAGS="$CFLAGS -belf"
570 AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
571 [AC_LANG_PUSH(C)
572 AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
573 AC_LANG_POP])
574 if test x"$lt_cv_cc_needs_belf" != x"yes"; then
575 # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
576 CFLAGS="$SAVE_CFLAGS"
577 fi
578 ;;
579sparc*-*solaris*)
580 # Find out which ABI we are using.
581 echo 'int i;' > conftest.$ac_ext
582 if AC_TRY_EVAL(ac_compile); then
583 case `/usr/bin/file conftest.o` in
584 *64-bit*)
585 case $lt_cv_prog_gnu_ld in
586 yes*) LD="${LD-ld} -m elf64_sparc" ;;
587 *)
588 if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then
589 LD="${LD-ld} -64"
590 fi
591 ;;
592 esac
593 ;;
594 esac
595 fi
596 rm -rf conftest*
597 ;;
598
599AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
600[*-*-cygwin* | *-*-mingw* | *-*-pw32*)
601 AC_CHECK_TOOL(DLLTOOL, dlltool, false)
602 AC_CHECK_TOOL(AS, as, false)
603 AC_CHECK_TOOL(OBJDUMP, objdump, false)
604 ;;
605 ])
606esac
607
608need_locks="$enable_libtool_lock"
609
610])
611m4trace:/usr/share/aclocal/libtool.m4:708: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])
612AC_CACHE_CHECK([$1], [$2],
613 [$2=no
614 ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
615 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
616 lt_compiler_flag="$3"
617 # Insert the option either (1) after the last *FLAGS variable, or
618 # (2) before a word containing "conftest.", or (3) at the end.
619 # Note that $ac_compile itself does not contain backslashes and begins
620 # with a dollar sign (not a hyphen), so the echo should work correctly.
621 # The option is referenced via a variable to avoid confusing sed.
622 lt_compile=`echo "$ac_compile" | $SED \
623 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
624 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
625 -e 's:$: $lt_compiler_flag:'`
626 (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
627 (eval "$lt_compile" 2>conftest.err)
628 ac_status=$?
629 cat conftest.err >&AS_MESSAGE_LOG_FD
630 echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
631 if (exit $ac_status) && test -s "$ac_outfile"; then
632 # The compiler can only warn and ignore the option if not recognized
633 # So say no if there are warnings other than the usual output.
634 $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
635 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
636 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
637 $2=yes
638 fi
639 fi
640 $rm conftest*
641])
642
643if test x"[$]$2" = xyes; then
644 ifelse([$5], , :, [$5])
645else
646 ifelse([$6], , :, [$6])
647fi
648])
649m4trace:/usr/share/aclocal/libtool.m4:753: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])dnl
650AC_CACHE_CHECK([$1], [$2],
651 [$2=no
652 save_LDFLAGS="$LDFLAGS"
653 LDFLAGS="$LDFLAGS $3"
654 echo "$lt_simple_link_test_code" > conftest.$ac_ext
655 if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
656 # The linker can only warn and ignore the option if not recognized
657 # So say no if there are warnings
658 if test -s conftest.err; then
659 # Append any errors to the config.log.
660 cat conftest.err 1>&AS_MESSAGE_LOG_FD
661 $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
662 $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
663 if diff conftest.exp conftest.er2 >/dev/null; then
664 $2=yes
665 fi
666 else
667 $2=yes
668 fi
669 fi
670 $rm -r conftest*
671 LDFLAGS="$save_LDFLAGS"
672])
673
674if test x"[$]$2" = xyes; then
675 ifelse([$4], , :, [$4])
676else
677 ifelse([$5], , :, [$5])
678fi
679])
680m4trace:/usr/share/aclocal/libtool.m4:789: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments
681AC_MSG_CHECKING([the maximum length of command line arguments])
682AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
683 i=0
684 teststring="ABCD"
685
686 case $build_os in
687 msdosdjgpp*)
688 # On DJGPP, this test can blow up pretty badly due to problems in libc
689 # (any single argument exceeding 2000 bytes causes a buffer overrun
690 # during glob expansion). Even if it were fixed, the result of this
691 # check would be larger than it should be.
692 lt_cv_sys_max_cmd_len=12288; # 12K is about right
693 ;;
694
695 gnu*)
696 # Under GNU Hurd, this test is not required because there is
697 # no limit to the length of command line arguments.
698 # Libtool will interpret -1 as no limit whatsoever
699 lt_cv_sys_max_cmd_len=-1;
700 ;;
701
702 cygwin* | mingw*)
703 # On Win9x/ME, this test blows up -- it succeeds, but takes
704 # about 5 minutes as the teststring grows exponentially.
705 # Worse, since 9x/ME are not pre-emptively multitasking,
706 # you end up with a "frozen" computer, even though with patience
707 # the test eventually succeeds (with a max line length of 256k).
708 # Instead, let's just punt: use the minimum linelength reported by
709 # all of the supported platforms: 8192 (on NT/2K/XP).
710 lt_cv_sys_max_cmd_len=8192;
711 ;;
712
713 amigaos*)
714 # On AmigaOS with pdksh, this test takes hours, literally.
715 # So we just punt and use a minimum line length of 8192.
716 lt_cv_sys_max_cmd_len=8192;
717 ;;
718
719 netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
720 # This has been around since 386BSD, at least. Likely further.
721 if test -x /sbin/sysctl; then
722 lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
723 elif test -x /usr/sbin/sysctl; then
724 lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
725 else
726 lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
727 fi
728 # And add a safety zone
729 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
730 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
731 ;;
732
733 interix*)
734 # We know the value 262144 and hardcode it with a safety zone (like BSD)
735 lt_cv_sys_max_cmd_len=196608
736 ;;
737
738 osf*)
739 # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
740 # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
741 # nice to cause kernel panics so lets avoid the loop below.
742 # First set a reasonable default.
743 lt_cv_sys_max_cmd_len=16384
744 #
745 if test -x /sbin/sysconfig; then
746 case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
747 *1*) lt_cv_sys_max_cmd_len=-1 ;;
748 esac
749 fi
750 ;;
751 sco3.2v5*)
752 lt_cv_sys_max_cmd_len=102400
753 ;;
754 sysv5* | sco5v6* | sysv4.2uw2*)
755 kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
756 if test -n "$kargmax"; then
757 lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
758 else
759 lt_cv_sys_max_cmd_len=32768
760 fi
761 ;;
762 *)
763 lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
764 if test -n "$lt_cv_sys_max_cmd_len"; then
765 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
766 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
767 else
768 SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
769 while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
770 = "XX$teststring") >/dev/null 2>&1 &&
771 new_result=`expr "X$teststring" : ".*" 2>&1` &&
772 lt_cv_sys_max_cmd_len=$new_result &&
773 test $i != 17 # 1/2 MB should be enough
774 do
775 i=`expr $i + 1`
776 teststring=$teststring$teststring
777 done
778 teststring=
779 # Add a significant safety factor because C++ compilers can tack on massive
780 # amounts of additional arguments before passing them to the linker.
781 # It appears as though 1/2 is a usable value.
782 lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
783 fi
784 ;;
785 esac
786])
787if test -n $lt_cv_sys_max_cmd_len ; then
788 AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
789else
790 AC_MSG_RESULT(none)
791fi
792])
793m4trace:/usr/share/aclocal/libtool.m4:907: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl
794])
795m4trace:/usr/share/aclocal/libtool.m4:915: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
796if test "$cross_compiling" = yes; then :
797 [$4]
798else
799 lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
800 lt_status=$lt_dlunknown
801 cat > conftest.$ac_ext <<EOF
802[#line __oline__ "configure"
803#include "confdefs.h"
804
805#if HAVE_DLFCN_H
806#include <dlfcn.h>
807#endif
808
809#include <stdio.h>
810
811#ifdef RTLD_GLOBAL
812# define LT_DLGLOBAL RTLD_GLOBAL
813#else
814# ifdef DL_GLOBAL
815# define LT_DLGLOBAL DL_GLOBAL
816# else
817# define LT_DLGLOBAL 0
818# endif
819#endif
820
821/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
822 find out it does not work in some platform. */
823#ifndef LT_DLLAZY_OR_NOW
824# ifdef RTLD_LAZY
825# define LT_DLLAZY_OR_NOW RTLD_LAZY
826# else
827# ifdef DL_LAZY
828# define LT_DLLAZY_OR_NOW DL_LAZY
829# else
830# ifdef RTLD_NOW
831# define LT_DLLAZY_OR_NOW RTLD_NOW
832# else
833# ifdef DL_NOW
834# define LT_DLLAZY_OR_NOW DL_NOW
835# else
836# define LT_DLLAZY_OR_NOW 0
837# endif
838# endif
839# endif
840# endif
841#endif
842
843#ifdef __cplusplus
844extern "C" void exit (int);
845#endif
846
847void fnord() { int i=42;}
848int main ()
849{
850 void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
851 int status = $lt_dlunknown;
852
853 if (self)
854 {
855 if (dlsym (self,"fnord")) status = $lt_dlno_uscore;
856 else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
857 /* dlclose (self); */
858 }
859 else
860 puts (dlerror ());
861
862 exit (status);
863}]
864EOF
865 if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
866 (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
867 lt_status=$?
868 case x$lt_status in
869 x$lt_dlno_uscore) $1 ;;
870 x$lt_dlneed_uscore) $2 ;;
871 x$lt_dlunknown|x*) $3 ;;
872 esac
873 else :
874 # compilation failed
875 $3
876 fi
877fi
878rm -fr conftest*
879])
880m4trace:/usr/share/aclocal/libtool.m4:1005: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
881if test "x$enable_dlopen" != xyes; then
882 enable_dlopen=unknown
883 enable_dlopen_self=unknown
884 enable_dlopen_self_static=unknown
885else
886 lt_cv_dlopen=no
887 lt_cv_dlopen_libs=
888
889 case $host_os in
890 beos*)
891 lt_cv_dlopen="load_add_on"
892 lt_cv_dlopen_libs=
893 lt_cv_dlopen_self=yes
894 ;;
895
896 mingw* | pw32*)
897 lt_cv_dlopen="LoadLibrary"
898 lt_cv_dlopen_libs=
899 ;;
900
901 cygwin*)
902 lt_cv_dlopen="dlopen"
903 lt_cv_dlopen_libs=
904 ;;
905
906 darwin*)
907 # if libdl is installed we need to link against it
908 AC_CHECK_LIB([dl], [dlopen],
909 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
910 lt_cv_dlopen="dyld"
911 lt_cv_dlopen_libs=
912 lt_cv_dlopen_self=yes
913 ])
914 ;;
915
916 *)
917 AC_CHECK_FUNC([shl_load],
918 [lt_cv_dlopen="shl_load"],
919 [AC_CHECK_LIB([dld], [shl_load],
920 [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
921 [AC_CHECK_FUNC([dlopen],
922 [lt_cv_dlopen="dlopen"],
923 [AC_CHECK_LIB([dl], [dlopen],
924 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
925 [AC_CHECK_LIB([svld], [dlopen],
926 [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
927 [AC_CHECK_LIB([dld], [dld_link],
928 [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
929 ])
930 ])
931 ])
932 ])
933 ])
934 ;;
935 esac
936
937 if test "x$lt_cv_dlopen" != xno; then
938 enable_dlopen=yes
939 else
940 enable_dlopen=no
941 fi
942
943 case $lt_cv_dlopen in
944 dlopen)
945 save_CPPFLAGS="$CPPFLAGS"
946 test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
947
948 save_LDFLAGS="$LDFLAGS"
949 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
950
951 save_LIBS="$LIBS"
952 LIBS="$lt_cv_dlopen_libs $LIBS"
953
954 AC_CACHE_CHECK([whether a program can dlopen itself],
955 lt_cv_dlopen_self, [dnl
956 _LT_AC_TRY_DLOPEN_SELF(
957 lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
958 lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
959 ])
960
961 if test "x$lt_cv_dlopen_self" = xyes; then
962 wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
963 AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
964 lt_cv_dlopen_self_static, [dnl
965 _LT_AC_TRY_DLOPEN_SELF(
966 lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
967 lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
968 ])
969 fi
970
971 CPPFLAGS="$save_CPPFLAGS"
972 LDFLAGS="$save_LDFLAGS"
973 LIBS="$save_LIBS"
974 ;;
975 esac
976
977 case $lt_cv_dlopen_self in
978 yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
979 *) enable_dlopen_self=unknown ;;
980 esac
981
982 case $lt_cv_dlopen_self_static in
983 yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
984 *) enable_dlopen_self_static=unknown ;;
985 esac
986fi
987])
988m4trace:/usr/share/aclocal/libtool.m4:1119: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([LT_AC_PROG_SED])dnl
989AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
990AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
991 [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
992 [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
993 $rm -r conftest 2>/dev/null
994 mkdir conftest
995 cd conftest
996 mkdir out
997 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
998
999 lt_compiler_flag="-o out/conftest2.$ac_objext"
1000 # Insert the option either (1) after the last *FLAGS variable, or
1001 # (2) before a word containing "conftest.", or (3) at the end.
1002 # Note that $ac_compile itself does not contain backslashes and begins
1003 # with a dollar sign (not a hyphen), so the echo should work correctly.
1004 lt_compile=`echo "$ac_compile" | $SED \
1005 -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
1006 -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
1007 -e 's:$: $lt_compiler_flag:'`
1008 (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
1009 (eval "$lt_compile" 2>out/conftest.err)
1010 ac_status=$?
1011 cat out/conftest.err >&AS_MESSAGE_LOG_FD
1012 echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
1013 if (exit $ac_status) && test -s out/conftest2.$ac_objext
1014 then
1015 # The compiler can only warn and ignore the option if not recognized
1016 # So say no if there are warnings
1017 $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
1018 $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
1019 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
1020 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
1021 fi
1022 fi
1023 chmod u+w . 2>&AS_MESSAGE_LOG_FD
1024 $rm conftest*
1025 # SGI C++ compiler will create directory out/ii_files/ for
1026 # template instantiation
1027 test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
1028 $rm out/* && rmdir out
1029 cd ..
1030 rmdir conftest
1031 $rm conftest*
1032])
1033])
1034m4trace:/usr/share/aclocal/libtool.m4:1171: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl
1035
1036hard_links="nottested"
1037if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
1038 # do not overwrite the value of need_locks provided by the user
1039 AC_MSG_CHECKING([if we can lock with hard links])
1040 hard_links=yes
1041 $rm conftest*
1042 ln conftest.a conftest.b 2>/dev/null && hard_links=no
1043 touch conftest.a
1044 ln conftest.a conftest.b 2>&5 || hard_links=no
1045 ln conftest.a conftest.b 2>/dev/null && hard_links=no
1046 AC_MSG_RESULT([$hard_links])
1047 if test "$hard_links" = no; then
1048 AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
1049 need_locks=warn
1050 fi
1051else
1052 need_locks=no
1053fi
1054])
1055m4trace:/usr/share/aclocal/libtool.m4:1197: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
1056[rm -f .libs 2>/dev/null
1057mkdir .libs 2>/dev/null
1058if test -d .libs; then
1059 lt_cv_objdir=.libs
1060else
1061 # MS-DOS does not allow filenames that begin with a dot.
1062 lt_cv_objdir=_libs
1063fi
1064rmdir .libs 2>/dev/null])
1065objdir=$lt_cv_objdir
1066])
1067m4trace:/usr/share/aclocal/libtool.m4:1215: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs])
1068_LT_AC_TAGVAR(hardcode_action, $1)=
1069if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \
1070 test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \
1071 test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
1072
1073 # We can hardcode non-existant directories.
1074 if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
1075 # If the only mechanism to avoid hardcoding is shlibpath_var, we
1076 # have to relink, otherwise we might link with an installed library
1077 # when we should be linking with a yet-to-be-installed one
1078 ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
1079 test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
1080 # Linking always hardcodes the temporary library directory.
1081 _LT_AC_TAGVAR(hardcode_action, $1)=relink
1082 else
1083 # We can link without hardcoding, and we can hardcode nonexisting dirs.
1084 _LT_AC_TAGVAR(hardcode_action, $1)=immediate
1085 fi
1086else
1087 # We cannot hardcode anything, or else we can only hardcode existing
1088 # directories.
1089 _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
1090fi
1091AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
1092
1093if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
1094 # Fast installation is not supported
1095 enable_fast_install=no
1096elif test "$shlibpath_overrides_runpath" = yes ||
1097 test "$enable_shared" = no; then
1098 # Fast installation is not necessary
1099 enable_fast_install=needless
1100fi
1101])
1102m4trace:/usr/share/aclocal/libtool.m4:1255: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib=
1103old_striplib=
1104AC_MSG_CHECKING([whether stripping libraries is possible])
1105if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
1106 test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
1107 test -z "$striplib" && striplib="$STRIP --strip-unneeded"
1108 AC_MSG_RESULT([yes])
1109else
1110# FIXME - insert some real tests, host_os isn't really good enough
1111 case $host_os in
1112 darwin*)
1113 if test -n "$STRIP" ; then
1114 striplib="$STRIP -x"
1115 old_striplib="$STRIP -S"
1116 AC_MSG_RESULT([yes])
1117 else
1118 AC_MSG_RESULT([no])
1119fi
1120 ;;
1121 *)
1122 AC_MSG_RESULT([no])
1123 ;;
1124 esac
1125fi
1126])
1127m4trace:/usr/share/aclocal/libtool.m4:1286: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_REQUIRE([LT_AC_PROG_SED])dnl
1128AC_MSG_CHECKING([dynamic linker characteristics])
1129library_names_spec=
1130libname_spec='lib$name'
1131soname_spec=
1132shrext_cmds=".so"
1133postinstall_cmds=
1134postuninstall_cmds=
1135finish_cmds=
1136finish_eval=
1137shlibpath_var=
1138shlibpath_overrides_runpath=unknown
1139version_type=none
1140dynamic_linker="$host_os ld.so"
1141sys_lib_dlsearch_path_spec="/lib /usr/lib"
1142m4_if($1,[],[
1143if test "$GCC" = yes; then
1144 case $host_os in
1145 darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
1146 *) lt_awk_arg="/^libraries:/" ;;
1147 esac
1148 lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
1149 if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then
1150 # if the path contains ";" then we assume it to be the separator
1151 # otherwise default to the standard path separator (i.e. ":") - it is
1152 # assumed that no part of a normal pathname contains ";" but that should
1153 # okay in the real world where ";" in dirpaths is itself problematic.
1154 lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'`
1155 else
1156 lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
1157 fi
1158 # Ok, now we have the path, separated by spaces, we can step through it
1159 # and add multilib dir if necessary.
1160 lt_tmp_lt_search_path_spec=
1161 lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
1162 for lt_sys_path in $lt_search_path_spec; do
1163 if test -d "$lt_sys_path/$lt_multi_os_dir"; then
1164 lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
1165 else
1166 test -d "$lt_sys_path" && \
1167 lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
1168 fi
1169 done
1170 lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk '
1171BEGIN {RS=" "; FS="/|\n";} {
1172 lt_foo="";
1173 lt_count=0;
1174 for (lt_i = NF; lt_i > 0; lt_i--) {
1175 if ($lt_i != "" && $lt_i != ".") {
1176 if ($lt_i == "..") {
1177 lt_count++;
1178 } else {
1179 if (lt_count == 0) {
1180 lt_foo="/" $lt_i lt_foo;
1181 } else {
1182 lt_count--;
1183 }
1184 }
1185 }
1186 }
1187 if (lt_foo != "") { lt_freq[[lt_foo]]++; }
1188 if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
1189}'`
1190 sys_lib_search_path_spec=`echo $lt_search_path_spec`
1191else
1192 sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
1193fi])
1194need_lib_prefix=unknown
1195hardcode_into_libs=no
1196
1197# when you set need_version to no, make sure it does not cause -set_version
1198# flags to be left without arguments
1199need_version=unknown
1200
1201case $host_os in
1202aix3*)
1203 version_type=linux
1204 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
1205 shlibpath_var=LIBPATH
1206
1207 # AIX 3 has no versioning support, so we append a major version to the name.
1208 soname_spec='${libname}${release}${shared_ext}$major'
1209 ;;
1210
1211aix[[4-9]]*)
1212 version_type=linux
1213 need_lib_prefix=no
1214 need_version=no
1215 hardcode_into_libs=yes
1216 if test "$host_cpu" = ia64; then
1217 # AIX 5 supports IA64
1218 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
1219 shlibpath_var=LD_LIBRARY_PATH
1220 else
1221 # With GCC up to 2.95.x, collect2 would create an import file
1222 # for dependence libraries. The import file would start with
1223 # the line `#! .'. This would cause the generated library to
1224 # depend on `.', always an invalid library. This was fixed in
1225 # development snapshots of GCC prior to 3.0.
1226 case $host_os in
1227 aix4 | aix4.[[01]] | aix4.[[01]].*)
1228 if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
1229 echo ' yes '
1230 echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
1231 :
1232 else
1233 can_build_shared=no
1234 fi
1235 ;;
1236 esac
1237 # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
1238 # soname into executable. Probably we can add versioning support to
1239 # collect2, so additional links can be useful in future.
1240 if test "$aix_use_runtimelinking" = yes; then
1241 # If using run time linking (on AIX 4.2 or later) use lib<name>.so
1242 # instead of lib<name>.a to let people know that these are not
1243 # typical AIX shared libraries.
1244 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1245 else
1246 # We preserve .a as extension for shared libraries through AIX4.2
1247 # and later when we are not doing run time linking.
1248 library_names_spec='${libname}${release}.a $libname.a'
1249 soname_spec='${libname}${release}${shared_ext}$major'
1250 fi
1251 shlibpath_var=LIBPATH
1252 fi
1253 ;;
1254
1255amigaos*)
1256 library_names_spec='$libname.ixlibrary $libname.a'
1257 # Create ${libname}_ixlibrary.a entries in /sys/libs.
1258 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'
1259 ;;
1260
1261beos*)
1262 library_names_spec='${libname}${shared_ext}'
1263 dynamic_linker="$host_os ld.so"
1264 shlibpath_var=LIBRARY_PATH
1265 ;;
1266
1267bsdi[[45]]*)
1268 version_type=linux
1269 need_version=no
1270 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1271 soname_spec='${libname}${release}${shared_ext}$major'
1272 finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
1273 shlibpath_var=LD_LIBRARY_PATH
1274 sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
1275 sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
1276 # the default ld.so.conf also contains /usr/contrib/lib and
1277 # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
1278 # libtool to hard-code these into programs
1279 ;;
1280
1281cygwin* | mingw* | pw32*)
1282 version_type=windows
1283 shrext_cmds=".dll"
1284 need_version=no
1285 need_lib_prefix=no
1286
1287 case $GCC,$host_os in
1288 yes,cygwin* | yes,mingw* | yes,pw32*)
1289 library_names_spec='$libname.dll.a'
1290 # DLL is installed to $(libdir)/../bin by postinstall_cmds
1291 postinstall_cmds='base_file=`basename \${file}`~
1292 dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
1293 dldir=$destdir/`dirname \$dlpath`~
1294 test -d \$dldir || mkdir -p \$dldir~
1295 $install_prog $dir/$dlname \$dldir/$dlname~
1296 chmod a+x \$dldir/$dlname'
1297 postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
1298 dlpath=$dir/\$dldll~
1299 $rm \$dlpath'
1300 shlibpath_overrides_runpath=yes
1301
1302 case $host_os in
1303 cygwin*)
1304 # Cygwin DLLs use 'cyg' prefix rather than 'lib'
1305 soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1306 sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
1307 ;;
1308 mingw*)
1309 # MinGW DLLs use traditional 'lib' prefix
1310 soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1311 sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
1312 if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
1313 # It is most probably a Windows format PATH printed by
1314 # mingw gcc, but we are running on Cygwin. Gcc prints its search
1315 # path with ; separators, and with drive letters. We can handle the
1316 # drive letters (cygwin fileutils understands them), so leave them,
1317 # especially as we might pass files found there to a mingw objdump,
1318 # which wouldn't understand a cygwinified path. Ahh.
1319 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
1320 else
1321 sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"`
1322 fi
1323 ;;
1324 pw32*)
1325 # pw32 DLLs use 'pw' prefix rather than 'lib'
1326 library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1327 ;;
1328 esac
1329 ;;
1330
1331 *)
1332 library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
1333 ;;
1334 esac
1335 dynamic_linker='Win32 ld.exe'
1336 # FIXME: first we should search . and the directory the executable is in
1337 shlibpath_var=PATH
1338 ;;
1339
1340darwin* | rhapsody*)
1341 dynamic_linker="$host_os dyld"
1342 version_type=darwin
1343 need_lib_prefix=no
1344 need_version=no
1345 library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
1346 soname_spec='${libname}${release}${major}$shared_ext'
1347 shlibpath_overrides_runpath=yes
1348 shlibpath_var=DYLD_LIBRARY_PATH
1349 shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
1350 m4_if([$1], [],[
1351 sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"])
1352 sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
1353 ;;
1354
1355dgux*)
1356 version_type=linux
1357 need_lib_prefix=no
1358 need_version=no
1359 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
1360 soname_spec='${libname}${release}${shared_ext}$major'
1361 shlibpath_var=LD_LIBRARY_PATH
1362 ;;
1363
1364freebsd1*)
1365 dynamic_linker=no
1366 ;;
1367
1368freebsd* | dragonfly*)
1369 # DragonFly does not have aout. When/if they implement a new
1370 # versioning mechanism, adjust this.
1371 if test -x /usr/bin/objformat; then
1372 objformat=`/usr/bin/objformat`
1373 else
1374 case $host_os in
1375 freebsd[[123]]*) objformat=aout ;;
1376 *) objformat=elf ;;
1377 esac
1378 fi
1379 version_type=freebsd-$objformat
1380 case $version_type in
1381 freebsd-elf*)
1382 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
1383 need_version=no
1384 need_lib_prefix=no
1385 ;;
1386 freebsd-*)
1387 library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
1388 need_version=yes
1389 ;;
1390 esac
1391 shlibpath_var=LD_LIBRARY_PATH
1392 case $host_os in
1393 freebsd2*)
1394 shlibpath_overrides_runpath=yes
1395 ;;
1396 freebsd3.[[01]]* | freebsdelf3.[[01]]*)
1397 shlibpath_overrides_runpath=yes
1398 hardcode_into_libs=yes
1399 ;;
1400 freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
1401 freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
1402 shlibpath_overrides_runpath=no
1403 hardcode_into_libs=yes
1404 ;;
1405 *) # from 4.6 on, and DragonFly
1406 shlibpath_overrides_runpath=yes
1407 hardcode_into_libs=yes
1408 ;;
1409 esac
1410 ;;
1411
1412gnu*)
1413 version_type=linux
1414 need_lib_prefix=no
1415 need_version=no
1416 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
1417 soname_spec='${libname}${release}${shared_ext}$major'
1418 shlibpath_var=LD_LIBRARY_PATH
1419 hardcode_into_libs=yes
1420 ;;
1421
1422hpux9* | hpux10* | hpux11*)
1423 # Give a soname corresponding to the major version so that dld.sl refuses to
1424 # link against other versions.
1425 version_type=sunos
1426 need_lib_prefix=no
1427 need_version=no
1428 case $host_cpu in
1429 ia64*)
1430 shrext_cmds='.so'
1431 hardcode_into_libs=yes
1432 dynamic_linker="$host_os dld.so"
1433 shlibpath_var=LD_LIBRARY_PATH
1434 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
1435 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1436 soname_spec='${libname}${release}${shared_ext}$major'
1437 if test "X$HPUX_IA64_MODE" = X32; then
1438 sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
1439 else
1440 sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
1441 fi
1442 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
1443 ;;
1444 hppa*64*)
1445 shrext_cmds='.sl'
1446 hardcode_into_libs=yes
1447 dynamic_linker="$host_os dld.sl"
1448 shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
1449 shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
1450 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1451 soname_spec='${libname}${release}${shared_ext}$major'
1452 sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
1453 sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
1454 ;;
1455 *)
1456 shrext_cmds='.sl'
1457 dynamic_linker="$host_os dld.sl"
1458 shlibpath_var=SHLIB_PATH
1459 shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
1460 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1461 soname_spec='${libname}${release}${shared_ext}$major'
1462 ;;
1463 esac
1464 # HP-UX runs *really* slowly unless shared libraries are mode 555.
1465 postinstall_cmds='chmod 555 $lib'
1466 ;;
1467
1468interix[[3-9]]*)
1469 version_type=linux
1470 need_lib_prefix=no
1471 need_version=no
1472 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1473 soname_spec='${libname}${release}${shared_ext}$major'
1474 dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
1475 shlibpath_var=LD_LIBRARY_PATH
1476 shlibpath_overrides_runpath=no
1477 hardcode_into_libs=yes
1478 ;;
1479
1480irix5* | irix6* | nonstopux*)
1481 case $host_os in
1482 nonstopux*) version_type=nonstopux ;;
1483 *)
1484 if test "$lt_cv_prog_gnu_ld" = yes; then
1485 version_type=linux
1486 else
1487 version_type=irix
1488 fi ;;
1489 esac
1490 need_lib_prefix=no
1491 need_version=no
1492 soname_spec='${libname}${release}${shared_ext}$major'
1493 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
1494 case $host_os in
1495 irix5* | nonstopux*)
1496 libsuff= shlibsuff=
1497 ;;
1498 *)
1499 case $LD in # libtool.m4 will add one of these switches to LD
1500 *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
1501 libsuff= shlibsuff= libmagic=32-bit;;
1502 *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
1503 libsuff=32 shlibsuff=N32 libmagic=N32;;
1504 *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
1505 libsuff=64 shlibsuff=64 libmagic=64-bit;;
1506 *) libsuff= shlibsuff= libmagic=never-match;;
1507 esac
1508 ;;
1509 esac
1510 shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
1511 shlibpath_overrides_runpath=no
1512 sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
1513 sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
1514 hardcode_into_libs=yes
1515 ;;
1516
1517# No shared lib support for Linux oldld, aout, or coff.
1518linux*oldld* | linux*aout* | linux*coff*)
1519 dynamic_linker=no
1520 ;;
1521
1522# This must be Linux ELF.
1523linux* | k*bsd*-gnu)
1524 version_type=linux
1525 need_lib_prefix=no
1526 need_version=no
1527 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1528 soname_spec='${libname}${release}${shared_ext}$major'
1529 finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
1530 shlibpath_var=LD_LIBRARY_PATH
1531 shlibpath_overrides_runpath=no
1532 # This implies no fast_install, which is unacceptable.
1533 # Some rework will be needed to allow for fast_install
1534 # before this can be enabled.
1535 hardcode_into_libs=yes
1536
1537 # Append ld.so.conf contents to the search path
1538 if test -f /etc/ld.so.conf; then
1539 lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
1540 sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
1541 fi
1542
1543 # We used to test for /lib/ld.so.1 and disable shared libraries on
1544 # powerpc, because MkLinux only supported shared libraries with the
1545 # GNU dynamic linker. Since this was broken with cross compilers,
1546 # most powerpc-linux boxes support dynamic linking these days and
1547 # people can always --disable-shared, the test was removed, and we
1548 # assume the GNU/Linux dynamic linker is in use.
1549 dynamic_linker='GNU/Linux ld.so'
1550 ;;
1551
1552netbsdelf*-gnu)
1553 version_type=linux
1554 need_lib_prefix=no
1555 need_version=no
1556 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1557 soname_spec='${libname}${release}${shared_ext}$major'
1558 shlibpath_var=LD_LIBRARY_PATH
1559 shlibpath_overrides_runpath=no
1560 hardcode_into_libs=yes
1561 dynamic_linker='NetBSD ld.elf_so'
1562 ;;
1563
1564netbsd*)
1565 version_type=sunos
1566 need_lib_prefix=no
1567 need_version=no
1568 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1569 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1570 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
1571 dynamic_linker='NetBSD (a.out) ld.so'
1572 else
1573 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1574 soname_spec='${libname}${release}${shared_ext}$major'
1575 dynamic_linker='NetBSD ld.elf_so'
1576 fi
1577 shlibpath_var=LD_LIBRARY_PATH
1578 shlibpath_overrides_runpath=yes
1579 hardcode_into_libs=yes
1580 ;;
1581
1582newsos6)
1583 version_type=linux
1584 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1585 shlibpath_var=LD_LIBRARY_PATH
1586 shlibpath_overrides_runpath=yes
1587 ;;
1588
1589nto-qnx*)
1590 version_type=linux
1591 need_lib_prefix=no
1592 need_version=no
1593 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1594 soname_spec='${libname}${release}${shared_ext}$major'
1595 shlibpath_var=LD_LIBRARY_PATH
1596 shlibpath_overrides_runpath=yes
1597 ;;
1598
1599openbsd*)
1600 version_type=sunos
1601 sys_lib_dlsearch_path_spec="/usr/lib"
1602 need_lib_prefix=no
1603 # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
1604 case $host_os in
1605 openbsd3.3 | openbsd3.3.*) need_version=yes ;;
1606 *) need_version=no ;;
1607 esac
1608 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1609 finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
1610 shlibpath_var=LD_LIBRARY_PATH
1611 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
1612 case $host_os in
1613 openbsd2.[[89]] | openbsd2.[[89]].*)
1614 shlibpath_overrides_runpath=no
1615 ;;
1616 *)
1617 shlibpath_overrides_runpath=yes
1618 ;;
1619 esac
1620 else
1621 shlibpath_overrides_runpath=yes
1622 fi
1623 ;;
1624
1625os2*)
1626 libname_spec='$name'
1627 shrext_cmds=".dll"
1628 need_lib_prefix=no
1629 library_names_spec='$libname${shared_ext} $libname.a'
1630 dynamic_linker='OS/2 ld.exe'
1631 shlibpath_var=LIBPATH
1632 ;;
1633
1634osf3* | osf4* | osf5*)
1635 version_type=osf
1636 need_lib_prefix=no
1637 need_version=no
1638 soname_spec='${libname}${release}${shared_ext}$major'
1639 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1640 shlibpath_var=LD_LIBRARY_PATH
1641 sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
1642 sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
1643 ;;
1644
1645rdos*)
1646 dynamic_linker=no
1647 ;;
1648
1649solaris*)
1650 version_type=linux
1651 need_lib_prefix=no
1652 need_version=no
1653 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1654 soname_spec='${libname}${release}${shared_ext}$major'
1655 shlibpath_var=LD_LIBRARY_PATH
1656 shlibpath_overrides_runpath=yes
1657 hardcode_into_libs=yes
1658 # ldd complains unless libraries are executable
1659 postinstall_cmds='chmod +x $lib'
1660 ;;
1661
1662sunos4*)
1663 version_type=sunos
1664 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1665 finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
1666 shlibpath_var=LD_LIBRARY_PATH
1667 shlibpath_overrides_runpath=yes
1668 if test "$with_gnu_ld" = yes; then
1669 need_lib_prefix=no
1670 fi
1671 need_version=yes
1672 ;;
1673
1674sysv4 | sysv4.3*)
1675 version_type=linux
1676 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1677 soname_spec='${libname}${release}${shared_ext}$major'
1678 shlibpath_var=LD_LIBRARY_PATH
1679 case $host_vendor in
1680 sni)
1681 shlibpath_overrides_runpath=no
1682 need_lib_prefix=no
1683 export_dynamic_flag_spec='${wl}-Blargedynsym'
1684 runpath_var=LD_RUN_PATH
1685 ;;
1686 siemens)
1687 need_lib_prefix=no
1688 ;;
1689 motorola)
1690 need_lib_prefix=no
1691 need_version=no
1692 shlibpath_overrides_runpath=no
1693 sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
1694 ;;
1695 esac
1696 ;;
1697
1698sysv4*MP*)
1699 if test -d /usr/nec ;then
1700 version_type=linux
1701 library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
1702 soname_spec='$libname${shared_ext}.$major'
1703 shlibpath_var=LD_LIBRARY_PATH
1704 fi
1705 ;;
1706
1707sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1708 version_type=freebsd-elf
1709 need_lib_prefix=no
1710 need_version=no
1711 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
1712 soname_spec='${libname}${release}${shared_ext}$major'
1713 shlibpath_var=LD_LIBRARY_PATH
1714 hardcode_into_libs=yes
1715 if test "$with_gnu_ld" = yes; then
1716 sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
1717 shlibpath_overrides_runpath=no
1718 else
1719 sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
1720 shlibpath_overrides_runpath=yes
1721 case $host_os in
1722 sco3.2v5*)
1723 sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
1724 ;;
1725 esac
1726 fi
1727 sys_lib_dlsearch_path_spec='/usr/lib'
1728 ;;
1729
1730uts4*)
1731 version_type=linux
1732 library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1733 soname_spec='${libname}${release}${shared_ext}$major'
1734 shlibpath_var=LD_LIBRARY_PATH
1735 ;;
1736
1737*)
1738 dynamic_linker=no
1739 ;;
1740esac
1741AC_MSG_RESULT([$dynamic_linker])
1742test "$dynamic_linker" = no && can_build_shared=no
1743
1744AC_CACHE_VAL([lt_cv_sys_lib_search_path_spec],
1745[lt_cv_sys_lib_search_path_spec="$sys_lib_search_path_spec"])
1746sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec"
1747AC_CACHE_VAL([lt_cv_sys_lib_dlsearch_path_spec],
1748[lt_cv_sys_lib_dlsearch_path_spec="$sys_lib_dlsearch_path_spec"])
1749sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec"
1750
1751variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
1752if test "$GCC" = yes; then
1753 variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
1754fi
1755])
1756m4trace:/usr/share/aclocal/libtool.m4:1920: -1- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_REQUIRE([LT_AC_PROG_SED])dnl
1757AC_ARG_WITH([tags],
1758 [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
1759 [include additional configurations @<:@automatic@:>@])],
1760 [tagnames="$withval"])
1761
1762if test -f "$ltmain" && test -n "$tagnames"; then
1763 if test ! -f "${ofile}"; then
1764 AC_MSG_WARN([output file `$ofile' does not exist])
1765 fi
1766
1767 if test -z "$LTCC"; then
1768 eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
1769 if test -z "$LTCC"; then
1770 AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
1771 else
1772 AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
1773 fi
1774 fi
1775 if test -z "$LTCFLAGS"; then
1776 eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
1777 fi
1778
1779 # Extract list of available tagged configurations in $ofile.
1780 # Note that this assumes the entire list is on one line.
1781 available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
1782
1783 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1784 for tagname in $tagnames; do
1785 IFS="$lt_save_ifs"
1786 # Check whether tagname contains only valid characters
1787 case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
1788 "") ;;
1789 *) AC_MSG_ERROR([invalid tag name: $tagname])
1790 ;;
1791 esac
1792
1793 if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
1794 then
1795 AC_MSG_ERROR([tag name \"$tagname\" already exists])
1796 fi
1797
1798 # Update the list of available tags.
1799 if test -n "$tagname"; then
1800 echo appending configuration tag \"$tagname\" to $ofile
1801
1802 case $tagname in
1803 CXX)
1804 if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
1805 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
1806 (test "X$CXX" != "Xg++"))) ; then
1807 AC_LIBTOOL_LANG_CXX_CONFIG
1808 else
1809 tagname=""
1810 fi
1811 ;;
1812
1813 F77)
1814 if test -n "$F77" && test "X$F77" != "Xno"; then
1815 AC_LIBTOOL_LANG_F77_CONFIG
1816 else
1817 tagname=""
1818 fi
1819 ;;
1820
1821 GCJ)
1822 if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
1823 AC_LIBTOOL_LANG_GCJ_CONFIG
1824 else
1825 tagname=""
1826 fi
1827 ;;
1828
1829 RC)
1830 AC_LIBTOOL_LANG_RC_CONFIG
1831 ;;
1832
1833 *)
1834 AC_MSG_ERROR([Unsupported tag name: $tagname])
1835 ;;
1836 esac
1837
1838 # Append the new tag name to the list of available tags.
1839 if test -n "$tagname" ; then
1840 available_tags="$available_tags $tagname"
1841 fi
1842 fi
1843 done
1844 IFS="$lt_save_ifs"
1845
1846 # Now substitute the updated list of available tags.
1847 if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
1848 mv "${ofile}T" "$ofile"
1849 chmod +x "$ofile"
1850 else
1851 rm -f "${ofile}T"
1852 AC_MSG_ERROR([unable to update list of available tagged configurations.])
1853 fi
1854fi
1855])
1856m4trace:/usr/share/aclocal/libtool.m4:2026: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
1857])
1858m4trace:/usr/share/aclocal/libtool.m4:2034: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
1859])
1860m4trace:/usr/share/aclocal/libtool.m4:2043: -1- AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
1861AC_ARG_ENABLE([shared],
1862 [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
1863 [build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
1864 [p=${PACKAGE-default}
1865 case $enableval in
1866 yes) enable_shared=yes ;;
1867 no) enable_shared=no ;;
1868 *)
1869 enable_shared=no
1870 # Look at the argument we got. We use all the common list separators.
1871 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1872 for pkg in $enableval; do
1873 IFS="$lt_save_ifs"
1874 if test "X$pkg" = "X$p"; then
1875 enable_shared=yes
1876 fi
1877 done
1878 IFS="$lt_save_ifs"
1879 ;;
1880 esac],
1881 [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
1882])
1883m4trace:/usr/share/aclocal/libtool.m4:2072: -1- AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1884AC_ENABLE_SHARED(no)
1885])
1886m4trace:/usr/share/aclocal/libtool.m4:2082: -1- AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
1887AC_ARG_ENABLE([static],
1888 [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@],
1889 [build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])],
1890 [p=${PACKAGE-default}
1891 case $enableval in
1892 yes) enable_static=yes ;;
1893 no) enable_static=no ;;
1894 *)
1895 enable_static=no
1896 # Look at the argument we got. We use all the common list separators.
1897 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1898 for pkg in $enableval; do
1899 IFS="$lt_save_ifs"
1900 if test "X$pkg" = "X$p"; then
1901 enable_static=yes
1902 fi
1903 done
1904 IFS="$lt_save_ifs"
1905 ;;
1906 esac],
1907 [enable_static=]AC_ENABLE_STATIC_DEFAULT)
1908])
1909m4trace:/usr/share/aclocal/libtool.m4:2111: -1- AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1910AC_ENABLE_STATIC(no)
1911])
1912m4trace:/usr/share/aclocal/libtool.m4:2121: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
1913AC_ARG_ENABLE([fast-install],
1914 [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
1915 [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
1916 [p=${PACKAGE-default}
1917 case $enableval in
1918 yes) enable_fast_install=yes ;;
1919 no) enable_fast_install=no ;;
1920 *)
1921 enable_fast_install=no
1922 # Look at the argument we got. We use all the common list separators.
1923 lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1924 for pkg in $enableval; do
1925 IFS="$lt_save_ifs"
1926 if test "X$pkg" = "X$p"; then
1927 enable_fast_install=yes
1928 fi
1929 done
1930 IFS="$lt_save_ifs"
1931 ;;
1932 esac],
1933 [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
1934])
1935m4trace:/usr/share/aclocal/libtool.m4:2150: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1936AC_ENABLE_FAST_INSTALL(no)
1937])
1938m4trace:/usr/share/aclocal/libtool.m4:2160: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1939pic_mode=ifelse($#,1,$1,default)
1940])
1941m4trace:/usr/share/aclocal/libtool.m4:2184: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl
1942AC_MSG_CHECKING([for $1])
1943AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
1944[case $MAGIC_CMD in
1945[[\\/*] | ?:[\\/]*])
1946 lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
1947 ;;
1948*)
1949 lt_save_MAGIC_CMD="$MAGIC_CMD"
1950 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
1951dnl $ac_dummy forces splitting on constant user-supplied paths.
1952dnl POSIX.2 word splitting is done only on the output of word expansions,
1953dnl not every word. This closes a longstanding sh security hole.
1954 ac_dummy="ifelse([$2], , $PATH, [$2])"
1955 for ac_dir in $ac_dummy; do
1956 IFS="$lt_save_ifs"
1957 test -z "$ac_dir" && ac_dir=.
1958 if test -f $ac_dir/$1; then
1959 lt_cv_path_MAGIC_CMD="$ac_dir/$1"
1960 if test -n "$file_magic_test_file"; then
1961 case $deplibs_check_method in
1962 "file_magic "*)
1963 file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
1964 MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1965 if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
1966 $EGREP "$file_magic_regex" > /dev/null; then
1967 :
1968 else
1969 cat <<EOF 1>&2
1970
1971*** Warning: the command libtool uses to detect shared libraries,
1972*** $file_magic_cmd, produces output that libtool cannot recognize.
1973*** The result is that libtool may fail to recognize shared libraries
1974*** as such. This will affect the creation of libtool libraries that
1975*** depend on shared libraries, but programs linked with such libtool
1976*** libraries will work regardless of this problem. Nevertheless, you
1977*** may want to report the problem to your system manager and/or to
1978*** bug-libtool@gnu.org
1979
1980EOF
1981 fi ;;
1982 esac
1983 fi
1984 break
1985 fi
1986 done
1987 IFS="$lt_save_ifs"
1988 MAGIC_CMD="$lt_save_MAGIC_CMD"
1989 ;;
1990esac])
1991MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1992if test -n "$MAGIC_CMD"; then
1993 AC_MSG_RESULT($MAGIC_CMD)
1994else
1995 AC_MSG_RESULT(no)
1996fi
1997])
1998m4trace:/usr/share/aclocal/libtool.m4:2247: -1- AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
1999if test -z "$lt_cv_path_MAGIC_CMD"; then
2000 if test -n "$ac_tool_prefix"; then
2001 AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
2002 else
2003 MAGIC_CMD=:
2004 fi
2005fi
2006])
2007m4trace:/usr/share/aclocal/libtool.m4:2262: -1- AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld],
2008 [AC_HELP_STRING([--with-gnu-ld],
2009 [assume the C compiler uses GNU ld @<:@default=no@:>@])],
2010 [test "$withval" = no || with_gnu_ld=yes],
2011 [with_gnu_ld=no])
2012AC_REQUIRE([LT_AC_PROG_SED])dnl
2013AC_REQUIRE([AC_PROG_CC])dnl
2014AC_REQUIRE([AC_CANONICAL_HOST])dnl
2015AC_REQUIRE([AC_CANONICAL_BUILD])dnl
2016ac_prog=ld
2017if test "$GCC" = yes; then
2018 # Check if gcc -print-prog-name=ld gives a path.
2019 AC_MSG_CHECKING([for ld used by $CC])
2020 case $host in
2021 *-*-mingw*)
2022 # gcc leaves a trailing carriage return which upsets mingw
2023 ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
2024 *)
2025 ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
2026 esac
2027 case $ac_prog in
2028 # Accept absolute paths.
2029 [[\\/]]* | ?:[[\\/]]*)
2030 re_direlt='/[[^/]][[^/]]*/\.\./'
2031 # Canonicalize the pathname of ld
2032 ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
2033 while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
2034 ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
2035 done
2036 test -z "$LD" && LD="$ac_prog"
2037 ;;
2038 "")
2039 # If it fails, then pretend we aren't using GCC.
2040 ac_prog=ld
2041 ;;
2042 *)
2043 # If it is relative, then search for the first ld in PATH.
2044 with_gnu_ld=unknown
2045 ;;
2046 esac
2047elif test "$with_gnu_ld" = yes; then
2048 AC_MSG_CHECKING([for GNU ld])
2049else
2050 AC_MSG_CHECKING([for non-GNU ld])
2051fi
2052AC_CACHE_VAL(lt_cv_path_LD,
2053[if test -z "$LD"; then
2054 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2055 for ac_dir in $PATH; do
2056 IFS="$lt_save_ifs"
2057 test -z "$ac_dir" && ac_dir=.
2058 if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
2059 lt_cv_path_LD="$ac_dir/$ac_prog"
2060 # Check to see if the program is GNU ld. I'd rather use --version,
2061 # but apparently some variants of GNU ld only accept -v.
2062 # Break only if it was the GNU/non-GNU ld that we prefer.
2063 case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
2064 *GNU* | *'with BFD'*)
2065 test "$with_gnu_ld" != no && break
2066 ;;
2067 *)
2068 test "$with_gnu_ld" != yes && break
2069 ;;
2070 esac
2071 fi
2072 done
2073 IFS="$lt_save_ifs"
2074else
2075 lt_cv_path_LD="$LD" # Let the user override the test with a path.
2076fi])
2077LD="$lt_cv_path_LD"
2078if test -n "$LD"; then
2079 AC_MSG_RESULT($LD)
2080else
2081 AC_MSG_RESULT(no)
2082fi
2083test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
2084AC_PROG_LD_GNU
2085])
2086m4trace:/usr/share/aclocal/libtool.m4:2346: -1- AC_DEFUN([AC_PROG_LD_GNU], [AC_REQUIRE([AC_PROG_EGREP])dnl
2087AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
2088[# I'd rather use --version here, but apparently some GNU lds only accept -v.
2089case `$LD -v 2>&1 </dev/null` in
2090*GNU* | *'with BFD'*)
2091 lt_cv_prog_gnu_ld=yes
2092 ;;
2093*)
2094 lt_cv_prog_gnu_ld=no
2095 ;;
2096esac])
2097with_gnu_ld=$lt_cv_prog_gnu_ld
2098])
2099m4trace:/usr/share/aclocal/libtool.m4:2366: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], [AC_CACHE_CHECK([for $LD option to reload object files],
2100 lt_cv_ld_reload_flag,
2101 [lt_cv_ld_reload_flag='-r'])
2102reload_flag=$lt_cv_ld_reload_flag
2103case $reload_flag in
2104"" | " "*) ;;
2105*) reload_flag=" $reload_flag" ;;
2106esac
2107reload_cmds='$LD$reload_flag -o $output$reload_objs'
2108case $host_os in
2109 darwin*)
2110 if test "$GCC" = yes; then
2111 reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
2112 else
2113 reload_cmds='$LD$reload_flag -o $output$reload_objs'
2114 fi
2115 ;;
2116esac
2117])
2118m4trace:/usr/share/aclocal/libtool.m4:2392: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], [AC_CACHE_CHECK([how to recognize dependent libraries],
2119lt_cv_deplibs_check_method,
2120[lt_cv_file_magic_cmd='$MAGIC_CMD'
2121lt_cv_file_magic_test_file=
2122lt_cv_deplibs_check_method='unknown'
2123# Need to set the preceding variable on all platforms that support
2124# interlibrary dependencies.
2125# 'none' -- dependencies not supported.
2126# `unknown' -- same as none, but documents that we really don't know.
2127# 'pass_all' -- all dependencies passed with no checks.
2128# 'test_compile' -- check by making test program.
2129# 'file_magic [[regex]]' -- check by looking for files in library path
2130# which responds to the $file_magic_cmd with a given extended regex.
2131# If you have `file' or equivalent on your system and you're not sure
2132# whether `pass_all' will *always* work, you probably want this one.
2133
2134case $host_os in
2135aix[[4-9]]*)
2136 lt_cv_deplibs_check_method=pass_all
2137 ;;
2138
2139beos*)
2140 lt_cv_deplibs_check_method=pass_all
2141 ;;
2142
2143bsdi[[45]]*)
2144 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
2145 lt_cv_file_magic_cmd='/usr/bin/file -L'
2146 lt_cv_file_magic_test_file=/shlib/libc.so
2147 ;;
2148
2149cygwin*)
2150 # func_win32_libid is a shell function defined in ltmain.sh
2151 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
2152 lt_cv_file_magic_cmd='func_win32_libid'
2153 ;;
2154
2155mingw* | pw32*)
2156 # Base MSYS/MinGW do not provide the 'file' command needed by
2157 # func_win32_libid shell function, so use a weaker test based on 'objdump',
2158 # unless we find 'file', for example because we are cross-compiling.
2159 if ( file / ) >/dev/null 2>&1; then
2160 lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
2161 lt_cv_file_magic_cmd='func_win32_libid'
2162 else
2163 lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
2164 lt_cv_file_magic_cmd='$OBJDUMP -f'
2165 fi
2166 ;;
2167
2168darwin* | rhapsody*)
2169 lt_cv_deplibs_check_method=pass_all
2170 ;;
2171
2172freebsd* | dragonfly*)
2173 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
2174 case $host_cpu in
2175 i*86 )
2176 # Not sure whether the presence of OpenBSD here was a mistake.
2177 # Let's accept both of them until this is cleared up.
2178 lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
2179 lt_cv_file_magic_cmd=/usr/bin/file
2180 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
2181 ;;
2182 esac
2183 else
2184 lt_cv_deplibs_check_method=pass_all
2185 fi
2186 ;;
2187
2188gnu*)
2189 lt_cv_deplibs_check_method=pass_all
2190 ;;
2191
2192hpux10.20* | hpux11*)
2193 lt_cv_file_magic_cmd=/usr/bin/file
2194 case $host_cpu in
2195 ia64*)
2196 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
2197 lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
2198 ;;
2199 hppa*64*)
2200 [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]']
2201 lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
2202 ;;
2203 *)
2204 lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
2205 lt_cv_file_magic_test_file=/usr/lib/libc.sl
2206 ;;
2207 esac
2208 ;;
2209
2210interix[[3-9]]*)
2211 # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
2212 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
2213 ;;
2214
2215irix5* | irix6* | nonstopux*)
2216 case $LD in
2217 *-32|*"-32 ") libmagic=32-bit;;
2218 *-n32|*"-n32 ") libmagic=N32;;
2219 *-64|*"-64 ") libmagic=64-bit;;
2220 *) libmagic=never-match;;
2221 esac
2222 lt_cv_deplibs_check_method=pass_all
2223 ;;
2224
2225# This must be Linux ELF.
2226linux* | k*bsd*-gnu)
2227 lt_cv_deplibs_check_method=pass_all
2228 ;;
2229
2230netbsd* | netbsdelf*-gnu)
2231 if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
2232 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
2233 else
2234 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
2235 fi
2236 ;;
2237
2238newos6*)
2239 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
2240 lt_cv_file_magic_cmd=/usr/bin/file
2241 lt_cv_file_magic_test_file=/usr/lib/libnls.so
2242 ;;
2243
2244nto-qnx*)
2245 lt_cv_deplibs_check_method=unknown
2246 ;;
2247
2248openbsd*)
2249 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
2250 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
2251 else
2252 lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
2253 fi
2254 ;;
2255
2256osf3* | osf4* | osf5*)
2257 lt_cv_deplibs_check_method=pass_all
2258 ;;
2259
2260rdos*)
2261 lt_cv_deplibs_check_method=pass_all
2262 ;;
2263
2264solaris*)
2265 lt_cv_deplibs_check_method=pass_all
2266 ;;
2267
2268sysv4 | sysv4.3*)
2269 case $host_vendor in
2270 motorola)
2271 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]]'
2272 lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
2273 ;;
2274 ncr)
2275 lt_cv_deplibs_check_method=pass_all
2276 ;;
2277 sequent)
2278 lt_cv_file_magic_cmd='/bin/file'
2279 lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
2280 ;;
2281 sni)
2282 lt_cv_file_magic_cmd='/bin/file'
2283 lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
2284 lt_cv_file_magic_test_file=/lib/libc.so
2285 ;;
2286 siemens)
2287 lt_cv_deplibs_check_method=pass_all
2288 ;;
2289 pc)
2290 lt_cv_deplibs_check_method=pass_all
2291 ;;
2292 esac
2293 ;;
2294
2295sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
2296 lt_cv_deplibs_check_method=pass_all
2297 ;;
2298esac
2299])
2300file_magic_cmd=$lt_cv_file_magic_cmd
2301deplibs_check_method=$lt_cv_deplibs_check_method
2302test -z "$deplibs_check_method" && deplibs_check_method=unknown
2303])
2304m4trace:/usr/share/aclocal/libtool.m4:2584: -1- AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
2305[if test -n "$NM"; then
2306 # Let the user override the test.
2307 lt_cv_path_NM="$NM"
2308else
2309 lt_nm_to_check="${ac_tool_prefix}nm"
2310 if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
2311 lt_nm_to_check="$lt_nm_to_check nm"
2312 fi
2313 for lt_tmp_nm in $lt_nm_to_check; do
2314 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2315 for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
2316 IFS="$lt_save_ifs"
2317 test -z "$ac_dir" && ac_dir=.
2318 tmp_nm="$ac_dir/$lt_tmp_nm"
2319 if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
2320 # Check to see if the nm accepts a BSD-compat flag.
2321 # Adding the `sed 1q' prevents false positives on HP-UX, which says:
2322 # nm: unknown option "B" ignored
2323 # Tru64's nm complains that /dev/null is an invalid object file
2324 case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
2325 */dev/null* | *'Invalid file or object type'*)
2326 lt_cv_path_NM="$tmp_nm -B"
2327 break
2328 ;;
2329 *)
2330 case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
2331 */dev/null*)
2332 lt_cv_path_NM="$tmp_nm -p"
2333 break
2334 ;;
2335 *)
2336 lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
2337 continue # so that we can try to find one that supports BSD flags
2338 ;;
2339 esac
2340 ;;
2341 esac
2342 fi
2343 done
2344 IFS="$lt_save_ifs"
2345 done
2346 test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
2347fi])
2348NM="$lt_cv_path_NM"
2349])
2350m4trace:/usr/share/aclocal/libtool.m4:2636: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
2351LIBM=
2352case $host in
2353*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
2354 # These system don't have libm, or don't need it
2355 ;;
2356*-ncr-sysv4.3*)
2357 AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
2358 AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
2359 ;;
2360*)
2361 AC_CHECK_LIB(m, cos, LIBM="-lm")
2362 ;;
2363esac
2364])
2365m4trace:/usr/share/aclocal/libtool.m4:2665: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
2366 case $enable_ltdl_convenience in
2367 no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
2368 "") enable_ltdl_convenience=yes
2369 ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
2370 esac
2371 LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
2372 LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
2373 # For backwards non-gettext consistent compatibility...
2374 INCLTDL="$LTDLINCL"
2375])
2376m4trace:/usr/share/aclocal/libtool.m4:2691: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
2377 AC_CHECK_LIB(ltdl, lt_dlinit,
2378 [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
2379 [if test x"$enable_ltdl_install" = xno; then
2380 AC_MSG_WARN([libltdl not installed, but installation disabled])
2381 else
2382 enable_ltdl_install=yes
2383 fi
2384 ])
2385 if test x"$enable_ltdl_install" = x"yes"; then
2386 ac_configure_args="$ac_configure_args --enable-ltdl-install"
2387 LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
2388 LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
2389 else
2390 ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
2391 LIBLTDL="-lltdl"
2392 LTDLINCL=
2393 fi
2394 # For backwards non-gettext consistent compatibility...
2395 INCLTDL="$LTDLINCL"
2396])
2397m4trace:/usr/share/aclocal/libtool.m4:2718: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX])
2398])
2399m4trace:/usr/share/aclocal/libtool.m4:2725: -1- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX])
2400AC_REQUIRE([_LT_AC_PROG_CXXCPP])
2401_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
2402])
2403m4trace:/usr/share/aclocal/libtool.m4:2733: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP], [
2404AC_REQUIRE([AC_PROG_CXX])
2405if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
2406 ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
2407 (test "X$CXX" != "Xg++"))) ; then
2408 AC_PROG_CXXCPP
2409fi
2410])
2411m4trace:/usr/share/aclocal/libtool.m4:2746: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77])
2412])
2413m4trace:/usr/share/aclocal/libtool.m4:2753: -1- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77])
2414_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
2415])
2416m4trace:/usr/share/aclocal/libtool.m4:2762: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ])
2417])
2418m4trace:/usr/share/aclocal/libtool.m4:2769: -1- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[],
2419 [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[],
2420 [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[],
2421 [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])],
2422 [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])],
2423 [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
2424_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
2425])
2426m4trace:/usr/share/aclocal/libtool.m4:2783: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC])
2427_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
2428])
2429m4trace:/usr/share/aclocal/libtool.m4:2794: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG])
2430m4trace:/usr/share/aclocal/libtool.m4:2795: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC"
2431AC_LANG_PUSH(C)
2432
2433# Source file extension for C test sources.
2434ac_ext=c
2435
2436# Object file extension for compiled C test sources.
2437objext=o
2438_LT_AC_TAGVAR(objext, $1)=$objext
2439
2440# Code to be used in simple compile tests
2441lt_simple_compile_test_code="int some_variable = 0;"
2442
2443# Code to be used in simple link tests
2444lt_simple_link_test_code='int main(){return(0);}'
2445
2446_LT_AC_SYS_COMPILER
2447
2448# save warnings/boilerplate of simple test code
2449_LT_COMPILER_BOILERPLATE
2450_LT_LINKER_BOILERPLATE
2451
2452## CAVEAT EMPTOR:
2453## There is no encapsulation within the following macros, do not change
2454## the running order or otherwise move them around unless you know exactly
2455## what you are doing...
2456AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
2457AC_LIBTOOL_PROG_COMPILER_PIC($1)
2458AC_LIBTOOL_PROG_CC_C_O($1)
2459AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
2460AC_LIBTOOL_PROG_LD_SHLIBS($1)
2461AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
2462AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
2463AC_LIBTOOL_SYS_LIB_STRIP
2464AC_LIBTOOL_DLOPEN_SELF
2465
2466# Report which library types will actually be built
2467AC_MSG_CHECKING([if libtool supports shared libraries])
2468AC_MSG_RESULT([$can_build_shared])
2469
2470AC_MSG_CHECKING([whether to build shared libraries])
2471test "$can_build_shared" = "no" && enable_shared=no
2472
2473# On AIX, shared libraries and static libraries use the same namespace, and
2474# are all built from PIC.
2475case $host_os in
2476aix3*)
2477 test "$enable_shared" = yes && enable_static=no
2478 if test -n "$RANLIB"; then
2479 archive_cmds="$archive_cmds~\$RANLIB \$lib"
2480 postinstall_cmds='$RANLIB $lib'
2481 fi
2482 ;;
2483
2484aix[[4-9]]*)
2485 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
2486 test "$enable_shared" = yes && enable_static=no
2487 fi
2488 ;;
2489esac
2490AC_MSG_RESULT([$enable_shared])
2491
2492AC_MSG_CHECKING([whether to build static libraries])
2493# Make sure either enable_shared or enable_static is yes.
2494test "$enable_shared" = yes || enable_static=yes
2495AC_MSG_RESULT([$enable_static])
2496
2497AC_LIBTOOL_CONFIG($1)
2498
2499AC_LANG_POP
2500CC="$lt_save_CC"
2501])
2502m4trace:/usr/share/aclocal/libtool.m4:2875: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)])
2503m4trace:/usr/share/aclocal/libtool.m4:2876: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++)
2504AC_REQUIRE([AC_PROG_CXX])
2505AC_REQUIRE([_LT_AC_PROG_CXXCPP])
2506
2507_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2508_LT_AC_TAGVAR(allow_undefined_flag, $1)=
2509_LT_AC_TAGVAR(always_export_symbols, $1)=no
2510_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
2511_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
2512_LT_AC_TAGVAR(hardcode_direct, $1)=no
2513_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
2514_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
2515_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
2516_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
2517_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
2518_LT_AC_TAGVAR(hardcode_automatic, $1)=no
2519_LT_AC_TAGVAR(module_cmds, $1)=
2520_LT_AC_TAGVAR(module_expsym_cmds, $1)=
2521_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
2522_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
2523_LT_AC_TAGVAR(no_undefined_flag, $1)=
2524_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
2525_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
2526
2527# Dependencies to place before and after the object being linked:
2528_LT_AC_TAGVAR(predep_objects, $1)=
2529_LT_AC_TAGVAR(postdep_objects, $1)=
2530_LT_AC_TAGVAR(predeps, $1)=
2531_LT_AC_TAGVAR(postdeps, $1)=
2532_LT_AC_TAGVAR(compiler_lib_search_path, $1)=
2533_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=
2534
2535# Source file extension for C++ test sources.
2536ac_ext=cpp
2537
2538# Object file extension for compiled C++ test sources.
2539objext=o
2540_LT_AC_TAGVAR(objext, $1)=$objext
2541
2542# Code to be used in simple compile tests
2543lt_simple_compile_test_code="int some_variable = 0;"
2544
2545# Code to be used in simple link tests
2546lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
2547
2548# ltmain only uses $CC for tagged configurations so make sure $CC is set.
2549_LT_AC_SYS_COMPILER
2550
2551# save warnings/boilerplate of simple test code
2552_LT_COMPILER_BOILERPLATE
2553_LT_LINKER_BOILERPLATE
2554
2555# Allow CC to be a program name with arguments.
2556lt_save_CC=$CC
2557lt_save_LD=$LD
2558lt_save_GCC=$GCC
2559GCC=$GXX
2560lt_save_with_gnu_ld=$with_gnu_ld
2561lt_save_path_LD=$lt_cv_path_LD
2562if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
2563 lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
2564else
2565 $as_unset lt_cv_prog_gnu_ld
2566fi
2567if test -n "${lt_cv_path_LDCXX+set}"; then
2568 lt_cv_path_LD=$lt_cv_path_LDCXX
2569else
2570 $as_unset lt_cv_path_LD
2571fi
2572test -z "${LDCXX+set}" || LD=$LDCXX
2573CC=${CXX-"c++"}
2574compiler=$CC
2575_LT_AC_TAGVAR(compiler, $1)=$CC
2576_LT_CC_BASENAME([$compiler])
2577
2578# We don't want -fno-exception wen compiling C++ code, so set the
2579# no_builtin_flag separately
2580if test "$GXX" = yes; then
2581 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
2582else
2583 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
2584fi
2585
2586if test "$GXX" = yes; then
2587 # Set up default GNU C++ configuration
2588
2589 AC_PROG_LD
2590
2591 # Check if GNU C++ uses GNU ld as the underlying linker, since the
2592 # archiving commands below assume that GNU ld is being used.
2593 if test "$with_gnu_ld" = yes; then
2594 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
2595 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
2596
2597 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
2598 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
2599
2600 # If archive_cmds runs LD, not CC, wlarc should be empty
2601 # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
2602 # investigate it a little bit more. (MM)
2603 wlarc='${wl}'
2604
2605 # ancient GNU ld didn't support --whole-archive et. al.
2606 if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
2607 grep 'no-whole-archive' > /dev/null; then
2608 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
2609 else
2610 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
2611 fi
2612 else
2613 with_gnu_ld=no
2614 wlarc=
2615
2616 # A generic and very simple default shared library creation
2617 # command for GNU C++ for the case where it uses the native
2618 # linker, instead of GNU ld. If possible, this setting should
2619 # overridden to take advantage of the native linker features on
2620 # the platform it is being used on.
2621 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
2622 fi
2623
2624 # Commands to make compiler produce verbose output that lists
2625 # what "hidden" libraries, object files and flags are used when
2626 # linking a shared library.
2627 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
2628
2629else
2630 GXX=no
2631 with_gnu_ld=no
2632 wlarc=
2633fi
2634
2635# PORTME: fill in a description of your system's C++ link characteristics
2636AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
2637_LT_AC_TAGVAR(ld_shlibs, $1)=yes
2638case $host_os in
2639 aix3*)
2640 # FIXME: insert proper C++ library support
2641 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2642 ;;
2643 aix[[4-9]]*)
2644 if test "$host_cpu" = ia64; then
2645 # On IA64, the linker does run time linking by default, so we don't
2646 # have to do anything special.
2647 aix_use_runtimelinking=no
2648 exp_sym_flag='-Bexport'
2649 no_entry_flag=""
2650 else
2651 aix_use_runtimelinking=no
2652
2653 # Test if we are trying to use run time linking or normal
2654 # AIX style linking. If -brtl is somewhere in LDFLAGS, we
2655 # need to do runtime linking.
2656 case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
2657 for ld_flag in $LDFLAGS; do
2658 case $ld_flag in
2659 *-brtl*)
2660 aix_use_runtimelinking=yes
2661 break
2662 ;;
2663 esac
2664 done
2665 ;;
2666 esac
2667
2668 exp_sym_flag='-bexport'
2669 no_entry_flag='-bnoentry'
2670 fi
2671
2672 # When large executables or shared objects are built, AIX ld can
2673 # have problems creating the table of contents. If linking a library
2674 # or program results in "error TOC overflow" add -mminimal-toc to
2675 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
2676 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
2677
2678 _LT_AC_TAGVAR(archive_cmds, $1)=''
2679 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2680 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
2681 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2682
2683 if test "$GXX" = yes; then
2684 case $host_os in aix4.[[012]]|aix4.[[012]].*)
2685 # We only want to do this on AIX 4.2 and lower, the check
2686 # below for broken collect2 doesn't work under 4.3+
2687 collect2name=`${CC} -print-prog-name=collect2`
2688 if test -f "$collect2name" && \
2689 strings "$collect2name" | grep resolve_lib_name >/dev/null
2690 then
2691 # We have reworked collect2
2692 :
2693 else
2694 # We have old collect2
2695 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
2696 # It fails to find uninstalled libraries when the uninstalled
2697 # path is not listed in the libpath. Setting hardcode_minus_L
2698 # to unsupported forces relinking
2699 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
2700 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2701 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
2702 fi
2703 ;;
2704 esac
2705 shared_flag='-shared'
2706 if test "$aix_use_runtimelinking" = yes; then
2707 shared_flag="$shared_flag "'${wl}-G'
2708 fi
2709 else
2710 # not using gcc
2711 if test "$host_cpu" = ia64; then
2712 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
2713 # chokes on -Wl,-G. The following line is correct:
2714 shared_flag='-G'
2715 else
2716 if test "$aix_use_runtimelinking" = yes; then
2717 shared_flag='${wl}-G'
2718 else
2719 shared_flag='${wl}-bM:SRE'
2720 fi
2721 fi
2722 fi
2723
2724 # It seems that -bexpall does not export symbols beginning with
2725 # underscore (_), so it is better to generate a list of symbols to export.
2726 _LT_AC_TAGVAR(always_export_symbols, $1)=yes
2727 if test "$aix_use_runtimelinking" = yes; then
2728 # Warning - without using the other runtime loading flags (-brtl),
2729 # -berok will link without error, but may produce a broken library.
2730 _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
2731 # Determine the default libpath from the value encoded in an empty executable.
2732 _LT_AC_SYS_LIBPATH_AIX
2733 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
2734
2735 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
2736 else
2737 if test "$host_cpu" = ia64; then
2738 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
2739 _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
2740 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
2741 else
2742 # Determine the default libpath from the value encoded in an empty executable.
2743 _LT_AC_SYS_LIBPATH_AIX
2744 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
2745 # Warning - without using the other run time loading flags,
2746 # -berok will link without error, but may produce a broken library.
2747 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
2748 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
2749 # Exported symbols can be pulled into shared objects from archives
2750 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
2751 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
2752 # This is similar to how AIX traditionally builds its shared libraries.
2753 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
2754 fi
2755 fi
2756 ;;
2757
2758 beos*)
2759 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
2760 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
2761 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
2762 # support --undefined. This deserves some investigation. FIXME
2763 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
2764 else
2765 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2766 fi
2767 ;;
2768
2769 chorus*)
2770 case $cc_basename in
2771 *)
2772 # FIXME: insert proper C++ library support
2773 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2774 ;;
2775 esac
2776 ;;
2777
2778 cygwin* | mingw* | pw32*)
2779 # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
2780 # as there is no search path for DLLs.
2781 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2782 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
2783 _LT_AC_TAGVAR(always_export_symbols, $1)=no
2784 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
2785
2786 if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
2787 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
2788 # If the export-symbols file already is a .def file (1st line
2789 # is EXPORTS), use it as is; otherwise, prepend...
2790 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
2791 cp $export_symbols $output_objdir/$soname.def;
2792 else
2793 echo EXPORTS > $output_objdir/$soname.def;
2794 cat $export_symbols >> $output_objdir/$soname.def;
2795 fi~
2796 $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
2797 else
2798 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2799 fi
2800 ;;
2801 darwin* | rhapsody*)
2802 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2803 _LT_AC_TAGVAR(hardcode_direct, $1)=no
2804 _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
2805 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
2806 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
2807 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2808 _LT_AC_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined"
2809 if test "$GXX" = yes ; then
2810 output_verbose_link_cmd='echo'
2811 _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
2812 _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
2813 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
2814 _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
2815 if test "$lt_cv_apple_cc_single_mod" != "yes"; then
2816 _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}"
2817 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}"
2818 fi
2819 else
2820 case $cc_basename in
2821 xlc*)
2822 output_verbose_link_cmd='echo'
2823 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
2824 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
2825 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
2826 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj ${wl}-single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
2827 _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 $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
2828 ;;
2829 *)
2830 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2831 ;;
2832 esac
2833 fi
2834 ;;
2835
2836 dgux*)
2837 case $cc_basename in
2838 ec++*)
2839 # FIXME: insert proper C++ library support
2840 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2841 ;;
2842 ghcx*)
2843 # Green Hills C++ Compiler
2844 # FIXME: insert proper C++ library support
2845 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2846 ;;
2847 *)
2848 # FIXME: insert proper C++ library support
2849 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2850 ;;
2851 esac
2852 ;;
2853 freebsd[[12]]*)
2854 # C++ shared libraries reported to be fairly broken before switch to ELF
2855 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2856 ;;
2857 freebsd-elf*)
2858 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2859 ;;
2860 freebsd* | dragonfly*)
2861 # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
2862 # conventions
2863 _LT_AC_TAGVAR(ld_shlibs, $1)=yes
2864 ;;
2865 gnu*)
2866 ;;
2867 hpux9*)
2868 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
2869 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
2870 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
2871 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2872 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
2873 # but as the default
2874 # location of the library.
2875
2876 case $cc_basename in
2877 CC*)
2878 # FIXME: insert proper C++ library support
2879 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2880 ;;
2881 aCC*)
2882 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
2883 # Commands to make compiler produce verbose output that lists
2884 # what "hidden" libraries, object files and flags are used when
2885 # linking a shared library.
2886 #
2887 # There doesn't appear to be a way to prevent this compiler from
2888 # explicitly linking system object files so we need to strip them
2889 # from the output so that they don't get included in the library
2890 # dependencies.
2891 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'
2892 ;;
2893 *)
2894 if test "$GXX" = yes; then
2895 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
2896 else
2897 # FIXME: insert proper C++ library support
2898 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2899 fi
2900 ;;
2901 esac
2902 ;;
2903 hpux10*|hpux11*)
2904 if test $with_gnu_ld = no; then
2905 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
2906 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
2907
2908 case $host_cpu in
2909 hppa*64*|ia64*) ;;
2910 *)
2911 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
2912 ;;
2913 esac
2914 fi
2915 case $host_cpu in
2916 hppa*64*|ia64*)
2917 _LT_AC_TAGVAR(hardcode_direct, $1)=no
2918 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
2919 ;;
2920 *)
2921 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2922 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
2923 # but as the default
2924 # location of the library.
2925 ;;
2926 esac
2927
2928 case $cc_basename in
2929 CC*)
2930 # FIXME: insert proper C++ library support
2931 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2932 ;;
2933 aCC*)
2934 case $host_cpu in
2935 hppa*64*)
2936 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2937 ;;
2938 ia64*)
2939 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2940 ;;
2941 *)
2942 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2943 ;;
2944 esac
2945 # Commands to make compiler produce verbose output that lists
2946 # what "hidden" libraries, object files and flags are used when
2947 # linking a shared library.
2948 #
2949 # There doesn't appear to be a way to prevent this compiler from
2950 # explicitly linking system object files so we need to strip them
2951 # from the output so that they don't get included in the library
2952 # dependencies.
2953 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'
2954 ;;
2955 *)
2956 if test "$GXX" = yes; then
2957 if test $with_gnu_ld = no; then
2958 case $host_cpu in
2959 hppa*64*)
2960 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2961 ;;
2962 ia64*)
2963 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2964 ;;
2965 *)
2966 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2967 ;;
2968 esac
2969 fi
2970 else
2971 # FIXME: insert proper C++ library support
2972 _LT_AC_TAGVAR(ld_shlibs, $1)=no
2973 fi
2974 ;;
2975 esac
2976 ;;
2977 interix[[3-9]]*)
2978 _LT_AC_TAGVAR(hardcode_direct, $1)=no
2979 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
2980 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
2981 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
2982 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
2983 # Instead, shared libraries are loaded at an image base (0x10000000 by
2984 # default) and relocated if they conflict, which is a slow very memory
2985 # consuming and fragmenting process. To avoid this, we pick a random,
2986 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
2987 # time. Moving up from 0x10000000 also allows more sbrk(2) space.
2988 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
2989 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
2990 ;;
2991 irix5* | irix6*)
2992 case $cc_basename in
2993 CC*)
2994 # SGI C++
2995 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
2996
2997 # Archives containing C++ object files must be created using
2998 # "CC -ar", where "CC" is the IRIX C++ compiler. This is
2999 # necessary to make sure instantiated templates are included
3000 # in the archive.
3001 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
3002 ;;
3003 *)
3004 if test "$GXX" = yes; then
3005 if test "$with_gnu_ld" = no; then
3006 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
3007 else
3008 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` -o $lib'
3009 fi
3010 fi
3011 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3012 ;;
3013 esac
3014 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3015 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3016 ;;
3017 linux* | k*bsd*-gnu)
3018 case $cc_basename in
3019 KCC*)
3020 # Kuck and Associates, Inc. (KAI) C++ Compiler
3021
3022 # KCC will only create a shared library if the output file
3023 # ends with ".so" (or ".sl" for HP-UX), so rename the library
3024 # to its proper name (with version) after linking.
3025 _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 $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
3026 _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 $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib'
3027 # Commands to make compiler produce verbose output that lists
3028 # what "hidden" libraries, object files and flags are used when
3029 # linking a shared library.
3030 #
3031 # There doesn't appear to be a way to prevent this compiler from
3032 # explicitly linking system object files so we need to strip them
3033 # from the output so that they don't get included in the library
3034 # dependencies.
3035 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'
3036
3037 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir'
3038 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3039
3040 # Archives containing C++ object files must be created using
3041 # "CC -Bstatic", where "CC" is the KAI C++ compiler.
3042 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
3043 ;;
3044 icpc*)
3045 # Intel C++
3046 with_gnu_ld=yes
3047 # version 8.0 and above of icpc choke on multiply defined symbols
3048 # if we add $predep_objects and $postdep_objects, however 7.1 and
3049 # earlier do not add the objects themselves.
3050 case `$CC -V 2>&1` in
3051 *"Version 7."*)
3052 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
3053 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
3054 ;;
3055 *) # Version 8.0 or newer
3056 tmp_idyn=
3057 case $host_cpu in
3058 ia64*) tmp_idyn=' -i_dynamic';;
3059 esac
3060 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
3061 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
3062 ;;
3063 esac
3064 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3065 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3066 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3067 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
3068 ;;
3069 pgCC* | pgcpp*)
3070 # Portland Group C++ compiler
3071 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
3072 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib'
3073
3074 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
3075 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3076 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
3077 ;;
3078 cxx*)
3079 # Compaq C++
3080 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
3081 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols'
3082
3083 runpath_var=LD_RUN_PATH
3084 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
3085 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3086
3087 # Commands to make compiler produce verbose output that lists
3088 # what "hidden" libraries, object files and flags are used when
3089 # linking a shared library.
3090 #
3091 # There doesn't appear to be a way to prevent this compiler from
3092 # explicitly linking system object files so we need to strip them
3093 # from the output so that they don't get included in the library
3094 # dependencies.
3095 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'
3096 ;;
3097 *)
3098 case `$CC -V 2>&1 | sed 5q` in
3099 *Sun\ C*)
3100 # Sun C++ 5.9
3101 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
3102 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3103 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols'
3104 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3105 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
3106
3107 # Not sure whether something based on
3108 # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
3109 # would be better.
3110 output_verbose_link_cmd='echo'
3111
3112 # Archives containing C++ object files must be created using
3113 # "CC -xar", where "CC" is the Sun C++ compiler. This is
3114 # necessary to make sure instantiated templates are included
3115 # in the archive.
3116 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
3117 ;;
3118 esac
3119 ;;
3120 esac
3121 ;;
3122 lynxos*)
3123 # FIXME: insert proper C++ library support
3124 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3125 ;;
3126 m88k*)
3127 # FIXME: insert proper C++ library support
3128 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3129 ;;
3130 mvs*)
3131 case $cc_basename in
3132 cxx*)
3133 # FIXME: insert proper C++ library support
3134 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3135 ;;
3136 *)
3137 # FIXME: insert proper C++ library support
3138 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3139 ;;
3140 esac
3141 ;;
3142 netbsd* | netbsdelf*-gnu)
3143 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
3144 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
3145 wlarc=
3146 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3147 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3148 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3149 fi
3150 # Workaround some broken pre-1.5 toolchains
3151 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
3152 ;;
3153 openbsd2*)
3154 # C++ shared libraries are fairly broken
3155 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3156 ;;
3157 openbsd*)
3158 if test -f /usr/libexec/ld.so; then
3159 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3160 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3161 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
3162 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3163 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3164 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib'
3165 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
3166 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
3167 fi
3168 output_verbose_link_cmd='echo'
3169 else
3170 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3171 fi
3172 ;;
3173 osf3*)
3174 case $cc_basename in
3175 KCC*)
3176 # Kuck and Associates, Inc. (KAI) C++ Compiler
3177
3178 # KCC will only create a shared library if the output file
3179 # ends with ".so" (or ".sl" for HP-UX), so rename the library
3180 # to its proper name (with version) after linking.
3181 _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 $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
3182
3183 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3184 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3185
3186 # Archives containing C++ object files must be created using
3187 # "CC -Bstatic", where "CC" is the KAI C++ compiler.
3188 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
3189
3190 ;;
3191 RCC*)
3192 # Rational C++ 2.4.1
3193 # FIXME: insert proper C++ library support
3194 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3195 ;;
3196 cxx*)
3197 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3198 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
3199
3200 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3201 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3202
3203 # Commands to make compiler produce verbose output that lists
3204 # what "hidden" libraries, object files and flags are used when
3205 # linking a shared library.
3206 #
3207 # There doesn't appear to be a way to prevent this compiler from
3208 # explicitly linking system object files so we need to strip them
3209 # from the output so that they don't get included in the library
3210 # dependencies.
3211 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'
3212 ;;
3213 *)
3214 if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3215 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3216 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
3217
3218 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3219 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3220
3221 # Commands to make compiler produce verbose output that lists
3222 # what "hidden" libraries, object files and flags are used when
3223 # linking a shared library.
3224 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
3225
3226 else
3227 # FIXME: insert proper C++ library support
3228 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3229 fi
3230 ;;
3231 esac
3232 ;;
3233 osf4* | osf5*)
3234 case $cc_basename in
3235 KCC*)
3236 # Kuck and Associates, Inc. (KAI) C++ Compiler
3237
3238 # KCC will only create a shared library if the output file
3239 # ends with ".so" (or ".sl" for HP-UX), so rename the library
3240 # to its proper name (with version) after linking.
3241 _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 $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib'
3242
3243 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3244 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3245
3246 # Archives containing C++ object files must be created using
3247 # the KAI C++ compiler.
3248 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs'
3249 ;;
3250 RCC*)
3251 # Rational C++ 2.4.1
3252 # FIXME: insert proper C++ library support
3253 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3254 ;;
3255 cxx*)
3256 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
3257 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib'
3258 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
3259 echo "-hidden">> $lib.exp~
3260 $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname -Wl,-input -Wl,$lib.exp `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~
3261 $rm $lib.exp'
3262
3263 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
3264 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3265
3266 # Commands to make compiler produce verbose output that lists
3267 # what "hidden" libraries, object files and flags are used when
3268 # linking a shared library.
3269 #
3270 # There doesn't appear to be a way to prevent this compiler from
3271 # explicitly linking system object files so we need to strip them
3272 # from the output so that they don't get included in the library
3273 # dependencies.
3274 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'
3275 ;;
3276 *)
3277 if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3278 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3279 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
3280
3281 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3282 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3283
3284 # Commands to make compiler produce verbose output that lists
3285 # what "hidden" libraries, object files and flags are used when
3286 # linking a shared library.
3287 output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
3288
3289 else
3290 # FIXME: insert proper C++ library support
3291 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3292 fi
3293 ;;
3294 esac
3295 ;;
3296 psos*)
3297 # FIXME: insert proper C++ library support
3298 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3299 ;;
3300 sunos4*)
3301 case $cc_basename in
3302 CC*)
3303 # Sun C++ 4.x
3304 # FIXME: insert proper C++ library support
3305 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3306 ;;
3307 lcc*)
3308 # Lucid
3309 # FIXME: insert proper C++ library support
3310 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3311 ;;
3312 *)
3313 # FIXME: insert proper C++ library support
3314 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3315 ;;
3316 esac
3317 ;;
3318 solaris*)
3319 case $cc_basename in
3320 CC*)
3321 # Sun C++ 4.2, 5.x and Centerline C++
3322 _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes
3323 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
3324 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3325 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3326 $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3327
3328 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3329 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3330 case $host_os in
3331 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
3332 *)
3333 # The compiler driver will combine and reorder linker options,
3334 # but understands `-z linker_flag'.
3335 # Supported since Solaris 2.6 (maybe 2.5.1?)
3336 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
3337 ;;
3338 esac
3339 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3340
3341 output_verbose_link_cmd='echo'
3342
3343 # Archives containing C++ object files must be created using
3344 # "CC -xar", where "CC" is the Sun C++ compiler. This is
3345 # necessary to make sure instantiated templates are included
3346 # in the archive.
3347 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
3348 ;;
3349 gcx*)
3350 # Green Hills C++ Compiler
3351 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3352
3353 # The C++ compiler must be used to create the archive.
3354 _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
3355 ;;
3356 *)
3357 # GNU C++ compiler with Solaris linker
3358 if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3359 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
3360 if $CC --version | grep -v '^2\.7' > /dev/null; then
3361 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3362 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3363 $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3364
3365 # Commands to make compiler produce verbose output that lists
3366 # what "hidden" libraries, object files and flags are used when
3367 # linking a shared library.
3368 output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
3369 else
3370 # g++ 2.7 appears to require `-G' NOT `-shared' on this
3371 # platform.
3372 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3373 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3374 $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3375
3376 # Commands to make compiler produce verbose output that lists
3377 # what "hidden" libraries, object files and flags are used when
3378 # linking a shared library.
3379 output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
3380 fi
3381
3382 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
3383 case $host_os in
3384 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
3385 *)
3386 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
3387 ;;
3388 esac
3389 fi
3390 ;;
3391 esac
3392 ;;
3393 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
3394 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
3395 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3396 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3397 runpath_var='LD_RUN_PATH'
3398
3399 case $cc_basename in
3400 CC*)
3401 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3402 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3403 ;;
3404 *)
3405 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3406 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3407 ;;
3408 esac
3409 ;;
3410 sysv5* | sco3.2v5* | sco5v6*)
3411 # Note: We can NOT use -z defs as we might desire, because we do not
3412 # link with -lc, and that would cause any symbols used from libc to
3413 # always be unresolved, which means just about no library would
3414 # ever link correctly. If we're not using GNU ld we use -z text
3415 # though, which does catch some bad symbols but isn't as heavy-handed
3416 # as -z defs.
3417 # For security reasons, it is highly recommended that you always
3418 # use absolute paths for naming shared libraries, and exclude the
3419 # DT_RUNPATH tag from executables and libraries. But doing so
3420 # requires that you compile everything twice, which is a pain.
3421 # So that behaviour is only enabled if SCOABSPATH is set to a
3422 # non-empty value in the environment. Most likely only useful for
3423 # creating official distributions of packages.
3424 # This is a hack until libtool officially supports absolute path
3425 # names for shared libraries.
3426 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
3427 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
3428 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3429 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3430 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
3431 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
3432 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3433 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
3434 runpath_var='LD_RUN_PATH'
3435
3436 case $cc_basename in
3437 CC*)
3438 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
3439 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
3440 ;;
3441 *)
3442 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
3443 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
3444 ;;
3445 esac
3446 ;;
3447 tandem*)
3448 case $cc_basename in
3449 NCC*)
3450 # NonStop-UX NCC 3.20
3451 # FIXME: insert proper C++ library support
3452 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3453 ;;
3454 *)
3455 # FIXME: insert proper C++ library support
3456 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3457 ;;
3458 esac
3459 ;;
3460 vxworks*)
3461 # FIXME: insert proper C++ library support
3462 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3463 ;;
3464 *)
3465 # FIXME: insert proper C++ library support
3466 _LT_AC_TAGVAR(ld_shlibs, $1)=no
3467 ;;
3468esac
3469AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
3470test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
3471
3472_LT_AC_TAGVAR(GCC, $1)="$GXX"
3473_LT_AC_TAGVAR(LD, $1)="$LD"
3474
3475## CAVEAT EMPTOR:
3476## There is no encapsulation within the following macros, do not change
3477## the running order or otherwise move them around unless you know exactly
3478## what you are doing...
3479AC_LIBTOOL_POSTDEP_PREDEP($1)
3480AC_LIBTOOL_PROG_COMPILER_PIC($1)
3481AC_LIBTOOL_PROG_CC_C_O($1)
3482AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3483AC_LIBTOOL_PROG_LD_SHLIBS($1)
3484AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3485AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3486
3487AC_LIBTOOL_CONFIG($1)
3488
3489AC_LANG_POP
3490CC=$lt_save_CC
3491LDCXX=$LD
3492LD=$lt_save_LD
3493GCC=$lt_save_GCC
3494with_gnu_ldcxx=$with_gnu_ld
3495with_gnu_ld=$lt_save_with_gnu_ld
3496lt_cv_path_LDCXX=$lt_cv_path_LD
3497lt_cv_path_LD=$lt_save_path_LD
3498lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
3499lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
3500])
3501m4trace:/usr/share/aclocal/libtool.m4:3882: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [AC_REQUIRE([LT_AC_PROG_SED])dnl
3502dnl we can't use the lt_simple_compile_test_code here,
3503dnl because it contains code intended for an executable,
3504dnl not a library. It's possible we should let each
3505dnl tag define a new lt_????_link_test_code variable,
3506dnl but it's only used here...
3507ifelse([$1],[],[cat > conftest.$ac_ext <<EOF
3508int a;
3509void foo (void) { a = 0; }
3510EOF
3511],[$1],[CXX],[cat > conftest.$ac_ext <<EOF
3512class Foo
3513{
3514public:
3515 Foo (void) { a = 0; }
3516private:
3517 int a;
3518};
3519EOF
3520],[$1],[F77],[cat > conftest.$ac_ext <<EOF
3521 subroutine foo
3522 implicit none
3523 integer*4 a
3524 a=0
3525 return
3526 end
3527EOF
3528],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF
3529public class foo {
3530 private int a;
3531 public void bar (void) {
3532 a = 0;
3533 }
3534};
3535EOF
3536])
3537dnl Parse the compiler output and extract the necessary
3538dnl objects, libraries and library flags.
3539if AC_TRY_EVAL(ac_compile); then
3540 # Parse the compiler output and extract the necessary
3541 # objects, libraries and library flags.
3542
3543 # Sentinel used to keep track of whether or not we are before
3544 # the conftest object file.
3545 pre_test_object_deps_done=no
3546
3547 # The `*' in the case matches for architectures that use `case' in
3548 # $output_verbose_cmd can trigger glob expansion during the loop
3549 # eval without this substitution.
3550 output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`
3551
3552 for p in `eval $output_verbose_link_cmd`; do
3553 case $p in
3554
3555 -L* | -R* | -l*)
3556 # Some compilers place space between "-{L,R}" and the path.
3557 # Remove the space.
3558 if test $p = "-L" \
3559 || test $p = "-R"; then
3560 prev=$p
3561 continue
3562 else
3563 prev=
3564 fi
3565
3566 if test "$pre_test_object_deps_done" = no; then
3567 case $p in
3568 -L* | -R*)
3569 # Internal compiler library paths should come after those
3570 # provided the user. The postdeps already come after the
3571 # user supplied libs so there is no need to process them.
3572 if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
3573 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
3574 else
3575 _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
3576 fi
3577 ;;
3578 # The "-l" case would never come before the object being
3579 # linked, so don't bother handling this case.
3580 esac
3581 else
3582 if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then
3583 _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}"
3584 else
3585 _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}"
3586 fi
3587 fi
3588 ;;
3589
3590 *.$objext)
3591 # This assumes that the test object file only shows up
3592 # once in the compiler output.
3593 if test "$p" = "conftest.$objext"; then
3594 pre_test_object_deps_done=yes
3595 continue
3596 fi
3597
3598 if test "$pre_test_object_deps_done" = no; then
3599 if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then
3600 _LT_AC_TAGVAR(predep_objects, $1)="$p"
3601 else
3602 _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p"
3603 fi
3604 else
3605 if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then
3606 _LT_AC_TAGVAR(postdep_objects, $1)="$p"
3607 else
3608 _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p"
3609 fi
3610 fi
3611 ;;
3612
3613 *) ;; # Ignore the rest.
3614
3615 esac
3616 done
3617
3618 # Clean up.
3619 rm -f a.out a.exe
3620else
3621 echo "libtool.m4: error: problem compiling $1 test program"
3622fi
3623
3624$rm -f confest.$objext
3625
3626_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=
3627if test -n "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
3628 _LT_AC_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_AC_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'`
3629fi
3630
3631# PORTME: override above test on systems where it is broken
3632ifelse([$1],[CXX],
3633[case $host_os in
3634interix[[3-9]]*)
3635 # Interix 3.5 installs completely hosed .la files for C++, so rather than
3636 # hack all around it, let's just trust "g++" to DTRT.
3637 _LT_AC_TAGVAR(predep_objects,$1)=
3638 _LT_AC_TAGVAR(postdep_objects,$1)=
3639 _LT_AC_TAGVAR(postdeps,$1)=
3640 ;;
3641
3642linux*)
3643 case `$CC -V 2>&1 | sed 5q` in
3644 *Sun\ C*)
3645 # Sun C++ 5.9
3646 #
3647 # The more standards-conforming stlport4 library is
3648 # incompatible with the Cstd library. Avoid specifying
3649 # it if it's in CXXFLAGS. Ignore libCrun as
3650 # -library=stlport4 depends on it.
3651 case " $CXX $CXXFLAGS " in
3652 *" -library=stlport4 "*)
3653 solaris_use_stlport4=yes
3654 ;;
3655 esac
3656 if test "$solaris_use_stlport4" != yes; then
3657 _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
3658 fi
3659 ;;
3660 esac
3661 ;;
3662
3663solaris*)
3664 case $cc_basename in
3665 CC*)
3666 # The more standards-conforming stlport4 library is
3667 # incompatible with the Cstd library. Avoid specifying
3668 # it if it's in CXXFLAGS. Ignore libCrun as
3669 # -library=stlport4 depends on it.
3670 case " $CXX $CXXFLAGS " in
3671 *" -library=stlport4 "*)
3672 solaris_use_stlport4=yes
3673 ;;
3674 esac
3675
3676 # Adding this requires a known-good setup of shared libraries for
3677 # Sun compiler versions before 5.6, else PIC objects from an old
3678 # archive will be linked into the output, leading to subtle bugs.
3679 if test "$solaris_use_stlport4" != yes; then
3680 _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
3681 fi
3682 ;;
3683 esac
3684 ;;
3685esac
3686])
3687case " $_LT_AC_TAGVAR(postdeps, $1) " in
3688*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;;
3689esac
3690])
3691m4trace:/usr/share/aclocal/libtool.m4:4079: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
3692m4trace:/usr/share/aclocal/libtool.m4:4080: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77])
3693AC_LANG_PUSH(Fortran 77)
3694
3695_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3696_LT_AC_TAGVAR(allow_undefined_flag, $1)=
3697_LT_AC_TAGVAR(always_export_symbols, $1)=no
3698_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
3699_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
3700_LT_AC_TAGVAR(hardcode_direct, $1)=no
3701_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
3702_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
3703_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
3704_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
3705_LT_AC_TAGVAR(hardcode_automatic, $1)=no
3706_LT_AC_TAGVAR(module_cmds, $1)=
3707_LT_AC_TAGVAR(module_expsym_cmds, $1)=
3708_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
3709_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3710_LT_AC_TAGVAR(no_undefined_flag, $1)=
3711_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
3712_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
3713
3714# Source file extension for f77 test sources.
3715ac_ext=f
3716
3717# Object file extension for compiled f77 test sources.
3718objext=o
3719_LT_AC_TAGVAR(objext, $1)=$objext
3720
3721# Code to be used in simple compile tests
3722lt_simple_compile_test_code="\
3723 subroutine t
3724 return
3725 end
3726"
3727
3728# Code to be used in simple link tests
3729lt_simple_link_test_code="\
3730 program t
3731 end
3732"
3733
3734# ltmain only uses $CC for tagged configurations so make sure $CC is set.
3735_LT_AC_SYS_COMPILER
3736
3737# save warnings/boilerplate of simple test code
3738_LT_COMPILER_BOILERPLATE
3739_LT_LINKER_BOILERPLATE
3740
3741# Allow CC to be a program name with arguments.
3742lt_save_CC="$CC"
3743CC=${F77-"f77"}
3744compiler=$CC
3745_LT_AC_TAGVAR(compiler, $1)=$CC
3746_LT_CC_BASENAME([$compiler])
3747
3748AC_MSG_CHECKING([if libtool supports shared libraries])
3749AC_MSG_RESULT([$can_build_shared])
3750
3751AC_MSG_CHECKING([whether to build shared libraries])
3752test "$can_build_shared" = "no" && enable_shared=no
3753
3754# On AIX, shared libraries and static libraries use the same namespace, and
3755# are all built from PIC.
3756case $host_os in
3757aix3*)
3758 test "$enable_shared" = yes && enable_static=no
3759 if test -n "$RANLIB"; then
3760 archive_cmds="$archive_cmds~\$RANLIB \$lib"
3761 postinstall_cmds='$RANLIB $lib'
3762 fi
3763 ;;
3764aix[[4-9]]*)
3765 if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
3766 test "$enable_shared" = yes && enable_static=no
3767 fi
3768 ;;
3769esac
3770AC_MSG_RESULT([$enable_shared])
3771
3772AC_MSG_CHECKING([whether to build static libraries])
3773# Make sure either enable_shared or enable_static is yes.
3774test "$enable_shared" = yes || enable_static=yes
3775AC_MSG_RESULT([$enable_static])
3776
3777_LT_AC_TAGVAR(GCC, $1)="$G77"
3778_LT_AC_TAGVAR(LD, $1)="$LD"
3779
3780AC_LIBTOOL_PROG_COMPILER_PIC($1)
3781AC_LIBTOOL_PROG_CC_C_O($1)
3782AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3783AC_LIBTOOL_PROG_LD_SHLIBS($1)
3784AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3785AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3786
3787AC_LIBTOOL_CONFIG($1)
3788
3789AC_LANG_POP
3790CC="$lt_save_CC"
3791])
3792m4trace:/usr/share/aclocal/libtool.m4:4188: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
3793m4trace:/usr/share/aclocal/libtool.m4:4189: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE
3794
3795# Source file extension for Java test sources.
3796ac_ext=java
3797
3798# Object file extension for compiled Java test sources.
3799objext=o
3800_LT_AC_TAGVAR(objext, $1)=$objext
3801
3802# Code to be used in simple compile tests
3803lt_simple_compile_test_code="class foo {}"
3804
3805# Code to be used in simple link tests
3806lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
3807
3808# ltmain only uses $CC for tagged configurations so make sure $CC is set.
3809_LT_AC_SYS_COMPILER
3810
3811# save warnings/boilerplate of simple test code
3812_LT_COMPILER_BOILERPLATE
3813_LT_LINKER_BOILERPLATE
3814
3815# Allow CC to be a program name with arguments.
3816lt_save_CC="$CC"
3817CC=${GCJ-"gcj"}
3818compiler=$CC
3819_LT_AC_TAGVAR(compiler, $1)=$CC
3820_LT_CC_BASENAME([$compiler])
3821
3822# GCJ did not exist at the time GCC didn't implicitly link libc in.
3823_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3824
3825_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3826
3827## CAVEAT EMPTOR:
3828## There is no encapsulation within the following macros, do not change
3829## the running order or otherwise move them around unless you know exactly
3830## what you are doing...
3831AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
3832AC_LIBTOOL_PROG_COMPILER_PIC($1)
3833AC_LIBTOOL_PROG_CC_C_O($1)
3834AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3835AC_LIBTOOL_PROG_LD_SHLIBS($1)
3836AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3837AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3838
3839AC_LIBTOOL_CONFIG($1)
3840
3841AC_LANG_RESTORE
3842CC="$lt_save_CC"
3843])
3844m4trace:/usr/share/aclocal/libtool.m4:4248: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
3845m4trace:/usr/share/aclocal/libtool.m4:4249: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE
3846
3847# Source file extension for RC test sources.
3848ac_ext=rc
3849
3850# Object file extension for compiled RC test sources.
3851objext=o
3852_LT_AC_TAGVAR(objext, $1)=$objext
3853
3854# Code to be used in simple compile tests
3855lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
3856
3857# Code to be used in simple link tests
3858lt_simple_link_test_code="$lt_simple_compile_test_code"
3859
3860# ltmain only uses $CC for tagged configurations so make sure $CC is set.
3861_LT_AC_SYS_COMPILER
3862
3863# save warnings/boilerplate of simple test code
3864_LT_COMPILER_BOILERPLATE
3865_LT_LINKER_BOILERPLATE
3866
3867# Allow CC to be a program name with arguments.
3868lt_save_CC="$CC"
3869CC=${RC-"windres"}
3870compiler=$CC
3871_LT_AC_TAGVAR(compiler, $1)=$CC
3872_LT_CC_BASENAME([$compiler])
3873_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
3874
3875AC_LIBTOOL_CONFIG($1)
3876
3877AC_LANG_RESTORE
3878CC="$lt_save_CC"
3879])
3880m4trace:/usr/share/aclocal/libtool.m4:4293: -1- AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the
3881# libtool distribution, otherwise you forgot to ship ltmain.sh
3882# with your package, and you will get complaints that there are
3883# no rules to generate ltmain.sh.
3884if test -f "$ltmain"; then
3885 # See if we are running on zsh, and set the options which allow our commands through
3886 # without removal of \ escapes.
3887 if test -n "${ZSH_VERSION+set}" ; then
3888 setopt NO_GLOB_SUBST
3889 fi
3890 # Now quote all the things that may contain metacharacters while being
3891 # careful not to overquote the AC_SUBSTed values. We take copies of the
3892 # variables and quote the copies for generation of the libtool script.
3893 for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \
3894 SED SHELL STRIP \
3895 libname_spec library_names_spec soname_spec extract_expsyms_cmds \
3896 old_striplib striplib file_magic_cmd finish_cmds finish_eval \
3897 deplibs_check_method reload_flag reload_cmds need_locks \
3898 lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \
3899 lt_cv_sys_global_symbol_to_c_name_address \
3900 sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
3901 old_postinstall_cmds old_postuninstall_cmds \
3902 _LT_AC_TAGVAR(compiler, $1) \
3903 _LT_AC_TAGVAR(CC, $1) \
3904 _LT_AC_TAGVAR(LD, $1) \
3905 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \
3906 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \
3907 _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \
3908 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \
3909 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \
3910 _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \
3911 _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \
3912 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \
3913 _LT_AC_TAGVAR(old_archive_cmds, $1) \
3914 _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \
3915 _LT_AC_TAGVAR(predep_objects, $1) \
3916 _LT_AC_TAGVAR(postdep_objects, $1) \
3917 _LT_AC_TAGVAR(predeps, $1) \
3918 _LT_AC_TAGVAR(postdeps, $1) \
3919 _LT_AC_TAGVAR(compiler_lib_search_path, $1) \
3920 _LT_AC_TAGVAR(compiler_lib_search_dirs, $1) \
3921 _LT_AC_TAGVAR(archive_cmds, $1) \
3922 _LT_AC_TAGVAR(archive_expsym_cmds, $1) \
3923 _LT_AC_TAGVAR(postinstall_cmds, $1) \
3924 _LT_AC_TAGVAR(postuninstall_cmds, $1) \
3925 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \
3926 _LT_AC_TAGVAR(allow_undefined_flag, $1) \
3927 _LT_AC_TAGVAR(no_undefined_flag, $1) \
3928 _LT_AC_TAGVAR(export_symbols_cmds, $1) \
3929 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \
3930 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \
3931 _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \
3932 _LT_AC_TAGVAR(hardcode_automatic, $1) \
3933 _LT_AC_TAGVAR(module_cmds, $1) \
3934 _LT_AC_TAGVAR(module_expsym_cmds, $1) \
3935 _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \
3936 _LT_AC_TAGVAR(fix_srcfile_path, $1) \
3937 _LT_AC_TAGVAR(exclude_expsyms, $1) \
3938 _LT_AC_TAGVAR(include_expsyms, $1); do
3939
3940 case $var in
3941 _LT_AC_TAGVAR(old_archive_cmds, $1) | \
3942 _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \
3943 _LT_AC_TAGVAR(archive_cmds, $1) | \
3944 _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \
3945 _LT_AC_TAGVAR(module_cmds, $1) | \
3946 _LT_AC_TAGVAR(module_expsym_cmds, $1) | \
3947 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \
3948 _LT_AC_TAGVAR(export_symbols_cmds, $1) | \
3949 extract_expsyms_cmds | reload_cmds | finish_cmds | \
3950 postinstall_cmds | postuninstall_cmds | \
3951 old_postinstall_cmds | old_postuninstall_cmds | \
3952 sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
3953 # Double-quote double-evaled strings.
3954 eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
3955 ;;
3956 *)
3957 eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
3958 ;;
3959 esac
3960 done
3961
3962 case $lt_echo in
3963 *'\[$]0 --fallback-echo"')
3964 lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
3965 ;;
3966 esac
3967
3968ifelse([$1], [],
3969 [cfgfile="${ofile}T"
3970 trap "$rm \"$cfgfile\"; exit 1" 1 2 15
3971 $rm -f "$cfgfile"
3972 AC_MSG_NOTICE([creating $ofile])],
3973 [cfgfile="$ofile"])
3974
3975 cat <<__EOF__ >> "$cfgfile"
3976ifelse([$1], [],
3977[#! $SHELL
3978
3979# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
3980# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
3981# NOTE: Changes made to this file will be lost: look at ltmain.sh.
3982#
3983# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
3984# Free Software Foundation, Inc.
3985#
3986# This file is part of GNU Libtool:
3987# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
3988#
3989# This program is free software; you can redistribute it and/or modify
3990# it under the terms of the GNU General Public License as published by
3991# the Free Software Foundation; either version 2 of the License, or
3992# (at your option) any later version.
3993#
3994# This program is distributed in the hope that it will be useful, but
3995# WITHOUT ANY WARRANTY; without even the implied warranty of
3996# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
3997# General Public License for more details.
3998#
3999# You should have received a copy of the GNU General Public License
4000# along with this program; if not, write to the Free Software
4001# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
4002#
4003# As a special exception to the GNU General Public License, if you
4004# distribute this file as part of a program that contains a
4005# configuration script generated by Autoconf, you may include it under
4006# the same distribution terms that you use for the rest of that program.
4007
4008# A sed program that does not truncate output.
4009SED=$lt_SED
4010
4011# Sed that helps us avoid accidentally triggering echo(1) options like -n.
4012Xsed="$SED -e 1s/^X//"
4013
4014# The HP-UX ksh and POSIX shell print the target directory to stdout
4015# if CDPATH is set.
4016(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
4017
4018# The names of the tagged configurations supported by this script.
4019available_tags=
4020
4021# ### BEGIN LIBTOOL CONFIG],
4022[# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
4023
4024# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
4025
4026# Shell to use when invoking shell scripts.
4027SHELL=$lt_SHELL
4028
4029# Whether or not to build shared libraries.
4030build_libtool_libs=$enable_shared
4031
4032# Whether or not to build static libraries.
4033build_old_libs=$enable_static
4034
4035# Whether or not to add -lc for building shared libraries.
4036build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
4037
4038# Whether or not to disallow shared libs when runtime libs are static
4039allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
4040
4041# Whether or not to optimize for fast installation.
4042fast_install=$enable_fast_install
4043
4044# The host system.
4045host_alias=$host_alias
4046host=$host
4047host_os=$host_os
4048
4049# The build system.
4050build_alias=$build_alias
4051build=$build
4052build_os=$build_os
4053
4054# An echo program that does not interpret backslashes.
4055echo=$lt_echo
4056
4057# The archiver.
4058AR=$lt_AR
4059AR_FLAGS=$lt_AR_FLAGS
4060
4061# A C compiler.
4062LTCC=$lt_LTCC
4063
4064# LTCC compiler flags.
4065LTCFLAGS=$lt_LTCFLAGS
4066
4067# A language-specific compiler.
4068CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
4069
4070# Is the compiler the GNU C compiler?
4071with_gcc=$_LT_AC_TAGVAR(GCC, $1)
4072
4073# An ERE matcher.
4074EGREP=$lt_EGREP
4075
4076# The linker used to build libraries.
4077LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
4078
4079# Whether we need hard or soft links.
4080LN_S=$lt_LN_S
4081
4082# A BSD-compatible nm program.
4083NM=$lt_NM
4084
4085# A symbol stripping program
4086STRIP=$lt_STRIP
4087
4088# Used to examine libraries when file_magic_cmd begins "file"
4089MAGIC_CMD=$MAGIC_CMD
4090
4091# Used on cygwin: DLL creation program.
4092DLLTOOL="$DLLTOOL"
4093
4094# Used on cygwin: object dumper.
4095OBJDUMP="$OBJDUMP"
4096
4097# Used on cygwin: assembler.
4098AS="$AS"
4099
4100# The name of the directory that contains temporary libtool files.
4101objdir=$objdir
4102
4103# How to create reloadable object files.
4104reload_flag=$lt_reload_flag
4105reload_cmds=$lt_reload_cmds
4106
4107# How to pass a linker flag through the compiler.
4108wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
4109
4110# Object file suffix (normally "o").
4111objext="$ac_objext"
4112
4113# Old archive suffix (normally "a").
4114libext="$libext"
4115
4116# Shared library suffix (normally ".so").
4117shrext_cmds='$shrext_cmds'
4118
4119# Executable file suffix (normally "").
4120exeext="$exeext"
4121
4122# Additional compiler flags for building library objects.
4123pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
4124pic_mode=$pic_mode
4125
4126# What is the maximum length of a command?
4127max_cmd_len=$lt_cv_sys_max_cmd_len
4128
4129# Does compiler simultaneously support -c and -o options?
4130compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
4131
4132# Must we lock files when doing compilation?
4133need_locks=$lt_need_locks
4134
4135# Do we need the lib prefix for modules?
4136need_lib_prefix=$need_lib_prefix
4137
4138# Do we need a version for libraries?
4139need_version=$need_version
4140
4141# Whether dlopen is supported.
4142dlopen_support=$enable_dlopen
4143
4144# Whether dlopen of programs is supported.
4145dlopen_self=$enable_dlopen_self
4146
4147# Whether dlopen of statically linked programs is supported.
4148dlopen_self_static=$enable_dlopen_self_static
4149
4150# Compiler flag to prevent dynamic linking.
4151link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
4152
4153# Compiler flag to turn off builtin functions.
4154no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
4155
4156# Compiler flag to allow reflexive dlopens.
4157export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
4158
4159# Compiler flag to generate shared objects directly from archives.
4160whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
4161
4162# Compiler flag to generate thread-safe objects.
4163thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
4164
4165# Library versioning type.
4166version_type=$version_type
4167
4168# Format of library name prefix.
4169libname_spec=$lt_libname_spec
4170
4171# List of archive names. First name is the real one, the rest are links.
4172# The last name is the one that the linker finds with -lNAME.
4173library_names_spec=$lt_library_names_spec
4174
4175# The coded name of the library, if different from the real name.
4176soname_spec=$lt_soname_spec
4177
4178# Commands used to build and install an old-style archive.
4179RANLIB=$lt_RANLIB
4180old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
4181old_postinstall_cmds=$lt_old_postinstall_cmds
4182old_postuninstall_cmds=$lt_old_postuninstall_cmds
4183
4184# Create an old-style archive from a shared archive.
4185old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
4186
4187# Create a temporary old-style archive to link instead of a shared archive.
4188old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
4189
4190# Commands used to build and install a shared archive.
4191archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
4192archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
4193postinstall_cmds=$lt_postinstall_cmds
4194postuninstall_cmds=$lt_postuninstall_cmds
4195
4196# Commands used to build a loadable module (assumed same as above if empty)
4197module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
4198module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
4199
4200# Commands to strip libraries.
4201old_striplib=$lt_old_striplib
4202striplib=$lt_striplib
4203
4204# Dependencies to place before the objects being linked to create a
4205# shared library.
4206predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
4207
4208# Dependencies to place after the objects being linked to create a
4209# shared library.
4210postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
4211
4212# Dependencies to place before the objects being linked to create a
4213# shared library.
4214predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
4215
4216# Dependencies to place after the objects being linked to create a
4217# shared library.
4218postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
4219
4220# The directories searched by this compiler when creating a shared
4221# library
4222compiler_lib_search_dirs=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_dirs, $1)
4223
4224# The library search path used internally by the compiler when linking
4225# a shared library.
4226compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
4227
4228# Method to check whether dependent libraries are shared objects.
4229deplibs_check_method=$lt_deplibs_check_method
4230
4231# Command to use when deplibs_check_method == file_magic.
4232file_magic_cmd=$lt_file_magic_cmd
4233
4234# Flag that allows shared libraries with undefined symbols to be built.
4235allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
4236
4237# Flag that forces no undefined symbols.
4238no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
4239
4240# Commands used to finish a libtool library installation in a directory.
4241finish_cmds=$lt_finish_cmds
4242
4243# Same as above, but a single script fragment to be evaled but not shown.
4244finish_eval=$lt_finish_eval
4245
4246# Take the output of nm and produce a listing of raw symbols and C names.
4247global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
4248
4249# Transform the output of nm in a proper C declaration
4250global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
4251
4252# Transform the output of nm in a C name address pair
4253global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
4254
4255# This is the shared library runtime path variable.
4256runpath_var=$runpath_var
4257
4258# This is the shared library path variable.
4259shlibpath_var=$shlibpath_var
4260
4261# Is shlibpath searched before the hard-coded library search path?
4262shlibpath_overrides_runpath=$shlibpath_overrides_runpath
4263
4264# How to hardcode a shared library path into an executable.
4265hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
4266
4267# Whether we should hardcode library paths into libraries.
4268hardcode_into_libs=$hardcode_into_libs
4269
4270# Flag to hardcode \$libdir into a binary during linking.
4271# This must work even if \$libdir does not exist.
4272hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
4273
4274# If ld is used when linking, flag to hardcode \$libdir into
4275# a binary during linking. This must work even if \$libdir does
4276# not exist.
4277hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
4278
4279# Whether we need a single -rpath flag with a separated argument.
4280hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
4281
4282# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
4283# resulting binary.
4284hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
4285
4286# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
4287# resulting binary.
4288hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
4289
4290# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
4291# the resulting binary.
4292hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
4293
4294# Set to yes if building a shared library automatically hardcodes DIR into the library
4295# and all subsequent libraries and executables linked against it.
4296hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
4297
4298# Variables whose values should be saved in libtool wrapper scripts and
4299# restored at relink time.
4300variables_saved_for_relink="$variables_saved_for_relink"
4301
4302# Whether libtool must link a program against all its dependency libraries.
4303link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
4304
4305# Compile-time system search path for libraries
4306sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
4307
4308# Run-time system search path for libraries
4309sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
4310
4311# Fix the shell variable \$srcfile for the compiler.
4312fix_srcfile_path=$lt_fix_srcfile_path
4313
4314# Set to yes if exported symbols are required.
4315always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
4316
4317# The commands to list exported symbols.
4318export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
4319
4320# The commands to extract the exported symbol list from a shared archive.
4321extract_expsyms_cmds=$lt_extract_expsyms_cmds
4322
4323# Symbols that should not be listed in the preloaded symbols.
4324exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
4325
4326# Symbols that must always be exported.
4327include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
4328
4329ifelse([$1],[],
4330[# ### END LIBTOOL CONFIG],
4331[# ### END LIBTOOL TAG CONFIG: $tagname])
4332
4333__EOF__
4334
4335ifelse([$1],[], [
4336 case $host_os in
4337 aix3*)
4338 cat <<\EOF >> "$cfgfile"
4339
4340# AIX sometimes has problems with the GCC collect2 program. For some
4341# reason, if we set the COLLECT_NAMES environment variable, the problems
4342# vanish in a puff of smoke.
4343if test "X${COLLECT_NAMES+set}" != Xset; then
4344 COLLECT_NAMES=
4345 export COLLECT_NAMES
4346fi
4347EOF
4348 ;;
4349 esac
4350
4351 # We use sed instead of cat because bash on DJGPP gets confused if
4352 # if finds mixed CR/LF and LF-only lines. Since sed operates in
4353 # text mode, it properly converts lines to CR/LF. This bash problem
4354 # is reportedly fixed, but why not run on old versions too?
4355 sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
4356
4357 mv -f "$cfgfile" "$ofile" || \
4358 (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
4359 chmod +x "$ofile"
4360])
4361else
4362 # If there is no Makefile yet, we rely on a make rule to execute
4363 # `config.status --recheck' to rerun these tests and create the
4364 # libtool script then.
4365 ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
4366 if test -f "$ltmain_in"; then
4367 test -f Makefile && make "$ltmain"
4368 fi
4369fi
4370])
4371m4trace:/usr/share/aclocal/libtool.m4:4789: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
4372
4373_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
4374
4375if test "$GCC" = yes; then
4376 _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
4377
4378 AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
4379 lt_cv_prog_compiler_rtti_exceptions,
4380 [-fno-rtti -fno-exceptions], [],
4381 [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
4382fi
4383])
4384m4trace:/usr/share/aclocal/libtool.m4:4807: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST])
4385AC_REQUIRE([LT_AC_PROG_SED])
4386AC_REQUIRE([AC_PROG_NM])
4387AC_REQUIRE([AC_OBJEXT])
4388# Check for command to grab the raw symbol name followed by C symbol from nm.
4389AC_MSG_CHECKING([command to parse $NM output from $compiler object])
4390AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
4391[
4392# These are sane defaults that work on at least a few old systems.
4393# [They come from Ultrix. What could be older than Ultrix?!! ;)]
4394
4395# Character class describing NM global symbol codes.
4396symcode='[[BCDEGRST]]'
4397
4398# Regexp to match symbols that can be accessed directly from C.
4399sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
4400
4401# Transform an extracted symbol line into a proper C declaration
4402lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
4403
4404# Transform an extracted symbol line into symbol name and symbol address
4405lt_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'"
4406
4407# Define system-specific variables.
4408case $host_os in
4409aix*)
4410 symcode='[[BCDT]]'
4411 ;;
4412cygwin* | mingw* | pw32*)
4413 symcode='[[ABCDGISTW]]'
4414 ;;
4415hpux*) # Its linker distinguishes data from code symbols
4416 if test "$host_cpu" = ia64; then
4417 symcode='[[ABCDEGRST]]'
4418 fi
4419 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4420 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'"
4421 ;;
4422linux* | k*bsd*-gnu)
4423 if test "$host_cpu" = ia64; then
4424 symcode='[[ABCDGIRSTW]]'
4425 lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4426 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'"
4427 fi
4428 ;;
4429irix* | nonstopux*)
4430 symcode='[[BCDEGRST]]'
4431 ;;
4432osf*)
4433 symcode='[[BCDEGQRST]]'
4434 ;;
4435solaris*)
4436 symcode='[[BDRT]]'
4437 ;;
4438sco3.2v5*)
4439 symcode='[[DT]]'
4440 ;;
4441sysv4.2uw2*)
4442 symcode='[[DT]]'
4443 ;;
4444sysv5* | sco5v6* | unixware* | OpenUNIX*)
4445 symcode='[[ABDT]]'
4446 ;;
4447sysv4)
4448 symcode='[[DFNSTU]]'
4449 ;;
4450esac
4451
4452# Handle CRLF in mingw tool chain
4453opt_cr=
4454case $build_os in
4455mingw*)
4456 opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
4457 ;;
4458esac
4459
4460# If we're using GNU nm, then use its standard symbol codes.
4461case `$NM -V 2>&1` in
4462*GNU* | *'with BFD'*)
4463 symcode='[[ABCDGIRSTW]]' ;;
4464esac
4465
4466# Try without a prefix undercore, then with it.
4467for ac_symprfx in "" "_"; do
4468
4469 # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
4470 symxfrm="\\1 $ac_symprfx\\2 \\2"
4471
4472 # Write the raw and C identifiers.
4473 lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
4474
4475 # Check to see that the pipe works correctly.
4476 pipe_works=no
4477
4478 rm -f conftest*
4479 cat > conftest.$ac_ext <<EOF
4480#ifdef __cplusplus
4481extern "C" {
4482#endif
4483char nm_test_var;
4484void nm_test_func(){}
4485#ifdef __cplusplus
4486}
4487#endif
4488int main(){nm_test_var='a';nm_test_func();return(0);}
4489EOF
4490
4491 if AC_TRY_EVAL(ac_compile); then
4492 # Now try to grab the symbols.
4493 nlist=conftest.nm
4494 if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
4495 # Try sorting and uniquifying the output.
4496 if sort "$nlist" | uniq > "$nlist"T; then
4497 mv -f "$nlist"T "$nlist"
4498 else
4499 rm -f "$nlist"T
4500 fi
4501
4502 # Make sure that we snagged all the symbols we need.
4503 if grep ' nm_test_var$' "$nlist" >/dev/null; then
4504 if grep ' nm_test_func$' "$nlist" >/dev/null; then
4505 cat <<EOF > conftest.$ac_ext
4506#ifdef __cplusplus
4507extern "C" {
4508#endif
4509
4510EOF
4511 # Now generate the symbol file.
4512 eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
4513
4514 cat <<EOF >> conftest.$ac_ext
4515#if defined (__STDC__) && __STDC__
4516# define lt_ptr_t void *
4517#else
4518# define lt_ptr_t char *
4519# define const
4520#endif
4521
4522/* The mapping between symbol names and symbols. */
4523const struct {
4524 const char *name;
4525 lt_ptr_t address;
4526}
4527lt_preloaded_symbols[[]] =
4528{
4529EOF
4530 $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
4531 cat <<\EOF >> conftest.$ac_ext
4532 {0, (lt_ptr_t) 0}
4533};
4534
4535#ifdef __cplusplus
4536}
4537#endif
4538EOF
4539 # Now try linking the two files.
4540 mv conftest.$ac_objext conftstm.$ac_objext
4541 lt_save_LIBS="$LIBS"
4542 lt_save_CFLAGS="$CFLAGS"
4543 LIBS="conftstm.$ac_objext"
4544 CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
4545 if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
4546 pipe_works=yes
4547 fi
4548 LIBS="$lt_save_LIBS"
4549 CFLAGS="$lt_save_CFLAGS"
4550 else
4551 echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
4552 fi
4553 else
4554 echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
4555 fi
4556 else
4557 echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
4558 fi
4559 else
4560 echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
4561 cat conftest.$ac_ext >&5
4562 fi
4563 rm -rf conftest* conftst*
4564
4565 # Do not use the global_symbol_pipe unless it works.
4566 if test "$pipe_works" = yes; then
4567 break
4568 else
4569 lt_cv_sys_global_symbol_pipe=
4570 fi
4571done
4572])
4573if test -z "$lt_cv_sys_global_symbol_pipe"; then
4574 lt_cv_sys_global_symbol_to_cdecl=
4575fi
4576if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
4577 AC_MSG_RESULT(failed)
4578else
4579 AC_MSG_RESULT(ok)
4580fi
4581])
4582m4trace:/usr/share/aclocal/libtool.m4:5010: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
4583_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4584_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
4585
4586AC_MSG_CHECKING([for $compiler option to produce PIC])
4587 ifelse([$1],[CXX],[
4588 # C++ specific cases for pic, static, wl, etc.
4589 if test "$GXX" = yes; then
4590 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4591 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4592
4593 case $host_os in
4594 aix*)
4595 # All AIX code is PIC.
4596 if test "$host_cpu" = ia64; then
4597 # AIX 5 now supports IA64 processor
4598 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4599 fi
4600 ;;
4601 amigaos*)
4602 # FIXME: we need at least 68020 code to build shared libraries, but
4603 # adding the `-m68020' flag to GCC prevents building anything better,
4604 # like `-m68040'.
4605 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4606 ;;
4607 beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4608 # PIC is the default for these OSes.
4609 ;;
4610 mingw* | cygwin* | os2* | pw32*)
4611 # This hack is so that the source file can tell whether it is being
4612 # built for inclusion in a dll (and should export symbols for example).
4613 # Although the cygwin gcc ignores -fPIC, still need this for old-style
4614 # (--disable-auto-import) libraries
4615 m4_if([$1], [GCJ], [],
4616 [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4617 ;;
4618 darwin* | rhapsody*)
4619 # PIC is the default on this platform
4620 # Common symbols not allowed in MH_DYLIB files
4621 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4622 ;;
4623 *djgpp*)
4624 # DJGPP does not support shared libraries at all
4625 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4626 ;;
4627 interix[[3-9]]*)
4628 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4629 # Instead, we relocate shared libraries at runtime.
4630 ;;
4631 sysv4*MP*)
4632 if test -d /usr/nec; then
4633 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4634 fi
4635 ;;
4636 hpux*)
4637 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4638 # not for PA HP-UX.
4639 case $host_cpu in
4640 hppa*64*|ia64*)
4641 ;;
4642 *)
4643 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4644 ;;
4645 esac
4646 ;;
4647 *)
4648 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4649 ;;
4650 esac
4651 else
4652 case $host_os in
4653 aix[[4-9]]*)
4654 # All AIX code is PIC.
4655 if test "$host_cpu" = ia64; then
4656 # AIX 5 now supports IA64 processor
4657 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4658 else
4659 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4660 fi
4661 ;;
4662 chorus*)
4663 case $cc_basename in
4664 cxch68*)
4665 # Green Hills C++ Compiler
4666 # _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"
4667 ;;
4668 esac
4669 ;;
4670 darwin*)
4671 # PIC is the default on this platform
4672 # Common symbols not allowed in MH_DYLIB files
4673 case $cc_basename in
4674 xlc*)
4675 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
4676 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4677 ;;
4678 esac
4679 ;;
4680 dgux*)
4681 case $cc_basename in
4682 ec++*)
4683 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4684 ;;
4685 ghcx*)
4686 # Green Hills C++ Compiler
4687 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4688 ;;
4689 *)
4690 ;;
4691 esac
4692 ;;
4693 freebsd* | dragonfly*)
4694 # FreeBSD uses GNU C++
4695 ;;
4696 hpux9* | hpux10* | hpux11*)
4697 case $cc_basename in
4698 CC*)
4699 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4700 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4701 if test "$host_cpu" != ia64; then
4702 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4703 fi
4704 ;;
4705 aCC*)
4706 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4707 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4708 case $host_cpu in
4709 hppa*64*|ia64*)
4710 # +Z the default
4711 ;;
4712 *)
4713 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4714 ;;
4715 esac
4716 ;;
4717 *)
4718 ;;
4719 esac
4720 ;;
4721 interix*)
4722 # This is c89, which is MS Visual C++ (no shared libs)
4723 # Anyone wants to do a port?
4724 ;;
4725 irix5* | irix6* | nonstopux*)
4726 case $cc_basename in
4727 CC*)
4728 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4729 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4730 # CC pic flag -KPIC is the default.
4731 ;;
4732 *)
4733 ;;
4734 esac
4735 ;;
4736 linux* | k*bsd*-gnu)
4737 case $cc_basename in
4738 KCC*)
4739 # KAI C++ Compiler
4740 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4741 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4742 ;;
4743 icpc* | ecpc*)
4744 # Intel C++
4745 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4746 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4747 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4748 ;;
4749 pgCC* | pgcpp*)
4750 # Portland Group C++ compiler.
4751 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4752 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4753 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4754 ;;
4755 cxx*)
4756 # Compaq C++
4757 # Make sure the PIC flag is empty. It appears that all Alpha
4758 # Linux and Compaq Tru64 Unix objects are PIC.
4759 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4760 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4761 ;;
4762 *)
4763 case `$CC -V 2>&1 | sed 5q` in
4764 *Sun\ C*)
4765 # Sun C++ 5.9
4766 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4767 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4768 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4769 ;;
4770 esac
4771 ;;
4772 esac
4773 ;;
4774 lynxos*)
4775 ;;
4776 m88k*)
4777 ;;
4778 mvs*)
4779 case $cc_basename in
4780 cxx*)
4781 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
4782 ;;
4783 *)
4784 ;;
4785 esac
4786 ;;
4787 netbsd* | netbsdelf*-gnu)
4788 ;;
4789 osf3* | osf4* | osf5*)
4790 case $cc_basename in
4791 KCC*)
4792 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4793 ;;
4794 RCC*)
4795 # Rational C++ 2.4.1
4796 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4797 ;;
4798 cxx*)
4799 # Digital/Compaq C++
4800 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4801 # Make sure the PIC flag is empty. It appears that all Alpha
4802 # Linux and Compaq Tru64 Unix objects are PIC.
4803 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4804 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4805 ;;
4806 *)
4807 ;;
4808 esac
4809 ;;
4810 psos*)
4811 ;;
4812 solaris*)
4813 case $cc_basename in
4814 CC*)
4815 # Sun C++ 4.2, 5.x and Centerline C++
4816 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4817 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4818 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4819 ;;
4820 gcx*)
4821 # Green Hills C++ Compiler
4822 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4823 ;;
4824 *)
4825 ;;
4826 esac
4827 ;;
4828 sunos4*)
4829 case $cc_basename in
4830 CC*)
4831 # Sun C++ 4.x
4832 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4833 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4834 ;;
4835 lcc*)
4836 # Lucid
4837 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4838 ;;
4839 *)
4840 ;;
4841 esac
4842 ;;
4843 tandem*)
4844 case $cc_basename in
4845 NCC*)
4846 # NonStop-UX NCC 3.20
4847 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4848 ;;
4849 *)
4850 ;;
4851 esac
4852 ;;
4853 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
4854 case $cc_basename in
4855 CC*)
4856 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4857 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4858 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4859 ;;
4860 esac
4861 ;;
4862 vxworks*)
4863 ;;
4864 *)
4865 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4866 ;;
4867 esac
4868 fi
4869],
4870[
4871 if test "$GCC" = yes; then
4872 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4873 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4874
4875 case $host_os in
4876 aix*)
4877 # All AIX code is PIC.
4878 if test "$host_cpu" = ia64; then
4879 # AIX 5 now supports IA64 processor
4880 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4881 fi
4882 ;;
4883
4884 amigaos*)
4885 # FIXME: we need at least 68020 code to build shared libraries, but
4886 # adding the `-m68020' flag to GCC prevents building anything better,
4887 # like `-m68040'.
4888 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4889 ;;
4890
4891 beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4892 # PIC is the default for these OSes.
4893 ;;
4894
4895 mingw* | cygwin* | pw32* | os2*)
4896 # This hack is so that the source file can tell whether it is being
4897 # built for inclusion in a dll (and should export symbols for example).
4898 # Although the cygwin gcc ignores -fPIC, still need this for old-style
4899 # (--disable-auto-import) libraries
4900 m4_if([$1], [GCJ], [],
4901 [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4902 ;;
4903
4904 darwin* | rhapsody*)
4905 # PIC is the default on this platform
4906 # Common symbols not allowed in MH_DYLIB files
4907 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4908 ;;
4909
4910 interix[[3-9]]*)
4911 # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4912 # Instead, we relocate shared libraries at runtime.
4913 ;;
4914
4915 msdosdjgpp*)
4916 # Just because we use GCC doesn't mean we suddenly get shared libraries
4917 # on systems that don't support them.
4918 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4919 enable_shared=no
4920 ;;
4921
4922 sysv4*MP*)
4923 if test -d /usr/nec; then
4924 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4925 fi
4926 ;;
4927
4928 hpux*)
4929 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4930 # not for PA HP-UX.
4931 case $host_cpu in
4932 hppa*64*|ia64*)
4933 # +Z the default
4934 ;;
4935 *)
4936 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4937 ;;
4938 esac
4939 ;;
4940
4941 *)
4942 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4943 ;;
4944 esac
4945 else
4946 # PORTME Check for flag to pass linker flags through the system compiler.
4947 case $host_os in
4948 aix*)
4949 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4950 if test "$host_cpu" = ia64; then
4951 # AIX 5 now supports IA64 processor
4952 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4953 else
4954 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4955 fi
4956 ;;
4957 darwin*)
4958 # PIC is the default on this platform
4959 # Common symbols not allowed in MH_DYLIB files
4960 case $cc_basename in
4961 xlc*)
4962 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
4963 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4964 ;;
4965 esac
4966 ;;
4967
4968 mingw* | cygwin* | pw32* | os2*)
4969 # This hack is so that the source file can tell whether it is being
4970 # built for inclusion in a dll (and should export symbols for example).
4971 m4_if([$1], [GCJ], [],
4972 [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'])
4973 ;;
4974
4975 hpux9* | hpux10* | hpux11*)
4976 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4977 # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4978 # not for PA HP-UX.
4979 case $host_cpu in
4980 hppa*64*|ia64*)
4981 # +Z the default
4982 ;;
4983 *)
4984 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4985 ;;
4986 esac
4987 # Is there a better lt_prog_compiler_static that works with the bundled CC?
4988 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4989 ;;
4990
4991 irix5* | irix6* | nonstopux*)
4992 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4993 # PIC (with -KPIC) is the default.
4994 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4995 ;;
4996
4997 newsos6)
4998 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4999 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5000 ;;
5001
5002 linux* | k*bsd*-gnu)
5003 case $cc_basename in
5004 icc* | ecc*)
5005 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5006 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5007 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
5008 ;;
5009 pgcc* | pgf77* | pgf90* | pgf95*)
5010 # Portland Group compilers (*not* the Pentium gcc compiler,
5011 # which looks to be a dead project)
5012 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5013 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
5014 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5015 ;;
5016 ccc*)
5017 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5018 # All Alpha code is PIC.
5019 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5020 ;;
5021 *)
5022 case `$CC -V 2>&1 | sed 5q` in
5023 *Sun\ C*)
5024 # Sun C 5.9
5025 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5026 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5027 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5028 ;;
5029 *Sun\ F*)
5030 # Sun Fortran 8.3 passes all unrecognized flags to the linker
5031 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5032 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5033 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=''
5034 ;;
5035 esac
5036 ;;
5037 esac
5038 ;;
5039
5040 osf3* | osf4* | osf5*)
5041 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5042 # All OSF/1 code is PIC.
5043 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5044 ;;
5045
5046 rdos*)
5047 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
5048 ;;
5049
5050 solaris*)
5051 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5052 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5053 case $cc_basename in
5054 f77* | f90* | f95*)
5055 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
5056 *)
5057 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
5058 esac
5059 ;;
5060
5061 sunos4*)
5062 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
5063 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
5064 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5065 ;;
5066
5067 sysv4 | sysv4.2uw2* | sysv4.3*)
5068 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5069 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5070 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5071 ;;
5072
5073 sysv4*MP*)
5074 if test -d /usr/nec ;then
5075 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
5076 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5077 fi
5078 ;;
5079
5080 sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
5081 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5082 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5083 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5084 ;;
5085
5086 unicos*)
5087 _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5088 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5089 ;;
5090
5091 uts4*)
5092 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5093 _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5094 ;;
5095
5096 *)
5097 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5098 ;;
5099 esac
5100 fi
5101])
5102AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
5103
5104#
5105# Check to make sure the PIC flag actually works.
5106#
5107if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
5108 AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
5109 _LT_AC_TAGVAR(lt_cv_prog_compiler_pic_works, $1),
5110 [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
5111 [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
5112 "" | " "*) ;;
5113 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
5114 esac],
5115 [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5116 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
5117fi
5118case $host_os in
5119 # For platforms which do not support PIC, -DPIC is meaningless:
5120 *djgpp*)
5121 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5122 ;;
5123 *)
5124 _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
5125 ;;
5126esac
5127
5128#
5129# Check to make sure the static flag actually works.
5130#
5131wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\"
5132AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
5133 _LT_AC_TAGVAR(lt_cv_prog_compiler_static_works, $1),
5134 $lt_tmp_static_flag,
5135 [],
5136 [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
5137])
5138m4trace:/usr/share/aclocal/libtool.m4:5572: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_REQUIRE([LT_AC_PROG_SED])dnl
5139AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
5140ifelse([$1],[CXX],[
5141 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5142 case $host_os in
5143 aix[[4-9]]*)
5144 # If we're using GNU nm, then we don't want the "-C" option.
5145 # -C means demangle to AIX nm, but means don't demangle with GNU nm
5146 if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
5147 _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'
5148 else
5149 _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'
5150 fi
5151 ;;
5152 pw32*)
5153 _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
5154 ;;
5155 cygwin* | mingw*)
5156 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
5157 ;;
5158 linux* | k*bsd*-gnu)
5159 _LT_AC_TAGVAR(link_all_deplibs, $1)=no
5160 ;;
5161 *)
5162 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5163 ;;
5164 esac
5165 _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
5166],[
5167 runpath_var=
5168 _LT_AC_TAGVAR(allow_undefined_flag, $1)=
5169 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
5170 _LT_AC_TAGVAR(archive_cmds, $1)=
5171 _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
5172 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
5173 _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
5174 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5175 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5176 _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
5177 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5178 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
5179 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5180 _LT_AC_TAGVAR(hardcode_direct, $1)=no
5181 _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
5182 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5183 _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
5184 _LT_AC_TAGVAR(hardcode_automatic, $1)=no
5185 _LT_AC_TAGVAR(module_cmds, $1)=
5186 _LT_AC_TAGVAR(module_expsym_cmds, $1)=
5187 _LT_AC_TAGVAR(always_export_symbols, $1)=no
5188 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5189 # include_expsyms should be a list of space-separated symbols to be *always*
5190 # included in the symbol list
5191 _LT_AC_TAGVAR(include_expsyms, $1)=
5192 # exclude_expsyms can be an extended regexp of symbols to exclude
5193 # it will be wrapped by ` (' and `)$', so one must not match beginning or
5194 # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
5195 # as well as any symbol that contains `d'.
5196 _LT_AC_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*']
5197 # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
5198 # platforms (ab)use it in PIC code, but their linkers get confused if
5199 # the symbol is explicitly referenced. Since portable code cannot
5200 # rely on this symbol name, it's probably fine to never include it in
5201 # preloaded symbol tables.
5202 # Exclude shared library initialization/finalization symbols.
5203dnl Note also adjust exclude_expsyms for C++ above.
5204 extract_expsyms_cmds=
5205 # Just being paranoid about ensuring that cc_basename is set.
5206 _LT_CC_BASENAME([$compiler])
5207 case $host_os in
5208 cygwin* | mingw* | pw32*)
5209 # FIXME: the MSVC++ port hasn't been tested in a loooong time
5210 # When not using gcc, we currently assume that we are using
5211 # Microsoft Visual C++.
5212 if test "$GCC" != yes; then
5213 with_gnu_ld=no
5214 fi
5215 ;;
5216 interix*)
5217 # we just hope/assume this is gcc and not c89 (= MSVC++)
5218 with_gnu_ld=yes
5219 ;;
5220 openbsd*)
5221 with_gnu_ld=no
5222 ;;
5223 esac
5224
5225 _LT_AC_TAGVAR(ld_shlibs, $1)=yes
5226 if test "$with_gnu_ld" = yes; then
5227 # If archive_cmds runs LD, not CC, wlarc should be empty
5228 wlarc='${wl}'
5229
5230 # Set some defaults for GNU ld with shared library support. These
5231 # are reset later if shared libraries are not supported. Putting them
5232 # here allows them to be overridden if necessary.
5233 runpath_var=LD_RUN_PATH
5234 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
5235 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5236 # ancient GNU ld didn't support --whole-archive et. al.
5237 if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
5238 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
5239 else
5240 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5241 fi
5242 supports_anon_versioning=no
5243 case `$LD -v 2>/dev/null` in
5244 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
5245 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
5246 *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
5247 *\ 2.11.*) ;; # other 2.11 versions
5248 *) supports_anon_versioning=yes ;;
5249 esac
5250
5251 # See if GNU ld supports shared libraries.
5252 case $host_os in
5253 aix[[3-9]]*)
5254 # On AIX/PPC, the GNU linker is very broken
5255 if test "$host_cpu" != ia64; then
5256 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5257 cat <<EOF 1>&2
5258
5259*** Warning: the GNU linker, at least up to release 2.9.1, is reported
5260*** to be unable to reliably create shared libraries on AIX.
5261*** Therefore, libtool is disabling shared libraries support. If you
5262*** really care for shared libraries, you may want to modify your PATH
5263*** so that a non-GNU linker is found, and then restart.
5264
5265EOF
5266 fi
5267 ;;
5268
5269 amigaos*)
5270 _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)'
5271 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5272 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5273
5274 # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
5275 # that the semantics of dynamic libraries on AmigaOS, at least up
5276 # to version 4, is to share data among multiple programs linked
5277 # with the same dynamic library. Since this doesn't match the
5278 # behavior of shared libraries on other platforms, we can't use
5279 # them.
5280 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5281 ;;
5282
5283 beos*)
5284 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5285 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5286 # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
5287 # support --undefined. This deserves some investigation. FIXME
5288 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5289 else
5290 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5291 fi
5292 ;;
5293
5294 cygwin* | mingw* | pw32*)
5295 # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
5296 # as there is no search path for DLLs.
5297 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5298 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5299 _LT_AC_TAGVAR(always_export_symbols, $1)=no
5300 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5301 _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols'
5302
5303 if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
5304 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
5305 # If the export-symbols file already is a .def file (1st line
5306 # is EXPORTS), use it as is; otherwise, prepend...
5307 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
5308 cp $export_symbols $output_objdir/$soname.def;
5309 else
5310 echo EXPORTS > $output_objdir/$soname.def;
5311 cat $export_symbols >> $output_objdir/$soname.def;
5312 fi~
5313 $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
5314 else
5315 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5316 fi
5317 ;;
5318
5319 interix[[3-9]]*)
5320 _LT_AC_TAGVAR(hardcode_direct, $1)=no
5321 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5322 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5323 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5324 # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
5325 # Instead, shared libraries are loaded at an image base (0x10000000 by
5326 # default) and relocated if they conflict, which is a slow very memory
5327 # consuming and fragmenting process. To avoid this, we pick a random,
5328 # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
5329 # time. Moving up from 0x10000000 also allows more sbrk(2) space.
5330 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5331 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib'
5332 ;;
5333
5334 gnu* | linux* | k*bsd*-gnu)
5335 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5336 tmp_addflag=
5337 case $cc_basename,$host_cpu in
5338 pgcc*) # Portland Group C compiler
5339 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
5340 tmp_addflag=' $pic_flag'
5341 ;;
5342 pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers
5343 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
5344 tmp_addflag=' $pic_flag -Mnomain' ;;
5345 ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64
5346 tmp_addflag=' -i_dynamic' ;;
5347 efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64
5348 tmp_addflag=' -i_dynamic -nofor_main' ;;
5349 ifc* | ifort*) # Intel Fortran compiler
5350 tmp_addflag=' -nofor_main' ;;
5351 esac
5352 case `$CC -V 2>&1 | sed 5q` in
5353 *Sun\ C*) # Sun C 5.9
5354 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}--no-whole-archive'
5355 tmp_sharedflag='-G' ;;
5356 *Sun\ F*) # Sun Fortran 8.3
5357 tmp_sharedflag='-G' ;;
5358 *)
5359 tmp_sharedflag='-shared' ;;
5360 esac
5361 _LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5362
5363 if test $supports_anon_versioning = yes; then
5364 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
5365 cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5366 $echo "local: *; };" >> $output_objdir/$libname.ver~
5367 $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
5368 fi
5369 _LT_AC_TAGVAR(link_all_deplibs, $1)=no
5370 else
5371 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5372 fi
5373 ;;
5374
5375 netbsd* | netbsdelf*-gnu)
5376 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5377 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
5378 wlarc=
5379 else
5380 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5381 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
5382 fi
5383 ;;
5384
5385 solaris*)
5386 if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
5387 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5388 cat <<EOF 1>&2
5389
5390*** Warning: The releases 2.8.* of the GNU linker cannot reliably
5391*** create shared libraries on Solaris systems. Therefore, libtool
5392*** is disabling shared libraries support. We urge you to upgrade GNU
5393*** binutils to release 2.9.1 or newer. Another option is to modify
5394*** your PATH or compiler configuration so that the native linker is
5395*** used, and then restart.
5396
5397EOF
5398 elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5399 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5400 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
5401 else
5402 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5403 fi
5404 ;;
5405
5406 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
5407 case `$LD -v 2>&1` in
5408 *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
5409 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5410 cat <<_LT_EOF 1>&2
5411
5412*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
5413*** reliably create shared libraries on SCO systems. Therefore, libtool
5414*** is disabling shared libraries support. We urge you to upgrade GNU
5415*** binutils to release 2.16.91.0.3 or newer. Another option is to modify
5416*** your PATH or compiler configuration so that the native linker is
5417*** used, and then restart.
5418
5419_LT_EOF
5420 ;;
5421 *)
5422 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5423 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
5424 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
5425 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname,-retain-symbols-file,$export_symbols -o $lib'
5426 else
5427 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5428 fi
5429 ;;
5430 esac
5431 ;;
5432
5433 sunos4*)
5434 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5435 wlarc=
5436 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5437 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5438 ;;
5439
5440 *)
5441 if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5442 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5443 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib'
5444 else
5445 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5446 fi
5447 ;;
5448 esac
5449
5450 if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
5451 runpath_var=
5452 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5453 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5454 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5455 fi
5456 else
5457 # PORTME fill in a description of your system's linker (not GNU ld)
5458 case $host_os in
5459 aix3*)
5460 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5461 _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5462 _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'
5463 # Note: this linker hardcodes the directories in LIBPATH if there
5464 # are no directories specified by -L.
5465 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5466 if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
5467 # Neither direct hardcoding nor static linking is supported with a
5468 # broken collect2.
5469 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
5470 fi
5471 ;;
5472
5473 aix[[4-9]]*)
5474 if test "$host_cpu" = ia64; then
5475 # On IA64, the linker does run time linking by default, so we don't
5476 # have to do anything special.
5477 aix_use_runtimelinking=no
5478 exp_sym_flag='-Bexport'
5479 no_entry_flag=""
5480 else
5481 # If we're using GNU nm, then we don't want the "-C" option.
5482 # -C means demangle to AIX nm, but means don't demangle with GNU nm
5483 if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
5484 _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'
5485 else
5486 _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'
5487 fi
5488 aix_use_runtimelinking=no
5489
5490 # Test if we are trying to use run time linking or normal
5491 # AIX style linking. If -brtl is somewhere in LDFLAGS, we
5492 # need to do runtime linking.
5493 case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*)
5494 for ld_flag in $LDFLAGS; do
5495 if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
5496 aix_use_runtimelinking=yes
5497 break
5498 fi
5499 done
5500 ;;
5501 esac
5502
5503 exp_sym_flag='-bexport'
5504 no_entry_flag='-bnoentry'
5505 fi
5506
5507 # When large executables or shared objects are built, AIX ld can
5508 # have problems creating the table of contents. If linking a library
5509 # or program results in "error TOC overflow" add -mminimal-toc to
5510 # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not
5511 # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
5512
5513 _LT_AC_TAGVAR(archive_cmds, $1)=''
5514 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5515 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
5516 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5517
5518 if test "$GCC" = yes; then
5519 case $host_os in aix4.[[012]]|aix4.[[012]].*)
5520 # We only want to do this on AIX 4.2 and lower, the check
5521 # below for broken collect2 doesn't work under 4.3+
5522 collect2name=`${CC} -print-prog-name=collect2`
5523 if test -f "$collect2name" && \
5524 strings "$collect2name" | grep resolve_lib_name >/dev/null
5525 then
5526 # We have reworked collect2
5527 :
5528 else
5529 # We have old collect2
5530 _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
5531 # It fails to find uninstalled libraries when the uninstalled
5532 # path is not listed in the libpath. Setting hardcode_minus_L
5533 # to unsupported forces relinking
5534 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5535 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5536 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5537 fi
5538 ;;
5539 esac
5540 shared_flag='-shared'
5541 if test "$aix_use_runtimelinking" = yes; then
5542 shared_flag="$shared_flag "'${wl}-G'
5543 fi
5544 else
5545 # not using gcc
5546 if test "$host_cpu" = ia64; then
5547 # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
5548 # chokes on -Wl,-G. The following line is correct:
5549 shared_flag='-G'
5550 else
5551 if test "$aix_use_runtimelinking" = yes; then
5552 shared_flag='${wl}-G'
5553 else
5554 shared_flag='${wl}-bM:SRE'
5555 fi
5556 fi
5557 fi
5558
5559 # It seems that -bexpall does not export symbols beginning with
5560 # underscore (_), so it is better to generate a list of symbols to export.
5561 _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5562 if test "$aix_use_runtimelinking" = yes; then
5563 # Warning - without using the other runtime loading flags (-brtl),
5564 # -berok will link without error, but may produce a broken library.
5565 _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
5566 # Determine the default libpath from the value encoded in an empty executable.
5567 _LT_AC_SYS_LIBPATH_AIX
5568 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5569 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag"
5570 else
5571 if test "$host_cpu" = ia64; then
5572 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
5573 _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
5574 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols"
5575 else
5576 # Determine the default libpath from the value encoded in an empty executable.
5577 _LT_AC_SYS_LIBPATH_AIX
5578 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5579 # Warning - without using the other run time loading flags,
5580 # -berok will link without error, but may produce a broken library.
5581 _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
5582 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
5583 # Exported symbols can be pulled into shared objects from archives
5584 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
5585 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
5586 # This is similar to how AIX traditionally builds its shared libraries.
5587 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
5588 fi
5589 fi
5590 ;;
5591
5592 amigaos*)
5593 _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)'
5594 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5595 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5596 # see comment about different semantics on the GNU ld section
5597 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5598 ;;
5599
5600 bsdi[[45]]*)
5601 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
5602 ;;
5603
5604 cygwin* | mingw* | pw32*)
5605 # When not using gcc, we currently assume that we are using
5606 # Microsoft Visual C++.
5607 # hardcode_libdir_flag_spec is actually meaningless, as there is
5608 # no search path for DLLs.
5609 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
5610 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5611 # Tell ltmain to make .lib files, not .a files.
5612 libext=lib
5613 # Tell ltmain to make .dll files, not .so files.
5614 shrext_cmds=".dll"
5615 # FIXME: Setting linknames here is a bad hack.
5616 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
5617 # The linker will automatically build a .lib file if we build a DLL.
5618 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
5619 # FIXME: Should let the user specify the lib program.
5620 _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
5621 _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
5622 _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5623 ;;
5624
5625 darwin* | rhapsody*)
5626 case $host_os in
5627 rhapsody* | darwin1.[[012]])
5628 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
5629 ;;
5630 *) # Darwin 1.3 on
5631 if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
5632 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
5633 else
5634 case ${MACOSX_DEPLOYMENT_TARGET} in
5635 10.[[012]])
5636 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
5637 ;;
5638 10.*)
5639 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
5640 ;;
5641 esac
5642 fi
5643 ;;
5644 esac
5645 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5646 _LT_AC_TAGVAR(hardcode_direct, $1)=no
5647 _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
5648 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5649 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
5650 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5651 if test "$GCC" = yes ; then
5652 output_verbose_link_cmd='echo'
5653 _LT_AC_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}"
5654 _LT_AC_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}"
5655 _LT_AC_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}"
5656 _LT_AC_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}"
5657 else
5658 case $cc_basename in
5659 xlc*)
5660 output_verbose_link_cmd='echo'
5661 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $xlcverstring'
5662 _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
5663 # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
5664 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[ ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}$rpath/$soname $xlcverstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
5665 _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 $libobjs $deplibs$compiler_flags~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
5666 ;;
5667 *)
5668 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5669 ;;
5670 esac
5671 fi
5672 ;;
5673
5674 dgux*)
5675 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5676 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5677 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5678 ;;
5679
5680 freebsd1*)
5681 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5682 ;;
5683
5684 # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
5685 # support. Future versions do this automatically, but an explicit c++rt0.o
5686 # does not break anything, and helps significantly (at the cost of a little
5687 # extra space).
5688 freebsd2.2*)
5689 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
5690 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5691 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5692 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5693 ;;
5694
5695 # Unfortunately, older versions of FreeBSD 2 do not have this feature.
5696 freebsd2*)
5697 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5698 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5699 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5700 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5701 ;;
5702
5703 # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
5704 freebsd* | dragonfly*)
5705 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
5706 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5707 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5708 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5709 ;;
5710
5711 hpux9*)
5712 if test "$GCC" = yes; then
5713 _LT_AC_TAGVAR(archive_cmds, $1)='$rm $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib'
5714 else
5715 _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'
5716 fi
5717 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5718 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5719 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5720
5721 # hardcode_minus_L: Not really in the search PATH,
5722 # but as the default location of the library.
5723 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5724 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5725 ;;
5726
5727 hpux10*)
5728 if test "$GCC" = yes -a "$with_gnu_ld" = no; then
5729 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5730 else
5731 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
5732 fi
5733 if test "$with_gnu_ld" = no; then
5734 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5735 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5736
5737 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5738 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5739
5740 # hardcode_minus_L: Not really in the search PATH,
5741 # but as the default location of the library.
5742 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5743 fi
5744 ;;
5745
5746 hpux11*)
5747 if test "$GCC" = yes -a "$with_gnu_ld" = no; then
5748 case $host_cpu in
5749 hppa*64*)
5750 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5751 ;;
5752 ia64*)
5753 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
5754 ;;
5755 *)
5756 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5757 ;;
5758 esac
5759 else
5760 case $host_cpu in
5761 hppa*64*)
5762 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5763 ;;
5764 ia64*)
5765 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
5766 ;;
5767 *)
5768 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5769 ;;
5770 esac
5771 fi
5772 if test "$with_gnu_ld" = no; then
5773 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5774 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5775
5776 case $host_cpu in
5777 hppa*64*|ia64*)
5778 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
5779 _LT_AC_TAGVAR(hardcode_direct, $1)=no
5780 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5781 ;;
5782 *)
5783 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5784 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5785
5786 # hardcode_minus_L: Not really in the search PATH,
5787 # but as the default location of the library.
5788 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5789 ;;
5790 esac
5791 fi
5792 ;;
5793
5794 irix5* | irix6* | nonstopux*)
5795 if test "$GCC" = yes; then
5796 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5797 else
5798 _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'
5799 _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
5800 fi
5801 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5802 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5803 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5804 ;;
5805
5806 netbsd* | netbsdelf*-gnu)
5807 if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5808 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out
5809 else
5810 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF
5811 fi
5812 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5813 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5814 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5815 ;;
5816
5817 newsos6)
5818 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5819 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5820 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5821 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5822 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5823 ;;
5824
5825 openbsd*)
5826 if test -f /usr/libexec/ld.so; then
5827 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5828 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5829 if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
5830 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5831 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
5832 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5833 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5834 else
5835 case $host_os in
5836 openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
5837 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5838 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5839 ;;
5840 *)
5841 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5842 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5843 ;;
5844 esac
5845 fi
5846 else
5847 _LT_AC_TAGVAR(ld_shlibs, $1)=no
5848 fi
5849 ;;
5850
5851 os2*)
5852 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5853 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5854 _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5855 _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 $libobjs $deplibs $compiler_flags $output_objdir/$libname.def'
5856 _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
5857 ;;
5858
5859 osf3*)
5860 if test "$GCC" = yes; then
5861 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5862 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib'
5863 else
5864 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5865 _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'
5866 fi
5867 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5868 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5869 ;;
5870
5871 osf4* | osf5*) # as osf3* with the addition of -msym flag
5872 if test "$GCC" = yes; then
5873 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5874 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${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'
5875 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5876 else
5877 _LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5878 _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'
5879 _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~
5880 $LD -shared${allow_undefined_flag} -input $lib.exp $linker_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && echo -set_version $verstring` -update_registry ${output_objdir}/so_locations -o $lib~$rm $lib.exp'
5881
5882 # Both c and cxx compiler support -rpath directly
5883 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
5884 fi
5885 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5886 ;;
5887
5888 solaris*)
5889 _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
5890 if test "$GCC" = yes; then
5891 wlarc='${wl}'
5892 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5893 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5894 $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
5895 else
5896 wlarc=''
5897 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
5898 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5899 $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
5900 fi
5901 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5902 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5903 case $host_os in
5904 solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5905 *)
5906 # The compiler driver will combine and reorder linker options,
5907 # but understands `-z linker_flag'. GCC discards it without `$wl',
5908 # but is careful enough not to reorder.
5909 # Supported since Solaris 2.6 (maybe 2.5.1?)
5910 if test "$GCC" = yes; then
5911 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
5912 else
5913 _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
5914 fi
5915 ;;
5916 esac
5917 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5918 ;;
5919
5920 sunos4*)
5921 if test "x$host_vendor" = xsequent; then
5922 # Use $CC to link under sequent, because it throws in some extra .o
5923 # files that make .init and .fini sections work.
5924 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
5925 else
5926 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
5927 fi
5928 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5929 _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5930 _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5931 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5932 ;;
5933
5934 sysv4)
5935 case $host_vendor in
5936 sni)
5937 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5938 _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true???
5939 ;;
5940 siemens)
5941 ## LD is ld it makes a PLAMLIB
5942 ## CC just makes a GrossModule.
5943 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
5944 _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
5945 _LT_AC_TAGVAR(hardcode_direct, $1)=no
5946 ;;
5947 motorola)
5948 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5949 _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
5950 ;;
5951 esac
5952 runpath_var='LD_RUN_PATH'
5953 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5954 ;;
5955
5956 sysv4.3*)
5957 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5958 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5959 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
5960 ;;
5961
5962 sysv4*MP*)
5963 if test -d /usr/nec; then
5964 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5965 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5966 runpath_var=LD_RUN_PATH
5967 hardcode_runpath_var=yes
5968 _LT_AC_TAGVAR(ld_shlibs, $1)=yes
5969 fi
5970 ;;
5971
5972 sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
5973 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5974 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5975 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5976 runpath_var='LD_RUN_PATH'
5977
5978 if test "$GCC" = yes; then
5979 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5980 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5981 else
5982 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5983 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5984 fi
5985 ;;
5986
5987 sysv5* | sco3.2v5* | sco5v6*)
5988 # Note: We can NOT use -z defs as we might desire, because we do not
5989 # link with -lc, and that would cause any symbols used from libc to
5990 # always be unresolved, which means just about no library would
5991 # ever link correctly. If we're not using GNU ld we use -z text
5992 # though, which does catch some bad symbols but isn't as heavy-handed
5993 # as -z defs.
5994 _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5995 _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
5996 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5997 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5998 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
5999 _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
6000 _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
6001 _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
6002 runpath_var='LD_RUN_PATH'
6003
6004 if test "$GCC" = yes; then
6005 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
6006 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
6007 else
6008 _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
6009 _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
6010 fi
6011 ;;
6012
6013 uts4*)
6014 _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
6015 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6016 _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6017 ;;
6018
6019 *)
6020 _LT_AC_TAGVAR(ld_shlibs, $1)=no
6021 ;;
6022 esac
6023 fi
6024])
6025AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
6026test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
6027
6028#
6029# Do we need to explicitly link libc?
6030#
6031case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in
6032x|xyes)
6033 # Assume -lc should be added
6034 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
6035
6036 if test "$enable_shared" = yes && test "$GCC" = yes; then
6037 case $_LT_AC_TAGVAR(archive_cmds, $1) in
6038 *'~'*)
6039 # FIXME: we may have to deal with multi-command sequences.
6040 ;;
6041 '$CC '*)
6042 # Test whether the compiler implicitly links with -lc since on some
6043 # systems, -lgcc has to come before -lc. If gcc already passes -lc
6044 # to ld, don't add -lc before -lgcc.
6045 AC_MSG_CHECKING([whether -lc should be explicitly linked in])
6046 $rm conftest*
6047 echo "$lt_simple_compile_test_code" > conftest.$ac_ext
6048
6049 if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
6050 soname=conftest
6051 lib=conftest
6052 libobjs=conftest.$ac_objext
6053 deplibs=
6054 wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
6055 pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
6056 compiler_flags=-v
6057 linker_flags=-v
6058 verstring=
6059 output_objdir=.
6060 libname=conftest
6061 lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1)
6062 _LT_AC_TAGVAR(allow_undefined_flag, $1)=
6063 if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
6064 then
6065 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
6066 else
6067 _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
6068 fi
6069 _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
6070 else
6071 cat conftest.err 1>&5
6072 fi
6073 $rm conftest*
6074 AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)])
6075 ;;
6076 esac
6077 fi
6078 ;;
6079esac
6080])
6081m4trace:/usr/share/aclocal/libtool.m4:6521: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
6082# /* ltdll.c starts here */
6083# #define WIN32_LEAN_AND_MEAN
6084# #include <windows.h>
6085# #undef WIN32_LEAN_AND_MEAN
6086# #include <stdio.h>
6087#
6088# #ifndef __CYGWIN__
6089# # ifdef __CYGWIN32__
6090# # define __CYGWIN__ __CYGWIN32__
6091# # endif
6092# #endif
6093#
6094# #ifdef __cplusplus
6095# extern "C" {
6096# #endif
6097# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
6098# #ifdef __cplusplus
6099# }
6100# #endif
6101#
6102# #ifdef __CYGWIN__
6103# #include <cygwin/cygwin_dll.h>
6104# DECLARE_CYGWIN_DLL( DllMain );
6105# #endif
6106# HINSTANCE __hDllInstance_base;
6107#
6108# BOOL APIENTRY
6109# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
6110# {
6111# __hDllInstance_base = hInst;
6112# return TRUE;
6113# }
6114# /* ltdll.c ends here */
6115])
6116m4trace:/usr/share/aclocal/libtool.m4:6560: -1- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])])
6117m4trace:/usr/share/aclocal/libtool.m4:6564: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL])
6118m4trace:/usr/share/aclocal/libtool.m4:6565: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
6119m4trace:/usr/share/aclocal/libtool.m4:6566: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
6120m4trace:/usr/share/aclocal/libtool.m4:6567: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
6121m4trace:/usr/share/aclocal/libtool.m4:6568: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
6122m4trace:/usr/share/aclocal/libtool.m4:6569: -1- AC_DEFUN([AM_PROG_LD], [AC_PROG_LD])
6123m4trace:/usr/share/aclocal/libtool.m4:6570: -1- AC_DEFUN([AM_PROG_NM], [AC_PROG_NM])
6124m4trace:/usr/share/aclocal/libtool.m4:6575: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no)
6125 test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
6126 AC_SUBST(GCJFLAGS)
6127])
6128m4trace:/usr/share/aclocal/libtool.m4:6581: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no)
6129])
6130m4trace:/usr/share/aclocal/libtool.m4:6619: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output])
6131AC_CACHE_VAL(lt_cv_path_SED,
6132[# Loop through the user's path and test for sed and gsed.
6133# Then use that list of sed's as ones to test for truncation.
6134as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6135for as_dir in $PATH
6136do
6137 IFS=$as_save_IFS
6138 test -z "$as_dir" && as_dir=.
6139 for lt_ac_prog in sed gsed; do
6140 for ac_exec_ext in '' $ac_executable_extensions; do
6141 if AS_EXECUTABLE_P(["$as_dir/$lt_ac_prog$ac_exec_ext"]); then
6142 lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
6143 fi
6144 done
6145 done
6146done
6147IFS=$as_save_IFS
6148lt_ac_max=0
6149lt_ac_count=0
6150# Add /usr/xpg4/bin/sed as it is typically found on Solaris
6151# along with /bin/sed that truncates output.
6152for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
6153 test ! -f $lt_ac_sed && continue
6154 cat /dev/null > conftest.in
6155 lt_ac_count=0
6156 echo $ECHO_N "0123456789$ECHO_C" >conftest.in
6157 # Check for GNU sed and select it if it is found.
6158 if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
6159 lt_cv_path_SED=$lt_ac_sed
6160 break
6161 fi
6162 while true; do
6163 cat conftest.in conftest.in >conftest.tmp
6164 mv conftest.tmp conftest.in
6165 cp conftest.in conftest.nl
6166 echo >>conftest.nl
6167 $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
6168 cmp -s conftest.out conftest.nl || break
6169 # 10000 chars as input seems more than enough
6170 test $lt_ac_count -gt 10 && break
6171 lt_ac_count=`expr $lt_ac_count + 1`
6172 if test $lt_ac_count -gt $lt_ac_max; then
6173 lt_ac_max=$lt_ac_count
6174 lt_cv_path_SED=$lt_ac_sed
6175 fi
6176 done
6177done
6178])
6179SED=$lt_cv_path_SED
6180AC_SUBST([SED])
6181AC_MSG_RESULT([$SED])
6182])
6183m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
6184_$0($*)
6185])
6186m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
6187dnl Although the argument is deprecated and no longer documented,
6188dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
6189dnl here make sure it is the same as any other declaration of libltdl's
6190dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
6191dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
6192m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
6193_$0()
6194])
6195m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
6196_LTDL_CONVENIENCE])
6197m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
6198You should run autoupdate.])dnl
6199_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
6200_LTDL_CONVENIENCE])
6201m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
6202dnl Although the argument is deprecated and no longer documented,
6203dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
6204dnl here make sure it is the same as any other declaration of libltdl's
6205dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
6206dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
6207m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
6208_$0()
6209])
6210m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
6211_LTDL_INSTALLABLE])
6212m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
6213You should run autoupdate.])dnl
6214_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
6215_LTDL_INSTALLABLE])
6216m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
6217 m4_pattern_allow([^_LT_LIBOBJS$])
6218 _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
6219])
6220m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
6221_LT_SET_OPTIONS([$0], [$1])
6222
6223dnl We need to keep our own list of libobjs separate from our parent project,
6224dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
6225dnl we look for our own LIBOBJs.
6226m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
6227m4_pushdef([AC_LIBSOURCES])
6228
6229dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
6230m4_if(_LTDL_MODE, [],
6231 [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
6232 m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
6233 [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
6234
6235AC_ARG_WITH([included_ltdl],
6236 [AS_HELP_STRING([--with-included-ltdl],
6237 [use the GNU ltdl sources included here])])
6238
6239if test "x$with_included_ltdl" != xyes; then
6240 # We are not being forced to use the included libltdl sources, so
6241 # decide whether there is a useful installed version we can use.
6242 AC_CHECK_HEADER([ltdl.h],
6243 [AC_CHECK_DECL([lt_dlinterface_register],
6244 [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
6245 [with_included_ltdl=no],
6246 [with_included_ltdl=yes])],
6247 [with_included_ltdl=yes],
6248 [AC_INCLUDES_DEFAULT
6249 #include <ltdl.h>])],
6250 [with_included_ltdl=yes],
6251 [AC_INCLUDES_DEFAULT]
6252 )
6253fi
6254
6255dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
6256dnl was called yet, then for old times' sake, we assume libltdl is in an
6257dnl eponymous directory:
6258AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
6259
6260AC_ARG_WITH([ltdl_include],
6261 [AS_HELP_STRING([--with-ltdl-include=DIR],
6262 [use the ltdl headers installed in DIR])])
6263
6264if test -n "$with_ltdl_include"; then
6265 if test -f "$with_ltdl_include/ltdl.h"; then :
6266 else
6267 AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include'])
6268 fi
6269else
6270 with_ltdl_include=no
6271fi
6272
6273AC_ARG_WITH([ltdl_lib],
6274 [AS_HELP_STRING([--with-ltdl-lib=DIR],
6275 [use the libltdl.la installed in DIR])])
6276
6277if test -n "$with_ltdl_lib"; then
6278 if test -f "$with_ltdl_lib/libltdl.la"; then :
6279 else
6280 AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib'])
6281 fi
6282else
6283 with_ltdl_lib=no
6284fi
6285
6286case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
6287 ,yes,no,no,)
6288 m4_case(m4_default(_LTDL_TYPE, [convenience]),
6289 [convenience], [_LTDL_CONVENIENCE],
6290 [installable], [_LTDL_INSTALLABLE],
6291 [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
6292 ;;
6293 ,no,no,no,)
6294 # If the included ltdl is not to be used, then use the
6295 # preinstalled libltdl we found.
6296 AC_DEFINE([HAVE_LTDL], [1],
6297 [Define this if a modern libltdl is already installed])
6298 LIBLTDL=-lltdl
6299 LTDLDEPS=
6300 LTDLINCL=
6301 ;;
6302 ,no*,no,*)
6303 AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together])
6304 ;;
6305 *) with_included_ltdl=no
6306 LIBLTDL="-L$with_ltdl_lib -lltdl"
6307 LTDLDEPS=
6308 LTDLINCL="-I$with_ltdl_include"
6309 ;;
6310esac
6311INCLTDL="$LTDLINCL"
6312
6313# Report our decision...
6314AC_MSG_CHECKING([where to find libltdl headers])
6315AC_MSG_RESULT([$LTDLINCL])
6316AC_MSG_CHECKING([where to find libltdl library])
6317AC_MSG_RESULT([$LIBLTDL])
6318
6319_LTDL_SETUP
6320
6321dnl restore autoconf definition.
6322m4_popdef([AC_LIBOBJ])
6323m4_popdef([AC_LIBSOURCES])
6324
6325AC_CONFIG_COMMANDS_PRE([
6326 _ltdl_libobjs=
6327 _ltdl_ltlibobjs=
6328 if test -n "$_LT_LIBOBJS"; then
6329 # Remove the extension.
6330 _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
6331 for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
6332 _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
6333 _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
6334 done
6335 fi
6336 AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
6337 AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
6338])
6339
6340# Only expand once:
6341m4_define([LTDL_INIT])
6342])
6343m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
6344m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
6345You should run autoupdate.])dnl
6346LTDL_INIT($@)])
6347m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
6348m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
6349You should run autoupdate.])dnl
6350LTDL_INIT($@)])
6351m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
6352m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
6353You should run autoupdate.])dnl
6354LTDL_INIT($@)])
6355m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
6356AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
6357AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
6358AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
6359AC_REQUIRE([LT_LIB_DLLOAD])dnl
6360AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
6361AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
6362AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
6363AC_REQUIRE([gl_FUNC_ARGZ])dnl
6364
6365m4_require([_LT_CHECK_OBJDIR])dnl
6366m4_require([_LT_HEADER_DLFCN])dnl
6367m4_require([_LT_CHECK_DLPREOPEN])dnl
6368m4_require([_LT_DECL_SED])dnl
6369
6370dnl Don't require this, or it will be expanded earlier than the code
6371dnl that sets the variables it relies on:
6372_LT_ENABLE_INSTALL
6373
6374dnl _LTDL_MODE specific code must be called at least once:
6375_LTDL_MODE_DISPATCH
6376
6377# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
6378# the user used. This is so that ltdl.h can pick up the parent projects
6379# config.h file, The first file in AC_CONFIG_HEADERS must contain the
6380# definitions required by ltdl.c.
6381# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
6382AC_CONFIG_COMMANDS_PRE([dnl
6383m4_pattern_allow([^LT_CONFIG_H$])dnl
6384m4_ifset([AH_HEADER],
6385 [LT_CONFIG_H=AH_HEADER],
6386 [m4_ifset([AC_LIST_HEADERS],
6387 [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[ ]]*,,;s,[[ :]].*$,,'`],
6388 [])])])
6389AC_SUBST([LT_CONFIG_H])
6390
6391AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
6392 [], [], [AC_INCLUDES_DEFAULT])
6393
6394AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
6395AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
6396
6397AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
6398
6399name=ltdl
6400LTDLOPEN=`eval "\\$ECHO \"$libname_spec\""`
6401AC_SUBST([LTDLOPEN])
6402])
6403m4trace:/usr/share/aclocal/ltdl.m4:437: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
6404AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
6405 [lt_cv_sys_dlopen_deplibs],
6406 [# PORTME does your system automatically load deplibs for dlopen?
6407 # or its logical equivalent (e.g. shl_load for HP-UX < 11)
6408 # For now, we just catch OSes we know something about -- in the
6409 # future, we'll try test this programmatically.
6410 lt_cv_sys_dlopen_deplibs=unknown
6411 case $host_os in
6412 aix3*|aix4.1.*|aix4.2.*)
6413 # Unknown whether this is true for these versions of AIX, but
6414 # we want this `case' here to explicitly catch those versions.
6415 lt_cv_sys_dlopen_deplibs=unknown
6416 ;;
6417 aix[[4-9]]*)
6418 lt_cv_sys_dlopen_deplibs=yes
6419 ;;
6420 amigaos*)
6421 case $host_cpu in
6422 powerpc)
6423 lt_cv_sys_dlopen_deplibs=no
6424 ;;
6425 esac
6426 ;;
6427 darwin*)
6428 # Assuming the user has installed a libdl from somewhere, this is true
6429 # If you are looking for one http://www.opendarwin.org/projects/dlcompat
6430 lt_cv_sys_dlopen_deplibs=yes
6431 ;;
6432 freebsd* | dragonfly*)
6433 lt_cv_sys_dlopen_deplibs=yes
6434 ;;
6435 gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
6436 # GNU and its variants, using gnu ld.so (Glibc)
6437 lt_cv_sys_dlopen_deplibs=yes
6438 ;;
6439 hpux10*|hpux11*)
6440 lt_cv_sys_dlopen_deplibs=yes
6441 ;;
6442 interix*)
6443 lt_cv_sys_dlopen_deplibs=yes
6444 ;;
6445 irix[[12345]]*|irix6.[[01]]*)
6446 # Catch all versions of IRIX before 6.2, and indicate that we don't
6447 # know how it worked for any of those versions.
6448 lt_cv_sys_dlopen_deplibs=unknown
6449 ;;
6450 irix*)
6451 # The case above catches anything before 6.2, and it's known that
6452 # at 6.2 and later dlopen does load deplibs.
6453 lt_cv_sys_dlopen_deplibs=yes
6454 ;;
6455 netbsd* | netbsdelf*-gnu)
6456 lt_cv_sys_dlopen_deplibs=yes
6457 ;;
6458 openbsd*)
6459 lt_cv_sys_dlopen_deplibs=yes
6460 ;;
6461 osf[[1234]]*)
6462 # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
6463 # it did *not* use an RPATH in a shared library to find objects the
6464 # library depends on, so we explicitly say `no'.
6465 lt_cv_sys_dlopen_deplibs=no
6466 ;;
6467 osf5.0|osf5.0a|osf5.1)
6468 # dlopen *does* load deplibs and with the right loader patch applied
6469 # it even uses RPATH in a shared library to search for shared objects
6470 # that the library depends on, but there's no easy way to know if that
6471 # patch is installed. Since this is the case, all we can really
6472 # say is unknown -- it depends on the patch being installed. If
6473 # it is, this changes to `yes'. Without it, it would be `no'.
6474 lt_cv_sys_dlopen_deplibs=unknown
6475 ;;
6476 osf*)
6477 # the two cases above should catch all versions of osf <= 5.1. Read
6478 # the comments above for what we know about them.
6479 # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
6480 # is used to find them so we can finally say `yes'.
6481 lt_cv_sys_dlopen_deplibs=yes
6482 ;;
6483 qnx*)
6484 lt_cv_sys_dlopen_deplibs=yes
6485 ;;
6486 solaris*)
6487 lt_cv_sys_dlopen_deplibs=yes
6488 ;;
6489 sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
6490 libltdl_cv_sys_dlopen_deplibs=yes
6491 ;;
6492 esac
6493 ])
6494if test "$lt_cv_sys_dlopen_deplibs" != yes; then
6495 AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
6496 [Define if the OS needs help to load dependent libraries for dlopen().])
6497fi
6498])
6499m4trace:/usr/share/aclocal/ltdl.m4:536: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
6500m4trace:/usr/share/aclocal/ltdl.m4:536: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
6501You should run autoupdate.])dnl
6502m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
6503m4trace:/usr/share/aclocal/ltdl.m4:543: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
6504AC_CACHE_CHECK([which extension is used for runtime loadable modules],
6505 [libltdl_cv_shlibext],
6506[
6507module=yes
6508eval libltdl_cv_shlibext=$shrext_cmds
6509 ])
6510if test -n "$libltdl_cv_shlibext"; then
6511 m4_pattern_allow([LT_MODULE_EXT])dnl
6512 AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
6513 [Define to the extension used for runtime loadable modules, say, ".so".])
6514fi
6515])
6516m4trace:/usr/share/aclocal/ltdl.m4:559: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
6517m4trace:/usr/share/aclocal/ltdl.m4:559: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
6518You should run autoupdate.])dnl
6519m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
6520m4trace:/usr/share/aclocal/ltdl.m4:566: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
6521AC_CACHE_CHECK([which variable specifies run-time module search path],
6522 [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"])
6523if test -n "$lt_cv_module_path_var"; then
6524 m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
6525 AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
6526 [Define to the name of the environment variable that determines the run-time module search path.])
6527fi
6528])
6529m4trace:/usr/share/aclocal/ltdl.m4:578: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
6530m4trace:/usr/share/aclocal/ltdl.m4:578: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
6531You should run autoupdate.])dnl
6532m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
6533m4trace:/usr/share/aclocal/ltdl.m4:585: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
6534AC_CACHE_CHECK([for the default library search path],
6535 [lt_cv_sys_dlsearch_path],
6536 [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"])
6537if test -n "$lt_cv_sys_dlsearch_path"; then
6538 sys_dlsearch_path=
6539 for dir in $lt_cv_sys_dlsearch_path; do
6540 if test -z "$sys_dlsearch_path"; then
6541 sys_dlsearch_path="$dir"
6542 else
6543 sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir"
6544 fi
6545 done
6546 m4_pattern_allow([LT_DLSEARCH_PATH])dnl
6547 AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
6548 [Define to the system default library search path.])
6549fi
6550])
6551m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
6552m4trace:/usr/share/aclocal/ltdl.m4:606: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
6553You should run autoupdate.])dnl
6554m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
6555m4trace:/usr/share/aclocal/ltdl.m4:632: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
6556LT_DLLOADERS=
6557AC_SUBST([LT_DLLOADERS])
6558
6559AC_LANG_PUSH([C])
6560
6561LIBADD_DLOPEN=
6562AC_SEARCH_LIBS([dlopen], [dl],
6563 [AC_DEFINE([HAVE_LIBDL], [1],
6564 [Define if you have the libdl library or equivalent.])
6565 if test "$ac_cv_search_dlopen" != "none required" ; then
6566 LIBADD_DLOPEN="-ldl"
6567 fi
6568 libltdl_cv_lib_dl_dlopen="yes"
6569 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
6570 [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
6571# include <dlfcn.h>
6572#endif
6573 ]], [[dlopen(0, 0);]])],
6574 [AC_DEFINE([HAVE_LIBDL], [1],
6575 [Define if you have the libdl library or equivalent.])
6576 libltdl_cv_func_dlopen="yes"
6577 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
6578 [AC_CHECK_LIB([svld], [dlopen],
6579 [AC_DEFINE([HAVE_LIBDL], [1],
6580 [Define if you have the libdl library or equivalent.])
6581 LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes"
6582 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
6583if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
6584then
6585 lt_save_LIBS="$LIBS"
6586 LIBS="$LIBS $LIBADD_DLOPEN"
6587 AC_CHECK_FUNCS([dlerror])
6588 LIBS="$lt_save_LIBS"
6589fi
6590AC_SUBST([LIBADD_DLOPEN])
6591
6592LIBADD_SHL_LOAD=
6593AC_CHECK_FUNC([shl_load],
6594 [AC_DEFINE([HAVE_SHL_LOAD], [1],
6595 [Define if you have the shl_load function.])
6596 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
6597 [AC_CHECK_LIB([dld], [shl_load],
6598 [AC_DEFINE([HAVE_SHL_LOAD], [1],
6599 [Define if you have the shl_load function.])
6600 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
6601 LIBADD_SHL_LOAD="-ldld"])])
6602AC_SUBST([LIBADD_SHL_LOAD])
6603
6604case $host_os in
6605darwin[[1567]].*)
6606# We only want this for pre-Mac OS X 10.4.
6607 AC_CHECK_FUNC([_dyld_func_lookup],
6608 [AC_DEFINE([HAVE_DYLD], [1],
6609 [Define if you have the _dyld_func_lookup function.])
6610 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
6611 ;;
6612beos*)
6613 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
6614 ;;
6615cygwin* | mingw* | os2* | pw32*)
6616 AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
6617 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
6618 ;;
6619esac
6620
6621AC_CHECK_LIB([dld], [dld_link],
6622 [AC_DEFINE([HAVE_DLD], [1],
6623 [Define if you have the GNU dld library.])
6624 LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
6625AC_SUBST([LIBADD_DLD_LINK])
6626
6627m4_pattern_allow([^LT_DLPREOPEN$])
6628LT_DLPREOPEN=
6629if test -n "$LT_DLLOADERS"
6630then
6631 for lt_loader in $LT_DLLOADERS; do
6632 LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
6633 done
6634 AC_DEFINE([HAVE_LIBDLLOADER], [1],
6635 [Define if libdlloader will be built on this platform])
6636fi
6637AC_SUBST([LT_DLPREOPEN])
6638
6639dnl This isn't used anymore, but set it for backwards compatibility
6640LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
6641AC_SUBST([LIBADD_DL])
6642
6643AC_LANG_POP
6644])
6645m4trace:/usr/share/aclocal/ltdl.m4:725: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
6646m4trace:/usr/share/aclocal/ltdl.m4:725: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
6647You should run autoupdate.])dnl
6648m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
6649m4trace:/usr/share/aclocal/ltdl.m4:733: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
6650AC_CACHE_CHECK([for _ prefix in compiled symbols],
6651 [lt_cv_sys_symbol_underscore],
6652 [lt_cv_sys_symbol_underscore=no
6653 cat > conftest.$ac_ext <<_LT_EOF
6654void nm_test_func(){}
6655int main(){nm_test_func;return 0;}
6656_LT_EOF
6657 if AC_TRY_EVAL(ac_compile); then
6658 # Now try to grab the symbols.
6659 ac_nlist=conftest.nm
6660 if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
6661 # See whether the symbols have a leading underscore.
6662 if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
6663 lt_cv_sys_symbol_underscore=yes
6664 else
6665 if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
6666 :
6667 else
6668 echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
6669 fi
6670 fi
6671 else
6672 echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
6673 fi
6674 else
6675 echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
6676 cat conftest.c >&AS_MESSAGE_LOG_FD
6677 fi
6678 rm -rf conftest*
6679 ])
6680 sys_symbol_underscore=$lt_cv_sys_symbol_underscore
6681 AC_SUBST([sys_symbol_underscore])
6682])
6683m4trace:/usr/share/aclocal/ltdl.m4:770: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
6684m4trace:/usr/share/aclocal/ltdl.m4:770: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
6685You should run autoupdate.])dnl
6686m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
6687m4trace:/usr/share/aclocal/ltdl.m4:777: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
6688if test x"$lt_cv_sys_symbol_underscore" = xyes; then
6689 if test x"$libltdl_cv_func_dlopen" = xyes ||
6690 test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
6691 AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
6692 [libltdl_cv_need_uscore],
6693 [libltdl_cv_need_uscore=unknown
6694 save_LIBS="$LIBS"
6695 LIBS="$LIBS $LIBADD_DLOPEN"
6696 _LT_TRY_DLOPEN_SELF(
6697 [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
6698 [], [libltdl_cv_need_uscore=cross])
6699 LIBS="$save_LIBS"
6700 ])
6701 fi
6702fi
6703
6704if test x"$libltdl_cv_need_uscore" = xyes; then
6705 AC_DEFINE([NEED_USCORE], [1],
6706 [Define if dlsym() requires a leading underscore in symbol names.])
6707fi
6708])
6709m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
6710m4trace:/usr/share/aclocal/ltdl.m4:802: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
6711You should run autoupdate.])dnl
6712m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
6713m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
6714dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
6715dnl require some minimum version. Point them to the right macro.
6716m4_if([$1], [1.11.1], [],
6717 [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
6718])
6719m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl
6720m4_ifndef([AC_AUTOCONF_VERSION],
6721 [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
6722_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
6723m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
6724AC_PREREQ([2.50])dnl
6725# expand $ac_aux_dir to an absolute path
6726am_aux_dir=`cd $ac_aux_dir && pwd`
6727])
6728m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
6729 ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
6730 [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
6731AC_SUBST([$1_TRUE])dnl
6732AC_SUBST([$1_FALSE])dnl
6733_AM_SUBST_NOTMAKE([$1_TRUE])dnl
6734_AM_SUBST_NOTMAKE([$1_FALSE])dnl
6735m4_define([_AM_COND_VALUE_$1], [$2])dnl
6736if $2; then
6737 $1_TRUE=
6738 $1_FALSE='#'
6739else
6740 $1_TRUE='#'
6741 $1_FALSE=
6742fi
6743AC_CONFIG_COMMANDS_PRE(
6744[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
6745 AC_MSG_ERROR([[conditional "$1" was never defined.
6746Usually this means the macro was only invoked conditionally.]])
6747fi])])
6748m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
6749AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
6750AC_REQUIRE([AM_MAKE_INCLUDE])dnl
6751AC_REQUIRE([AM_DEP_TRACK])dnl
6752
6753ifelse([$1], CC, [depcc="$CC" am_compiler_list=],
6754 [$1], CXX, [depcc="$CXX" am_compiler_list=],
6755 [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
6756 [$1], UPC, [depcc="$UPC" am_compiler_list=],
6757 [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
6758 [depcc="$$1" am_compiler_list=])
6759
6760AC_CACHE_CHECK([dependency style of $depcc],
6761 [am_cv_$1_dependencies_compiler_type],
6762[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
6763 # We make a subdir and do the tests there. Otherwise we can end up
6764 # making bogus files that we don't know about and never remove. For
6765 # instance it was reported that on HP-UX the gcc test will end up
6766 # making a dummy file named `D' -- because `-MD' means `put the output
6767 # in D'.
6768 mkdir conftest.dir
6769 # Copy depcomp to subdir because otherwise we won't find it if we're
6770 # using a relative directory.
6771 cp "$am_depcomp" conftest.dir
6772 cd conftest.dir
6773 # We will build objects and dependencies in a subdirectory because
6774 # it helps to detect inapplicable dependency modes. For instance
6775 # both Tru64's cc and ICC support -MD to output dependencies as a
6776 # side effect of compilation, but ICC will put the dependencies in
6777 # the current directory while Tru64 will put them in the object
6778 # directory.
6779 mkdir sub
6780
6781 am_cv_$1_dependencies_compiler_type=none
6782 if test "$am_compiler_list" = ""; then
6783 am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
6784 fi
6785 am__universal=false
6786 m4_case([$1], [CC],
6787 [case " $depcc " in #(
6788 *\ -arch\ *\ -arch\ *) am__universal=true ;;
6789 esac],
6790 [CXX],
6791 [case " $depcc " in #(
6792 *\ -arch\ *\ -arch\ *) am__universal=true ;;
6793 esac])
6794
6795 for depmode in $am_compiler_list; do
6796 # Setup a source with many dependencies, because some compilers
6797 # like to wrap large dependency lists on column 80 (with \), and
6798 # we should not choose a depcomp mode which is confused by this.
6799 #
6800 # We need to recreate these files for each test, as the compiler may
6801 # overwrite some of them when testing with obscure command lines.
6802 # This happens at least with the AIX C compiler.
6803 : > sub/conftest.c
6804 for i in 1 2 3 4 5 6; do
6805 echo '#include "conftst'$i'.h"' >> sub/conftest.c
6806 # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
6807 # Solaris 8's {/usr,}/bin/sh.
6808 touch sub/conftst$i.h
6809 done
6810 echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
6811
6812 # We check with `-c' and `-o' for the sake of the "dashmstdout"
6813 # mode. It turns out that the SunPro C++ compiler does not properly
6814 # handle `-M -o', and we need to detect this. Also, some Intel
6815 # versions had trouble with output in subdirs
6816 am__obj=sub/conftest.${OBJEXT-o}
6817 am__minus_obj="-o $am__obj"
6818 case $depmode in
6819 gcc)
6820 # This depmode causes a compiler race in universal mode.
6821 test "$am__universal" = false || continue
6822 ;;
6823 nosideeffect)
6824 # after this tag, mechanisms are not by side-effect, so they'll
6825 # only be used when explicitly requested
6826 if test "x$enable_dependency_tracking" = xyes; then
6827 continue
6828 else
6829 break
6830 fi
6831 ;;
6832 msvisualcpp | msvcmsys)
6833 # This compiler won't grok `-c -o', but also, the minuso test has
6834 # not run yet. These depmodes are late enough in the game, and
6835 # so weak that their functioning should not be impacted.
6836 am__obj=conftest.${OBJEXT-o}
6837 am__minus_obj=
6838 ;;
6839 none) break ;;
6840 esac
6841 if depmode=$depmode \
6842 source=sub/conftest.c object=$am__obj \
6843 depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
6844 $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
6845 >/dev/null 2>conftest.err &&
6846 grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
6847 grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
6848 grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
6849 ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
6850 # icc doesn't choke on unknown options, it will just issue warnings
6851 # or remarks (even with -Werror). So we grep stderr for any message
6852 # that says an option was ignored or not supported.
6853 # When given -MP, icc 7.0 and 7.1 complain thusly:
6854 # icc: Command line warning: ignoring option '-M'; no argument required
6855 # The diagnosis changed in icc 8.0:
6856 # icc: Command line remark: option '-MP' not supported
6857 if (grep 'ignoring option' conftest.err ||
6858 grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
6859 am_cv_$1_dependencies_compiler_type=$depmode
6860 break
6861 fi
6862 fi
6863 done
6864
6865 cd ..
6866 rm -rf conftest.dir
6867else
6868 am_cv_$1_dependencies_compiler_type=none
6869fi
6870])
6871AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
6872AM_CONDITIONAL([am__fastdep$1], [
6873 test "x$enable_dependency_tracking" != xno \
6874 && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
6875])
6876m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
6877AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
6878])
6879m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
6880[ --disable-dependency-tracking speeds up one-time build
6881 --enable-dependency-tracking do not reject slow dependency extractors])
6882if test "x$enable_dependency_tracking" != xno; then
6883 am_depcomp="$ac_aux_dir/depcomp"
6884 AMDEPBACKSLASH='\'
6885fi
6886AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
6887AC_SUBST([AMDEPBACKSLASH])dnl
6888_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
6889])
6890m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
6891 # Autoconf 2.62 quotes --file arguments for eval, but not when files
6892 # are listed without --file. Let's play safe and only enable the eval
6893 # if we detect the quoting.
6894 case $CONFIG_FILES in
6895 *\'*) eval set x "$CONFIG_FILES" ;;
6896 *) set x $CONFIG_FILES ;;
6897 esac
6898 shift
6899 for mf
6900 do
6901 # Strip MF so we end up with the name of the file.
6902 mf=`echo "$mf" | sed -e 's/:.*$//'`
6903 # Check whether this is an Automake generated Makefile or not.
6904 # We used to match only the files named `Makefile.in', but
6905 # some people rename them; so instead we look at the file content.
6906 # Grep'ing the first line is not enough: some people post-process
6907 # each Makefile.in and add a new line on top of each file to say so.
6908 # Grep'ing the whole file is not good either: AIX grep has a line
6909 # limit of 2048, but all sed's we know have understand at least 4000.
6910 if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
6911 dirpart=`AS_DIRNAME("$mf")`
6912 else
6913 continue
6914 fi
6915 # Extract the definition of DEPDIR, am__include, and am__quote
6916 # from the Makefile without running `make'.
6917 DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
6918 test -z "$DEPDIR" && continue
6919 am__include=`sed -n 's/^am__include = //p' < "$mf"`
6920 test -z "am__include" && continue
6921 am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
6922 # When using ansi2knr, U may be empty or an underscore; expand it
6923 U=`sed -n 's/^U = //p' < "$mf"`
6924 # Find all dependency output files, they are included files with
6925 # $(DEPDIR) in their names. We invoke sed twice because it is the
6926 # simplest approach to changing $(DEPDIR) to its actual value in the
6927 # expansion.
6928 for file in `sed -n "
6929 s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
6930 sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
6931 # Make sure the directory exists.
6932 test -f "$dirpart/$file" && continue
6933 fdir=`AS_DIRNAME(["$file"])`
6934 AS_MKDIR_P([$dirpart/$fdir])
6935 # echo "creating $dirpart/$file"
6936 echo '# dummy' > "$dirpart/$file"
6937 done
6938 done
6939}
6940])
6941m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
6942 [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
6943 [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
6944])
6945m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
6946dnl Autoconf wants to disallow AM_ names. We explicitly allow
6947dnl the ones we care about.
6948m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
6949AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
6950AC_REQUIRE([AC_PROG_INSTALL])dnl
6951if test "`cd $srcdir && pwd`" != "`pwd`"; then
6952 # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
6953 # is not polluted with repeated "-I."
6954 AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
6955 # test to see if srcdir already configured
6956 if test -f $srcdir/config.status; then
6957 AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
6958 fi
6959fi
6960
6961# test whether we have cygpath
6962if test -z "$CYGPATH_W"; then
6963 if (cygpath --version) >/dev/null 2>/dev/null; then
6964 CYGPATH_W='cygpath -w'
6965 else
6966 CYGPATH_W=echo
6967 fi
6968fi
6969AC_SUBST([CYGPATH_W])
6970
6971# Define the identity of the package.
6972dnl Distinguish between old-style and new-style calls.
6973m4_ifval([$2],
6974[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
6975 AC_SUBST([PACKAGE], [$1])dnl
6976 AC_SUBST([VERSION], [$2])],
6977[_AM_SET_OPTIONS([$1])dnl
6978dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
6979m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
6980 [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
6981 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
6982 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
6983
6984_AM_IF_OPTION([no-define],,
6985[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
6986 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
6987
6988# Some tools Automake needs.
6989AC_REQUIRE([AM_SANITY_CHECK])dnl
6990AC_REQUIRE([AC_ARG_PROGRAM])dnl
6991AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
6992AM_MISSING_PROG(AUTOCONF, autoconf)
6993AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
6994AM_MISSING_PROG(AUTOHEADER, autoheader)
6995AM_MISSING_PROG(MAKEINFO, makeinfo)
6996AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
6997AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
6998AC_REQUIRE([AM_PROG_MKDIR_P])dnl
6999# We need awk for the "check" target. The system "awk" is bad on
7000# some platforms.
7001AC_REQUIRE([AC_PROG_AWK])dnl
7002AC_REQUIRE([AC_PROG_MAKE_SET])dnl
7003AC_REQUIRE([AM_SET_LEADING_DOT])dnl
7004_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
7005 [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
7006 [_AM_PROG_TAR([v7])])])
7007_AM_IF_OPTION([no-dependencies],,
7008[AC_PROVIDE_IFELSE([AC_PROG_CC],
7009 [_AM_DEPENDENCIES(CC)],
7010 [define([AC_PROG_CC],
7011 defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
7012AC_PROVIDE_IFELSE([AC_PROG_CXX],
7013 [_AM_DEPENDENCIES(CXX)],
7014 [define([AC_PROG_CXX],
7015 defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
7016AC_PROVIDE_IFELSE([AC_PROG_OBJC],
7017 [_AM_DEPENDENCIES(OBJC)],
7018 [define([AC_PROG_OBJC],
7019 defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
7020])
7021_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
7022dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
7023dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro
7024dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
7025AC_CONFIG_COMMANDS_PRE(dnl
7026[m4_provide_if([_AM_COMPILER_EXEEXT],
7027 [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
7028])
7029m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
7030_am_arg=$1
7031_am_stamp_count=1
7032for _am_header in $config_headers :; do
7033 case $_am_header in
7034 $_am_arg | $_am_arg:* )
7035 break ;;
7036 * )
7037 _am_stamp_count=`expr $_am_stamp_count + 1` ;;
7038 esac
7039done
7040echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
7041m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
7042if test x"${install_sh}" != xset; then
7043 case $am_aux_dir in
7044 *\ * | *\ *)
7045 install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
7046 *)
7047 install_sh="\${SHELL} $am_aux_dir/install-sh"
7048 esac
7049fi
7050AC_SUBST(install_sh)])
7051m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
7052mkdir .tst 2>/dev/null
7053if test -d .tst; then
7054 am__leading_dot=.
7055else
7056 am__leading_dot=_
7057fi
7058rmdir .tst 2>/dev/null
7059AC_SUBST([am__leading_dot])])
7060m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
7061cat > confinc << 'END'
7062am__doit:
7063 @echo this is the am__doit target
7064.PHONY: am__doit
7065END
7066# If we don't find an include directive, just comment out the code.
7067AC_MSG_CHECKING([for style of include used by $am_make])
7068am__include="#"
7069am__quote=
7070_am_result=none
7071# First try GNU make style include.
7072echo "include confinc" > confmf
7073# Ignore all kinds of additional output from `make'.
7074case `$am_make -s -f confmf 2> /dev/null` in #(
7075*the\ am__doit\ target*)
7076 am__include=include
7077 am__quote=
7078 _am_result=GNU
7079 ;;
7080esac
7081# Now try BSD make style include.
7082if test "$am__include" = "#"; then
7083 echo '.include "confinc"' > confmf
7084 case `$am_make -s -f confmf 2> /dev/null` in #(
7085 *the\ am__doit\ target*)
7086 am__include=.include
7087 am__quote="\""
7088 _am_result=BSD
7089 ;;
7090 esac
7091fi
7092AC_SUBST([am__include])
7093AC_SUBST([am__quote])
7094AC_MSG_RESULT([$_am_result])
7095rm -f confinc confmf
7096])
7097m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
7098$1=${$1-"${am_missing_run}$2"}
7099AC_SUBST($1)])
7100m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
7101AC_REQUIRE_AUX_FILE([missing])dnl
7102if test x"${MISSING+set}" != xset; then
7103 case $am_aux_dir in
7104 *\ * | *\ *)
7105 MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
7106 *)
7107 MISSING="\${SHELL} $am_aux_dir/missing" ;;
7108 esac
7109fi
7110# Use eval to expand $SHELL
7111if eval "$MISSING --run true"; then
7112 am_missing_run="$MISSING --run "
7113else
7114 am_missing_run=
7115 AC_MSG_WARN([`missing' script is too old or missing])
7116fi
7117])
7118m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
7119AC_REQUIRE([AC_PROG_MKDIR_P])dnl
7120dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P,
7121dnl while keeping a definition of mkdir_p for backward compatibility.
7122dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
7123dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
7124dnl Makefile.ins that do not define MKDIR_P, so we do our own
7125dnl adjustment using top_builddir (which is defined more often than
7126dnl MKDIR_P).
7127AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
7128case $mkdir_p in
7129 [[\\/$]]* | ?:[[\\/]]*) ;;
7130 */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
7131esac
7132])
7133m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
7134m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
7135m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
7136m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
7137m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
7138 ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
7139 ac_status=$?
7140 echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
7141 (exit $ac_status); }])
7142m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
7143# Just in case
7144sleep 1
7145echo timestamp > conftest.file
7146# Reject unsafe characters in $srcdir or the absolute working directory
7147# name. Accept space and tab only in the latter.
7148am_lf='
7149'
7150case `pwd` in
7151 *[[\\\"\#\$\&\'\`$am_lf]]*)
7152 AC_MSG_ERROR([unsafe absolute working directory name]);;
7153esac
7154case $srcdir in
7155 *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
7156 AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
7157esac
7158
7159# Do `set' in a subshell so we don't clobber the current shell's
7160# arguments. Must try -L first in case configure is actually a
7161# symlink; some systems play weird games with the mod time of symlinks
7162# (eg FreeBSD returns the mod time of the symlink's containing
7163# directory).
7164if (
7165 set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
7166 if test "$[*]" = "X"; then
7167 # -L didn't work.
7168 set X `ls -t "$srcdir/configure" conftest.file`
7169 fi
7170 rm -f conftest.file
7171 if test "$[*]" != "X $srcdir/configure conftest.file" \
7172 && test "$[*]" != "X conftest.file $srcdir/configure"; then
7173
7174 # If neither matched, then we have a broken ls. This can happen
7175 # if, for instance, CONFIG_SHELL is bash and it inherits a
7176 # broken ls alias from the environment. This has actually
7177 # happened. Such a system could not be considered "sane".
7178 AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
7179alias in your environment])
7180 fi
7181
7182 test "$[2]" = conftest.file
7183 )
7184then
7185 # Ok.
7186 :
7187else
7188 AC_MSG_ERROR([newly created file is older than distributed files!
7189Check your system clock])
7190fi
7191AC_MSG_RESULT(yes)])
7192m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
7193[ --enable-silent-rules less verbose build output (undo: `make V=1')
7194 --disable-silent-rules verbose build output (undo: `make V=0')])
7195case $enable_silent_rules in
7196yes) AM_DEFAULT_VERBOSITY=0;;
7197no) AM_DEFAULT_VERBOSITY=1;;
7198*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
7199esac
7200AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
7201AM_BACKSLASH='\'
7202AC_SUBST([AM_BACKSLASH])dnl
7203_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
7204])
7205m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
7206# Installed binaries are usually stripped using `strip' when the user
7207# run `make install-strip'. However `strip' might not be the right
7208# tool to use in cross-compilation environments, therefore Automake
7209# will honor the `STRIP' environment variable to overrule this program.
7210dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
7211if test "$cross_compiling" != no; then
7212 AC_CHECK_TOOL([STRIP], [strip], :)
7213fi
7214INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
7215AC_SUBST([INSTALL_STRIP_PROGRAM])])
7216m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
7217m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
7218m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
7219AM_MISSING_PROG([AMTAR], [tar])
7220m4_if([$1], [v7],
7221 [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
7222 [m4_case([$1], [ustar],, [pax],,
7223 [m4_fatal([Unknown tar format])])
7224AC_MSG_CHECKING([how to create a $1 tar archive])
7225# Loop over all known methods to create a tar archive until one works.
7226_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
7227_am_tools=${am_cv_prog_tar_$1-$_am_tools}
7228# Do not fold the above two line into one, because Tru64 sh and
7229# Solaris sh will not grok spaces in the rhs of `-'.
7230for _am_tool in $_am_tools
7231do
7232 case $_am_tool in
7233 gnutar)
7234 for _am_tar in tar gnutar gtar;
7235 do
7236 AM_RUN_LOG([$_am_tar --version]) && break
7237 done
7238 am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
7239 am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
7240 am__untar="$_am_tar -xf -"
7241 ;;
7242 plaintar)
7243 # Must skip GNU tar: if it does not support --format= it doesn't create
7244 # ustar tarball either.
7245 (tar --version) >/dev/null 2>&1 && continue
7246 am__tar='tar chf - "$$tardir"'
7247 am__tar_='tar chf - "$tardir"'
7248 am__untar='tar xf -'
7249 ;;
7250 pax)
7251 am__tar='pax -L -x $1 -w "$$tardir"'
7252 am__tar_='pax -L -x $1 -w "$tardir"'
7253 am__untar='pax -r'
7254 ;;
7255 cpio)
7256 am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
7257 am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
7258 am__untar='cpio -i -H $1 -d'
7259 ;;
7260 none)
7261 am__tar=false
7262 am__tar_=false
7263 am__untar=false
7264 ;;
7265 esac
7266
7267 # If the value was cached, stop now. We just wanted to have am__tar
7268 # and am__untar set.
7269 test -n "${am_cv_prog_tar_$1}" && break
7270
7271 # tar/untar a dummy directory, and stop if the command works
7272 rm -rf conftest.dir
7273 mkdir conftest.dir
7274 echo GrepMe > conftest.dir/file
7275 AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
7276 rm -rf conftest.dir
7277 if test -s conftest.tar; then
7278 AM_RUN_LOG([$am__untar <conftest.tar])
7279 grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
7280 fi
7281done
7282rm -rf conftest.dir
7283
7284AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
7285AC_MSG_RESULT([$am_cv_prog_tar_$1])])
7286AC_SUBST([am__tar])
7287AC_SUBST([am__untar])
7288])
7289m4trace:configure.in:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
7290m4trace:configure.in:5: -1- m4_pattern_forbid([_AC_])
7291m4trace:configure.in:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
7292m4trace:configure.in:5: -1- m4_pattern_allow([^AS_FLAGS$])
7293m4trace:configure.in:5: -1- m4_pattern_forbid([^_?m4_])
7294m4trace:configure.in:5: -1- m4_pattern_forbid([^dnl$])
7295m4trace:configure.in:5: -1- m4_pattern_forbid([^_?AS_])
7296m4trace:configure.in:5: -1- m4_pattern_allow([^SHELL$])
7297m4trace:configure.in:5: -1- m4_pattern_allow([^PATH_SEPARATOR$])
7298m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
7299m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
7300m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
7301m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
7302m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
7303m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_URL$])
7304m4trace:configure.in:5: -1- m4_pattern_allow([^exec_prefix$])
7305m4trace:configure.in:5: -1- m4_pattern_allow([^prefix$])
7306m4trace:configure.in:5: -1- m4_pattern_allow([^program_transform_name$])
7307m4trace:configure.in:5: -1- m4_pattern_allow([^bindir$])
7308m4trace:configure.in:5: -1- m4_pattern_allow([^sbindir$])
7309m4trace:configure.in:5: -1- m4_pattern_allow([^libexecdir$])
7310m4trace:configure.in:5: -1- m4_pattern_allow([^datarootdir$])
7311m4trace:configure.in:5: -1- m4_pattern_allow([^datadir$])
7312m4trace:configure.in:5: -1- m4_pattern_allow([^sysconfdir$])
7313m4trace:configure.in:5: -1- m4_pattern_allow([^sharedstatedir$])
7314m4trace:configure.in:5: -1- m4_pattern_allow([^localstatedir$])
7315m4trace:configure.in:5: -1- m4_pattern_allow([^includedir$])
7316m4trace:configure.in:5: -1- m4_pattern_allow([^oldincludedir$])
7317m4trace:configure.in:5: -1- m4_pattern_allow([^docdir$])
7318m4trace:configure.in:5: -1- m4_pattern_allow([^infodir$])
7319m4trace:configure.in:5: -1- m4_pattern_allow([^htmldir$])
7320m4trace:configure.in:5: -1- m4_pattern_allow([^dvidir$])
7321m4trace:configure.in:5: -1- m4_pattern_allow([^pdfdir$])
7322m4trace:configure.in:5: -1- m4_pattern_allow([^psdir$])
7323m4trace:configure.in:5: -1- m4_pattern_allow([^libdir$])
7324m4trace:configure.in:5: -1- m4_pattern_allow([^localedir$])
7325m4trace:configure.in:5: -1- m4_pattern_allow([^mandir$])
7326m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
7327m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
7328m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
7329m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
7330m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
7331m4trace:configure.in:5: -1- m4_pattern_allow([^PACKAGE_URL$])
7332m4trace:configure.in:5: -1- m4_pattern_allow([^DEFS$])
7333m4trace:configure.in:5: -1- m4_pattern_allow([^ECHO_C$])
7334m4trace:configure.in:5: -1- m4_pattern_allow([^ECHO_N$])
7335m4trace:configure.in:5: -1- m4_pattern_allow([^ECHO_T$])
7336m4trace:configure.in:5: -1- m4_pattern_allow([^LIBS$])
7337m4trace:configure.in:5: -1- m4_pattern_allow([^build_alias$])
7338m4trace:configure.in:5: -1- m4_pattern_allow([^host_alias$])
7339m4trace:configure.in:5: -1- m4_pattern_allow([^target_alias$])
7340m4trace:configure.in:7: -1- AM_INIT_AUTOMAKE([-Wall -Werror foreign])
7341m4trace:configure.in:7: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
7342m4trace:configure.in:7: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
7343m4trace:configure.in:7: -1- AM_AUTOMAKE_VERSION([1.11.1])
7344m4trace:configure.in:7: -1- _AM_AUTOCONF_VERSION([2.67])
7345m4trace:configure.in:7: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
7346m4trace:configure.in:7: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
7347m4trace:configure.in:7: -1- m4_pattern_allow([^INSTALL_DATA$])
7348m4trace:configure.in:7: -1- m4_pattern_allow([^am__isrc$])
7349m4trace:configure.in:7: -1- _AM_SUBST_NOTMAKE([am__isrc])
7350m4trace:configure.in:7: -1- m4_pattern_allow([^CYGPATH_W$])
7351m4trace:configure.in:7: -1- _AM_SET_OPTIONS([-Wall -Werror foreign])
7352m4trace:configure.in:7: -1- _AM_SET_OPTION([-Wall])
7353m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([-Wall])
7354m4trace:configure.in:7: -1- _AM_SET_OPTION([-Werror])
7355m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([-Werror])
7356m4trace:configure.in:7: -1- _AM_SET_OPTION([foreign])
7357m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([foreign])
7358m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE$])
7359m4trace:configure.in:7: -1- m4_pattern_allow([^VERSION$])
7360m4trace:configure.in:7: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
7361 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
7362m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([no-define])
7363m4trace:configure.in:7: -1- m4_pattern_allow([^PACKAGE$])
7364m4trace:configure.in:7: -1- m4_pattern_allow([^VERSION$])
7365m4trace:configure.in:7: -1- AM_SANITY_CHECK
7366m4trace:configure.in:7: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
7367m4trace:configure.in:7: -1- AM_MISSING_HAS_RUN
7368m4trace:configure.in:7: -1- AM_AUX_DIR_EXPAND
7369m4trace:configure.in:7: -1- m4_pattern_allow([^ACLOCAL$])
7370m4trace:configure.in:7: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
7371m4trace:configure.in:7: -1- m4_pattern_allow([^AUTOCONF$])
7372m4trace:configure.in:7: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
7373m4trace:configure.in:7: -1- m4_pattern_allow([^AUTOMAKE$])
7374m4trace:configure.in:7: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
7375m4trace:configure.in:7: -1- m4_pattern_allow([^AUTOHEADER$])
7376m4trace:configure.in:7: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
7377m4trace:configure.in:7: -1- m4_pattern_allow([^MAKEINFO$])
7378m4trace:configure.in:7: -1- AM_PROG_INSTALL_SH
7379m4trace:configure.in:7: -1- m4_pattern_allow([^install_sh$])
7380m4trace:configure.in:7: -1- AM_PROG_INSTALL_STRIP
7381m4trace:configure.in:7: -1- m4_pattern_allow([^STRIP$])
7382m4trace:configure.in:7: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
7383m4trace:configure.in:7: -1- AM_PROG_MKDIR_P
7384m4trace:configure.in:7: -1- m4_pattern_allow([^MKDIR_P$])
7385m4trace:configure.in:7: -1- m4_pattern_allow([^mkdir_p$])
7386m4trace:configure.in:7: -1- m4_pattern_allow([^AWK$])
7387m4trace:configure.in:7: -1- m4_pattern_allow([^SET_MAKE$])
7388m4trace:configure.in:7: -1- AM_SET_LEADING_DOT
7389m4trace:configure.in:7: -1- m4_pattern_allow([^am__leading_dot$])
7390m4trace:configure.in:7: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
7391 [_AM_PROG_TAR([v7])])])
7392m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([tar-ustar])
7393m4trace:configure.in:7: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
7394m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([tar-pax])
7395m4trace:configure.in:7: -1- _AM_PROG_TAR([v7])
7396m4trace:configure.in:7: -1- AM_MISSING_PROG([AMTAR], [tar])
7397m4trace:configure.in:7: -1- m4_pattern_allow([^AMTAR$])
7398m4trace:configure.in:7: -1- m4_pattern_allow([^am__tar$])
7399m4trace:configure.in:7: -1- m4_pattern_allow([^am__untar$])
7400m4trace:configure.in:7: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
7401 [_AM_DEPENDENCIES(CC)],
7402 [define([AC_PROG_CC],
7403 defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
7404AC_PROVIDE_IFELSE([AC_PROG_CXX],
7405 [_AM_DEPENDENCIES(CXX)],
7406 [define([AC_PROG_CXX],
7407 defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
7408AC_PROVIDE_IFELSE([AC_PROG_OBJC],
7409 [_AM_DEPENDENCIES(OBJC)],
7410 [define([AC_PROG_OBJC],
7411 defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
7412])
7413m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([no-dependencies])
7414m4trace:configure.in:7: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
7415m4trace:configure.in:7: -2- _AM_MANGLE_OPTION([silent-rules])
7416m4trace:configure.in:14: -1- m4_pattern_allow([^CXX$])
7417m4trace:configure.in:14: -1- m4_pattern_allow([^CXXFLAGS$])
7418m4trace:configure.in:14: -1- m4_pattern_allow([^LDFLAGS$])
7419m4trace:configure.in:14: -1- m4_pattern_allow([^LIBS$])
7420m4trace:configure.in:14: -1- m4_pattern_allow([^CPPFLAGS$])
7421m4trace:configure.in:14: -1- m4_pattern_allow([^CXX$])
7422m4trace:configure.in:14: -1- m4_pattern_allow([^ac_ct_CXX$])
7423m4trace:configure.in:14: -1- m4_pattern_allow([^EXEEXT$])
7424m4trace:configure.in:14: -1- m4_pattern_allow([^OBJEXT$])
7425m4trace:configure.in:14: -1- _AM_DEPENDENCIES([CXX])
7426m4trace:configure.in:14: -1- AM_SET_DEPDIR
7427m4trace:configure.in:14: -1- m4_pattern_allow([^DEPDIR$])
7428m4trace:configure.in:14: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
7429m4trace:configure.in:14: -1- AM_MAKE_INCLUDE
7430m4trace:configure.in:14: -1- m4_pattern_allow([^am__include$])
7431m4trace:configure.in:14: -1- m4_pattern_allow([^am__quote$])
7432m4trace:configure.in:14: -1- AM_DEP_TRACK
7433m4trace:configure.in:14: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
7434m4trace:configure.in:14: -1- m4_pattern_allow([^AMDEP_TRUE$])
7435m4trace:configure.in:14: -1- m4_pattern_allow([^AMDEP_FALSE$])
7436m4trace:configure.in:14: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
7437m4trace:configure.in:14: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
7438m4trace:configure.in:14: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
7439m4trace:configure.in:14: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
7440m4trace:configure.in:14: -1- m4_pattern_allow([^CXXDEPMODE$])
7441m4trace:configure.in:14: -1- AM_CONDITIONAL([am__fastdepCXX], [
7442 test "x$enable_dependency_tracking" != xno \
7443 && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
7444m4trace:configure.in:14: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
7445m4trace:configure.in:14: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
7446m4trace:configure.in:14: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
7447m4trace:configure.in:14: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
7448m4trace:configure.in:15: -1- m4_pattern_allow([^CC$])
7449m4trace:configure.in:15: -1- m4_pattern_allow([^CFLAGS$])
7450m4trace:configure.in:15: -1- m4_pattern_allow([^LDFLAGS$])
7451m4trace:configure.in:15: -1- m4_pattern_allow([^LIBS$])
7452m4trace:configure.in:15: -1- m4_pattern_allow([^CPPFLAGS$])
7453m4trace:configure.in:15: -1- m4_pattern_allow([^CC$])
7454m4trace:configure.in:15: -1- m4_pattern_allow([^ac_ct_CC$])
7455m4trace:configure.in:15: -1- _AM_DEPENDENCIES([CC])
7456m4trace:configure.in:15: -1- m4_pattern_allow([^CCDEPMODE$])
7457m4trace:configure.in:15: -1- AM_CONDITIONAL([am__fastdepCC], [
7458 test "x$enable_dependency_tracking" != xno \
7459 && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
7460m4trace:configure.in:15: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
7461m4trace:configure.in:15: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
7462m4trace:configure.in:15: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
7463m4trace:configure.in:15: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
7464m4trace:configure.in:16: -1- m4_pattern_allow([^SET_MAKE$])
7465m4trace:configure.in:17: -1- m4_pattern_allow([^CPP$])
7466m4trace:configure.in:17: -1- m4_pattern_allow([^CPPFLAGS$])
7467m4trace:configure.in:17: -1- m4_pattern_allow([^CPP$])
7468m4trace:configure.in:18: -1- AC_PROG_LIBTOOL
7469m4trace:configure.in:18: -1- _AC_PROG_LIBTOOL
7470m4trace:configure.in:18: -1- AC_LIBTOOL_SETUP
7471m4trace:configure.in:18: -1- AC_ENABLE_SHARED
7472m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7473You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7474../../lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
7475/usr/share/aclocal/libtool.m4:2043: AC_ENABLE_SHARED is expanded from...
7476/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7477/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7478/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7479configure.in:18: the top level])
7480m4trace:configure.in:18: -1- AC_ENABLE_STATIC
7481m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7482You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7483../../lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
7484/usr/share/aclocal/libtool.m4:2082: AC_ENABLE_STATIC is expanded from...
7485/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7486/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7487/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7488configure.in:18: the top level])
7489m4trace:configure.in:18: -1- AC_ENABLE_FAST_INSTALL
7490m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7491You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7492../../lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
7493/usr/share/aclocal/libtool.m4:2121: AC_ENABLE_FAST_INSTALL is expanded from...
7494/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7495/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7496/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7497configure.in:18: the top level])
7498m4trace:configure.in:18: -1- m4_pattern_allow([^build$])
7499m4trace:configure.in:18: -1- m4_pattern_allow([^build_cpu$])
7500m4trace:configure.in:18: -1- m4_pattern_allow([^build_vendor$])
7501m4trace:configure.in:18: -1- m4_pattern_allow([^build_os$])
7502m4trace:configure.in:18: -1- m4_pattern_allow([^host$])
7503m4trace:configure.in:18: -1- m4_pattern_allow([^host_cpu$])
7504m4trace:configure.in:18: -1- m4_pattern_allow([^host_vendor$])
7505m4trace:configure.in:18: -1- m4_pattern_allow([^host_os$])
7506m4trace:configure.in:18: -1- AC_PROG_LD
7507m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7508You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7509../../lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
7510/usr/share/aclocal/libtool.m4:2262: AC_PROG_LD is expanded from...
7511/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7512/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7513/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7514configure.in:18: the top level])
7515m4trace:configure.in:18: -1- LT_AC_PROG_SED
7516m4trace:configure.in:18: -1- m4_pattern_allow([^SED$])
7517m4trace:configure.in:18: -1- AC_PROG_LD_GNU
7518m4trace:configure.in:18: -1- AC_PROG_EGREP
7519m4trace:configure.in:18: -1- m4_pattern_allow([^GREP$])
7520m4trace:configure.in:18: -1- m4_pattern_allow([^EGREP$])
7521m4trace:configure.in:18: -1- AC_PROG_LD_RELOAD_FLAG
7522m4trace:configure.in:18: -1- AC_PROG_NM
7523m4trace:configure.in:18: -1- m4_pattern_allow([^LN_S$])
7524m4trace:configure.in:18: -1- AC_DEPLIBS_CHECK_METHOD
7525m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_MAX_CMD_LEN
7526m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
7527m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7528m4trace:configure.in:18: -1- AC_LIBTOOL_OBJDIR
7529m4trace:configure.in:18: -1- _LT_AC_SYS_COMPILER
7530m4trace:configure.in:18: -1- _LT_AC_PROG_ECHO_BACKSLASH
7531m4trace:configure.in:18: -1- _LT_AC_SHELL_INIT([
7532# Check that we are running under the correct shell.
7533SHELL=${CONFIG_SHELL-/bin/sh}
7534
7535case X$ECHO in
7536X*--fallback-echo)
7537 # Remove one level of quotation (which was required for Make).
7538 ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
7539 ;;
7540esac
7541
7542echo=${ECHO-echo}
7543if test "X[$]1" = X--no-reexec; then
7544 # Discard the --no-reexec flag, and continue.
7545 shift
7546elif test "X[$]1" = X--fallback-echo; then
7547 # Avoid inline document here, it may be left over
7548 :
7549elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
7550 # Yippee, $echo works!
7551 :
7552else
7553 # Restart under the correct shell.
7554 exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
7555fi
7556
7557if test "X[$]1" = X--fallback-echo; then
7558 # used as fallback echo
7559 shift
7560 cat <<EOF
7561[$]*
7562EOF
7563 exit 0
7564fi
7565
7566# The HP-UX ksh and POSIX shell print the target directory to stdout
7567# if CDPATH is set.
7568(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
7569
7570if test -z "$ECHO"; then
7571if test "X${echo_test_string+set}" != Xset; then
7572# find a string as large as possible, as long as the shell can cope with it
7573 for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
7574 # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
7575 if (echo_test_string=`eval $cmd`) 2>/dev/null &&
7576 echo_test_string=`eval $cmd` &&
7577 (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
7578 then
7579 break
7580 fi
7581 done
7582fi
7583
7584if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
7585 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
7586 test "X$echo_testing_string" = "X$echo_test_string"; then
7587 :
7588else
7589 # The Solaris, AIX, and Digital Unix default echo programs unquote
7590 # backslashes. This makes it impossible to quote backslashes using
7591 # echo "$something" | sed 's/\\/\\\\/g'
7592 #
7593 # So, first we look for a working echo in the user's PATH.
7594
7595 lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
7596 for dir in $PATH /usr/ucb; do
7597 IFS="$lt_save_ifs"
7598 if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
7599 test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
7600 echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
7601 test "X$echo_testing_string" = "X$echo_test_string"; then
7602 echo="$dir/echo"
7603 break
7604 fi
7605 done
7606 IFS="$lt_save_ifs"
7607
7608 if test "X$echo" = Xecho; then
7609 # We didn't find a better echo, so look for alternatives.
7610 if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
7611 echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
7612 test "X$echo_testing_string" = "X$echo_test_string"; then
7613 # This shell has a builtin print -r that does the trick.
7614 echo='print -r'
7615 elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
7616 test "X$CONFIG_SHELL" != X/bin/ksh; then
7617 # If we have ksh, try running configure again with it.
7618 ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
7619 export ORIGINAL_CONFIG_SHELL
7620 CONFIG_SHELL=/bin/ksh
7621 export CONFIG_SHELL
7622 exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
7623 else
7624 # Try using printf.
7625 echo='printf %s\n'
7626 if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
7627 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
7628 test "X$echo_testing_string" = "X$echo_test_string"; then
7629 # Cool, printf works
7630 :
7631 elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
7632 test "X$echo_testing_string" = 'X\t' &&
7633 echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
7634 test "X$echo_testing_string" = "X$echo_test_string"; then
7635 CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
7636 export CONFIG_SHELL
7637 SHELL="$CONFIG_SHELL"
7638 export SHELL
7639 echo="$CONFIG_SHELL [$]0 --fallback-echo"
7640 elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
7641 test "X$echo_testing_string" = 'X\t' &&
7642 echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
7643 test "X$echo_testing_string" = "X$echo_test_string"; then
7644 echo="$CONFIG_SHELL [$]0 --fallback-echo"
7645 else
7646 # maybe with a smaller string...
7647 prev=:
7648
7649 for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
7650 if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
7651 then
7652 break
7653 fi
7654 prev="$cmd"
7655 done
7656
7657 if test "$prev" != 'sed 50q "[$]0"'; then
7658 echo_test_string=`eval $prev`
7659 export echo_test_string
7660 exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
7661 else
7662 # Oops. We lost completely, so just stick with echo.
7663 echo=echo
7664 fi
7665 fi
7666 fi
7667 fi
7668fi
7669fi
7670
7671# Copy echo and quote the copy suitably for passing to libtool from
7672# the Makefile, instead of quoting the original, which is used later.
7673ECHO=$echo
7674if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
7675 ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
7676fi
7677
7678AC_SUBST(ECHO)
7679])
7680m4trace:configure.in:18: -1- m4_pattern_allow([^ECHO$])
7681m4trace:configure.in:18: -1- m4_pattern_allow([^AR$])
7682m4trace:configure.in:18: -1- m4_pattern_allow([^RANLIB$])
7683m4trace:configure.in:18: -1- m4_pattern_allow([^STRIP$])
7684m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
7685m4trace:configure.in:18: -1- AC_PATH_MAGIC
7686m4trace:configure.in:18: -1- AC_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
7687m4trace:configure.in:18: -1- AC_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
7688m4trace:configure.in:18: -1- _LT_REQUIRED_DARWIN_CHECKS
7689m4trace:configure.in:18: -1- m4_pattern_allow([^DSYMUTIL$])
7690m4trace:configure.in:18: -1- m4_pattern_allow([^NMEDIT$])
7691m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7692You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7693../../lib/autoconf/general.m4:1463: AC_ARG_ENABLE is expanded from...
7694/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7695/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7696/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7697configure.in:18: the top level])
7698m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7699You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7700../../lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
7701/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7702/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7703/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7704configure.in:18: the top level])
7705m4trace:configure.in:18: -1- AC_LIBTOOL_LANG_C_CONFIG
7706m4trace:configure.in:18: -1- _LT_AC_LANG_C_CONFIG
7707m4trace:configure.in:18: -1- _LT_AC_TAGVAR([objext], [])
7708m4trace:configure.in:18: -1- _LT_AC_SYS_COMPILER
7709m4trace:configure.in:18: -1- _LT_COMPILER_BOILERPLATE
7710m4trace:configure.in:18: -1- _LT_LINKER_BOILERPLATE
7711m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([])
7712m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7713m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7714m4trace:configure.in:18: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
7715m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7716m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7717m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_COMPILER_PIC([])
7718m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7719m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7720m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7721m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7722m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7723m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7724m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7725m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7726m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7727m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7728m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7729m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7730m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7731m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7732m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7733m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7734m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7735m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7736m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7737m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7738m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7739m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7740m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7741m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7742m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7743m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7744m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7745m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7746m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7747m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7748m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7749m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7750m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7751m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7752m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7753m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7754m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7755m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7756m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7757m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7758m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7759m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7760m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7761m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7762m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7763m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7764m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7765m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7766m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7767m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7768m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7769m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7770m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7771m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7772m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7773m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7774m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7775m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7776m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7777m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7778m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7779m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7780m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7781m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7782m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7783m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7784m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_pic_works], [])
7785m4trace:configure.in:18: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, ) works], [lt_cv_prog_compiler_pic_works], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, )ifelse([],[],[ -DPIC],[ifelse([],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, ) in
7786 "" | " "*) ;;
7787 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, )=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, )" ;;
7788 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, )=
7789 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
7790m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7791m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7792m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7793m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7794m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7795m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7796m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7797m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7798m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7799m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7800m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7801m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7802m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7803m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_static_works], [])
7804m4trace:configure.in:18: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, )=])
7805m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7806m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_CC_C_O([])
7807m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7808m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7809m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7810m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7811m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7812m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7813m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7814m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7815m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7816m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([])
7817m4trace:configure.in:18: -1- _LT_AC_LOCK
7818m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
7819You should run autoupdate.], [../../lib/autoconf/general.m4:2675: AC_TRY_LINK is expanded from...
7820../../lib/m4sugar/m4sh.m4:598: AS_IF is expanded from...
7821../../lib/autoconf/general.m4:2019: AC_CACHE_VAL is expanded from...
7822../../lib/autoconf/general.m4:2040: AC_CACHE_CHECK is expanded from...
7823/usr/share/aclocal/libtool.m4:551: _LT_AC_LOCK is expanded from...
7824/usr/share/aclocal/libtool.m4:1171: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
7825/usr/share/aclocal/libtool.m4:2795: _LT_AC_LANG_C_CONFIG is expanded from...
7826/usr/share/aclocal/libtool.m4:2794: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
7827/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7828/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7829/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7830configure.in:18: the top level])
7831m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7832m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_SHLIBS([])
7833m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7834m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7835m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7836m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7837m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
7838m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
7839m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7840m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7841m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
7842m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7843m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
7844m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7845m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7846m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7847m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7848m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7849m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7850m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [])
7851m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7852m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7853m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7854m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [])
7855m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
7856m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
7857m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7858m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7859m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7860m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7861m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7862m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7863m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7864m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7865m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7866m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7867m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7868m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7869m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7870m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7871m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7872m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7873m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7874m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7875m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7876m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7877m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7878m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7879m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7880m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7881m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7882m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7883m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7884m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7885m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7886m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7887m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7888m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7889m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7890m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7891m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7892m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7893m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7894m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7895m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7896m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7897m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7898m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7899m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7900m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7901m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7902m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7903m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7904m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7905m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7906m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7907m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7908m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7909m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7910m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7911m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7912m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7913m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7914m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7915m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7916m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7917m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7918m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7919m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7920m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7921m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7922m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7923m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7924m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7925m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7926m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7927m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7928m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7929m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7930m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
7931m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7932m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7933m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7934m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7935m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7936m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
7937m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7938m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7939m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7940m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7941m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7942m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7943m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7944m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7945m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7946m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7947m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7948m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7949m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7950m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7951m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
7952m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
7953m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [])
7954m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7955m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7956m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7957m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7958m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7959m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7960m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7961m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7962m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7963m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7964m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7965m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7966m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [])
7967m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7968m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7969m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7970m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [])
7971m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7972m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7973m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7974m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7975m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7976m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7977m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7978m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7979m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7980m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7981m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7982m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7983m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7984m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7985m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7986m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7987m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7988m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7989m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7990m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7991m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7992m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7993m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7994m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7995m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7996m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7997m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7998m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
7999m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8000m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8001m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8002m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8003m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
8004m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8005m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8006m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8007m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8008m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8009m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8010m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8011m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8012m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
8013m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8014m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8015m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8016m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8017m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
8018m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8019m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8020m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
8021m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8022m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8023m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
8024m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8025m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8026m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8027m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8028m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8029m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8030m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8031m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8032m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8033m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8034m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8035m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8036m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8037m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8038m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8039m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8040m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8041m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8042m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8043m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8044m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
8045m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8046m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
8047m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8048m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8049m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
8050m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8051m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8052m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8053m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8054m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8055m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8056m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8057m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8058m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8059m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8060m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8061m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8062m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8063m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8064m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
8065m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8066m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8067m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8068m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8069m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8070m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8071m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
8072m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
8073m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
8074m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8075m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8076m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8077m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8078m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
8079m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8080m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8081m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8082m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8083m4trace:configure.in:18: -1- _LT_AC_TAGVAR([reload_cmds], [])
8084m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8085m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8086m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8087m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8088m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8089m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8090m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8091m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8092m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8093m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
8094m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
8095m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8096m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8097m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8098m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8099m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8100m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8101m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
8102m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8103m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8104m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8105m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8106m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8107m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
8108m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8109m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8110m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8111m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8112m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8113m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8114m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8115m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8116m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
8117m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
8118m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
8119m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [])
8120m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8121m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8122m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8123m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
8124m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
8125m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8126m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8127m4trace:configure.in:18: -2- _LT_AC_TAGVAR([archive_cmds], [])
8128m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8129m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8130m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8131m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8132m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8133m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([])
8134m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([])
8135m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8136m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8137m4trace:configure.in:18: -1- _LT_AC_TAGVAR([runpath_var], [])
8138m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
8139m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8140m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
8141m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8142m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8143m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8144m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8145m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8146m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8147m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_LIB_STRIP
8148m4trace:configure.in:18: -1- AC_LIBTOOL_DLOPEN_SELF
8149m4trace:configure.in:18: -1- _LT_AC_CHECK_DLFCN
8150m4trace:configure.in:18: -1- m4_pattern_allow([^STDC_HEADERS$])
8151m4trace:configure.in:18: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
8152m4trace:configure.in:18: -1- _LT_AC_TRY_DLOPEN_SELF([lt_cv_dlopen_self=yes], [lt_cv_dlopen_self=yes], [lt_cv_dlopen_self=no], [lt_cv_dlopen_self=cross])
8153m4trace:configure.in:18: -1- _LT_AC_TRY_DLOPEN_SELF([lt_cv_dlopen_self_static=yes], [lt_cv_dlopen_self_static=yes], [lt_cv_dlopen_self_static=no], [lt_cv_dlopen_self_static=cross])
8154m4trace:configure.in:18: -1- AC_LIBTOOL_CONFIG([])
8155m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [])
8156m4trace:configure.in:18: -1- _LT_AC_TAGVAR([CC], [])
8157m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [])
8158m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
8159m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
8160m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
8161m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
8162m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8163m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
8164m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
8165m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
8166m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
8167m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
8168m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [])
8169m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [])
8170m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [])
8171m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [])
8172m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [])
8173m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [])
8174m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8175m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8176m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postinstall_cmds], [])
8177m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postuninstall_cmds], [])
8178m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
8179m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8180m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
8181m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
8182m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8183m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
8184m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8185m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
8186m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [])
8187m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
8188m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
8189m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [])
8190m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
8191m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [])
8192m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
8193m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
8194m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8195m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8196m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [])
8197m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
8198m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
8199m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
8200m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
8201m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
8202m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [])
8203m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [])
8204m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [])
8205m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
8206m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
8207m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
8208m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
8209m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
8210m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
8211m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
8212m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
8213m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
8214m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
8215m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
8216m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [])
8217m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
8218m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [])
8219m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
8220m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [])
8221m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [])
8222m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [])
8223m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [])
8224m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [])
8225m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [])
8226m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
8227m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
8228m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [])
8229m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
8230m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
8231m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
8232m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [])
8233m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
8234m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
8235m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
8236m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
8237m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [])
8238m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
8239m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
8240m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [])
8241m4trace:configure.in:18: -1- _LT_AC_TAGCONFIG
8242m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
8243You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
8244../../lib/autoconf/general.m4:1482: AC_ARG_WITH is expanded from...
8245/usr/share/aclocal/libtool.m4:1920: _LT_AC_TAGCONFIG is expanded from...
8246/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
8247/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
8248/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
8249configure.in:18: the top level])
8250m4trace:configure.in:18: -1- _m4_warn([obsolete], [back quotes and double quotes must not be escaped in: tag name \"$tagname\" already exists], [/usr/share/aclocal/libtool.m4:1920: _LT_AC_TAGCONFIG is expanded from...
8251/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
8252/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
8253/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
8254configure.in:18: the top level])
8255m4trace:configure.in:18: -1- AC_LIBTOOL_LANG_CXX_CONFIG
8256m4trace:configure.in:18: -1- _LT_AC_LANG_CXX_CONFIG([CXX])
8257m4trace:configure.in:18: -1- _LT_AC_PROG_CXXCPP
8258m4trace:configure.in:18: -1- m4_pattern_allow([^CXXCPP$])
8259m4trace:configure.in:18: -1- m4_pattern_allow([^CPPFLAGS$])
8260m4trace:configure.in:18: -1- m4_pattern_allow([^CXXCPP$])
8261m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8262m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8263m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
8264m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8265m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8266m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8267m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8268m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
8269m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8270m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8271m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8272m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8273m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8274m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8275m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8276m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8277m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8278m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8279m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
8280m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8281m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8282m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [CXX])
8283m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8284m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8285m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [CXX])
8286m4trace:configure.in:18: -1- _LT_AC_TAGVAR([objext], [CXX])
8287m4trace:configure.in:18: -1- _LT_AC_SYS_COMPILER
8288m4trace:configure.in:18: -1- _LT_COMPILER_BOILERPLATE
8289m4trace:configure.in:18: -1- _LT_LINKER_BOILERPLATE
8290m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [CXX])
8291m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
8292m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
8293m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
8294m4trace:configure.in:18: -1- AC_PROG_LD
8295m4trace:configure.in:18: -1- AC_PROG_LD_GNU
8296m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8297m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8298m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8299m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8300m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8301m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8302m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8303m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8304m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8305m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8306m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8307m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8308m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8309m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8310m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8311m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8312m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8313m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
8314m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8315m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
8316m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8317m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8318m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8319m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8320m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8321m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
8322m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8323m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8324m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8325m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8326m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8327m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8328m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8329m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8330m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8331m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8332m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8333m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8334m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
8335m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
8336m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8337m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8338m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8339m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8340m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8341m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8342m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8343m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8344m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8345m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8346m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8347m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8348m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8349m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8350m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8351m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8352m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8353m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8354m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8355m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8356m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8357m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8358m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8359m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8360m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8361m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8362m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8363m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8364m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8365m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8366m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8367m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8368m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8369m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8370m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8371m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8372m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8373m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8374m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8375m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8376m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8377m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8378m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8379m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8380m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8381m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8382m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8383m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8384m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8385m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8386m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8387m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8388m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8389m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8390m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8391m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8392m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8393m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8394m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8395m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8396m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8397m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8398m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8399m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8400m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8401m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8402m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8403m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8404m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8405m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8406m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8407m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8408m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8409m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8410m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8411m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8412m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8413m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8414m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8415m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8416m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8417m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8418m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8419m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8420m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8421m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8422m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8423m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8424m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8425m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8426m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8427m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8428m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8429m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8430m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8431m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8432m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8433m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8434m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8435m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8436m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8437m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8438m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8439m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8440m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8441m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8442m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8443m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8444m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8445m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8446m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8447m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8448m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8449m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8450m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8451m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8452m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8453m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8454m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8455m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8456m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8457m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8458m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8459m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8460m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8461m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8462m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8463m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8464m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8465m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8466m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8467m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8468m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8469m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8470m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8471m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8472m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8473m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8474m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8475m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8476m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8477m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8478m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8479m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8480m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8481m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8482m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8483m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8484m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8485m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8486m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8487m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8488m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8489m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8490m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8491m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8492m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8493m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8494m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8495m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8496m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8497m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8498m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8499m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8500m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8501m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8502m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8503m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8504m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8505m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8506m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8507m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8508m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8509m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8510m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8511m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8512m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8513m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8514m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8515m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8516m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8517m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8518m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8519m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8520m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8521m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8522m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [CXX])
8523m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [CXX])
8524m4trace:configure.in:18: -1- AC_LIBTOOL_POSTDEP_PREDEP([CXX])
8525m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8526m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8527m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8528m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8529m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8530m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8531m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8532m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8533m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8534m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8535m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8536m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8537m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8538m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8539m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8540m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8541m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [CXX])
8542m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8543m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [CXX])
8544m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8545m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8546m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8547m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8548m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8549m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8550m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8551m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8552m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_COMPILER_PIC([CXX])
8553m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8554m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8555m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8556m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8557m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8558m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8559m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8560m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8561m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8562m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8563m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8564m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8565m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8566m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8567m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8568m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8569m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8570m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8571m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8572m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8573m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8574m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8575m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8576m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8577m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8578m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8579m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8580m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8581m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8582m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8583m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8584m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8585m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8586m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8587m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8588m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8589m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8590m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8591m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8592m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8593m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8594m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8595m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8596m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8597m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8598m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8599m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8600m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8601m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8602m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8603m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8604m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8605m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8606m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8607m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8608m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8609m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8610m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX])
8611m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8612m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8613m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8614m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_pic_works], [CXX])
8615m4trace:configure.in:18: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX) works], [lt_cv_prog_compiler_pic_works_CXX], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)ifelse([CXX],[],[ -DPIC],[ifelse([CXX],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX) in
8616 "" | " "*) ;;
8617 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)" ;;
8618 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=
8619 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no])
8620m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8621m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8622m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8623m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8624m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8625m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8626m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8627m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX])
8628m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8629m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8630m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8631m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8632m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8633m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_static_works], [CXX])
8634m4trace:configure.in:18: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, CXX)=])
8635m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8636m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_CC_C_O([CXX])
8637m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8638m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8639m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8640m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8641m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8642m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8643m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8644m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8645m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8646m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([CXX])
8647m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8648m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_SHLIBS([CXX])
8649m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8650m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8651m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8652m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8653m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8654m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8655m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8656m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
8657m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8658m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8659m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
8660m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8661m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8662m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8663m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8664m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8665m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8666m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8667m4trace:configure.in:18: -2- _LT_AC_TAGVAR([archive_cmds], [CXX])
8668m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8669m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8670m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8671m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8672m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8673m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([CXX])
8674m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([CXX])
8675m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8676m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8677m4trace:configure.in:18: -1- _LT_AC_TAGVAR([runpath_var], [CXX])
8678m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8679m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8680m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8681m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8682m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8683m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8684m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8685m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8686m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8687m4trace:configure.in:18: -1- AC_LIBTOOL_CONFIG([CXX])
8688m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [CXX])
8689m4trace:configure.in:18: -1- _LT_AC_TAGVAR([CC], [CXX])
8690m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [CXX])
8691m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8692m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8693m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8694m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
8695m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8696m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX])
8697m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8698m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
8699m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8700m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
8701m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8702m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8703m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [CXX])
8704m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8705m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8706m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [CXX])
8707m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8708m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8709m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postinstall_cmds], [CXX])
8710m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postuninstall_cmds], [CXX])
8711m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
8712m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8713m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8714m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8715m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8716m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
8717m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8718m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8719m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8720m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8721m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8722m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [CXX])
8723m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
8724m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [CXX])
8725m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8726m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
8727m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8728m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8729m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8730m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8731m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
8732m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8733m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8734m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
8735m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [CXX])
8736m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [CXX])
8737m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [CXX])
8738m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8739m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8740m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8741m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8742m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
8743m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8744m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8745m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX])
8746m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8747m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
8748m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
8749m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8750m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8751m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8752m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8753m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8754m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8755m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [CXX])
8756m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8757m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [CXX])
8758m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8759m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8760m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8761m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8762m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8763m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
8764m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8765m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8766m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8767m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8768m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8769m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8770m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
8771m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8772m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
8773m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [CXX])
8774m4trace:configure.in:18: -1- AC_LIBTOOL_LANG_F77_CONFIG
8775m4trace:configure.in:18: -1- _LT_AC_LANG_F77_CONFIG([F77])
8776m4trace:configure.in:18: -1- m4_pattern_allow([^F77$])
8777m4trace:configure.in:18: -1- m4_pattern_allow([^FFLAGS$])
8778m4trace:configure.in:18: -1- m4_pattern_allow([^LDFLAGS$])
8779m4trace:configure.in:18: -1- m4_pattern_allow([^LIBS$])
8780m4trace:configure.in:18: -1- m4_pattern_allow([^F77$])
8781m4trace:configure.in:18: -1- m4_pattern_allow([^ac_ct_F77$])
8782m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8783m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8784m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8785m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8786m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8787m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8788m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8789m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8790m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8791m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8792m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8793m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8794m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8795m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8796m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
8797m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8798m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8799m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8800m4trace:configure.in:18: -1- _LT_AC_TAGVAR([objext], [F77])
8801m4trace:configure.in:18: -1- _LT_AC_SYS_COMPILER
8802m4trace:configure.in:18: -1- _LT_COMPILER_BOILERPLATE
8803m4trace:configure.in:18: -1- _LT_LINKER_BOILERPLATE
8804m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [F77])
8805m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
8806m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [F77])
8807m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [F77])
8808m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_COMPILER_PIC([F77])
8809m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8810m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8811m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8812m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8813m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8814m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8815m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8816m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8817m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8818m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8819m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8820m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8821m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8822m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8823m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8824m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8825m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8826m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8827m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8828m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8829m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8830m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8831m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8832m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8833m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8834m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8835m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8836m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8837m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8838m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8839m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8840m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8841m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8842m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8843m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8844m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8845m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8846m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8847m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8848m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8849m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8850m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8851m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8852m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8853m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8854m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8855m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8856m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8857m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8858m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8859m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8860m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8861m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8862m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8863m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8864m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8865m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8866m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8867m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8868m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8869m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8870m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8871m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8872m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8873m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8874m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8875m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_pic_works], [F77])
8876m4trace:configure.in:18: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77) works], [lt_cv_prog_compiler_pic_works_F77], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)ifelse([F77],[],[ -DPIC],[ifelse([F77],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77) in
8877 "" | " "*) ;;
8878 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)" ;;
8879 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=
8880 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, F77)=no])
8881m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8882m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8883m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8884m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8885m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8886m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8887m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8888m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8889m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8890m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8891m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8892m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8893m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8894m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_static_works], [F77])
8895m4trace:configure.in:18: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_F77], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, F77)=])
8896m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8897m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_CC_C_O([F77])
8898m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8899m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8900m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8901m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8902m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8903m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8904m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8905m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8906m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8907m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([F77])
8908m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8909m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_SHLIBS([F77])
8910m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8911m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8912m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8913m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8914m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
8915m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
8916m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8917m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8918m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
8919m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8920m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8921m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8922m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8923m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8924m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8925m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8926m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8927m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8928m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8929m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8930m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8931m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
8932m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
8933m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
8934m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8935m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8936m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8937m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8938m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8939m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8940m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8941m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8942m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8943m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8944m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8945m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8946m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8947m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8948m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8949m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8950m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8951m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8952m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8953m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8954m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8955m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8956m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8957m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8958m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8959m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8960m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8961m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8962m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8963m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8964m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8965m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8966m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8967m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8968m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8969m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8970m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8971m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8972m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8973m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8974m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8975m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8976m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8977m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8978m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8979m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8980m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8981m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8982m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8983m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8984m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8985m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8986m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8987m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8988m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8989m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8990m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8991m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8992m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8993m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8994m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8995m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8996m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8997m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8998m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8999m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9000m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
9001m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9002m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9003m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9004m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9005m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
9006m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9007m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
9008m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9009m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9010m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9011m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9012m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9013m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
9014m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9015m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
9016m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9017m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
9018m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9019m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9020m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9021m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9022m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9023m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9024m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9025m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9026m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9027m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9028m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
9029m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
9030m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77])
9031m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
9032m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9033m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9034m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9035m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9036m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9037m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9038m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
9039m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9040m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
9041m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
9042m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9043m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
9044m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9045m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
9046m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9047m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
9048m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9049m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
9050m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9051m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9052m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9053m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9054m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9055m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9056m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9057m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9058m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9059m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9060m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9061m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9062m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9063m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9064m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9065m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9066m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9067m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9068m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9069m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9070m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9071m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9072m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9073m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9074m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9075m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9076m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9077m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9078m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9079m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9080m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9081m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9082m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9083m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9084m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9085m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9086m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9087m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9088m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9089m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
9090m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9091m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9092m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9093m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9094m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9095m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9096m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9097m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
9098m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9099m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9100m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
9101m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9102m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9103m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9104m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9105m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9106m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9107m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9108m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9109m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9110m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9111m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9112m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9113m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9114m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9115m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9116m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9117m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9118m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9119m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9120m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9121m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9122m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9123m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9124m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9125m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9126m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
9127m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9128m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9129m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9130m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9131m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9132m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9133m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9134m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9135m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9136m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9137m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9138m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9139m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9140m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9141m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
9142m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9143m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9144m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9145m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9146m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9147m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9148m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
9149m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
9150m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
9151m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9152m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9153m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9154m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9155m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9156m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9157m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9158m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9159m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9160m4trace:configure.in:18: -1- _LT_AC_TAGVAR([reload_cmds], [F77])
9161m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9162m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9163m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9164m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9165m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9166m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9167m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9168m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9169m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9170m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9171m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
9172m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9173m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9174m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9175m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9176m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9177m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9178m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
9179m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9180m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9181m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9182m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9183m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9184m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
9185m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9186m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9187m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9188m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9189m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9190m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9191m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9192m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9193m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9194m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9195m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9196m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
9197m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9198m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9199m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9200m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
9201m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
9202m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9203m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9204m4trace:configure.in:18: -2- _LT_AC_TAGVAR([archive_cmds], [F77])
9205m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9206m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9207m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9208m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9209m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9210m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([F77])
9211m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([F77])
9212m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9213m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9214m4trace:configure.in:18: -1- _LT_AC_TAGVAR([runpath_var], [F77])
9215m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
9216m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9217m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9218m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9219m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9220m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9221m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9222m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9223m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9224m4trace:configure.in:18: -1- AC_LIBTOOL_CONFIG([F77])
9225m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [F77])
9226m4trace:configure.in:18: -1- _LT_AC_TAGVAR([CC], [F77])
9227m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [F77])
9228m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
9229m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
9230m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
9231m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77])
9232m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9233m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
9234m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
9235m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
9236m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
9237m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
9238m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [F77])
9239m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [F77])
9240m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [F77])
9241m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [F77])
9242m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77])
9243m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [F77])
9244m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9245m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9246m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postinstall_cmds], [F77])
9247m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postuninstall_cmds], [F77])
9248m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
9249m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9250m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
9251m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
9252m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9253m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
9254m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9255m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
9256m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
9257m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
9258m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
9259m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77])
9260m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
9261m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
9262m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
9263m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
9264m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9265m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9266m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
9267m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
9268m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
9269m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
9270m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
9271m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
9272m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [F77])
9273m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [F77])
9274m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [F77])
9275m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
9276m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
9277m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
9278m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
9279m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77])
9280m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
9281m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
9282m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
9283m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
9284m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
9285m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
9286m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
9287m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
9288m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [F77])
9289m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
9290m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [F77])
9291m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [F77])
9292m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [F77])
9293m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [F77])
9294m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [F77])
9295m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77])
9296m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
9297m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
9298m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
9299m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
9300m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
9301m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
9302m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
9303m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
9304m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
9305m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
9306m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
9307m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
9308m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
9309m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
9310m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
9311m4trace:configure.in:18: -1- AC_LIBTOOL_LANG_GCJ_CONFIG
9312m4trace:configure.in:18: -1- _LT_AC_LANG_GCJ_CONFIG([GCJ])
9313m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
9314You should run autoupdate.], [../../lib/autoconf/lang.m4:126: AC_LANG_SAVE is expanded from...
9315/usr/share/aclocal/libtool.m4:4189: _LT_AC_LANG_GCJ_CONFIG is expanded from...
9316/usr/share/aclocal/libtool.m4:4188: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
9317/usr/share/aclocal/libtool.m4:1920: _LT_AC_TAGCONFIG is expanded from...
9318/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9319/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9320/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9321configure.in:18: the top level])
9322m4trace:configure.in:18: -1- _LT_AC_TAGVAR([objext], [GCJ])
9323m4trace:configure.in:18: -1- _LT_AC_SYS_COMPILER
9324m4trace:configure.in:18: -1- _LT_COMPILER_BOILERPLATE
9325m4trace:configure.in:18: -1- _LT_LINKER_BOILERPLATE
9326m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [GCJ])
9327m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
9328m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9329m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9330m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([GCJ])
9331m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9332m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9333m4trace:configure.in:18: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, GCJ)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, GCJ) -fno-rtti -fno-exceptions"])
9334m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9335m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9336m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_COMPILER_PIC([GCJ])
9337m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9338m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9339m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9340m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9341m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9342m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9343m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9344m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9345m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
9346m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9347m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9348m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9349m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9350m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9351m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9352m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9353m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9354m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9355m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9356m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9357m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9358m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9359m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9360m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9361m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9362m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9363m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9364m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9365m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9366m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9367m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9368m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9369m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9370m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9371m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9372m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9373m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9374m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9375m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9376m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9377m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9378m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9379m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9380m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9381m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9382m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9383m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9384m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9385m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9386m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9387m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9388m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9389m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9390m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9391m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9392m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9393m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9394m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
9395m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9396m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9397m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
9398m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9399m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9400m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9401m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_pic_works], [GCJ])
9402m4trace:configure.in:18: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ) works], [lt_cv_prog_compiler_pic_works_GCJ], [$_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)ifelse([GCJ],[],[ -DPIC],[ifelse([GCJ],[CXX],[ -DPIC],[])])], [], [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ) in
9403 "" | " "*) ;;
9404 *) _LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)" ;;
9405 esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=
9406 _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, GCJ)=no])
9407m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9408m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9409m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9410m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9411m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9412m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9413m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9414m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
9415m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9416m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9417m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9418m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9419m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9420m4trace:configure.in:18: -2- _LT_AC_TAGVAR([lt_cv_prog_compiler_static_works], [GCJ])
9421m4trace:configure.in:18: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works_GCJ], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, GCJ)=])
9422m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9423m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_CC_C_O([GCJ])
9424m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9425m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9426m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9427m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9428m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9429m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9430m4trace:configure.in:18: -4- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9431m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9432m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9433m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([GCJ])
9434m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9435m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_SHLIBS([GCJ])
9436m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9437m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9438m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9439m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9440m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
9441m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9442m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9443m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9444m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
9445m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9446m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9447m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9448m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9449m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9450m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9451m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9452m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9453m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9454m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9455m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
9456m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9457m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
9458m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
9459m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
9460m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9461m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9462m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9463m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9464m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9465m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9466m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9467m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9468m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9469m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9470m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9471m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9472m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9473m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9474m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9475m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
9476m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9477m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9478m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9479m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9480m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9481m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9482m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9483m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9484m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9485m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9486m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9487m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9488m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9489m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9490m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9491m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9492m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9493m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9494m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9495m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9496m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9497m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9498m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9499m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9500m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9501m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9502m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9503m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9504m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9505m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9506m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9507m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9508m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9509m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9510m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9511m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9512m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9513m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9514m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9515m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9516m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9517m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
9518m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9519m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9520m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9521m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9522m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9523m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9524m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9525m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9526m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9527m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9528m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9529m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9530m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9531m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
9532m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9533m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
9534m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9535m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9536m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9537m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9538m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9539m4trace:configure.in:18: -1- _LT_AC_SYS_LIBPATH_AIX
9540m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9541m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9542m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9543m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9544m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9545m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9546m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9547m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9548m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9549m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9550m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9551m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9552m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9553m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9554m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
9555m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9556m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ])
9557m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9558m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9559m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9560m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9561m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9562m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9563m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9564m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9565m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9566m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9567m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9568m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9569m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9570m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9571m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9572m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9573m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9574m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9575m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9576m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9577m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9578m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9579m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9580m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9581m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9582m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9583m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9584m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9585m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9586m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9587m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9588m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9589m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9590m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9591m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9592m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9593m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9594m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9595m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9596m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9597m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9598m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9599m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9600m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9601m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9602m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9603m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9604m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9605m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9606m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9607m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9608m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9609m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9610m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9611m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9612m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9613m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9614m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9615m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9616m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9617m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9618m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9619m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9620m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9621m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9622m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9623m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9624m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9625m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9626m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9627m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9628m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9629m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9630m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9631m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9632m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9633m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9634m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9635m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9636m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9637m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9638m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9639m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9640m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9641m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9642m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9643m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9644m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9645m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9646m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9647m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9648m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9649m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9650m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9651m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9652m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
9653m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9654m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9655m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9656m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9657m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9658m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9659m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9660m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9661m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9662m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9663m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9664m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9665m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9666m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9667m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9668m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9669m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9670m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9671m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9672m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9673m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9674m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9675m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9676m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9677m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9678m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9679m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9680m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9681m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9682m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9683m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9684m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9685m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9686m4trace:configure.in:18: -1- _LT_AC_TAGVAR([reload_cmds], [GCJ])
9687m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9688m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9689m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9690m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9691m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9692m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9693m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9694m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9695m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9696m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9697m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9698m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9699m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9700m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9701m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9702m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9703m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9704m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9705m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9706m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9707m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9708m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9709m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9710m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9711m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9712m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9713m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9714m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9715m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9716m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9717m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9718m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9719m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9720m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9721m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9722m4trace:configure.in:18: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9723m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9724m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9725m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9726m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9727m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9728m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9729m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9730m4trace:configure.in:18: -2- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9731m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9732m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9733m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9734m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9735m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9736m4trace:configure.in:18: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([GCJ])
9737m4trace:configure.in:18: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([GCJ])
9738m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9739m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9740m4trace:configure.in:18: -1- _LT_AC_TAGVAR([runpath_var], [GCJ])
9741m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9742m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9743m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9744m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9745m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9746m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9747m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9748m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9749m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9750m4trace:configure.in:18: -1- AC_LIBTOOL_CONFIG([GCJ])
9751m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [GCJ])
9752m4trace:configure.in:18: -1- _LT_AC_TAGVAR([CC], [GCJ])
9753m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [GCJ])
9754m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9755m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9756m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9757m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9758m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9759m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
9760m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9761m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9762m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9763m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
9764m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [GCJ])
9765m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ])
9766m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [GCJ])
9767m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [GCJ])
9768m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ])
9769m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [GCJ])
9770m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9771m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9772m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postinstall_cmds], [GCJ])
9773m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postuninstall_cmds], [GCJ])
9774m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9775m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9776m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9777m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9778m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9779m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9780m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9781m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9782m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9783m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9784m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9785m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ])
9786m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
9787m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
9788m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9789m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
9790m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9791m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9792m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9793m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9794m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9795m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9796m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9797m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9798m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [GCJ])
9799m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [GCJ])
9800m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [GCJ])
9801m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9802m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9803m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9804m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9805m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9806m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9807m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9808m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
9809m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9810m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
9811m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9812m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9813m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9814m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9815m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9816m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [GCJ])
9817m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ])
9818m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [GCJ])
9819m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [GCJ])
9820m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [GCJ])
9821m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ])
9822m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9823m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9824m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9825m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9826m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9827m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9828m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9829m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9830m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9831m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9832m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9833m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
9834m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9835m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
9836m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
9837m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
9838You should run autoupdate.], [../../lib/autoconf/lang.m4:135: AC_LANG_RESTORE is expanded from...
9839/usr/share/aclocal/libtool.m4:4189: _LT_AC_LANG_GCJ_CONFIG is expanded from...
9840/usr/share/aclocal/libtool.m4:4188: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
9841/usr/share/aclocal/libtool.m4:1920: _LT_AC_TAGCONFIG is expanded from...
9842/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9843/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9844/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9845configure.in:18: the top level])
9846m4trace:configure.in:18: -1- AC_LIBTOOL_LANG_RC_CONFIG
9847m4trace:configure.in:18: -1- _LT_AC_LANG_RC_CONFIG([RC])
9848m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
9849You should run autoupdate.], [../../lib/autoconf/lang.m4:126: AC_LANG_SAVE is expanded from...
9850/usr/share/aclocal/libtool.m4:4249: _LT_AC_LANG_RC_CONFIG is expanded from...
9851/usr/share/aclocal/libtool.m4:4248: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
9852/usr/share/aclocal/libtool.m4:1920: _LT_AC_TAGCONFIG is expanded from...
9853/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9854/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9855/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9856configure.in:18: the top level])
9857m4trace:configure.in:18: -1- _LT_AC_TAGVAR([objext], [RC])
9858m4trace:configure.in:18: -1- _LT_AC_SYS_COMPILER
9859m4trace:configure.in:18: -1- _LT_COMPILER_BOILERPLATE
9860m4trace:configure.in:18: -1- _LT_LINKER_BOILERPLATE
9861m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [RC])
9862m4trace:configure.in:18: -1- _LT_CC_BASENAME([$compiler])
9863m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
9864m4trace:configure.in:18: -1- AC_LIBTOOL_CONFIG([RC])
9865m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [RC])
9866m4trace:configure.in:18: -1- _LT_AC_TAGVAR([CC], [RC])
9867m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [RC])
9868m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC])
9869m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC])
9870m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC])
9871m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC])
9872m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC])
9873m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC])
9874m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC])
9875m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC])
9876m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
9877m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
9878m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [RC])
9879m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [RC])
9880m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [RC])
9881m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [RC])
9882m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC])
9883m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [RC])
9884m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
9885m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
9886m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postinstall_cmds], [RC])
9887m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postuninstall_cmds], [RC])
9888m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
9889m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC])
9890m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC])
9891m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
9892m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC])
9893m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC])
9894m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC])
9895m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC])
9896m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [RC])
9897m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
9898m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
9899m4trace:configure.in:18: -1- _LT_AC_TAGVAR([fix_srcfile_path], [RC])
9900m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC])
9901m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [RC])
9902m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
9903m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
9904m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
9905m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
9906m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [RC])
9907m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
9908m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
9909m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
9910m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [RC])
9911m4trace:configure.in:18: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC])
9912m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler], [RC])
9913m4trace:configure.in:18: -1- _LT_AC_TAGVAR([GCC], [RC])
9914m4trace:configure.in:18: -1- _LT_AC_TAGVAR([LD], [RC])
9915m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC])
9916m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC])
9917m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
9918m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC])
9919m4trace:configure.in:18: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC])
9920m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC])
9921m4trace:configure.in:18: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC])
9922m4trace:configure.in:18: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC])
9923m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
9924m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
9925m4trace:configure.in:18: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
9926m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
9927m4trace:configure.in:18: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
9928m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_cmds], [RC])
9929m4trace:configure.in:18: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
9930m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predep_objects], [RC])
9931m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdep_objects], [RC])
9932m4trace:configure.in:18: -1- _LT_AC_TAGVAR([predeps], [RC])
9933m4trace:configure.in:18: -1- _LT_AC_TAGVAR([postdeps], [RC])
9934m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_dirs], [RC])
9935m4trace:configure.in:18: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC])
9936m4trace:configure.in:18: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC])
9937m4trace:configure.in:18: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC])
9938m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_action], [RC])
9939m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC])
9940m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC])
9941m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC])
9942m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_direct], [RC])
9943m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_minus_L], [RC])
9944m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [RC])
9945m4trace:configure.in:18: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC])
9946m4trace:configure.in:18: -1- _LT_AC_TAGVAR([link_all_deplibs], [RC])
9947m4trace:configure.in:18: -1- _LT_AC_TAGVAR([always_export_symbols], [RC])
9948m4trace:configure.in:18: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
9949m4trace:configure.in:18: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC])
9950m4trace:configure.in:18: -1- _LT_AC_TAGVAR([include_expsyms], [RC])
9951m4trace:configure.in:18: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
9952You should run autoupdate.], [../../lib/autoconf/lang.m4:135: AC_LANG_RESTORE is expanded from...
9953/usr/share/aclocal/libtool.m4:4249: _LT_AC_LANG_RC_CONFIG is expanded from...
9954/usr/share/aclocal/libtool.m4:4248: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
9955/usr/share/aclocal/libtool.m4:1920: _LT_AC_TAGCONFIG is expanded from...
9956/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9957/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9958/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9959configure.in:18: the top level])
9960m4trace:configure.in:18: -1- m4_pattern_allow([^LIBTOOL$])
9961m4trace:configure.in:18: -1- AC_LIBTOOL_CXX
9962m4trace:configure.in:18: -1- _LT_AC_LANG_CXX
9963m4trace:configure.in:18: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
9964m4trace:configure.in:18: -1- AC_LIBTOOL_F77
9965m4trace:configure.in:18: -1- _LT_AC_LANG_F77
9966m4trace:configure.in:18: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
9967m4trace:configure.in:19: -1- m4_pattern_allow([^RANLIB$])
9968m4trace:configure.in:26: -1- m4_pattern_allow([^STDC_HEADERS$])
9969m4trace:configure.in:27: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$])
9970m4trace:configure.in:32: -1- m4_pattern_allow([^HAVE__BOOL$])
9971m4trace:configure.in:32: -1- m4_pattern_allow([^HAVE_STDBOOL_H$])
9972m4trace:configure.in:33: -1- m4_pattern_allow([^const$])
9973m4trace:configure.in:34: -1- m4_pattern_allow([^uid_t$])
9974m4trace:configure.in:34: -1- m4_pattern_allow([^gid_t$])
9975m4trace:configure.in:36: -1- m4_pattern_allow([^pid_t$])
9976m4trace:configure.in:37: -1- m4_pattern_allow([^size_t$])
9977m4trace:configure.in:38: -1- m4_pattern_allow([^TM_IN_SYS_TIME$])
9978m4trace:configure.in:41: -1- m4_pattern_allow([^HAVE_ALLOCA_H$])
9979m4trace:configure.in:41: -1- m4_pattern_allow([^HAVE_ALLOCA$])
9980m4trace:configure.in:41: -1- m4_pattern_allow([^ALLOCA$])
9981m4trace:configure.in:41: -1- m4_pattern_allow([^C_ALLOCA$])
9982m4trace:configure.in:41: -1- m4_pattern_allow([^CRAY_STACKSEG_END$])
9983m4trace:configure.in:41: -1- m4_pattern_allow([^STACK_DIRECTION$])
9984m4trace:configure.in:42: -1- m4_pattern_allow([^HAVE_UNISTD_H$])
9985m4trace:configure.in:42: -1- m4_pattern_allow([^HAVE_CHOWN$])
9986m4trace:configure.in:43: -1- m4_pattern_allow([^CLOSEDIR_VOID$])
9987m4trace:configure.in:44: -1- m4_pattern_allow([^HAVE_VFORK_H$])
9988m4trace:configure.in:44: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
9989m4trace:configure.in:44: -1- m4_pattern_allow([^vfork$])
9990m4trace:configure.in:44: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
9991m4trace:configure.in:50: -1- m4_pattern_allow([^SELECT_TYPE_ARG1$])
9992m4trace:configure.in:50: -1- m4_pattern_allow([^SELECT_TYPE_ARG234$])
9993m4trace:configure.in:50: -1- m4_pattern_allow([^SELECT_TYPE_ARG5$])
9994m4trace:configure.in:51: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
9995You should run autoupdate.], [../../lib/autoconf/types.m4:738: AC_TYPE_SIGNAL is expanded from...
9996configure.in:51: the top level])
9997m4trace:configure.in:51: -1- m4_pattern_allow([^RETSIGTYPE$])
9998m4trace:configure.in:52: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$])
9999m4trace:configure.in:52: -1- m4_pattern_allow([^LIB@&t@OBJS$])
10000m4trace:configure.in:52: -1- m4_pattern_allow([^LIB@&t@OBJS$])
10001m4trace:configure.in:52: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$])
10002m4trace:configure.in:53: -1- m4_pattern_allow([^HAVE_STRFTIME$])
10003m4trace:configure.in:53: -1- m4_pattern_allow([^HAVE_STRFTIME$])
10004m4trace:configure.in:55: -1- m4_pattern_allow([^WORDS_BIGENDIAN$])
10005m4trace:configure.in:55: -1- m4_pattern_allow([^AC_APPLE_UNIVERSAL_BUILD$])
10006m4trace:configure.in:57: -1- m4_pattern_allow([^SIZEOF_INT$])
10007m4trace:configure.in:58: -1- m4_pattern_allow([^SIZEOF_SHORT$])
10008m4trace:configure.in:59: -1- m4_pattern_allow([^SIZEOF_LONG$])
10009m4trace:configure.in:60: -1- m4_pattern_allow([^SIZEOF_FLOAT$])
10010m4trace:configure.in:61: -1- m4_pattern_allow([^SIZEOF_DOUBLE$])
10011m4trace:configure.in:63: -1- m4_pattern_allow([^pid_t$])
10012m4trace:configure.in:64: -1- m4_pattern_allow([^size_t$])
10013m4trace:configure.in:99: -1- m4_pattern_allow([^OPENSSL_DIR$])
10014m4trace:configure.in:113: -1- m4_pattern_allow([^BUILD_CPU$])
10015m4trace:configure.in:114: -1- m4_pattern_allow([^BUILD_CPU$])
10016m4trace:configure.in:119: -1- m4_pattern_allow([^BUILD_VENDOR$])
10017m4trace:configure.in:120: -1- m4_pattern_allow([^BUILD_VENDOR$])
10018m4trace:configure.in:125: -1- m4_pattern_allow([^BUILD_OS$])
10019m4trace:configure.in:126: -1- m4_pattern_allow([^BUILD_OS$])
10020m4trace:configure.in:132: -1- m4_pattern_allow([^HOST_CPU$])
10021m4trace:configure.in:133: -1- m4_pattern_allow([^HOST_CPU$])
10022m4trace:configure.in:138: -1- m4_pattern_allow([^HOST_VENDOR$])
10023m4trace:configure.in:139: -1- m4_pattern_allow([^HOST_VENDOR$])
10024m4trace:configure.in:144: -1- m4_pattern_allow([^HOST_OS$])
10025m4trace:configure.in:145: -1- m4_pattern_allow([^HOST_OS$])
10026m4trace:configure.in:148: -1- AM_CONDITIONAL([COMPILE_FOR_MIPS], [ test "$target" = "mips64-octeon-linux-gnu" ])
10027m4trace:configure.in:148: -1- m4_pattern_allow([^COMPILE_FOR_MIPS_TRUE$])
10028m4trace:configure.in:148: -1- m4_pattern_allow([^COMPILE_FOR_MIPS_FALSE$])
10029m4trace:configure.in:148: -1- _AM_SUBST_NOTMAKE([COMPILE_FOR_MIPS_TRUE])
10030m4trace:configure.in:148: -1- _AM_SUBST_NOTMAKE([COMPILE_FOR_MIPS_FALSE])
10031m4trace:configure.in:149: -1- m4_pattern_allow([^LIB@&t@OBJS$])
10032m4trace:configure.in:149: -1- m4_pattern_allow([^LTLIBOBJS$])
10033m4trace:configure.in:149: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
10034m4trace:configure.in:149: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
10035m4trace:configure.in:149: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
10036m4trace:configure.in:149: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
10037m4trace:configure.in:149: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
10038m4trace:configure.in:149: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
10039m4trace:configure.in:149: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS