Subversion Repositories svnkaklik

Rev

Go to most recent revision | Details | Last modification | View Log

Rev Author Line No. Line
411 kaklik 1
m4trace:/usr/share/aclocal/libtool.m4:25: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
2
dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
3
dnl 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
  ])])
8
dnl 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
 
14
dnl Quote AM_PROG_GCJ so that aclocal doesn't bring it in needlessly.
15
dnl If either AC_PROG_GCJ or AM_PROG_GCJ have already been expanded, run
16
dnl 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
])])
31
m4trace:/usr/share/aclocal/libtool.m4:60: -1- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
32
AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
33
AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
34
AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
35
 
36
# This can be used to rebuild libtool when needed
37
LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
38
 
39
# Always use our own libtool.
40
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
41
AC_SUBST(LIBTOOL)dnl
42
 
43
# Prevent multiple expansion
44
define([AC_PROG_LIBTOOL], [])
45
])
46
m4trace:/usr/share/aclocal/libtool.m4:80: -1- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl
47
AC_REQUIRE([AC_ENABLE_SHARED])dnl
48
AC_REQUIRE([AC_ENABLE_STATIC])dnl
49
AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
50
AC_REQUIRE([AC_CANONICAL_HOST])dnl
51
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
52
AC_REQUIRE([AC_PROG_CC])dnl
53
AC_REQUIRE([AC_PROG_LD])dnl
54
AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
55
AC_REQUIRE([AC_PROG_NM])dnl
56
 
57
AC_REQUIRE([AC_PROG_LN_S])dnl
58
AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
59
# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
60
AC_REQUIRE([AC_OBJEXT])dnl
61
AC_REQUIRE([AC_EXEEXT])dnl
62
dnl
63
 
64
AC_LIBTOOL_SYS_MAX_CMD_LEN
65
AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
66
AC_LIBTOOL_OBJDIR
67
 
68
AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
69
_LT_AC_PROG_ECHO_BACKSLASH
70
 
71
case $host_os in
72
aix3*)
73
  # AIX sometimes has problems with the GCC collect2 program.  For some
74
  # reason, if we set the COLLECT_NAMES environment variable, the problems
75
  # vanish in a puff of smoke.
76
  if test "X${COLLECT_NAMES+set}" != Xset; then
77
    COLLECT_NAMES=
78
    export COLLECT_NAMES
79
  fi
80
  ;;
81
esac
82
 
83
# Sed substitution that helps us do robust quoting.  It backslashifies
84
# metacharacters that are still active within double-quoted strings.
85
Xsed='sed -e 1s/^X//'
86
[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']
87
 
88
# Same as above, but do not quote variable references.
89
[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']
90
 
91
# Sed substitution to delay expansion of an escaped shell variable in a
92
# double_quote_subst'ed string.
93
delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
94
 
95
# Sed substitution to avoid accidental globbing in evaled expressions
96
no_glob_subst='s/\*/\\\*/g'
97
 
98
# Constants:
99
rm="rm -f"
100
 
101
# Global variables:
102
default_ofile=libtool
103
can_build_shared=yes
104
 
105
# All known linkers require a `.a' archive for static linking (except MSVC,
106
# which needs '.lib').
107
libext=a
108
ltmain="$ac_aux_dir/ltmain.sh"
109
ofile="$default_ofile"
110
with_gnu_ld="$lt_cv_prog_gnu_ld"
111
 
112
AC_CHECK_TOOL(AR, ar, false)
113
AC_CHECK_TOOL(RANLIB, ranlib, :)
114
AC_CHECK_TOOL(STRIP, strip, :)
115
 
116
old_CC="$CC"
117
old_CFLAGS="$CFLAGS"
118
 
119
# Set sane defaults for various variables
120
test -z "$AR" && AR=ar
121
test -z "$AR_FLAGS" && AR_FLAGS=cru
122
test -z "$AS" && AS=as
123
test -z "$CC" && CC=cc
124
test -z "$LTCC" && LTCC=$CC
125
test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS
126
test -z "$DLLTOOL" && DLLTOOL=dlltool
127
test -z "$LD" && LD=ld
128
test -z "$LN_S" && LN_S="ln -s"
129
test -z "$MAGIC_CMD" && MAGIC_CMD=file
130
test -z "$NM" && NM=nm
131
test -z "$SED" && SED=sed
132
test -z "$OBJDUMP" && OBJDUMP=objdump
133
test -z "$RANLIB" && RANLIB=:
134
test -z "$STRIP" && STRIP=:
135
test -z "$ac_objext" && ac_objext=o
136
 
137
# Determine commands to create old-style static archives.
138
old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs'
139
old_postinstall_cmds='chmod 644 $oldlib'
140
old_postuninstall_cmds=
141
 
142
if test -n "$RANLIB"; then
143
  case $host_os in
144
  openbsd*)
145
    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
146
    ;;
147
  *)
148
    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
149
    ;;
150
  esac
151
  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
152
fi
153
 
154
_LT_CC_BASENAME([$compiler])
155
 
156
# Only perform the check for file, if the check method requires it
157
case $deplibs_check_method in
158
file_magic*)
159
  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
160
    AC_PATH_MAGIC
161
  fi
162
  ;;
163
esac
164
 
165
AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
166
AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
167
enable_win32_dll=yes, enable_win32_dll=no)
168
 
169
AC_ARG_ENABLE([libtool-lock],
170
    [AC_HELP_STRING([--disable-libtool-lock],
171
	[avoid locking (might break parallel builds)])])
172
test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
173
 
174
AC_ARG_WITH([pic],
175
    [AC_HELP_STRING([--with-pic],
176
	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
177
    [pic_mode="$withval"],
178
    [pic_mode=default])
179
test -z "$pic_mode" && pic_mode=default
180
 
181
# Use C for the default configuration in the libtool script
182
tagname=
183
AC_LIBTOOL_LANG_C_CONFIG
184
_LT_AC_TAGCONFIG
185
])
186
m4trace:/usr/share/aclocal/libtool.m4:225: -1- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl
187
 
188
# If no C compiler was specified, use CC.
189
LTCC=${LTCC-"$CC"}
190
 
191
# If no C compiler flags were specified, use CFLAGS.
192
LTCFLAGS=${LTCFLAGS-"$CFLAGS"}
193
 
194
# Allow CC to be a program name with arguments.
195
compiler=$CC
196
])
197
m4trace:/usr/share/aclocal/libtool.m4:242: -1- AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do
198
  case $cc_temp in
199
    compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
200
    distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
201
    \-*) ;;
202
    *) break;;
203
  esac
204
done
205
cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
206
])
207
m4trace:/usr/share/aclocal/libtool.m4:259: -1- AC_DEFUN([_LT_COMPILER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl
208
ac_outfile=conftest.$ac_objext
209
echo "$lt_simple_compile_test_code" >conftest.$ac_ext
210
eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
211
_lt_compiler_boilerplate=`cat conftest.err`
212
$rm conftest*
213
])
214
m4trace:/usr/share/aclocal/libtool.m4:273: -1- AC_DEFUN([_LT_LINKER_BOILERPLATE], [AC_REQUIRE([LT_AC_PROG_SED])dnl
215
ac_outfile=conftest.$ac_objext
216
echo "$lt_simple_link_test_code" >conftest.$ac_ext
217
eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err
218
_lt_linker_boilerplate=`cat conftest.err`
219
$rm conftest*
220
])
221
m4trace:/usr/share/aclocal/libtool.m4:291: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_REQUIRE([LT_AC_PROG_SED])dnl
222
AC_LINK_IFELSE(AC_LANG_PROGRAM,[
223
lt_aix_libpath_sed='
224
    /Import File Strings/,/^$/ {
225
	/^0/ {
226
	    s/^0  *\(.*\)$/\1/
227
	    p
228
	}
229
    }'
230
aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
231
# Check for a 64-bit object if we didn't find anything.
232
if test -z "$aix_libpath"; then
233
  aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"`
234
fi],[])
235
if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
236
])
237
m4trace:/usr/share/aclocal/libtool.m4:312: -1- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE],
238
	     [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
239
	 [AC_DIVERT_PUSH(NOTICE)])
240
$1
241
AC_DIVERT_POP
242
])
243
m4trace:/usr/share/aclocal/libtool.m4:325: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([
244
# Check that we are running under the correct shell.
245
SHELL=${CONFIG_SHELL-/bin/sh}
246
 
247
case X$ECHO in
248
X*--fallback-echo)
249
  # Remove one level of quotation (which was required for Make).
250
  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
251
  ;;
252
esac
253
 
254
echo=${ECHO-echo}
255
if test "X[$]1" = X--no-reexec; then
256
  # Discard the --no-reexec flag, and continue.
257
  shift
258
elif test "X[$]1" = X--fallback-echo; then
259
  # Avoid inline document here, it may be left over
260
  :
261
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
262
  # Yippee, $echo works!
263
  :
264
else
265
  # Restart under the correct shell.
266
  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
267
fi
268
 
269
if test "X[$]1" = X--fallback-echo; then
270
  # used as fallback echo
271
  shift
272
  cat <<EOF
273
[$]*
274
EOF
275
  exit 0
276
fi
277
 
278
# The HP-UX ksh and POSIX shell print the target directory to stdout
279
# if CDPATH is set.
280
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
281
 
282
if test -z "$ECHO"; then
283
if test "X${echo_test_string+set}" != Xset; then
284
# find a string as large as possible, as long as the shell can cope with it
285
  for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
286
    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
287
    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
288
       echo_test_string=`eval $cmd` &&
289
       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
290
    then
291
      break
292
    fi
293
  done
294
fi
295
 
296
if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
297
   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
298
   test "X$echo_testing_string" = "X$echo_test_string"; then
299
  :
300
else
301
  # The Solaris, AIX, and Digital Unix default echo programs unquote
302
  # backslashes.  This makes it impossible to quote backslashes using
303
  #   echo "$something" | sed 's/\\/\\\\/g'
304
  #
305
  # So, first we look for a working echo in the user's PATH.
306
 
307
  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
308
  for dir in $PATH /usr/ucb; do
309
    IFS="$lt_save_ifs"
310
    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
311
       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
312
       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
313
       test "X$echo_testing_string" = "X$echo_test_string"; then
314
      echo="$dir/echo"
315
      break
316
    fi
317
  done
318
  IFS="$lt_save_ifs"
319
 
320
  if test "X$echo" = Xecho; then
321
    # We didn't find a better echo, so look for alternatives.
322
    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
323
       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
324
       test "X$echo_testing_string" = "X$echo_test_string"; then
325
      # This shell has a builtin print -r that does the trick.
326
      echo='print -r'
327
    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
328
	 test "X$CONFIG_SHELL" != X/bin/ksh; then
329
      # If we have ksh, try running configure again with it.
330
      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
331
      export ORIGINAL_CONFIG_SHELL
332
      CONFIG_SHELL=/bin/ksh
333
      export CONFIG_SHELL
334
      exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
335
    else
336
      # Try using printf.
337
      echo='printf %s\n'
338
      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
339
	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
340
	 test "X$echo_testing_string" = "X$echo_test_string"; then
341
	# Cool, printf works
342
	:
343
      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
344
	   test "X$echo_testing_string" = 'X\t' &&
345
	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
346
	   test "X$echo_testing_string" = "X$echo_test_string"; then
347
	CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
348
	export CONFIG_SHELL
349
	SHELL="$CONFIG_SHELL"
350
	export SHELL
351
	echo="$CONFIG_SHELL [$]0 --fallback-echo"
352
      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
353
	   test "X$echo_testing_string" = 'X\t' &&
354
	   echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
355
	   test "X$echo_testing_string" = "X$echo_test_string"; then
356
	echo="$CONFIG_SHELL [$]0 --fallback-echo"
357
      else
358
	# maybe with a smaller string...
359
	prev=:
360
 
361
	for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
362
	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
363
	  then
364
	    break
365
	  fi
366
	  prev="$cmd"
367
	done
368
 
369
	if test "$prev" != 'sed 50q "[$]0"'; then
370
	  echo_test_string=`eval $prev`
371
	  export echo_test_string
372
	  exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
373
	else
374
	  # Oops.  We lost completely, so just stick with echo.
375
	  echo=echo
376
	fi
377
      fi
378
    fi
379
  fi
380
fi
381
fi
382
 
383
# Copy echo and quote the copy suitably for passing to libtool from
384
# the Makefile, instead of quoting the original, which is used later.
385
ECHO=$echo
386
if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
387
   ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
388
fi
389
 
390
AC_SUBST(ECHO)
391
])])
392
m4trace:/usr/share/aclocal/libtool.m4:479: -1- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock],
393
    [AC_HELP_STRING([--disable-libtool-lock],
394
	[avoid locking (might break parallel builds)])])
395
test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
396
 
397
# Some flags need to be propagated to the compiler or linker for good
398
# libtool support.
399
case $host in
400
ia64-*-hpux*)
401
  # Find out which ABI we are using.
402
  echo 'int i;' > conftest.$ac_ext
403
  if AC_TRY_EVAL(ac_compile); then
404
    case `/usr/bin/file conftest.$ac_objext` in
405
    *ELF-32*)
406
      HPUX_IA64_MODE="32"
407
      ;;
408
    *ELF-64*)
409
      HPUX_IA64_MODE="64"
410
      ;;
411
    esac
412
  fi
413
  rm -rf conftest*
414
  ;;
415
*-*-irix6*)
416
  # Find out which ABI we are using.
417
  echo '[#]line __oline__ "configure"' > conftest.$ac_ext
418
  if AC_TRY_EVAL(ac_compile); then
419
   if test "$lt_cv_prog_gnu_ld" = yes; then
420
    case `/usr/bin/file conftest.$ac_objext` in
421
    *32-bit*)
422
      LD="${LD-ld} -melf32bsmip"
423
      ;;
424
    *N32*)
425
      LD="${LD-ld} -melf32bmipn32"
426
      ;;
427
    *64-bit*)
428
      LD="${LD-ld} -melf64bmip"
429
      ;;
430
    esac
431
   else
432
    case `/usr/bin/file conftest.$ac_objext` in
433
    *32-bit*)
434
      LD="${LD-ld} -32"
435
      ;;
436
    *N32*)
437
      LD="${LD-ld} -n32"
438
      ;;
439
    *64-bit*)
440
      LD="${LD-ld} -64"
441
      ;;
442
    esac
443
   fi
444
  fi
445
  rm -rf conftest*
446
  ;;
447
 
448
x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \
449
s390*-*linux*|sparc*-*linux*)
450
  # Find out which ABI we are using.
451
  echo 'int i;' > conftest.$ac_ext
452
  if AC_TRY_EVAL(ac_compile); then
453
    case `/usr/bin/file conftest.o` in
454
    *32-bit*)
455
      case $host in
456
        x86_64-*kfreebsd*-gnu)
457
          LD="${LD-ld} -m elf_i386_fbsd"
458
          ;;
459
        x86_64-*linux*)
460
          LD="${LD-ld} -m elf_i386"
461
          ;;
462
        ppc64-*linux*|powerpc64-*linux*)
463
          LD="${LD-ld} -m elf32ppclinux"
464
          ;;
465
        s390x-*linux*)
466
          LD="${LD-ld} -m elf_s390"
467
          ;;
468
        sparc64-*linux*)
469
          LD="${LD-ld} -m elf32_sparc"
470
          ;;
471
      esac
472
      ;;
473
    *64-bit*)
474
      case $host in
475
        x86_64-*kfreebsd*-gnu)
476
          LD="${LD-ld} -m elf_x86_64_fbsd"
477
          ;;
478
        x86_64-*linux*)
479
          LD="${LD-ld} -m elf_x86_64"
480
          ;;
481
        ppc*-*linux*|powerpc*-*linux*)
482
          LD="${LD-ld} -m elf64ppc"
483
          ;;
484
        s390*-*linux*)
485
          LD="${LD-ld} -m elf64_s390"
486
          ;;
487
        sparc*-*linux*)
488
          LD="${LD-ld} -m elf64_sparc"
489
          ;;
490
      esac
491
      ;;
492
    esac
493
  fi
494
  rm -rf conftest*
495
  ;;
496
 
497
*-*-sco3.2v5*)
498
  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
499
  SAVE_CFLAGS="$CFLAGS"
500
  CFLAGS="$CFLAGS -belf"
501
  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
502
    [AC_LANG_PUSH(C)
503
     AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
504
     AC_LANG_POP])
505
  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
506
    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
507
    CFLAGS="$SAVE_CFLAGS"
508
  fi
509
  ;;
510
sparc*-*solaris*)
511
  # Find out which ABI we are using.
512
  echo 'int i;' > conftest.$ac_ext
513
  if AC_TRY_EVAL(ac_compile); then
514
    case `/usr/bin/file conftest.o` in
515
    *64-bit*)
516
      case $lt_cv_prog_gnu_ld in
517
      yes*) LD="${LD-ld} -m elf64_sparc" ;;
518
      *)    LD="${LD-ld} -64" ;;
519
      esac
520
      ;;
521
    esac
522
  fi
523
  rm -rf conftest*
524
  ;;
525
 
526
AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
527
[*-*-cygwin* | *-*-mingw* | *-*-pw32*)
528
  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
529
  AC_CHECK_TOOL(AS, as, false)
530
  AC_CHECK_TOOL(OBJDUMP, objdump, false)
531
  ;;
532
  ])
533
esac
534
 
535
need_locks="$enable_libtool_lock"
536
 
537
])
538
m4trace:/usr/share/aclocal/libtool.m4:632: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])
539
AC_CACHE_CHECK([$1], [$2],
540
  [$2=no
541
  ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
542
   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
543
   lt_compiler_flag="$3"
544
   # Insert the option either (1) after the last *FLAGS variable, or
545
   # (2) before a word containing "conftest.", or (3) at the end.
546
   # Note that $ac_compile itself does not contain backslashes and begins
547
   # with a dollar sign (not a hyphen), so the echo should work correctly.
548
   # The option is referenced via a variable to avoid confusing sed.
549
   lt_compile=`echo "$ac_compile" | $SED \
550
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
551
   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
552
   -e 's:$: $lt_compiler_flag:'`
553
   (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
554
   (eval "$lt_compile" 2>conftest.err)
555
   ac_status=$?
556
   cat conftest.err >&AS_MESSAGE_LOG_FD
557
   echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
558
   if (exit $ac_status) && test -s "$ac_outfile"; then
559
     # The compiler can only warn and ignore the option if not recognized
560
     # So say no if there are warnings other than the usual output.
561
     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
562
     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
563
     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
564
       $2=yes
565
     fi
566
   fi
567
   $rm conftest*
568
])
569
 
570
if test x"[$]$2" = xyes; then
571
    ifelse([$5], , :, [$5])
572
else
573
    ifelse([$6], , :, [$6])
574
fi
575
])
576
m4trace:/usr/share/aclocal/libtool.m4:677: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])dnl
577
AC_CACHE_CHECK([$1], [$2],
578
  [$2=no
579
   save_LDFLAGS="$LDFLAGS"
580
   LDFLAGS="$LDFLAGS $3"
581
   echo "$lt_simple_link_test_code" > conftest.$ac_ext
582
   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
583
     # The linker can only warn and ignore the option if not recognized
584
     # So say no if there are warnings
585
     if test -s conftest.err; then
586
       # Append any errors to the config.log.
587
       cat conftest.err 1>&AS_MESSAGE_LOG_FD
588
       $echo "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
589
       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
590
       if diff conftest.exp conftest.er2 >/dev/null; then
591
         $2=yes
592
       fi
593
     else
594
       $2=yes
595
     fi
596
   fi
597
   $rm conftest*
598
   LDFLAGS="$save_LDFLAGS"
599
])
600
 
601
if test x"[$]$2" = xyes; then
602
    ifelse([$4], , :, [$4])
603
else
604
    ifelse([$5], , :, [$5])
605
fi
606
])
607
m4trace:/usr/share/aclocal/libtool.m4:713: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments
608
AC_MSG_CHECKING([the maximum length of command line arguments])
609
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
610
  i=0
611
  teststring="ABCD"
612
 
613
  case $build_os in
614
  msdosdjgpp*)
615
    # On DJGPP, this test can blow up pretty badly due to problems in libc
616
    # (any single argument exceeding 2000 bytes causes a buffer overrun
617
    # during glob expansion).  Even if it were fixed, the result of this
618
    # check would be larger than it should be.
619
    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
620
    ;;
621
 
622
  gnu*)
623
    # Under GNU Hurd, this test is not required because there is
624
    # no limit to the length of command line arguments.
625
    # Libtool will interpret -1 as no limit whatsoever
626
    lt_cv_sys_max_cmd_len=-1;
627
    ;;
628
 
629
  cygwin* | mingw*)
630
    # On Win9x/ME, this test blows up -- it succeeds, but takes
631
    # about 5 minutes as the teststring grows exponentially.
632
    # Worse, since 9x/ME are not pre-emptively multitasking,
633
    # you end up with a "frozen" computer, even though with patience
634
    # the test eventually succeeds (with a max line length of 256k).
635
    # Instead, let's just punt: use the minimum linelength reported by
636
    # all of the supported platforms: 8192 (on NT/2K/XP).
637
    lt_cv_sys_max_cmd_len=8192;
638
    ;;
639
 
640
  amigaos*)
641
    # On AmigaOS with pdksh, this test takes hours, literally.
642
    # So we just punt and use a minimum line length of 8192.
643
    lt_cv_sys_max_cmd_len=8192;
644
    ;;
645
 
646
  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
647
    # This has been around since 386BSD, at least.  Likely further.
648
    if test -x /sbin/sysctl; then
649
      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
650
    elif test -x /usr/sbin/sysctl; then
651
      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
652
    else
653
      lt_cv_sys_max_cmd_len=65536	# usable default for all BSDs
654
    fi
655
    # And add a safety zone
656
    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
657
    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
658
    ;;
659
 
660
  interix*)
661
    # We know the value 262144 and hardcode it with a safety zone (like BSD)
662
    lt_cv_sys_max_cmd_len=196608
663
    ;;
664
 
665
  osf*)
666
    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
667
    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
668
    # nice to cause kernel panics so lets avoid the loop below.
669
    # First set a reasonable default.
670
    lt_cv_sys_max_cmd_len=16384
671
    #
672
    if test -x /sbin/sysconfig; then
673
      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
674
        *1*) lt_cv_sys_max_cmd_len=-1 ;;
675
      esac
676
    fi
677
    ;;
678
  sco3.2v5*)
679
    lt_cv_sys_max_cmd_len=102400
680
    ;;
681
  sysv5* | sco5v6* | sysv4.2uw2*)
682
    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
683
    if test -n "$kargmax"; then
684
      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ 	]]//'`
685
    else
686
      lt_cv_sys_max_cmd_len=32768
687
    fi
688
    ;;
689
  *)
690
    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
691
    if test -n "$lt_cv_sys_max_cmd_len"; then
692
      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
693
      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
694
    else
695
      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
696
      while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
697
	       = "XX$teststring") >/dev/null 2>&1 &&
698
	      new_result=`expr "X$teststring" : ".*" 2>&1` &&
699
	      lt_cv_sys_max_cmd_len=$new_result &&
700
	      test $i != 17 # 1/2 MB should be enough
701
      do
702
        i=`expr $i + 1`
703
        teststring=$teststring$teststring
704
      done
705
      teststring=
706
      # Add a significant safety factor because C++ compilers can tack on massive
707
      # amounts of additional arguments before passing them to the linker.
708
      # It appears as though 1/2 is a usable value.
709
      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
710
    fi
711
    ;;
712
  esac
713
])
714
if test -n $lt_cv_sys_max_cmd_len ; then
715
  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
716
else
717
  AC_MSG_RESULT(none)
718
fi
719
])
720
m4trace:/usr/share/aclocal/libtool.m4:831: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl
721
])
722
m4trace:/usr/share/aclocal/libtool.m4:839: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
723
if test "$cross_compiling" = yes; then :
724
  [$4]
725
else
726
  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
727
  lt_status=$lt_dlunknown
728
  cat > conftest.$ac_ext <<EOF
729
[#line __oline__ "configure"
730
#include "confdefs.h"
731
 
732
#if HAVE_DLFCN_H
733
#include <dlfcn.h>
734
#endif
735
 
736
#include <stdio.h>
737
 
738
#ifdef RTLD_GLOBAL
739
#  define LT_DLGLOBAL		RTLD_GLOBAL
740
#else
741
#  ifdef DL_GLOBAL
742
#    define LT_DLGLOBAL		DL_GLOBAL
743
#  else
744
#    define LT_DLGLOBAL		0
745
#  endif
746
#endif
747
 
748
/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
749
   find out it does not work in some platform. */
750
#ifndef LT_DLLAZY_OR_NOW
751
#  ifdef RTLD_LAZY
752
#    define LT_DLLAZY_OR_NOW		RTLD_LAZY
753
#  else
754
#    ifdef DL_LAZY
755
#      define LT_DLLAZY_OR_NOW		DL_LAZY
756
#    else
757
#      ifdef RTLD_NOW
758
#        define LT_DLLAZY_OR_NOW	RTLD_NOW
759
#      else
760
#        ifdef DL_NOW
761
#          define LT_DLLAZY_OR_NOW	DL_NOW
762
#        else
763
#          define LT_DLLAZY_OR_NOW	0
764
#        endif
765
#      endif
766
#    endif
767
#  endif
768
#endif
769
 
770
#ifdef __cplusplus
771
extern "C" void exit (int);
772
#endif
773
 
774
void fnord() { int i=42;}
775
int main ()
776
{
777
  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
778
  int status = $lt_dlunknown;
779
 
780
  if (self)
781
    {
782
      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
783
      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
784
      /* dlclose (self); */
785
    }
786
  else
787
    puts (dlerror ());
788
 
789
    exit (status);
790
}]
791
EOF
792
  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
793
    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
794
    lt_status=$?
795
    case x$lt_status in
796
      x$lt_dlno_uscore) $1 ;;
797
      x$lt_dlneed_uscore) $2 ;;
798
      x$lt_dlunknown|x*) $3 ;;
799
    esac
800
  else :
801
    # compilation failed
802
    $3
803
  fi
804
fi
805
rm -fr conftest*
806
])
807
m4trace:/usr/share/aclocal/libtool.m4:929: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
808
if test "x$enable_dlopen" != xyes; then
809
  enable_dlopen=unknown
810
  enable_dlopen_self=unknown
811
  enable_dlopen_self_static=unknown
812
else
813
  lt_cv_dlopen=no
814
  lt_cv_dlopen_libs=
815
 
816
  case $host_os in
817
  beos*)
818
    lt_cv_dlopen="load_add_on"
819
    lt_cv_dlopen_libs=
820
    lt_cv_dlopen_self=yes
821
    ;;
822
 
823
  mingw* | pw32*)
824
    lt_cv_dlopen="LoadLibrary"
825
    lt_cv_dlopen_libs=
826
   ;;
827
 
828
  cygwin*)
829
    lt_cv_dlopen="dlopen"
830
    lt_cv_dlopen_libs=
831
   ;;
832
 
833
  darwin*)
834
  # if libdl is installed we need to link against it
835
    AC_CHECK_LIB([dl], [dlopen],
836
		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
837
    lt_cv_dlopen="dyld"
838
    lt_cv_dlopen_libs=
839
    lt_cv_dlopen_self=yes
840
    ])
841
   ;;
842
 
843
  *)
844
    AC_CHECK_FUNC([shl_load],
845
	  [lt_cv_dlopen="shl_load"],
846
      [AC_CHECK_LIB([dld], [shl_load],
847
	    [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
848
	[AC_CHECK_FUNC([dlopen],
849
	      [lt_cv_dlopen="dlopen"],
850
	  [AC_CHECK_LIB([dl], [dlopen],
851
		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
852
	    [AC_CHECK_LIB([svld], [dlopen],
853
		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
854
	      [AC_CHECK_LIB([dld], [dld_link],
855
		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
856
	      ])
857
	    ])
858
	  ])
859
	])
860
      ])
861
    ;;
862
  esac
863
 
864
  if test "x$lt_cv_dlopen" != xno; then
865
    enable_dlopen=yes
866
  else
867
    enable_dlopen=no
868
  fi
869
 
870
  case $lt_cv_dlopen in
871
  dlopen)
872
    save_CPPFLAGS="$CPPFLAGS"
873
    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
874
 
875
    save_LDFLAGS="$LDFLAGS"
876
    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
877
 
878
    save_LIBS="$LIBS"
879
    LIBS="$lt_cv_dlopen_libs $LIBS"
880
 
881
    AC_CACHE_CHECK([whether a program can dlopen itself],
882
	  lt_cv_dlopen_self, [dnl
883
	  _LT_AC_TRY_DLOPEN_SELF(
884
	    lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
885
	    lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
886
    ])
887
 
888
    if test "x$lt_cv_dlopen_self" = xyes; then
889
      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
890
      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
891
    	  lt_cv_dlopen_self_static, [dnl
892
	  _LT_AC_TRY_DLOPEN_SELF(
893
	    lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
894
	    lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
895
      ])
896
    fi
897
 
898
    CPPFLAGS="$save_CPPFLAGS"
899
    LDFLAGS="$save_LDFLAGS"
900
    LIBS="$save_LIBS"
901
    ;;
902
  esac
903
 
904
  case $lt_cv_dlopen_self in
905
  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
906
  *) enable_dlopen_self=unknown ;;
907
  esac
908
 
909
  case $lt_cv_dlopen_self_static in
910
  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
911
  *) enable_dlopen_self_static=unknown ;;
912
  esac
913
fi
914
])
915
m4trace:/usr/share/aclocal/libtool.m4:1043: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([LT_AC_PROG_SED])dnl
916
AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
917
AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
918
  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
919
  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
920
   $rm -r conftest 2>/dev/null
921
   mkdir conftest
922
   cd conftest
923
   mkdir out
924
   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
925
 
926
   lt_compiler_flag="-o out/conftest2.$ac_objext"
927
   # Insert the option either (1) after the last *FLAGS variable, or
928
   # (2) before a word containing "conftest.", or (3) at the end.
929
   # Note that $ac_compile itself does not contain backslashes and begins
930
   # with a dollar sign (not a hyphen), so the echo should work correctly.
931
   lt_compile=`echo "$ac_compile" | $SED \
932
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
933
   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
934
   -e 's:$: $lt_compiler_flag:'`
935
   (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
936
   (eval "$lt_compile" 2>out/conftest.err)
937
   ac_status=$?
938
   cat out/conftest.err >&AS_MESSAGE_LOG_FD
939
   echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
940
   if (exit $ac_status) && test -s out/conftest2.$ac_objext
941
   then
942
     # The compiler can only warn and ignore the option if not recognized
943
     # So say no if there are warnings
944
     $echo "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp
945
     $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2
946
     if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then
947
       _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
948
     fi
949
   fi
950
   chmod u+w . 2>&AS_MESSAGE_LOG_FD
951
   $rm conftest*
952
   # SGI C++ compiler will create directory out/ii_files/ for
953
   # template instantiation
954
   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
955
   $rm out/* && rmdir out
956
   cd ..
957
   rmdir conftest
958
   $rm conftest*
959
])
960
])
961
m4trace:/usr/share/aclocal/libtool.m4:1095: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl
962
 
963
hard_links="nottested"
964
if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
965
  # do not overwrite the value of need_locks provided by the user
966
  AC_MSG_CHECKING([if we can lock with hard links])
967
  hard_links=yes
968
  $rm conftest*
969
  ln conftest.a conftest.b 2>/dev/null && hard_links=no
970
  touch conftest.a
971
  ln conftest.a conftest.b 2>&5 || hard_links=no
972
  ln conftest.a conftest.b 2>/dev/null && hard_links=no
973
  AC_MSG_RESULT([$hard_links])
974
  if test "$hard_links" = no; then
975
    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
976
    need_locks=warn
977
  fi
978
else
979
  need_locks=no
980
fi
981
])
982
m4trace:/usr/share/aclocal/libtool.m4:1121: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
983
[rm -f .libs 2>/dev/null
984
mkdir .libs 2>/dev/null
985
if test -d .libs; then
986
  lt_cv_objdir=.libs
987
else
988
  # MS-DOS does not allow filenames that begin with a dot.
989
  lt_cv_objdir=_libs
990
fi
991
rmdir .libs 2>/dev/null])
992
objdir=$lt_cv_objdir
993
])
994
m4trace:/usr/share/aclocal/libtool.m4:1139: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs])
995
_LT_AC_TAGVAR(hardcode_action, $1)=
996
if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \
997
   test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \
998
   test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
999
 
1000
  # We can hardcode non-existant directories.
1001
  if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
1002
     # If the only mechanism to avoid hardcoding is shlibpath_var, we
1003
     # have to relink, otherwise we might link with an installed library
1004
     # when we should be linking with a yet-to-be-installed one
1005
     ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
1006
     test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
1007
    # Linking always hardcodes the temporary library directory.
1008
    _LT_AC_TAGVAR(hardcode_action, $1)=relink
1009
  else
1010
    # We can link without hardcoding, and we can hardcode nonexisting dirs.
1011
    _LT_AC_TAGVAR(hardcode_action, $1)=immediate
1012
  fi
1013
else
1014
  # We cannot hardcode anything, or else we can only hardcode existing
1015
  # directories.
1016
  _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
1017
fi
1018
AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
1019
 
1020
if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
1021
  # Fast installation is not supported
1022
  enable_fast_install=no
1023
elif test "$shlibpath_overrides_runpath" = yes ||
1024
     test "$enable_shared" = no; then
1025
  # Fast installation is not necessary
1026
  enable_fast_install=needless
1027
fi
1028
])
1029
m4trace:/usr/share/aclocal/libtool.m4:1179: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib=
1030
old_striplib=
1031
AC_MSG_CHECKING([whether stripping libraries is possible])
1032
if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
1033
  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
1034
  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
1035
  AC_MSG_RESULT([yes])
1036
else
1037
# FIXME - insert some real tests, host_os isn't really good enough
1038
  case $host_os in
1039
   darwin*)
1040
       if test -n "$STRIP" ; then
1041
         striplib="$STRIP -x"
1042
         old_striplib="$STRIP -S"
1043
         AC_MSG_RESULT([yes])
1044
       else
1045
  AC_MSG_RESULT([no])
1046
fi
1047
       ;;
1048
   *)
1049
  AC_MSG_RESULT([no])
1050
    ;;
1051
  esac
1052
fi
1053
])
1054
m4trace:/usr/share/aclocal/libtool.m4:1210: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_REQUIRE([LT_AC_PROG_SED])dnl
1055
AC_MSG_CHECKING([dynamic linker characteristics])
1056
library_names_spec=
1057
libname_spec='lib$name'
1058
soname_spec=
1059
shrext_cmds=".so"
1060
postinstall_cmds=
1061
postuninstall_cmds=
1062
finish_cmds=
1063
finish_eval=
1064
shlibpath_var=
1065
shlibpath_overrides_runpath=unknown
1066
version_type=none
1067
dynamic_linker="$host_os ld.so"
1068
sys_lib_dlsearch_path_spec="/lib /usr/lib"
1069
m4_if($1,[],[
1070
if test "$GCC" = yes; then
1071
  case $host_os in
1072
    darwin*) lt_awk_arg="/^libraries:/,/LR/" ;;
1073
    *) lt_awk_arg="/^libraries:/" ;;
1074
  esac
1075
  lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"`
1076
  if echo "$lt_search_path_spec" | grep ';' >/dev/null ; then
1077
    # if the path contains ";" then we assume it to be the separator
1078
    # otherwise default to the standard path separator (i.e. ":") - it is
1079
    # assumed that no part of a normal pathname contains ";" but that should
1080
    # okay in the real world where ";" in dirpaths is itself problematic.
1081
    lt_search_path_spec=`echo "$lt_search_path_spec" | $SED -e 's/;/ /g'`
1082
  else
1083
    lt_search_path_spec=`echo "$lt_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
1084
  fi
1085
  # Ok, now we have the path, separated by spaces, we can step through it
1086
  # and add multilib dir if necessary.
1087
  lt_tmp_lt_search_path_spec=
1088
  lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null`
1089
  for lt_sys_path in $lt_search_path_spec; do
1090
    if test -d "$lt_sys_path/$lt_multi_os_dir"; then
1091
      lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir"
1092
    else
1093
      test -d "$lt_sys_path" && \
1094
	lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path"
1095
    fi
1096
  done
1097
  lt_search_path_spec=`echo $lt_tmp_lt_search_path_spec | awk '
1098
BEGIN {RS=" "; FS="/|\n";} {
1099
  lt_foo="";
1100
  lt_count=0;
1101
  for (lt_i = NF; lt_i > 0; lt_i--) {
1102
    if ($lt_i != "" && $lt_i != ".") {
1103
      if ($lt_i == "..") {
1104
        lt_count++;
1105
      } else {
1106
        if (lt_count == 0) {
1107
          lt_foo="/" $lt_i lt_foo;
1108
        } else {
1109
          lt_count--;
1110
        }
1111
      }
1112
    }
1113
  }
1114
  if (lt_foo != "") { lt_freq[[lt_foo]]++; }
1115
  if (lt_freq[[lt_foo]] == 1) { print lt_foo; }
1116
}'`
1117
  sys_lib_search_path_spec=`echo $lt_search_path_spec`
1118
else
1119
  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
1120
fi])
1121
need_lib_prefix=unknown
1122
hardcode_into_libs=no
1123
 
1124
# when you set need_version to no, make sure it does not cause -set_version
1125
# flags to be left without arguments
1126
need_version=unknown
1127
 
1128
case $host_os in
1129
aix3*)
1130
  version_type=linux
1131
  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
1132
  shlibpath_var=LIBPATH
1133
 
1134
  # AIX 3 has no versioning support, so we append a major version to the name.
1135
  soname_spec='${libname}${release}${shared_ext}$major'
1136
  ;;
1137
 
1138
aix4* | aix5*)
1139
  version_type=linux
1140
  need_lib_prefix=no
1141
  need_version=no
1142
  hardcode_into_libs=yes
1143
  if test "$host_cpu" = ia64; then
1144
    # AIX 5 supports IA64
1145
    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
1146
    shlibpath_var=LD_LIBRARY_PATH
1147
  else
1148
    # With GCC up to 2.95.x, collect2 would create an import file
1149
    # for dependence libraries.  The import file would start with
1150
    # the line `#! .'.  This would cause the generated library to
1151
    # depend on `.', always an invalid library.  This was fixed in
1152
    # development snapshots of GCC prior to 3.0.
1153
    case $host_os in
1154
      aix4 | aix4.[[01]] | aix4.[[01]].*)
1155
      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
1156
	   echo ' yes '
1157
	   echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
1158
	:
1159
      else
1160
	can_build_shared=no
1161
      fi
1162
      ;;
1163
    esac
1164
    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
1165
    # soname into executable. Probably we can add versioning support to
1166
    # collect2, so additional links can be useful in future.
1167
    if test "$aix_use_runtimelinking" = yes; then
1168
      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
1169
      # instead of lib<name>.a to let people know that these are not
1170
      # typical AIX shared libraries.
1171
      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1172
    else
1173
      # We preserve .a as extension for shared libraries through AIX4.2
1174
      # and later when we are not doing run time linking.
1175
      library_names_spec='${libname}${release}.a $libname.a'
1176
      soname_spec='${libname}${release}${shared_ext}$major'
1177
    fi
1178
    shlibpath_var=LIBPATH
1179
  fi
1180
  ;;
1181
 
1182
amigaos*)
1183
  library_names_spec='$libname.ixlibrary $libname.a'
1184
  # Create ${libname}_ixlibrary.a entries in /sys/libs.
1185
  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'
1186
  ;;
1187
 
1188
beos*)
1189
  library_names_spec='${libname}${shared_ext}'
1190
  dynamic_linker="$host_os ld.so"
1191
  shlibpath_var=LIBRARY_PATH
1192
  ;;
1193
 
1194
bsdi[[45]]*)
1195
  version_type=linux
1196
  need_version=no
1197
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1198
  soname_spec='${libname}${release}${shared_ext}$major'
1199
  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
1200
  shlibpath_var=LD_LIBRARY_PATH
1201
  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
1202
  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
1203
  # the default ld.so.conf also contains /usr/contrib/lib and
1204
  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
1205
  # libtool to hard-code these into programs
1206
  ;;
1207
 
1208
cygwin* | mingw* | pw32*)
1209
  version_type=windows
1210
  shrext_cmds=".dll"
1211
  need_version=no
1212
  need_lib_prefix=no
1213
 
1214
  case $GCC,$host_os in
1215
  yes,cygwin* | yes,mingw* | yes,pw32*)
1216
    library_names_spec='$libname.dll.a'
1217
    # DLL is installed to $(libdir)/../bin by postinstall_cmds
1218
    postinstall_cmds='base_file=`basename \${file}`~
1219
      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
1220
      dldir=$destdir/`dirname \$dlpath`~
1221
      test -d \$dldir || mkdir -p \$dldir~
1222
      $install_prog $dir/$dlname \$dldir/$dlname~
1223
      chmod a+x \$dldir/$dlname'
1224
    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
1225
      dlpath=$dir/\$dldll~
1226
       $rm \$dlpath'
1227
    shlibpath_overrides_runpath=yes
1228
 
1229
    case $host_os in
1230
    cygwin*)
1231
      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
1232
      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1233
      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
1234
      ;;
1235
    mingw*)
1236
      # MinGW DLLs use traditional 'lib' prefix
1237
      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1238
      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
1239
      if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
1240
        # It is most probably a Windows format PATH printed by
1241
        # mingw gcc, but we are running on Cygwin. Gcc prints its search
1242
        # path with ; separators, and with drive letters. We can handle the
1243
        # drive letters (cygwin fileutils understands them), so leave them,
1244
        # especially as we might pass files found there to a mingw objdump,
1245
        # which wouldn't understand a cygwinified path. Ahh.
1246
        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
1247
      else
1248
        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
1249
      fi
1250
      ;;
1251
    pw32*)
1252
      # pw32 DLLs use 'pw' prefix rather than 'lib'
1253
      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
1254
      ;;
1255
    esac
1256
    ;;
1257
 
1258
  *)
1259
    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
1260
    ;;
1261
  esac
1262
  dynamic_linker='Win32 ld.exe'
1263
  # FIXME: first we should search . and the directory the executable is in
1264
  shlibpath_var=PATH
1265
  ;;
1266
 
1267
darwin* | rhapsody*)
1268
  dynamic_linker="$host_os dyld"
1269
  version_type=darwin
1270
  need_lib_prefix=no
1271
  need_version=no
1272
  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
1273
  soname_spec='${libname}${release}${major}$shared_ext'
1274
  shlibpath_overrides_runpath=yes
1275
  shlibpath_var=DYLD_LIBRARY_PATH
1276
  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
1277
  m4_if([$1], [],[
1278
  sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) 
1279
  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
1280
  ;;
1281
 
1282
dgux*)
1283
  version_type=linux
1284
  need_lib_prefix=no
1285
  need_version=no
1286
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
1287
  soname_spec='${libname}${release}${shared_ext}$major'
1288
  shlibpath_var=LD_LIBRARY_PATH
1289
  ;;
1290
 
1291
freebsd1*)
1292
  dynamic_linker=no
1293
  ;;
1294
 
1295
freebsd* | dragonfly*)
1296
  # DragonFly does not have aout.  When/if they implement a new
1297
  # versioning mechanism, adjust this.
1298
  if test -x /usr/bin/objformat; then
1299
    objformat=`/usr/bin/objformat`
1300
  else
1301
    case $host_os in
1302
    freebsd[[123]]*) objformat=aout ;;
1303
    *) objformat=elf ;;
1304
    esac
1305
  fi
1306
  version_type=freebsd-$objformat
1307
  case $version_type in
1308
    freebsd-elf*)
1309
      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
1310
      need_version=no
1311
      need_lib_prefix=no
1312
      ;;
1313
    freebsd-*)
1314
      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
1315
      need_version=yes
1316
      ;;
1317
  esac
1318
  shlibpath_var=LD_LIBRARY_PATH
1319
  case $host_os in
1320
  freebsd2*)
1321
    shlibpath_overrides_runpath=yes
1322
    ;;
1323
  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
1324
    shlibpath_overrides_runpath=yes
1325
    hardcode_into_libs=yes
1326
    ;;
1327
  freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \
1328
  freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1)
1329
    shlibpath_overrides_runpath=no
1330
    hardcode_into_libs=yes
1331
    ;;
1332
  *) # from 4.6 on, and DragonFly
1333
    shlibpath_overrides_runpath=yes
1334
    hardcode_into_libs=yes
1335
    ;;
1336
  esac
1337
  ;;
1338
 
1339
gnu*)
1340
  version_type=linux
1341
  need_lib_prefix=no
1342
  need_version=no
1343
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
1344
  soname_spec='${libname}${release}${shared_ext}$major'
1345
  shlibpath_var=LD_LIBRARY_PATH
1346
  hardcode_into_libs=yes
1347
  ;;
1348
 
1349
hpux9* | hpux10* | hpux11*)
1350
  # Give a soname corresponding to the major version so that dld.sl refuses to
1351
  # link against other versions.
1352
  version_type=sunos
1353
  need_lib_prefix=no
1354
  need_version=no
1355
  case $host_cpu in
1356
  ia64*)
1357
    shrext_cmds='.so'
1358
    hardcode_into_libs=yes
1359
    dynamic_linker="$host_os dld.so"
1360
    shlibpath_var=LD_LIBRARY_PATH
1361
    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
1362
    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1363
    soname_spec='${libname}${release}${shared_ext}$major'
1364
    if test "X$HPUX_IA64_MODE" = X32; then
1365
      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
1366
    else
1367
      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
1368
    fi
1369
    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
1370
    ;;
1371
   hppa*64*)
1372
     shrext_cmds='.sl'
1373
     hardcode_into_libs=yes
1374
     dynamic_linker="$host_os dld.sl"
1375
     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
1376
     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
1377
     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1378
     soname_spec='${libname}${release}${shared_ext}$major'
1379
     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
1380
     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
1381
     ;;
1382
   *)
1383
    shrext_cmds='.sl'
1384
    dynamic_linker="$host_os dld.sl"
1385
    shlibpath_var=SHLIB_PATH
1386
    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
1387
    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1388
    soname_spec='${libname}${release}${shared_ext}$major'
1389
    ;;
1390
  esac
1391
  # HP-UX runs *really* slowly unless shared libraries are mode 555.
1392
  postinstall_cmds='chmod 555 $lib'
1393
  ;;
1394
 
1395
interix[[3-9]]*)
1396
  version_type=linux
1397
  need_lib_prefix=no
1398
  need_version=no
1399
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1400
  soname_spec='${libname}${release}${shared_ext}$major'
1401
  dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)'
1402
  shlibpath_var=LD_LIBRARY_PATH
1403
  shlibpath_overrides_runpath=no
1404
  hardcode_into_libs=yes
1405
  ;;
1406
 
1407
irix5* | irix6* | nonstopux*)
1408
  case $host_os in
1409
    nonstopux*) version_type=nonstopux ;;
1410
    *)
1411
	if test "$lt_cv_prog_gnu_ld" = yes; then
1412
		version_type=linux
1413
	else
1414
		version_type=irix
1415
	fi ;;
1416
  esac
1417
  need_lib_prefix=no
1418
  need_version=no
1419
  soname_spec='${libname}${release}${shared_ext}$major'
1420
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
1421
  case $host_os in
1422
  irix5* | nonstopux*)
1423
    libsuff= shlibsuff=
1424
    ;;
1425
  *)
1426
    case $LD in # libtool.m4 will add one of these switches to LD
1427
    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
1428
      libsuff= shlibsuff= libmagic=32-bit;;
1429
    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
1430
      libsuff=32 shlibsuff=N32 libmagic=N32;;
1431
    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
1432
      libsuff=64 shlibsuff=64 libmagic=64-bit;;
1433
    *) libsuff= shlibsuff= libmagic=never-match;;
1434
    esac
1435
    ;;
1436
  esac
1437
  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
1438
  shlibpath_overrides_runpath=no
1439
  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
1440
  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
1441
  hardcode_into_libs=yes
1442
  ;;
1443
 
1444
# No shared lib support for Linux oldld, aout, or coff.
1445
linux*oldld* | linux*aout* | linux*coff*)
1446
  dynamic_linker=no
1447
  ;;
1448
 
1449
# This must be Linux ELF.
1450
linux* | k*bsd*-gnu)
1451
  version_type=linux
1452
  need_lib_prefix=no
1453
  need_version=no
1454
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1455
  soname_spec='${libname}${release}${shared_ext}$major'
1456
  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
1457
  shlibpath_var=LD_LIBRARY_PATH
1458
  shlibpath_overrides_runpath=no
1459
  # This implies no fast_install, which is unacceptable.
1460
  # Some rework will be needed to allow for fast_install
1461
  # before this can be enabled.
1462
  hardcode_into_libs=yes
1463
 
1464
  # Append ld.so.conf contents to the search path
1465
  if test -f /etc/ld.so.conf; then
1466
    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' ' '`
1467
    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
1468
  fi
1469
 
1470
  # We used to test for /lib/ld.so.1 and disable shared libraries on
1471
  # powerpc, because MkLinux only supported shared libraries with the
1472
  # GNU dynamic linker.  Since this was broken with cross compilers,
1473
  # most powerpc-linux boxes support dynamic linking these days and
1474
  # people can always --disable-shared, the test was removed, and we
1475
  # assume the GNU/Linux dynamic linker is in use.
1476
  dynamic_linker='GNU/Linux ld.so'
1477
  ;;
1478
 
1479
netbsdelf*-gnu)
1480
  version_type=linux
1481
  need_lib_prefix=no
1482
  need_version=no
1483
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1484
  soname_spec='${libname}${release}${shared_ext}$major'
1485
  shlibpath_var=LD_LIBRARY_PATH
1486
  shlibpath_overrides_runpath=no
1487
  hardcode_into_libs=yes
1488
  dynamic_linker='NetBSD ld.elf_so'
1489
  ;;
1490
 
1491
netbsd*)
1492
  version_type=sunos
1493
  need_lib_prefix=no
1494
  need_version=no
1495
  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
1496
    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1497
    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
1498
    dynamic_linker='NetBSD (a.out) ld.so'
1499
  else
1500
    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
1501
    soname_spec='${libname}${release}${shared_ext}$major'
1502
    dynamic_linker='NetBSD ld.elf_so'
1503
  fi
1504
  shlibpath_var=LD_LIBRARY_PATH
1505
  shlibpath_overrides_runpath=yes
1506
  hardcode_into_libs=yes
1507
  ;;
1508
 
1509
newsos6)
1510
  version_type=linux
1511
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1512
  shlibpath_var=LD_LIBRARY_PATH
1513
  shlibpath_overrides_runpath=yes
1514
  ;;
1515
 
1516
nto-qnx*)
1517
  version_type=linux
1518
  need_lib_prefix=no
1519
  need_version=no
1520
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1521
  soname_spec='${libname}${release}${shared_ext}$major'
1522
  shlibpath_var=LD_LIBRARY_PATH
1523
  shlibpath_overrides_runpath=yes
1524
  ;;
1525
 
1526
openbsd*)
1527
  version_type=sunos
1528
  sys_lib_dlsearch_path_spec="/usr/lib"
1529
  need_lib_prefix=no
1530
  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
1531
  case $host_os in
1532
    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
1533
    *)                         need_version=no  ;;
1534
  esac
1535
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1536
  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
1537
  shlibpath_var=LD_LIBRARY_PATH
1538
  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
1539
    case $host_os in
1540
      openbsd2.[[89]] | openbsd2.[[89]].*)
1541
	shlibpath_overrides_runpath=no
1542
	;;
1543
      *)
1544
	shlibpath_overrides_runpath=yes
1545
	;;
1546
      esac
1547
  else
1548
    shlibpath_overrides_runpath=yes
1549
  fi
1550
  ;;
1551
 
1552
os2*)
1553
  libname_spec='$name'
1554
  shrext_cmds=".dll"
1555
  need_lib_prefix=no
1556
  library_names_spec='$libname${shared_ext} $libname.a'
1557
  dynamic_linker='OS/2 ld.exe'
1558
  shlibpath_var=LIBPATH
1559
  ;;
1560
 
1561
osf3* | osf4* | osf5*)
1562
  version_type=osf
1563
  need_lib_prefix=no
1564
  need_version=no
1565
  soname_spec='${libname}${release}${shared_ext}$major'
1566
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1567
  shlibpath_var=LD_LIBRARY_PATH
1568
  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
1569
  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
1570
  ;;
1571
 
1572
rdos*)
1573
  dynamic_linker=no
1574
  ;;
1575
 
1576
solaris*)
1577
  version_type=linux
1578
  need_lib_prefix=no
1579
  need_version=no
1580
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1581
  soname_spec='${libname}${release}${shared_ext}$major'
1582
  shlibpath_var=LD_LIBRARY_PATH
1583
  shlibpath_overrides_runpath=yes
1584
  hardcode_into_libs=yes
1585
  # ldd complains unless libraries are executable
1586
  postinstall_cmds='chmod +x $lib'
1587
  ;;
1588
 
1589
sunos4*)
1590
  version_type=sunos
1591
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
1592
  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
1593
  shlibpath_var=LD_LIBRARY_PATH
1594
  shlibpath_overrides_runpath=yes
1595
  if test "$with_gnu_ld" = yes; then
1596
    need_lib_prefix=no
1597
  fi
1598
  need_version=yes
1599
  ;;
1600
 
1601
sysv4 | sysv4.3*)
1602
  version_type=linux
1603
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1604
  soname_spec='${libname}${release}${shared_ext}$major'
1605
  shlibpath_var=LD_LIBRARY_PATH
1606
  case $host_vendor in
1607
    sni)
1608
      shlibpath_overrides_runpath=no
1609
      need_lib_prefix=no
1610
      export_dynamic_flag_spec='${wl}-Blargedynsym'
1611
      runpath_var=LD_RUN_PATH
1612
      ;;
1613
    siemens)
1614
      need_lib_prefix=no
1615
      ;;
1616
    motorola)
1617
      need_lib_prefix=no
1618
      need_version=no
1619
      shlibpath_overrides_runpath=no
1620
      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
1621
      ;;
1622
  esac
1623
  ;;
1624
 
1625
sysv4*MP*)
1626
  if test -d /usr/nec ;then
1627
    version_type=linux
1628
    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
1629
    soname_spec='$libname${shared_ext}.$major'
1630
    shlibpath_var=LD_LIBRARY_PATH
1631
  fi
1632
  ;;
1633
 
1634
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1635
  version_type=freebsd-elf
1636
  need_lib_prefix=no
1637
  need_version=no
1638
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
1639
  soname_spec='${libname}${release}${shared_ext}$major'
1640
  shlibpath_var=LD_LIBRARY_PATH
1641
  hardcode_into_libs=yes
1642
  if test "$with_gnu_ld" = yes; then
1643
    sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib'
1644
    shlibpath_overrides_runpath=no
1645
  else
1646
    sys_lib_search_path_spec='/usr/ccs/lib /usr/lib'
1647
    shlibpath_overrides_runpath=yes
1648
    case $host_os in
1649
      sco3.2v5*)
1650
        sys_lib_search_path_spec="$sys_lib_search_path_spec /lib"
1651
	;;
1652
    esac
1653
  fi
1654
  sys_lib_dlsearch_path_spec='/usr/lib'
1655
  ;;
1656
 
1657
uts4*)
1658
  version_type=linux
1659
  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
1660
  soname_spec='${libname}${release}${shared_ext}$major'
1661
  shlibpath_var=LD_LIBRARY_PATH
1662
  ;;
1663
 
1664
*)
1665
  dynamic_linker=no
1666
  ;;
1667
esac
1668
AC_MSG_RESULT([$dynamic_linker])
1669
test "$dynamic_linker" = no && can_build_shared=no
1670
 
1671
variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
1672
if test "$GCC" = yes; then
1673
  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
1674
fi
1675
])
1676
m4trace:/usr/share/aclocal/libtool.m4:1837: -1- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_REQUIRE([LT_AC_PROG_SED])dnl
1677
AC_ARG_WITH([tags],
1678
    [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
1679
        [include additional configurations @<:@automatic@:>@])],
1680
    [tagnames="$withval"])
1681
 
1682
if test -f "$ltmain" && test -n "$tagnames"; then
1683
  if test ! -f "${ofile}"; then
1684
    AC_MSG_WARN([output file `$ofile' does not exist])
1685
  fi
1686
 
1687
  if test -z "$LTCC"; then
1688
    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
1689
    if test -z "$LTCC"; then
1690
      AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
1691
    else
1692
      AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
1693
    fi
1694
  fi
1695
  if test -z "$LTCFLAGS"; then
1696
    eval "`$SHELL ${ofile} --config | grep '^LTCFLAGS='`"
1697
  fi
1698
 
1699
  # Extract list of available tagged configurations in $ofile.
1700
  # Note that this assumes the entire list is on one line.
1701
  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
1702
 
1703
  lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1704
  for tagname in $tagnames; do
1705
    IFS="$lt_save_ifs"
1706
    # Check whether tagname contains only valid characters
1707
    case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
1708
    "") ;;
1709
    *)  AC_MSG_ERROR([invalid tag name: $tagname])
1710
	;;
1711
    esac
1712
 
1713
    if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
1714
    then
1715
      AC_MSG_ERROR([tag name \"$tagname\" already exists])
1716
    fi
1717
 
1718
    # Update the list of available tags.
1719
    if test -n "$tagname"; then
1720
      echo appending configuration tag \"$tagname\" to $ofile
1721
 
1722
      case $tagname in
1723
      CXX)
1724
	if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
1725
	    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
1726
	    (test "X$CXX" != "Xg++"))) ; then
1727
	  AC_LIBTOOL_LANG_CXX_CONFIG
1728
	else
1729
	  tagname=""
1730
	fi
1731
	;;
1732
 
1733
      F77)
1734
	if test -n "$F77" && test "X$F77" != "Xno"; then
1735
	  AC_LIBTOOL_LANG_F77_CONFIG
1736
	else
1737
	  tagname=""
1738
	fi
1739
	;;
1740
 
1741
      GCJ)
1742
	if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
1743
	  AC_LIBTOOL_LANG_GCJ_CONFIG
1744
	else
1745
	  tagname=""
1746
	fi
1747
	;;
1748
 
1749
      RC)
1750
	AC_LIBTOOL_LANG_RC_CONFIG
1751
	;;
1752
 
1753
      *)
1754
	AC_MSG_ERROR([Unsupported tag name: $tagname])
1755
	;;
1756
      esac
1757
 
1758
      # Append the new tag name to the list of available tags.
1759
      if test -n "$tagname" ; then
1760
      available_tags="$available_tags $tagname"
1761
    fi
1762
    fi
1763
  done
1764
  IFS="$lt_save_ifs"
1765
 
1766
  # Now substitute the updated list of available tags.
1767
  if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
1768
    mv "${ofile}T" "$ofile"
1769
    chmod +x "$ofile"
1770
  else
1771
    rm -f "${ofile}T"
1772
    AC_MSG_ERROR([unable to update list of available tagged configurations.])
1773
  fi
1774
fi
1775
])
1776
m4trace:/usr/share/aclocal/libtool.m4:1943: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
1777
])
1778
m4trace:/usr/share/aclocal/libtool.m4:1951: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
1779
])
1780
m4trace:/usr/share/aclocal/libtool.m4:1960: -1- AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
1781
AC_ARG_ENABLE([shared],
1782
    [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
1783
	[build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
1784
    [p=${PACKAGE-default}
1785
    case $enableval in
1786
    yes) enable_shared=yes ;;
1787
    no) enable_shared=no ;;
1788
    *)
1789
      enable_shared=no
1790
      # Look at the argument we got.  We use all the common list separators.
1791
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1792
      for pkg in $enableval; do
1793
	IFS="$lt_save_ifs"
1794
	if test "X$pkg" = "X$p"; then
1795
	  enable_shared=yes
1796
	fi
1797
      done
1798
      IFS="$lt_save_ifs"
1799
      ;;
1800
    esac],
1801
    [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
1802
])
1803
m4trace:/usr/share/aclocal/libtool.m4:1989: -1- AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1804
AC_ENABLE_SHARED(no)
1805
])
1806
m4trace:/usr/share/aclocal/libtool.m4:1999: -1- AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
1807
AC_ARG_ENABLE([static],
1808
    [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@],
1809
	[build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])],
1810
    [p=${PACKAGE-default}
1811
    case $enableval in
1812
    yes) enable_static=yes ;;
1813
    no) enable_static=no ;;
1814
    *)
1815
     enable_static=no
1816
      # Look at the argument we got.  We use all the common list separators.
1817
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1818
      for pkg in $enableval; do
1819
	IFS="$lt_save_ifs"
1820
	if test "X$pkg" = "X$p"; then
1821
	  enable_static=yes
1822
	fi
1823
      done
1824
      IFS="$lt_save_ifs"
1825
      ;;
1826
    esac],
1827
    [enable_static=]AC_ENABLE_STATIC_DEFAULT)
1828
])
1829
m4trace:/usr/share/aclocal/libtool.m4:2028: -1- AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1830
AC_ENABLE_STATIC(no)
1831
])
1832
m4trace:/usr/share/aclocal/libtool.m4:2038: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
1833
AC_ARG_ENABLE([fast-install],
1834
    [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
1835
    [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
1836
    [p=${PACKAGE-default}
1837
    case $enableval in
1838
    yes) enable_fast_install=yes ;;
1839
    no) enable_fast_install=no ;;
1840
    *)
1841
      enable_fast_install=no
1842
      # Look at the argument we got.  We use all the common list separators.
1843
      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
1844
      for pkg in $enableval; do
1845
	IFS="$lt_save_ifs"
1846
	if test "X$pkg" = "X$p"; then
1847
	  enable_fast_install=yes
1848
	fi
1849
      done
1850
      IFS="$lt_save_ifs"
1851
      ;;
1852
    esac],
1853
    [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
1854
])
1855
m4trace:/usr/share/aclocal/libtool.m4:2067: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1856
AC_ENABLE_FAST_INSTALL(no)
1857
])
1858
m4trace:/usr/share/aclocal/libtool.m4:2077: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
1859
pic_mode=ifelse($#,1,$1,default)
1860
])
1861
m4trace:/usr/share/aclocal/libtool.m4:2101: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl
1862
AC_MSG_CHECKING([for $1])
1863
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
1864
[case $MAGIC_CMD in
1865
[[\\/*] |  ?:[\\/]*])
1866
  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
1867
  ;;
1868
*)
1869
  lt_save_MAGIC_CMD="$MAGIC_CMD"
1870
  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
1871
dnl $ac_dummy forces splitting on constant user-supplied paths.
1872
dnl POSIX.2 word splitting is done only on the output of word expansions,
1873
dnl not every word.  This closes a longstanding sh security hole.
1874
  ac_dummy="ifelse([$2], , $PATH, [$2])"
1875
  for ac_dir in $ac_dummy; do
1876
    IFS="$lt_save_ifs"
1877
    test -z "$ac_dir" && ac_dir=.
1878
    if test -f $ac_dir/$1; then
1879
      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
1880
      if test -n "$file_magic_test_file"; then
1881
	case $deplibs_check_method in
1882
	"file_magic "*)
1883
	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
1884
	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1885
	  if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
1886
	    $EGREP "$file_magic_regex" > /dev/null; then
1887
	    :
1888
	  else
1889
	    cat <<EOF 1>&2
1890
 
1891
*** Warning: the command libtool uses to detect shared libraries,
1892
*** $file_magic_cmd, produces output that libtool cannot recognize.
1893
*** The result is that libtool may fail to recognize shared libraries
1894
*** as such.  This will affect the creation of libtool libraries that
1895
*** depend on shared libraries, but programs linked with such libtool
1896
*** libraries will work regardless of this problem.  Nevertheless, you
1897
*** may want to report the problem to your system manager and/or to
1898
*** bug-libtool@gnu.org
1899
 
1900
EOF
1901
	  fi ;;
1902
	esac
1903
      fi
1904
      break
1905
    fi
1906
  done
1907
  IFS="$lt_save_ifs"
1908
  MAGIC_CMD="$lt_save_MAGIC_CMD"
1909
  ;;
1910
esac])
1911
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
1912
if test -n "$MAGIC_CMD"; then
1913
  AC_MSG_RESULT($MAGIC_CMD)
1914
else
1915
  AC_MSG_RESULT(no)
1916
fi
1917
])
1918
m4trace:/usr/share/aclocal/libtool.m4:2164: -1- AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
1919
if test -z "$lt_cv_path_MAGIC_CMD"; then
1920
  if test -n "$ac_tool_prefix"; then
1921
    AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
1922
  else
1923
    MAGIC_CMD=:
1924
  fi
1925
fi
1926
])
1927
m4trace:/usr/share/aclocal/libtool.m4:2179: -1- AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld],
1928
    [AC_HELP_STRING([--with-gnu-ld],
1929
	[assume the C compiler uses GNU ld @<:@default=no@:>@])],
1930
    [test "$withval" = no || with_gnu_ld=yes],
1931
    [with_gnu_ld=no])
1932
AC_REQUIRE([LT_AC_PROG_SED])dnl
1933
AC_REQUIRE([AC_PROG_CC])dnl
1934
AC_REQUIRE([AC_CANONICAL_HOST])dnl
1935
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
1936
ac_prog=ld
1937
if test "$GCC" = yes; then
1938
  # Check if gcc -print-prog-name=ld gives a path.
1939
  AC_MSG_CHECKING([for ld used by $CC])
1940
  case $host in
1941
  *-*-mingw*)
1942
    # gcc leaves a trailing carriage return which upsets mingw
1943
    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
1944
  *)
1945
    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
1946
  esac
1947
  case $ac_prog in
1948
    # Accept absolute paths.
1949
    [[\\/]]* | ?:[[\\/]]*)
1950
      re_direlt='/[[^/]][[^/]]*/\.\./'
1951
      # Canonicalize the pathname of ld
1952
      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
1953
      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
1954
	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
1955
      done
1956
      test -z "$LD" && LD="$ac_prog"
1957
      ;;
1958
  "")
1959
    # If it fails, then pretend we aren't using GCC.
1960
    ac_prog=ld
1961
    ;;
1962
  *)
1963
    # If it is relative, then search for the first ld in PATH.
1964
    with_gnu_ld=unknown
1965
    ;;
1966
  esac
1967
elif test "$with_gnu_ld" = yes; then
1968
  AC_MSG_CHECKING([for GNU ld])
1969
else
1970
  AC_MSG_CHECKING([for non-GNU ld])
1971
fi
1972
AC_CACHE_VAL(lt_cv_path_LD,
1973
[if test -z "$LD"; then
1974
  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
1975
  for ac_dir in $PATH; do
1976
    IFS="$lt_save_ifs"
1977
    test -z "$ac_dir" && ac_dir=.
1978
    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
1979
      lt_cv_path_LD="$ac_dir/$ac_prog"
1980
      # Check to see if the program is GNU ld.  I'd rather use --version,
1981
      # but apparently some variants of GNU ld only accept -v.
1982
      # Break only if it was the GNU/non-GNU ld that we prefer.
1983
      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
1984
      *GNU* | *'with BFD'*)
1985
	test "$with_gnu_ld" != no && break
1986
	;;
1987
      *)
1988
	test "$with_gnu_ld" != yes && break
1989
	;;
1990
      esac
1991
    fi
1992
  done
1993
  IFS="$lt_save_ifs"
1994
else
1995
  lt_cv_path_LD="$LD" # Let the user override the test with a path.
1996
fi])
1997
LD="$lt_cv_path_LD"
1998
if test -n "$LD"; then
1999
  AC_MSG_RESULT($LD)
2000
else
2001
  AC_MSG_RESULT(no)
2002
fi
2003
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
2004
AC_PROG_LD_GNU
2005
])
2006
m4trace:/usr/share/aclocal/libtool.m4:2263: -1- AC_DEFUN([AC_PROG_LD_GNU], [AC_REQUIRE([AC_PROG_EGREP])dnl
2007
AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
2008
[# I'd rather use --version here, but apparently some GNU lds only accept -v.
2009
case `$LD -v 2>&1 </dev/null` in
2010
*GNU* | *'with BFD'*)
2011
  lt_cv_prog_gnu_ld=yes
2012
  ;;
2013
*)
2014
  lt_cv_prog_gnu_ld=no
2015
  ;;
2016
esac])
2017
with_gnu_ld=$lt_cv_prog_gnu_ld
2018
])
2019
m4trace:/usr/share/aclocal/libtool.m4:2283: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], [AC_CACHE_CHECK([for $LD option to reload object files],
2020
  lt_cv_ld_reload_flag,
2021
  [lt_cv_ld_reload_flag='-r'])
2022
reload_flag=$lt_cv_ld_reload_flag
2023
case $reload_flag in
2024
"" | " "*) ;;
2025
*) reload_flag=" $reload_flag" ;;
2026
esac
2027
reload_cmds='$LD$reload_flag -o $output$reload_objs'
2028
case $host_os in
2029
  darwin*)
2030
    if test "$GCC" = yes; then
2031
      reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs'
2032
    else
2033
      reload_cmds='$LD$reload_flag -o $output$reload_objs'
2034
    fi
2035
    ;;
2036
esac
2037
])
2038
m4trace:/usr/share/aclocal/libtool.m4:2309: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], [AC_CACHE_CHECK([how to recognize dependent libraries],
2039
lt_cv_deplibs_check_method,
2040
[lt_cv_file_magic_cmd='$MAGIC_CMD'
2041
lt_cv_file_magic_test_file=
2042
lt_cv_deplibs_check_method='unknown'
2043
# Need to set the preceding variable on all platforms that support
2044
# interlibrary dependencies.
2045
# 'none' -- dependencies not supported.
2046
# `unknown' -- same as none, but documents that we really don't know.
2047
# 'pass_all' -- all dependencies passed with no checks.
2048
# 'test_compile' -- check by making test program.
2049
# 'file_magic [[regex]]' -- check by looking for files in library path
2050
# which responds to the $file_magic_cmd with a given extended regex.
2051
# If you have `file' or equivalent on your system and you're not sure
2052
# whether `pass_all' will *always* work, you probably want this one.
2053
 
2054
case $host_os in
2055
aix4* | aix5*)
2056
  lt_cv_deplibs_check_method=pass_all
2057
  ;;
2058
 
2059
beos*)
2060
  lt_cv_deplibs_check_method=pass_all
2061
  ;;
2062
 
2063
bsdi[[45]]*)
2064
  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
2065
  lt_cv_file_magic_cmd='/usr/bin/file -L'
2066
  lt_cv_file_magic_test_file=/shlib/libc.so
2067
  ;;
2068
 
2069
cygwin*)
2070
  # func_win32_libid is a shell function defined in ltmain.sh
2071
  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
2072
  lt_cv_file_magic_cmd='func_win32_libid'
2073
  ;;
2074
 
2075
mingw* | pw32*)
2076
  # Base MSYS/MinGW do not provide the 'file' command needed by
2077
  # func_win32_libid shell function, so use a weaker test based on 'objdump',
2078
  # unless we find 'file', for example because we are cross-compiling.
2079
  if ( file / ) >/dev/null 2>&1; then
2080
    lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
2081
    lt_cv_file_magic_cmd='func_win32_libid'
2082
  else
2083
    lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
2084
    lt_cv_file_magic_cmd='$OBJDUMP -f'
2085
  fi
2086
  ;;
2087
 
2088
darwin* | rhapsody*)
2089
  lt_cv_deplibs_check_method=pass_all
2090
  ;;
2091
 
2092
freebsd* | dragonfly*)
2093
  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
2094
    case $host_cpu in
2095
    i*86 )
2096
      # Not sure whether the presence of OpenBSD here was a mistake.
2097
      # Let's accept both of them until this is cleared up.
2098
      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
2099
      lt_cv_file_magic_cmd=/usr/bin/file
2100
      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
2101
      ;;
2102
    esac
2103
  else
2104
    lt_cv_deplibs_check_method=pass_all
2105
  fi
2106
  ;;
2107
 
2108
gnu*)
2109
  lt_cv_deplibs_check_method=pass_all
2110
  ;;
2111
 
2112
hpux10.20* | hpux11*)
2113
  lt_cv_file_magic_cmd=/usr/bin/file
2114
  case $host_cpu in
2115
  ia64*)
2116
    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
2117
    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
2118
    ;;
2119
  hppa*64*)
2120
    [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]']
2121
    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
2122
    ;;
2123
  *)
2124
    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
2125
    lt_cv_file_magic_test_file=/usr/lib/libc.sl
2126
    ;;
2127
  esac
2128
  ;;
2129
 
2130
interix[[3-9]]*)
2131
  # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here
2132
  lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$'
2133
  ;;
2134
 
2135
irix5* | irix6* | nonstopux*)
2136
  case $LD in
2137
  *-32|*"-32 ") libmagic=32-bit;;
2138
  *-n32|*"-n32 ") libmagic=N32;;
2139
  *-64|*"-64 ") libmagic=64-bit;;
2140
  *) libmagic=never-match;;
2141
  esac
2142
  lt_cv_deplibs_check_method=pass_all
2143
  ;;
2144
 
2145
# This must be Linux ELF.
2146
linux* | k*bsd*-gnu)
2147
  lt_cv_deplibs_check_method=pass_all
2148
  ;;
2149
 
2150
netbsd* | netbsdelf*-gnu)
2151
  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
2152
    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
2153
  else
2154
    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
2155
  fi
2156
  ;;
2157
 
2158
newos6*)
2159
  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
2160
  lt_cv_file_magic_cmd=/usr/bin/file
2161
  lt_cv_file_magic_test_file=/usr/lib/libnls.so
2162
  ;;
2163
 
2164
nto-qnx*)
2165
  lt_cv_deplibs_check_method=unknown
2166
  ;;
2167
 
2168
openbsd*)
2169
  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
2170
    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
2171
  else
2172
    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
2173
  fi
2174
  ;;
2175
 
2176
osf3* | osf4* | osf5*)
2177
  lt_cv_deplibs_check_method=pass_all
2178
  ;;
2179
 
2180
rdos*)
2181
  lt_cv_deplibs_check_method=pass_all
2182
  ;;
2183
 
2184
solaris*)
2185
  lt_cv_deplibs_check_method=pass_all
2186
  ;;
2187
 
2188
sysv4 | sysv4.3*)
2189
  case $host_vendor in
2190
  motorola)
2191
    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]]'
2192
    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
2193
    ;;
2194
  ncr)
2195
    lt_cv_deplibs_check_method=pass_all
2196
    ;;
2197
  sequent)
2198
    lt_cv_file_magic_cmd='/bin/file'
2199
    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
2200
    ;;
2201
  sni)
2202
    lt_cv_file_magic_cmd='/bin/file'
2203
    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
2204
    lt_cv_file_magic_test_file=/lib/libc.so
2205
    ;;
2206
  siemens)
2207
    lt_cv_deplibs_check_method=pass_all
2208
    ;;
2209
  pc)
2210
    lt_cv_deplibs_check_method=pass_all
2211
    ;;
2212
  esac
2213
  ;;
2214
 
2215
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
2216
  lt_cv_deplibs_check_method=pass_all
2217
  ;;
2218
esac
2219
])
2220
file_magic_cmd=$lt_cv_file_magic_cmd
2221
deplibs_check_method=$lt_cv_deplibs_check_method
2222
test -z "$deplibs_check_method" && deplibs_check_method=unknown
2223
])
2224
m4trace:/usr/share/aclocal/libtool.m4:2501: -1- AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
2225
[if test -n "$NM"; then
2226
  # Let the user override the test.
2227
  lt_cv_path_NM="$NM"
2228
else
2229
  lt_nm_to_check="${ac_tool_prefix}nm"
2230
  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
2231
    lt_nm_to_check="$lt_nm_to_check nm"
2232
  fi
2233
  for lt_tmp_nm in $lt_nm_to_check; do
2234
    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
2235
    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
2236
      IFS="$lt_save_ifs"
2237
      test -z "$ac_dir" && ac_dir=.
2238
      tmp_nm="$ac_dir/$lt_tmp_nm"
2239
      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
2240
	# Check to see if the nm accepts a BSD-compat flag.
2241
	# Adding the `sed 1q' prevents false positives on HP-UX, which says:
2242
	#   nm: unknown option "B" ignored
2243
	# Tru64's nm complains that /dev/null is an invalid object file
2244
	case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
2245
	*/dev/null* | *'Invalid file or object type'*)
2246
	  lt_cv_path_NM="$tmp_nm -B"
2247
	  break
2248
	  ;;
2249
	*)
2250
	  case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
2251
	  */dev/null*)
2252
	    lt_cv_path_NM="$tmp_nm -p"
2253
	    break
2254
	    ;;
2255
	  *)
2256
	    lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
2257
	    continue # so that we can try to find one that supports BSD flags
2258
	    ;;
2259
	  esac
2260
	  ;;
2261
	esac
2262
      fi
2263
    done
2264
    IFS="$lt_save_ifs"
2265
  done
2266
  test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
2267
fi])
2268
NM="$lt_cv_path_NM"
2269
])
2270
m4trace:/usr/share/aclocal/libtool.m4:2553: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
2271
LIBM=
2272
case $host in
2273
*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
2274
  # These system don't have libm, or don't need it
2275
  ;;
2276
*-ncr-sysv4.3*)
2277
  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
2278
  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
2279
  ;;
2280
*)
2281
  AC_CHECK_LIB(m, cos, LIBM="-lm")
2282
  ;;
2283
esac
2284
])
2285
m4trace:/usr/share/aclocal/libtool.m4:2582: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
2286
  case $enable_ltdl_convenience in
2287
  no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
2288
  "") enable_ltdl_convenience=yes
2289
      ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
2290
  esac
2291
  LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
2292
  LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
2293
  # For backwards non-gettext consistent compatibility...
2294
  INCLTDL="$LTDLINCL"
2295
])
2296
m4trace:/usr/share/aclocal/libtool.m4:2608: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
2297
  AC_CHECK_LIB(ltdl, lt_dlinit,
2298
  [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
2299
  [if test x"$enable_ltdl_install" = xno; then
2300
     AC_MSG_WARN([libltdl not installed, but installation disabled])
2301
   else
2302
     enable_ltdl_install=yes
2303
   fi
2304
  ])
2305
  if test x"$enable_ltdl_install" = x"yes"; then
2306
    ac_configure_args="$ac_configure_args --enable-ltdl-install"
2307
    LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
2308
    LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
2309
  else
2310
    ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
2311
    LIBLTDL="-lltdl"
2312
    LTDLINCL=
2313
  fi
2314
  # For backwards non-gettext consistent compatibility...
2315
  INCLTDL="$LTDLINCL"
2316
])
2317
m4trace:/usr/share/aclocal/libtool.m4:2635: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX])
2318
])
2319
m4trace:/usr/share/aclocal/libtool.m4:2642: -1- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX])
2320
AC_REQUIRE([_LT_AC_PROG_CXXCPP])
2321
_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
2322
])
2323
m4trace:/usr/share/aclocal/libtool.m4:2650: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP], [
2324
AC_REQUIRE([AC_PROG_CXX])
2325
if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
2326
    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
2327
    (test "X$CXX" != "Xg++"))) ; then
2328
  AC_PROG_CXXCPP
2329
fi
2330
])
2331
m4trace:/usr/share/aclocal/libtool.m4:2663: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77])
2332
])
2333
m4trace:/usr/share/aclocal/libtool.m4:2670: -1- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77])
2334
_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
2335
])
2336
m4trace:/usr/share/aclocal/libtool.m4:2679: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ])
2337
])
2338
m4trace:/usr/share/aclocal/libtool.m4:2686: -1- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[],
2339
  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[],
2340
    [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[],
2341
      [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])],
2342
	 [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])],
2343
	   [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
2344
_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
2345
])
2346
m4trace:/usr/share/aclocal/libtool.m4:2700: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC])
2347
_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
2348
])
2349
m4trace:/usr/share/aclocal/libtool.m4:2711: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG])
2350
m4trace:/usr/share/aclocal/libtool.m4:2712: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC"
2351
AC_LANG_PUSH(C)
2352
 
2353
# Source file extension for C test sources.
2354
ac_ext=c
2355
 
2356
# Object file extension for compiled C test sources.
2357
objext=o
2358
_LT_AC_TAGVAR(objext, $1)=$objext
2359
 
2360
# Code to be used in simple compile tests
2361
lt_simple_compile_test_code="int some_variable = 0;"
2362
 
2363
# Code to be used in simple link tests
2364
lt_simple_link_test_code='int main(){return(0);}'
2365
 
2366
_LT_AC_SYS_COMPILER
2367
 
2368
# save warnings/boilerplate of simple test code
2369
_LT_COMPILER_BOILERPLATE
2370
_LT_LINKER_BOILERPLATE
2371
 
2372
## CAVEAT EMPTOR:
2373
## There is no encapsulation within the following macros, do not change
2374
## the running order or otherwise move them around unless you know exactly
2375
## what you are doing...
2376
AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
2377
AC_LIBTOOL_PROG_COMPILER_PIC($1)
2378
AC_LIBTOOL_PROG_CC_C_O($1)
2379
AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
2380
AC_LIBTOOL_PROG_LD_SHLIBS($1)
2381
AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
2382
AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
2383
AC_LIBTOOL_SYS_LIB_STRIP
2384
AC_LIBTOOL_DLOPEN_SELF
2385
 
2386
# Report which library types will actually be built
2387
AC_MSG_CHECKING([if libtool supports shared libraries])
2388
AC_MSG_RESULT([$can_build_shared])
2389
 
2390
AC_MSG_CHECKING([whether to build shared libraries])
2391
test "$can_build_shared" = "no" && enable_shared=no
2392
 
2393
# On AIX, shared libraries and static libraries use the same namespace, and
2394
# are all built from PIC.
2395
case $host_os in
2396
aix3*)
2397
  test "$enable_shared" = yes && enable_static=no
2398
  if test -n "$RANLIB"; then
2399
    archive_cmds="$archive_cmds~\$RANLIB \$lib"
2400
    postinstall_cmds='$RANLIB $lib'
2401
  fi
2402
  ;;
2403
 
2404
aix4* | aix5*)
2405
  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
2406
    test "$enable_shared" = yes && enable_static=no
2407
  fi
2408
    ;;
2409
esac
2410
AC_MSG_RESULT([$enable_shared])
2411
 
2412
AC_MSG_CHECKING([whether to build static libraries])
2413
# Make sure either enable_shared or enable_static is yes.
2414
test "$enable_shared" = yes || enable_static=yes
2415
AC_MSG_RESULT([$enable_static])
2416
 
2417
AC_LIBTOOL_CONFIG($1)
2418
 
2419
AC_LANG_POP
2420
CC="$lt_save_CC"
2421
])
2422
m4trace:/usr/share/aclocal/libtool.m4:2792: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)])
2423
m4trace:/usr/share/aclocal/libtool.m4:2793: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++)
2424
AC_REQUIRE([AC_PROG_CXX])
2425
AC_REQUIRE([_LT_AC_PROG_CXXCPP])
2426
 
2427
_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2428
_LT_AC_TAGVAR(allow_undefined_flag, $1)=
2429
_LT_AC_TAGVAR(always_export_symbols, $1)=no
2430
_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
2431
_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
2432
_LT_AC_TAGVAR(hardcode_direct, $1)=no
2433
_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
2434
_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
2435
_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
2436
_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
2437
_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
2438
_LT_AC_TAGVAR(hardcode_automatic, $1)=no
2439
_LT_AC_TAGVAR(module_cmds, $1)=
2440
_LT_AC_TAGVAR(module_expsym_cmds, $1)=
2441
_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
2442
_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
2443
_LT_AC_TAGVAR(no_undefined_flag, $1)=
2444
_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
2445
_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
2446
 
2447
# Dependencies to place before and after the object being linked:
2448
_LT_AC_TAGVAR(predep_objects, $1)=
2449
_LT_AC_TAGVAR(postdep_objects, $1)=
2450
_LT_AC_TAGVAR(predeps, $1)=
2451
_LT_AC_TAGVAR(postdeps, $1)=
2452
_LT_AC_TAGVAR(compiler_lib_search_path, $1)=
2453
 
2454
# Source file extension for C++ test sources.
2455
ac_ext=cpp
2456
 
2457
# Object file extension for compiled C++ test sources.
2458
objext=o
2459
_LT_AC_TAGVAR(objext, $1)=$objext
2460
 
2461
# Code to be used in simple compile tests
2462
lt_simple_compile_test_code="int some_variable = 0;"
2463
 
2464
# Code to be used in simple link tests
2465
lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }'
2466
 
2467
# ltmain only uses $CC for tagged configurations so make sure $CC is set.
2468
_LT_AC_SYS_COMPILER
2469
 
2470
# save warnings/boilerplate of simple test code
2471
_LT_COMPILER_BOILERPLATE
2472
_LT_LINKER_BOILERPLATE
2473
 
2474
# Allow CC to be a program name with arguments.
2475
lt_save_CC=$CC
2476
lt_save_LD=$LD
2477
lt_save_GCC=$GCC
2478
GCC=$GXX
2479
lt_save_with_gnu_ld=$with_gnu_ld
2480
lt_save_path_LD=$lt_cv_path_LD
2481
if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
2482
  lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
2483
else
2484
  $as_unset lt_cv_prog_gnu_ld
2485
fi
2486
if test -n "${lt_cv_path_LDCXX+set}"; then
2487
  lt_cv_path_LD=$lt_cv_path_LDCXX
2488
else
2489
  $as_unset lt_cv_path_LD
2490
fi
2491
test -z "${LDCXX+set}" || LD=$LDCXX
2492
CC=${CXX-"c++"}
2493
compiler=$CC
2494
_LT_AC_TAGVAR(compiler, $1)=$CC
2495
_LT_CC_BASENAME([$compiler])
2496
 
2497
# We don't want -fno-exception wen compiling C++ code, so set the
2498
# no_builtin_flag separately
2499
if test "$GXX" = yes; then
2500
  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
2501
else
2502
  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
2503
fi
2504
 
2505
if test "$GXX" = yes; then
2506
  # Set up default GNU C++ configuration
2507
 
2508
  AC_PROG_LD
2509
 
2510
  # Check if GNU C++ uses GNU ld as the underlying linker, since the
2511
  # archiving commands below assume that GNU ld is being used.
2512
  if test "$with_gnu_ld" = yes; then
2513
    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
2514
    _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'
2515
 
2516
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
2517
    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
2518
 
2519
    # If archive_cmds runs LD, not CC, wlarc should be empty
2520
    # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
2521
    #     investigate it a little bit more. (MM)
2522
    wlarc='${wl}'
2523
 
2524
    # ancient GNU ld didn't support --whole-archive et. al.
2525
    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
2526
	grep 'no-whole-archive' > /dev/null; then
2527
      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
2528
    else
2529
      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
2530
    fi
2531
  else
2532
    with_gnu_ld=no
2533
    wlarc=
2534
 
2535
    # A generic and very simple default shared library creation
2536
    # command for GNU C++ for the case where it uses the native
2537
    # linker, instead of GNU ld.  If possible, this setting should
2538
    # overridden to take advantage of the native linker features on
2539
    # the platform it is being used on.
2540
    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
2541
  fi
2542
 
2543
  # Commands to make compiler produce verbose output that lists
2544
  # what "hidden" libraries, object files and flags are used when
2545
  # linking a shared library.
2546
  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
2547
 
2548
else
2549
  GXX=no
2550
  with_gnu_ld=no
2551
  wlarc=
2552
fi
2553
 
2554
# PORTME: fill in a description of your system's C++ link characteristics
2555
AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
2556
_LT_AC_TAGVAR(ld_shlibs, $1)=yes
2557
case $host_os in
2558
  aix3*)
2559
    # FIXME: insert proper C++ library support
2560
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
2561
    ;;
2562
  aix4* | aix5*)
2563
    if test "$host_cpu" = ia64; then
2564
      # On IA64, the linker does run time linking by default, so we don't
2565
      # have to do anything special.
2566
      aix_use_runtimelinking=no
2567
      exp_sym_flag='-Bexport'
2568
      no_entry_flag=""
2569
    else
2570
      aix_use_runtimelinking=no
2571
 
2572
      # Test if we are trying to use run time linking or normal
2573
      # AIX style linking. If -brtl is somewhere in LDFLAGS, we
2574
      # need to do runtime linking.
2575
      case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
2576
	for ld_flag in $LDFLAGS; do
2577
	  case $ld_flag in
2578
	  *-brtl*)
2579
	    aix_use_runtimelinking=yes
2580
	    break
2581
	    ;;
2582
	  esac
2583
	done
2584
	;;
2585
      esac
2586
 
2587
      exp_sym_flag='-bexport'
2588
      no_entry_flag='-bnoentry'
2589
    fi
2590
 
2591
    # When large executables or shared objects are built, AIX ld can
2592
    # have problems creating the table of contents.  If linking a library
2593
    # or program results in "error TOC overflow" add -mminimal-toc to
2594
    # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
2595
    # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
2596
 
2597
    _LT_AC_TAGVAR(archive_cmds, $1)=''
2598
    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2599
    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
2600
    _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2601
 
2602
    if test "$GXX" = yes; then
2603
      case $host_os in aix4.[[012]]|aix4.[[012]].*)
2604
      # We only want to do this on AIX 4.2 and lower, the check
2605
      # below for broken collect2 doesn't work under 4.3+
2606
	collect2name=`${CC} -print-prog-name=collect2`
2607
	if test -f "$collect2name" && \
2608
	   strings "$collect2name" | grep resolve_lib_name >/dev/null
2609
	then
2610
	  # We have reworked collect2
2611
	  :
2612
	else
2613
	  # We have old collect2
2614
	  _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
2615
	  # It fails to find uninstalled libraries when the uninstalled
2616
	  # path is not listed in the libpath.  Setting hardcode_minus_L
2617
	  # to unsupported forces relinking
2618
	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
2619
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2620
	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
2621
	fi
2622
	;;
2623
      esac
2624
      shared_flag='-shared'
2625
      if test "$aix_use_runtimelinking" = yes; then
2626
	shared_flag="$shared_flag "'${wl}-G'
2627
      fi
2628
    else
2629
      # not using gcc
2630
      if test "$host_cpu" = ia64; then
2631
	# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
2632
	# chokes on -Wl,-G. The following line is correct:
2633
	shared_flag='-G'
2634
      else
2635
	if test "$aix_use_runtimelinking" = yes; then
2636
	  shared_flag='${wl}-G'
2637
	else
2638
	  shared_flag='${wl}-bM:SRE'
2639
	fi
2640
      fi
2641
    fi
2642
 
2643
    # It seems that -bexpall does not export symbols beginning with
2644
    # underscore (_), so it is better to generate a list of symbols to export.
2645
    _LT_AC_TAGVAR(always_export_symbols, $1)=yes
2646
    if test "$aix_use_runtimelinking" = yes; then
2647
      # Warning - without using the other runtime loading flags (-brtl),
2648
      # -berok will link without error, but may produce a broken library.
2649
      _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
2650
      # Determine the default libpath from the value encoded in an empty executable.
2651
      _LT_AC_SYS_LIBPATH_AIX
2652
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
2653
 
2654
      _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"
2655
     else
2656
      if test "$host_cpu" = ia64; then
2657
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
2658
	_LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
2659
	_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"
2660
      else
2661
	# Determine the default libpath from the value encoded in an empty executable.
2662
	_LT_AC_SYS_LIBPATH_AIX
2663
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
2664
	# Warning - without using the other run time loading flags,
2665
	# -berok will link without error, but may produce a broken library.
2666
	_LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
2667
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
2668
	# Exported symbols can be pulled into shared objects from archives
2669
	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
2670
	_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
2671
	# This is similar to how AIX traditionally builds its shared libraries.
2672
	_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'
2673
      fi
2674
    fi
2675
    ;;
2676
 
2677
  beos*)
2678
    if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
2679
      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
2680
      # Joseph Beckenbach <jrb3@best.com> says some releases of gcc
2681
      # support --undefined.  This deserves some investigation.  FIXME
2682
      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
2683
    else
2684
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
2685
    fi
2686
    ;;
2687
 
2688
  chorus*)
2689
    case $cc_basename in
2690
      *)
2691
	# FIXME: insert proper C++ library support
2692
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
2693
	;;
2694
    esac
2695
    ;;
2696
 
2697
  cygwin* | mingw* | pw32*)
2698
    # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
2699
    # as there is no search path for DLLs.
2700
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
2701
    _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
2702
    _LT_AC_TAGVAR(always_export_symbols, $1)=no
2703
    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
2704
 
2705
    if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
2706
      _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'
2707
      # If the export-symbols file already is a .def file (1st line
2708
      # is EXPORTS), use it as is; otherwise, prepend...
2709
      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
2710
	cp $export_symbols $output_objdir/$soname.def;
2711
      else
2712
	echo EXPORTS > $output_objdir/$soname.def;
2713
	cat $export_symbols >> $output_objdir/$soname.def;
2714
      fi~
2715
      $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'
2716
    else
2717
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
2718
    fi
2719
  ;;
2720
      darwin* | rhapsody*)
2721
        case $host_os in
2722
        rhapsody* | darwin1.[[012]])
2723
         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
2724
         ;;
2725
       *) # Darwin 1.3 on
2726
         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
2727
           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
2728
         else
2729
           case ${MACOSX_DEPLOYMENT_TARGET} in
2730
             10.[[012]])
2731
               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
2732
               ;;
2733
             10.*)
2734
               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
2735
               ;;
2736
           esac
2737
         fi
2738
         ;;
2739
        esac
2740
      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2741
      _LT_AC_TAGVAR(hardcode_direct, $1)=no
2742
      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
2743
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
2744
      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
2745
      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2746
 
2747
    if test "$GXX" = yes ; then
2748
      lt_int_apple_cc_single_mod=no
2749
      output_verbose_link_cmd='echo'
2750
      if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
2751
       lt_int_apple_cc_single_mod=yes
2752
      fi
2753
      if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
2754
       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
2755
      else
2756
          _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'
2757
        fi
2758
        _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
2759
        # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
2760
          if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
2761
            _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
2762
          else
2763
            _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "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~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
2764
          fi
2765
            _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}'
2766
      else
2767
      case $cc_basename in
2768
        xlc*)
2769
         output_verbose_link_cmd='echo'
2770
          _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'
2771
          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
2772
          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
2773
          _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}'
2774
          _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}'
2775
          ;;
2776
       *)
2777
         _LT_AC_TAGVAR(ld_shlibs, $1)=no
2778
          ;;
2779
      esac
2780
      fi
2781
        ;;
2782
 
2783
  dgux*)
2784
    case $cc_basename in
2785
      ec++*)
2786
	# FIXME: insert proper C++ library support
2787
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
2788
	;;
2789
      ghcx*)
2790
	# Green Hills C++ Compiler
2791
	# FIXME: insert proper C++ library support
2792
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
2793
	;;
2794
      *)
2795
	# FIXME: insert proper C++ library support
2796
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
2797
	;;
2798
    esac
2799
    ;;
2800
  freebsd[[12]]*)
2801
    # C++ shared libraries reported to be fairly broken before switch to ELF
2802
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
2803
    ;;
2804
  freebsd-elf*)
2805
    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
2806
    ;;
2807
  freebsd* | dragonfly*)
2808
    # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
2809
    # conventions
2810
    _LT_AC_TAGVAR(ld_shlibs, $1)=yes
2811
    ;;
2812
  gnu*)
2813
    ;;
2814
  hpux9*)
2815
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
2816
    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
2817
    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
2818
    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2819
    _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
2820
				# but as the default
2821
				# location of the library.
2822
 
2823
    case $cc_basename in
2824
    CC*)
2825
      # FIXME: insert proper C++ library support
2826
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
2827
      ;;
2828
    aCC*)
2829
      _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'
2830
      # Commands to make compiler produce verbose output that lists
2831
      # what "hidden" libraries, object files and flags are used when
2832
      # linking a shared library.
2833
      #
2834
      # There doesn't appear to be a way to prevent this compiler from
2835
      # explicitly linking system object files so we need to strip them
2836
      # from the output so that they don't get included in the library
2837
      # dependencies.
2838
      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'
2839
      ;;
2840
    *)
2841
      if test "$GXX" = yes; then
2842
        _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'
2843
      else
2844
        # FIXME: insert proper C++ library support
2845
        _LT_AC_TAGVAR(ld_shlibs, $1)=no
2846
      fi
2847
      ;;
2848
    esac
2849
    ;;
2850
  hpux10*|hpux11*)
2851
    if test $with_gnu_ld = no; then
2852
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
2853
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
2854
 
2855
      case $host_cpu in
2856
      hppa*64*|ia64*) ;;
2857
      *)
2858
	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
2859
        ;;
2860
      esac
2861
    fi
2862
    case $host_cpu in
2863
    hppa*64*|ia64*)
2864
      _LT_AC_TAGVAR(hardcode_direct, $1)=no
2865
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
2866
      ;;
2867
    *)
2868
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
2869
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
2870
					      # but as the default
2871
					      # location of the library.
2872
      ;;
2873
    esac
2874
 
2875
    case $cc_basename in
2876
      CC*)
2877
	# FIXME: insert proper C++ library support
2878
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
2879
	;;
2880
      aCC*)
2881
	case $host_cpu in
2882
	hppa*64*)
2883
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2884
	  ;;
2885
	ia64*)
2886
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2887
	  ;;
2888
	*)
2889
	  _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'
2890
	  ;;
2891
	esac
2892
	# Commands to make compiler produce verbose output that lists
2893
	# what "hidden" libraries, object files and flags are used when
2894
	# linking a shared library.
2895
	#
2896
	# There doesn't appear to be a way to prevent this compiler from
2897
	# explicitly linking system object files so we need to strip them
2898
	# from the output so that they don't get included in the library
2899
	# dependencies.
2900
	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'
2901
	;;
2902
      *)
2903
	if test "$GXX" = yes; then
2904
	  if test $with_gnu_ld = no; then
2905
	    case $host_cpu in
2906
	    hppa*64*)
2907
	      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
2908
	      ;;
2909
	    ia64*)
2910
	      _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'
2911
	      ;;
2912
	    *)
2913
	      _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'
2914
	      ;;
2915
	    esac
2916
	  fi
2917
	else
2918
	  # FIXME: insert proper C++ library support
2919
	  _LT_AC_TAGVAR(ld_shlibs, $1)=no
2920
	fi
2921
	;;
2922
    esac
2923
    ;;
2924
  interix[[3-9]]*)
2925
    _LT_AC_TAGVAR(hardcode_direct, $1)=no
2926
    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
2927
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
2928
    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
2929
    # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
2930
    # Instead, shared libraries are loaded at an image base (0x10000000 by
2931
    # default) and relocated if they conflict, which is a slow very memory
2932
    # consuming and fragmenting process.  To avoid this, we pick a random,
2933
    # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
2934
    # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
2935
    _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'
2936
    _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'
2937
    ;;
2938
  irix5* | irix6*)
2939
    case $cc_basename in
2940
      CC*)
2941
	# SGI C++
2942
	_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'
2943
 
2944
	# Archives containing C++ object files must be created using
2945
	# "CC -ar", where "CC" is the IRIX C++ compiler.  This is
2946
	# necessary to make sure instantiated templates are included
2947
	# in the archive.
2948
	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
2949
	;;
2950
      *)
2951
	if test "$GXX" = yes; then
2952
	  if test "$with_gnu_ld" = no; then
2953
	    _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'
2954
	  else
2955
	    _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'
2956
	  fi
2957
	fi
2958
	_LT_AC_TAGVAR(link_all_deplibs, $1)=yes
2959
	;;
2960
    esac
2961
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
2962
    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
2963
    ;;
2964
  linux* | k*bsd*-gnu)
2965
    case $cc_basename in
2966
      KCC*)
2967
	# Kuck and Associates, Inc. (KAI) C++ Compiler
2968
 
2969
	# KCC will only create a shared library if the output file
2970
	# ends with ".so" (or ".sl" for HP-UX), so rename the library
2971
	# to its proper name (with version) after linking.
2972
	_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'
2973
	_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'
2974
	# Commands to make compiler produce verbose output that lists
2975
	# what "hidden" libraries, object files and flags are used when
2976
	# linking a shared library.
2977
	#
2978
	# There doesn't appear to be a way to prevent this compiler from
2979
	# explicitly linking system object files so we need to strip them
2980
	# from the output so that they don't get included in the library
2981
	# dependencies.
2982
	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'
2983
 
2984
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir'
2985
	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
2986
 
2987
	# Archives containing C++ object files must be created using
2988
	# "CC -Bstatic", where "CC" is the KAI C++ compiler.
2989
	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
2990
	;;
2991
      icpc*)
2992
	# Intel C++
2993
	with_gnu_ld=yes
2994
	# version 8.0 and above of icpc choke on multiply defined symbols
2995
	# if we add $predep_objects and $postdep_objects, however 7.1 and
2996
	# earlier do not add the objects themselves.
2997
	case `$CC -V 2>&1` in
2998
	*"Version 7."*)
2999
  	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
3000
  	  _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'
3001
	  ;;
3002
	*)  # Version 8.0 or newer
3003
	  tmp_idyn=
3004
	  case $host_cpu in
3005
	    ia64*) tmp_idyn=' -i_dynamic';;
3006
	  esac
3007
  	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
3008
	  _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'
3009
	  ;;
3010
	esac
3011
	_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3012
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3013
	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3014
	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
3015
	;;
3016
      pgCC*)
3017
        # Portland Group C++ compiler
3018
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
3019
  	_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'
3020
 
3021
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
3022
	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
3023
	_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'
3024
        ;;
3025
      cxx*)
3026
	# Compaq C++
3027
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
3028
	_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'
3029
 
3030
	runpath_var=LD_RUN_PATH
3031
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
3032
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3033
 
3034
	# Commands to make compiler produce verbose output that lists
3035
	# what "hidden" libraries, object files and flags are used when
3036
	# linking a shared library.
3037
	#
3038
	# There doesn't appear to be a way to prevent this compiler from
3039
	# explicitly linking system object files so we need to strip them
3040
	# from the output so that they don't get included in the library
3041
	# dependencies.
3042
	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'
3043
	;;
3044
      *)
3045
	case `$CC -V 2>&1 | sed 5q` in
3046
	*Sun\ C*)
3047
	  # Sun C++ 5.9
3048
	  _LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
3049
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3050
	  _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'
3051
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3052
	  _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'
3053
 
3054
	  # Not sure whether something based on
3055
	  # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1
3056
	  # would be better.
3057
	  output_verbose_link_cmd='echo'
3058
 
3059
	  # Archives containing C++ object files must be created using
3060
	  # "CC -xar", where "CC" is the Sun C++ compiler.  This is
3061
	  # necessary to make sure instantiated templates are included
3062
	  # in the archive.
3063
	  _LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
3064
	  ;;
3065
	esac
3066
	;;
3067
    esac
3068
    ;;
3069
  lynxos*)
3070
    # FIXME: insert proper C++ library support
3071
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
3072
    ;;
3073
  m88k*)
3074
    # FIXME: insert proper C++ library support
3075
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
3076
    ;;
3077
  mvs*)
3078
    case $cc_basename in
3079
      cxx*)
3080
	# FIXME: insert proper C++ library support
3081
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3082
	;;
3083
      *)
3084
	# FIXME: insert proper C++ library support
3085
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3086
	;;
3087
    esac
3088
    ;;
3089
  netbsd* | netbsdelf*-gnu)
3090
    if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
3091
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
3092
      wlarc=
3093
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3094
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3095
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3096
    fi
3097
    # Workaround some broken pre-1.5 toolchains
3098
    output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
3099
    ;;
3100
  openbsd2*)
3101
    # C++ shared libraries are fairly broken
3102
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
3103
    ;;
3104
  openbsd*)
3105
    if test -f /usr/libexec/ld.so; then
3106
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
3107
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3108
      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
3109
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3110
      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3111
	_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'
3112
	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
3113
	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
3114
      fi
3115
      output_verbose_link_cmd='echo'
3116
    else
3117
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
3118
    fi
3119
    ;;
3120
  osf3*)
3121
    case $cc_basename in
3122
      KCC*)
3123
	# Kuck and Associates, Inc. (KAI) C++ Compiler
3124
 
3125
	# KCC will only create a shared library if the output file
3126
	# ends with ".so" (or ".sl" for HP-UX), so rename the library
3127
	# to its proper name (with version) after linking.
3128
	_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'
3129
 
3130
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3131
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3132
 
3133
	# Archives containing C++ object files must be created using
3134
	# "CC -Bstatic", where "CC" is the KAI C++ compiler.
3135
	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
3136
 
3137
	;;
3138
      RCC*)
3139
	# Rational C++ 2.4.1
3140
	# FIXME: insert proper C++ library support
3141
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3142
	;;
3143
      cxx*)
3144
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3145
	_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'
3146
 
3147
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3148
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3149
 
3150
	# Commands to make compiler produce verbose output that lists
3151
	# what "hidden" libraries, object files and flags are used when
3152
	# linking a shared library.
3153
	#
3154
	# There doesn't appear to be a way to prevent this compiler from
3155
	# explicitly linking system object files so we need to strip them
3156
	# from the output so that they don't get included in the library
3157
	# dependencies.
3158
	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'
3159
	;;
3160
      *)
3161
	if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3162
	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3163
	  _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'
3164
 
3165
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3166
	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3167
 
3168
	  # Commands to make compiler produce verbose output that lists
3169
	  # what "hidden" libraries, object files and flags are used when
3170
	  # linking a shared library.
3171
	  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
3172
 
3173
	else
3174
	  # FIXME: insert proper C++ library support
3175
	  _LT_AC_TAGVAR(ld_shlibs, $1)=no
3176
	fi
3177
	;;
3178
    esac
3179
    ;;
3180
  osf4* | osf5*)
3181
    case $cc_basename in
3182
      KCC*)
3183
	# Kuck and Associates, Inc. (KAI) C++ Compiler
3184
 
3185
	# KCC will only create a shared library if the output file
3186
	# ends with ".so" (or ".sl" for HP-UX), so rename the library
3187
	# to its proper name (with version) after linking.
3188
	_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'
3189
 
3190
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
3191
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3192
 
3193
	# Archives containing C++ object files must be created using
3194
	# the KAI C++ compiler.
3195
	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs'
3196
	;;
3197
      RCC*)
3198
	# Rational C++ 2.4.1
3199
	# FIXME: insert proper C++ library support
3200
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3201
	;;
3202
      cxx*)
3203
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
3204
	_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'
3205
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
3206
	  echo "-hidden">> $lib.exp~
3207
	  $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~
3208
	  $rm $lib.exp'
3209
 
3210
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
3211
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3212
 
3213
	# Commands to make compiler produce verbose output that lists
3214
	# what "hidden" libraries, object files and flags are used when
3215
	# linking a shared library.
3216
	#
3217
	# There doesn't appear to be a way to prevent this compiler from
3218
	# explicitly linking system object files so we need to strip them
3219
	# from the output so that they don't get included in the library
3220
	# dependencies.
3221
	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'
3222
	;;
3223
      *)
3224
	if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3225
	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
3226
	 _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'
3227
 
3228
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
3229
	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
3230
 
3231
	  # Commands to make compiler produce verbose output that lists
3232
	  # what "hidden" libraries, object files and flags are used when
3233
	  # linking a shared library.
3234
	  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
3235
 
3236
	else
3237
	  # FIXME: insert proper C++ library support
3238
	  _LT_AC_TAGVAR(ld_shlibs, $1)=no
3239
	fi
3240
	;;
3241
    esac
3242
    ;;
3243
  psos*)
3244
    # FIXME: insert proper C++ library support
3245
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
3246
    ;;
3247
  sunos4*)
3248
    case $cc_basename in
3249
      CC*)
3250
	# Sun C++ 4.x
3251
	# FIXME: insert proper C++ library support
3252
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3253
	;;
3254
      lcc*)
3255
	# Lucid
3256
	# FIXME: insert proper C++ library support
3257
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3258
	;;
3259
      *)
3260
	# FIXME: insert proper C++ library support
3261
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3262
	;;
3263
    esac
3264
    ;;
3265
  solaris*)
3266
    case $cc_basename in
3267
      CC*)
3268
	# Sun C++ 4.2, 5.x and Centerline C++
3269
        _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes
3270
	_LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
3271
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
3272
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3273
	$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'
3274
 
3275
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
3276
	_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3277
	case $host_os in
3278
	  solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
3279
	  *)
3280
	    # The compiler driver will combine and reorder linker options,
3281
	    # but understands `-z linker_flag'.
3282
	    # Supported since Solaris 2.6 (maybe 2.5.1?)
3283
	    _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
3284
	    ;;
3285
	esac
3286
	_LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3287
 
3288
	output_verbose_link_cmd='echo'
3289
 
3290
	# Archives containing C++ object files must be created using
3291
	# "CC -xar", where "CC" is the Sun C++ compiler.  This is
3292
	# necessary to make sure instantiated templates are included
3293
	# in the archive.
3294
	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
3295
	;;
3296
      gcx*)
3297
	# Green Hills C++ Compiler
3298
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3299
 
3300
	# The C++ compiler must be used to create the archive.
3301
	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
3302
	;;
3303
      *)
3304
	# GNU C++ compiler with Solaris linker
3305
	if test "$GXX" = yes && test "$with_gnu_ld" = no; then
3306
	  _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
3307
	  if $CC --version | grep -v '^2\.7' > /dev/null; then
3308
	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3309
	    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3310
		$CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3311
 
3312
	    # Commands to make compiler produce verbose output that lists
3313
	    # what "hidden" libraries, object files and flags are used when
3314
	    # linking a shared library.
3315
	    output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
3316
	  else
3317
	    # g++ 2.7 appears to require `-G' NOT `-shared' on this
3318
	    # platform.
3319
	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
3320
	    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
3321
		$CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
3322
 
3323
	    # Commands to make compiler produce verbose output that lists
3324
	    # what "hidden" libraries, object files and flags are used when
3325
	    # linking a shared library.
3326
	    output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
3327
	  fi
3328
 
3329
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
3330
	  case $host_os in
3331
	  solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
3332
	  *)
3333
	    _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
3334
	    ;;
3335
	  esac
3336
	fi
3337
	;;
3338
    esac
3339
    ;;
3340
  sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
3341
    _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
3342
    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3343
    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3344
    runpath_var='LD_RUN_PATH'
3345
 
3346
    case $cc_basename in
3347
      CC*)
3348
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3349
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3350
	;;
3351
      *)
3352
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3353
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
3354
	;;
3355
    esac
3356
    ;;
3357
  sysv5* | sco3.2v5* | sco5v6*)
3358
    # Note: We can NOT use -z defs as we might desire, because we do not
3359
    # link with -lc, and that would cause any symbols used from libc to
3360
    # always be unresolved, which means just about no library would
3361
    # ever link correctly.  If we're not using GNU ld we use -z text
3362
    # though, which does catch some bad symbols but isn't as heavy-handed
3363
    # as -z defs.
3364
    # For security reasons, it is highly recommended that you always
3365
    # use absolute paths for naming shared libraries, and exclude the
3366
    # DT_RUNPATH tag from executables and libraries.  But doing so
3367
    # requires that you compile everything twice, which is a pain.
3368
    # So that behaviour is only enabled if SCOABSPATH is set to a
3369
    # non-empty value in the environment.  Most likely only useful for
3370
    # creating official distributions of packages.
3371
    # This is a hack until libtool officially supports absolute path
3372
    # names for shared libraries.
3373
    _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
3374
    _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
3375
    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3376
    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
3377
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
3378
    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
3379
    _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
3380
    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
3381
    runpath_var='LD_RUN_PATH'
3382
 
3383
    case $cc_basename in
3384
      CC*)
3385
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
3386
	_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'
3387
	;;
3388
      *)
3389
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
3390
	_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'
3391
	;;
3392
    esac
3393
    ;;
3394
  tandem*)
3395
    case $cc_basename in
3396
      NCC*)
3397
	# NonStop-UX NCC 3.20
3398
	# FIXME: insert proper C++ library support
3399
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3400
	;;
3401
      *)
3402
	# FIXME: insert proper C++ library support
3403
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
3404
	;;
3405
    esac
3406
    ;;
3407
  vxworks*)
3408
    # FIXME: insert proper C++ library support
3409
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
3410
    ;;
3411
  *)
3412
    # FIXME: insert proper C++ library support
3413
    _LT_AC_TAGVAR(ld_shlibs, $1)=no
3414
    ;;
3415
esac
3416
AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
3417
test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
3418
 
3419
_LT_AC_TAGVAR(GCC, $1)="$GXX"
3420
_LT_AC_TAGVAR(LD, $1)="$LD"
3421
 
3422
## CAVEAT EMPTOR:
3423
## There is no encapsulation within the following macros, do not change
3424
## the running order or otherwise move them around unless you know exactly
3425
## what you are doing...
3426
AC_LIBTOOL_POSTDEP_PREDEP($1)
3427
AC_LIBTOOL_PROG_COMPILER_PIC($1)
3428
AC_LIBTOOL_PROG_CC_C_O($1)
3429
AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3430
AC_LIBTOOL_PROG_LD_SHLIBS($1)
3431
AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3432
AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3433
 
3434
AC_LIBTOOL_CONFIG($1)
3435
 
3436
AC_LANG_POP
3437
CC=$lt_save_CC
3438
LDCXX=$LD
3439
LD=$lt_save_LD
3440
GCC=$lt_save_GCC
3441
with_gnu_ldcxx=$with_gnu_ld
3442
with_gnu_ld=$lt_save_with_gnu_ld
3443
lt_cv_path_LDCXX=$lt_cv_path_LD
3444
lt_cv_path_LD=$lt_save_path_LD
3445
lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
3446
lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
3447
])
3448
m4trace:/usr/share/aclocal/libtool.m4:3826: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [
3449
dnl we can't use the lt_simple_compile_test_code here,
3450
dnl because it contains code intended for an executable,
3451
dnl not a library.  It's possible we should let each
3452
dnl tag define a new lt_????_link_test_code variable,
3453
dnl but it's only used here...
3454
ifelse([$1],[],[cat > conftest.$ac_ext <<EOF
3455
int a;
3456
void foo (void) { a = 0; }
3457
EOF
3458
],[$1],[CXX],[cat > conftest.$ac_ext <<EOF
3459
class Foo
3460
{
3461
public:
3462
  Foo (void) { a = 0; }
3463
private:
3464
  int a;
3465
};
3466
EOF
3467
],[$1],[F77],[cat > conftest.$ac_ext <<EOF
3468
      subroutine foo
3469
      implicit none
3470
      integer*4 a
3471
      a=0
3472
      return
3473
      end
3474
EOF
3475
],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF
3476
public class foo {
3477
  private int a;
3478
  public void bar (void) {
3479
    a = 0;
3480
  }
3481
};
3482
EOF
3483
])
3484
dnl Parse the compiler output and extract the necessary
3485
dnl objects, libraries and library flags.
3486
if AC_TRY_EVAL(ac_compile); then
3487
  # Parse the compiler output and extract the necessary
3488
  # objects, libraries and library flags.
3489
 
3490
  # Sentinel used to keep track of whether or not we are before
3491
  # the conftest object file.
3492
  pre_test_object_deps_done=no
3493
 
3494
  # The `*' in the case matches for architectures that use `case' in
3495
  # $output_verbose_cmd can trigger glob expansion during the loop
3496
  # eval without this substitution.
3497
  output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`
3498
 
3499
  for p in `eval $output_verbose_link_cmd`; do
3500
    case $p in
3501
 
3502
    -L* | -R* | -l*)
3503
       # Some compilers place space between "-{L,R}" and the path.
3504
       # Remove the space.
3505
       if test $p = "-L" \
3506
	  || test $p = "-R"; then
3507
	 prev=$p
3508
	 continue
3509
       else
3510
	 prev=
3511
       fi
3512
 
3513
       if test "$pre_test_object_deps_done" = no; then
3514
	 case $p in
3515
	 -L* | -R*)
3516
	   # Internal compiler library paths should come after those
3517
	   # provided the user.  The postdeps already come after the
3518
	   # user supplied libs so there is no need to process them.
3519
	   if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
3520
	     _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
3521
	   else
3522
	     _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
3523
	   fi
3524
	   ;;
3525
	 # The "-l" case would never come before the object being
3526
	 # linked, so don't bother handling this case.
3527
	 esac
3528
       else
3529
	 if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then
3530
	   _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}"
3531
	 else
3532
	   _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}"
3533
	 fi
3534
       fi
3535
       ;;
3536
 
3537
    *.$objext)
3538
       # This assumes that the test object file only shows up
3539
       # once in the compiler output.
3540
       if test "$p" = "conftest.$objext"; then
3541
	 pre_test_object_deps_done=yes
3542
	 continue
3543
       fi
3544
 
3545
       if test "$pre_test_object_deps_done" = no; then
3546
	 if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then
3547
	   _LT_AC_TAGVAR(predep_objects, $1)="$p"
3548
	 else
3549
	   _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p"
3550
	 fi
3551
       else
3552
	 if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then
3553
	   _LT_AC_TAGVAR(postdep_objects, $1)="$p"
3554
	 else
3555
	   _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p"
3556
	 fi
3557
       fi
3558
       ;;
3559
 
3560
    *) ;; # Ignore the rest.
3561
 
3562
    esac
3563
  done
3564
 
3565
  # Clean up.
3566
  rm -f a.out a.exe
3567
else
3568
  echo "libtool.m4: error: problem compiling $1 test program"
3569
fi
3570
 
3571
$rm -f confest.$objext
3572
 
3573
# PORTME: override above test on systems where it is broken
3574
ifelse([$1],[CXX],
3575
[case $host_os in
3576
interix[[3-9]]*)
3577
  # Interix 3.5 installs completely hosed .la files for C++, so rather than
3578
  # hack all around it, let's just trust "g++" to DTRT.
3579
  _LT_AC_TAGVAR(predep_objects,$1)=
3580
  _LT_AC_TAGVAR(postdep_objects,$1)=
3581
  _LT_AC_TAGVAR(postdeps,$1)=
3582
  ;;
3583
 
3584
linux*)
3585
  case `$CC -V 2>&1 | sed 5q` in
3586
  *Sun\ C*)
3587
    # Sun C++ 5.9
3588
    #
3589
    # The more standards-conforming stlport4 library is
3590
    # incompatible with the Cstd library. Avoid specifying
3591
    # it if it's in CXXFLAGS. Ignore libCrun as
3592
    # -library=stlport4 depends on it.
3593
    case " $CXX $CXXFLAGS " in
3594
    *" -library=stlport4 "*)
3595
      solaris_use_stlport4=yes
3596
      ;;
3597
    esac
3598
    if test "$solaris_use_stlport4" != yes; then
3599
      _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
3600
    fi
3601
    ;;
3602
  esac
3603
  ;;
3604
 
3605
solaris*)
3606
  case $cc_basename in
3607
  CC*)
3608
    # The more standards-conforming stlport4 library is
3609
    # incompatible with the Cstd library. Avoid specifying
3610
    # it if it's in CXXFLAGS. Ignore libCrun as
3611
    # -library=stlport4 depends on it.
3612
    case " $CXX $CXXFLAGS " in
3613
    *" -library=stlport4 "*)
3614
      solaris_use_stlport4=yes
3615
      ;;
3616
    esac
3617
 
3618
    # Adding this requires a known-good setup of shared libraries for
3619
    # Sun compiler versions before 5.6, else PIC objects from an old
3620
    # archive will be linked into the output, leading to subtle bugs.
3621
    if test "$solaris_use_stlport4" != yes; then
3622
      _LT_AC_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun'
3623
    fi
3624
    ;;
3625
  esac
3626
  ;;
3627
esac
3628
])
3629
 
3630
case " $_LT_AC_TAGVAR(postdeps, $1) " in
3631
*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;;
3632
esac
3633
])
3634
m4trace:/usr/share/aclocal/libtool.m4:4018: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
3635
m4trace:/usr/share/aclocal/libtool.m4:4019: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77])
3636
AC_LANG_PUSH(Fortran 77)
3637
 
3638
_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3639
_LT_AC_TAGVAR(allow_undefined_flag, $1)=
3640
_LT_AC_TAGVAR(always_export_symbols, $1)=no
3641
_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
3642
_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
3643
_LT_AC_TAGVAR(hardcode_direct, $1)=no
3644
_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
3645
_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
3646
_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
3647
_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
3648
_LT_AC_TAGVAR(hardcode_automatic, $1)=no
3649
_LT_AC_TAGVAR(module_cmds, $1)=
3650
_LT_AC_TAGVAR(module_expsym_cmds, $1)=
3651
_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
3652
_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3653
_LT_AC_TAGVAR(no_undefined_flag, $1)=
3654
_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
3655
_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
3656
 
3657
# Source file extension for f77 test sources.
3658
ac_ext=f
3659
 
3660
# Object file extension for compiled f77 test sources.
3661
objext=o
3662
_LT_AC_TAGVAR(objext, $1)=$objext
3663
 
3664
# Code to be used in simple compile tests
3665
lt_simple_compile_test_code="\
3666
      subroutine t
3667
      return
3668
      end
3669
"
3670
 
3671
# Code to be used in simple link tests
3672
lt_simple_link_test_code="\
3673
      program t
3674
      end
3675
"
3676
 
3677
# ltmain only uses $CC for tagged configurations so make sure $CC is set.
3678
_LT_AC_SYS_COMPILER
3679
 
3680
# save warnings/boilerplate of simple test code
3681
_LT_COMPILER_BOILERPLATE
3682
_LT_LINKER_BOILERPLATE
3683
 
3684
# Allow CC to be a program name with arguments.
3685
lt_save_CC="$CC"
3686
CC=${F77-"f77"}
3687
compiler=$CC
3688
_LT_AC_TAGVAR(compiler, $1)=$CC
3689
_LT_CC_BASENAME([$compiler])
3690
 
3691
AC_MSG_CHECKING([if libtool supports shared libraries])
3692
AC_MSG_RESULT([$can_build_shared])
3693
 
3694
AC_MSG_CHECKING([whether to build shared libraries])
3695
test "$can_build_shared" = "no" && enable_shared=no
3696
 
3697
# On AIX, shared libraries and static libraries use the same namespace, and
3698
# are all built from PIC.
3699
case $host_os in
3700
aix3*)
3701
  test "$enable_shared" = yes && enable_static=no
3702
  if test -n "$RANLIB"; then
3703
    archive_cmds="$archive_cmds~\$RANLIB \$lib"
3704
    postinstall_cmds='$RANLIB $lib'
3705
  fi
3706
  ;;
3707
aix4* | aix5*)
3708
  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
3709
    test "$enable_shared" = yes && enable_static=no
3710
  fi
3711
  ;;
3712
esac
3713
AC_MSG_RESULT([$enable_shared])
3714
 
3715
AC_MSG_CHECKING([whether to build static libraries])
3716
# Make sure either enable_shared or enable_static is yes.
3717
test "$enable_shared" = yes || enable_static=yes
3718
AC_MSG_RESULT([$enable_static])
3719
 
3720
_LT_AC_TAGVAR(GCC, $1)="$G77"
3721
_LT_AC_TAGVAR(LD, $1)="$LD"
3722
 
3723
AC_LIBTOOL_PROG_COMPILER_PIC($1)
3724
AC_LIBTOOL_PROG_CC_C_O($1)
3725
AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3726
AC_LIBTOOL_PROG_LD_SHLIBS($1)
3727
AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3728
AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3729
 
3730
AC_LIBTOOL_CONFIG($1)
3731
 
3732
AC_LANG_POP
3733
CC="$lt_save_CC"
3734
])
3735
m4trace:/usr/share/aclocal/libtool.m4:4127: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
3736
m4trace:/usr/share/aclocal/libtool.m4:4128: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE
3737
 
3738
# Source file extension for Java test sources.
3739
ac_ext=java
3740
 
3741
# Object file extension for compiled Java test sources.
3742
objext=o
3743
_LT_AC_TAGVAR(objext, $1)=$objext
3744
 
3745
# Code to be used in simple compile tests
3746
lt_simple_compile_test_code="class foo {}"
3747
 
3748
# Code to be used in simple link tests
3749
lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }'
3750
 
3751
# ltmain only uses $CC for tagged configurations so make sure $CC is set.
3752
_LT_AC_SYS_COMPILER
3753
 
3754
# save warnings/boilerplate of simple test code
3755
_LT_COMPILER_BOILERPLATE
3756
_LT_LINKER_BOILERPLATE
3757
 
3758
# Allow CC to be a program name with arguments.
3759
lt_save_CC="$CC"
3760
CC=${GCJ-"gcj"}
3761
compiler=$CC
3762
_LT_AC_TAGVAR(compiler, $1)=$CC
3763
_LT_CC_BASENAME([$compiler])
3764
 
3765
# GCJ did not exist at the time GCC didn't implicitly link libc in.
3766
_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3767
 
3768
_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3769
 
3770
## CAVEAT EMPTOR:
3771
## There is no encapsulation within the following macros, do not change
3772
## the running order or otherwise move them around unless you know exactly
3773
## what you are doing...
3774
AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
3775
AC_LIBTOOL_PROG_COMPILER_PIC($1)
3776
AC_LIBTOOL_PROG_CC_C_O($1)
3777
AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3778
AC_LIBTOOL_PROG_LD_SHLIBS($1)
3779
AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3780
AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3781
 
3782
AC_LIBTOOL_CONFIG($1)
3783
 
3784
AC_LANG_RESTORE
3785
CC="$lt_save_CC"
3786
])
3787
m4trace:/usr/share/aclocal/libtool.m4:4187: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
3788
m4trace:/usr/share/aclocal/libtool.m4:4188: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE
3789
 
3790
# Source file extension for RC test sources.
3791
ac_ext=rc
3792
 
3793
# Object file extension for compiled RC test sources.
3794
objext=o
3795
_LT_AC_TAGVAR(objext, $1)=$objext
3796
 
3797
# Code to be used in simple compile tests
3798
lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }'
3799
 
3800
# Code to be used in simple link tests
3801
lt_simple_link_test_code="$lt_simple_compile_test_code"
3802
 
3803
# ltmain only uses $CC for tagged configurations so make sure $CC is set.
3804
_LT_AC_SYS_COMPILER
3805
 
3806
# save warnings/boilerplate of simple test code
3807
_LT_COMPILER_BOILERPLATE
3808
_LT_LINKER_BOILERPLATE
3809
 
3810
# Allow CC to be a program name with arguments.
3811
lt_save_CC="$CC"
3812
CC=${RC-"windres"}
3813
compiler=$CC
3814
_LT_AC_TAGVAR(compiler, $1)=$CC
3815
_LT_CC_BASENAME([$compiler])
3816
_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
3817
 
3818
AC_LIBTOOL_CONFIG($1)
3819
 
3820
AC_LANG_RESTORE
3821
CC="$lt_save_CC"
3822
])
3823
m4trace:/usr/share/aclocal/libtool.m4:4232: -1- AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the
3824
# libtool distribution, otherwise you forgot to ship ltmain.sh
3825
# with your package, and you will get complaints that there are
3826
# no rules to generate ltmain.sh.
3827
if test -f "$ltmain"; then
3828
  # See if we are running on zsh, and set the options which allow our commands through
3829
  # without removal of \ escapes.
3830
  if test -n "${ZSH_VERSION+set}" ; then
3831
    setopt NO_GLOB_SUBST
3832
  fi
3833
  # Now quote all the things that may contain metacharacters while being
3834
  # careful not to overquote the AC_SUBSTed values.  We take copies of the
3835
  # variables and quote the copies for generation of the libtool script.
3836
  for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC LTCFLAGS NM \
3837
    SED SHELL STRIP \
3838
    libname_spec library_names_spec soname_spec extract_expsyms_cmds \
3839
    old_striplib striplib file_magic_cmd finish_cmds finish_eval \
3840
    deplibs_check_method reload_flag reload_cmds need_locks \
3841
    lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \
3842
    lt_cv_sys_global_symbol_to_c_name_address \
3843
    sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
3844
    old_postinstall_cmds old_postuninstall_cmds \
3845
    _LT_AC_TAGVAR(compiler, $1) \
3846
    _LT_AC_TAGVAR(CC, $1) \
3847
    _LT_AC_TAGVAR(LD, $1) \
3848
    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \
3849
    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \
3850
    _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \
3851
    _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \
3852
    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \
3853
    _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \
3854
    _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \
3855
    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \
3856
    _LT_AC_TAGVAR(old_archive_cmds, $1) \
3857
    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \
3858
    _LT_AC_TAGVAR(predep_objects, $1) \
3859
    _LT_AC_TAGVAR(postdep_objects, $1) \
3860
    _LT_AC_TAGVAR(predeps, $1) \
3861
    _LT_AC_TAGVAR(postdeps, $1) \
3862
    _LT_AC_TAGVAR(compiler_lib_search_path, $1) \
3863
    _LT_AC_TAGVAR(archive_cmds, $1) \
3864
    _LT_AC_TAGVAR(archive_expsym_cmds, $1) \
3865
    _LT_AC_TAGVAR(postinstall_cmds, $1) \
3866
    _LT_AC_TAGVAR(postuninstall_cmds, $1) \
3867
    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \
3868
    _LT_AC_TAGVAR(allow_undefined_flag, $1) \
3869
    _LT_AC_TAGVAR(no_undefined_flag, $1) \
3870
    _LT_AC_TAGVAR(export_symbols_cmds, $1) \
3871
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \
3872
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \
3873
    _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \
3874
    _LT_AC_TAGVAR(hardcode_automatic, $1) \
3875
    _LT_AC_TAGVAR(module_cmds, $1) \
3876
    _LT_AC_TAGVAR(module_expsym_cmds, $1) \
3877
    _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \
3878
    _LT_AC_TAGVAR(fix_srcfile_path, $1) \
3879
    _LT_AC_TAGVAR(exclude_expsyms, $1) \
3880
    _LT_AC_TAGVAR(include_expsyms, $1); do
3881
 
3882
    case $var in
3883
    _LT_AC_TAGVAR(old_archive_cmds, $1) | \
3884
    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \
3885
    _LT_AC_TAGVAR(archive_cmds, $1) | \
3886
    _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \
3887
    _LT_AC_TAGVAR(module_cmds, $1) | \
3888
    _LT_AC_TAGVAR(module_expsym_cmds, $1) | \
3889
    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \
3890
    _LT_AC_TAGVAR(export_symbols_cmds, $1) | \
3891
    extract_expsyms_cmds | reload_cmds | finish_cmds | \
3892
    postinstall_cmds | postuninstall_cmds | \
3893
    old_postinstall_cmds | old_postuninstall_cmds | \
3894
    sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
3895
      # Double-quote double-evaled strings.
3896
      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
3897
      ;;
3898
    *)
3899
      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
3900
      ;;
3901
    esac
3902
  done
3903
 
3904
  case $lt_echo in
3905
  *'\[$]0 --fallback-echo"')
3906
    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
3907
    ;;
3908
  esac
3909
 
3910
ifelse([$1], [],
3911
  [cfgfile="${ofile}T"
3912
  trap "$rm \"$cfgfile\"; exit 1" 1 2 15
3913
  $rm -f "$cfgfile"
3914
  AC_MSG_NOTICE([creating $ofile])],
3915
  [cfgfile="$ofile"])
3916
 
3917
  cat <<__EOF__ >> "$cfgfile"
3918
ifelse([$1], [],
3919
[#! $SHELL
3920
 
3921
# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
3922
# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
3923
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
3924
#
3925
# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
3926
# Free Software Foundation, Inc.
3927
#
3928
# This file is part of GNU Libtool:
3929
# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
3930
#
3931
# This program is free software; you can redistribute it and/or modify
3932
# it under the terms of the GNU General Public License as published by
3933
# the Free Software Foundation; either version 2 of the License, or
3934
# (at your option) any later version.
3935
#
3936
# This program is distributed in the hope that it will be useful, but
3937
# WITHOUT ANY WARRANTY; without even the implied warranty of
3938
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
3939
# General Public License for more details.
3940
#
3941
# You should have received a copy of the GNU General Public License
3942
# along with this program; if not, write to the Free Software
3943
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
3944
#
3945
# As a special exception to the GNU General Public License, if you
3946
# distribute this file as part of a program that contains a
3947
# configuration script generated by Autoconf, you may include it under
3948
# the same distribution terms that you use for the rest of that program.
3949
 
3950
# A sed program that does not truncate output.
3951
SED=$lt_SED
3952
 
3953
# Sed that helps us avoid accidentally triggering echo(1) options like -n.
3954
Xsed="$SED -e 1s/^X//"
3955
 
3956
# The HP-UX ksh and POSIX shell print the target directory to stdout
3957
# if CDPATH is set.
3958
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
3959
 
3960
# The names of the tagged configurations supported by this script.
3961
available_tags=
3962
 
3963
# ### BEGIN LIBTOOL CONFIG],
3964
[# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
3965
 
3966
# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
3967
 
3968
# Shell to use when invoking shell scripts.
3969
SHELL=$lt_SHELL
3970
 
3971
# Whether or not to build shared libraries.
3972
build_libtool_libs=$enable_shared
3973
 
3974
# Whether or not to build static libraries.
3975
build_old_libs=$enable_static
3976
 
3977
# Whether or not to add -lc for building shared libraries.
3978
build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
3979
 
3980
# Whether or not to disallow shared libs when runtime libs are static
3981
allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
3982
 
3983
# Whether or not to optimize for fast installation.
3984
fast_install=$enable_fast_install
3985
 
3986
# The host system.
3987
host_alias=$host_alias
3988
host=$host
3989
host_os=$host_os
3990
 
3991
# The build system.
3992
build_alias=$build_alias
3993
build=$build
3994
build_os=$build_os
3995
 
3996
# An echo program that does not interpret backslashes.
3997
echo=$lt_echo
3998
 
3999
# The archiver.
4000
AR=$lt_AR
4001
AR_FLAGS=$lt_AR_FLAGS
4002
 
4003
# A C compiler.
4004
LTCC=$lt_LTCC
4005
 
4006
# LTCC compiler flags.
4007
LTCFLAGS=$lt_LTCFLAGS
4008
 
4009
# A language-specific compiler.
4010
CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
4011
 
4012
# Is the compiler the GNU C compiler?
4013
with_gcc=$_LT_AC_TAGVAR(GCC, $1)
4014
 
4015
# An ERE matcher.
4016
EGREP=$lt_EGREP
4017
 
4018
# The linker used to build libraries.
4019
LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
4020
 
4021
# Whether we need hard or soft links.
4022
LN_S=$lt_LN_S
4023
 
4024
# A BSD-compatible nm program.
4025
NM=$lt_NM
4026
 
4027
# A symbol stripping program
4028
STRIP=$lt_STRIP
4029
 
4030
# Used to examine libraries when file_magic_cmd begins "file"
4031
MAGIC_CMD=$MAGIC_CMD
4032
 
4033
# Used on cygwin: DLL creation program.
4034
DLLTOOL="$DLLTOOL"
4035
 
4036
# Used on cygwin: object dumper.
4037
OBJDUMP="$OBJDUMP"
4038
 
4039
# Used on cygwin: assembler.
4040
AS="$AS"
4041
 
4042
# The name of the directory that contains temporary libtool files.
4043
objdir=$objdir
4044
 
4045
# How to create reloadable object files.
4046
reload_flag=$lt_reload_flag
4047
reload_cmds=$lt_reload_cmds
4048
 
4049
# How to pass a linker flag through the compiler.
4050
wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
4051
 
4052
# Object file suffix (normally "o").
4053
objext="$ac_objext"
4054
 
4055
# Old archive suffix (normally "a").
4056
libext="$libext"
4057
 
4058
# Shared library suffix (normally ".so").
4059
shrext_cmds='$shrext_cmds'
4060
 
4061
# Executable file suffix (normally "").
4062
exeext="$exeext"
4063
 
4064
# Additional compiler flags for building library objects.
4065
pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
4066
pic_mode=$pic_mode
4067
 
4068
# What is the maximum length of a command?
4069
max_cmd_len=$lt_cv_sys_max_cmd_len
4070
 
4071
# Does compiler simultaneously support -c and -o options?
4072
compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
4073
 
4074
# Must we lock files when doing compilation?
4075
need_locks=$lt_need_locks
4076
 
4077
# Do we need the lib prefix for modules?
4078
need_lib_prefix=$need_lib_prefix
4079
 
4080
# Do we need a version for libraries?
4081
need_version=$need_version
4082
 
4083
# Whether dlopen is supported.
4084
dlopen_support=$enable_dlopen
4085
 
4086
# Whether dlopen of programs is supported.
4087
dlopen_self=$enable_dlopen_self
4088
 
4089
# Whether dlopen of statically linked programs is supported.
4090
dlopen_self_static=$enable_dlopen_self_static
4091
 
4092
# Compiler flag to prevent dynamic linking.
4093
link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
4094
 
4095
# Compiler flag to turn off builtin functions.
4096
no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
4097
 
4098
# Compiler flag to allow reflexive dlopens.
4099
export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
4100
 
4101
# Compiler flag to generate shared objects directly from archives.
4102
whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
4103
 
4104
# Compiler flag to generate thread-safe objects.
4105
thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
4106
 
4107
# Library versioning type.
4108
version_type=$version_type
4109
 
4110
# Format of library name prefix.
4111
libname_spec=$lt_libname_spec
4112
 
4113
# List of archive names.  First name is the real one, the rest are links.
4114
# The last name is the one that the linker finds with -lNAME.
4115
library_names_spec=$lt_library_names_spec
4116
 
4117
# The coded name of the library, if different from the real name.
4118
soname_spec=$lt_soname_spec
4119
 
4120
# Commands used to build and install an old-style archive.
4121
RANLIB=$lt_RANLIB
4122
old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
4123
old_postinstall_cmds=$lt_old_postinstall_cmds
4124
old_postuninstall_cmds=$lt_old_postuninstall_cmds
4125
 
4126
# Create an old-style archive from a shared archive.
4127
old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
4128
 
4129
# Create a temporary old-style archive to link instead of a shared archive.
4130
old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
4131
 
4132
# Commands used to build and install a shared archive.
4133
archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
4134
archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
4135
postinstall_cmds=$lt_postinstall_cmds
4136
postuninstall_cmds=$lt_postuninstall_cmds
4137
 
4138
# Commands used to build a loadable module (assumed same as above if empty)
4139
module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
4140
module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
4141
 
4142
# Commands to strip libraries.
4143
old_striplib=$lt_old_striplib
4144
striplib=$lt_striplib
4145
 
4146
# Dependencies to place before the objects being linked to create a
4147
# shared library.
4148
predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
4149
 
4150
# Dependencies to place after the objects being linked to create a
4151
# shared library.
4152
postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
4153
 
4154
# Dependencies to place before the objects being linked to create a
4155
# shared library.
4156
predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
4157
 
4158
# Dependencies to place after the objects being linked to create a
4159
# shared library.
4160
postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
4161
 
4162
# The library search path used internally by the compiler when linking
4163
# a shared library.
4164
compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
4165
 
4166
# Method to check whether dependent libraries are shared objects.
4167
deplibs_check_method=$lt_deplibs_check_method
4168
 
4169
# Command to use when deplibs_check_method == file_magic.
4170
file_magic_cmd=$lt_file_magic_cmd
4171
 
4172
# Flag that allows shared libraries with undefined symbols to be built.
4173
allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
4174
 
4175
# Flag that forces no undefined symbols.
4176
no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
4177
 
4178
# Commands used to finish a libtool library installation in a directory.
4179
finish_cmds=$lt_finish_cmds
4180
 
4181
# Same as above, but a single script fragment to be evaled but not shown.
4182
finish_eval=$lt_finish_eval
4183
 
4184
# Take the output of nm and produce a listing of raw symbols and C names.
4185
global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
4186
 
4187
# Transform the output of nm in a proper C declaration
4188
global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
4189
 
4190
# Transform the output of nm in a C name address pair
4191
global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
4192
 
4193
# This is the shared library runtime path variable.
4194
runpath_var=$runpath_var
4195
 
4196
# This is the shared library path variable.
4197
shlibpath_var=$shlibpath_var
4198
 
4199
# Is shlibpath searched before the hard-coded library search path?
4200
shlibpath_overrides_runpath=$shlibpath_overrides_runpath
4201
 
4202
# How to hardcode a shared library path into an executable.
4203
hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
4204
 
4205
# Whether we should hardcode library paths into libraries.
4206
hardcode_into_libs=$hardcode_into_libs
4207
 
4208
# Flag to hardcode \$libdir into a binary during linking.
4209
# This must work even if \$libdir does not exist.
4210
hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
4211
 
4212
# If ld is used when linking, flag to hardcode \$libdir into
4213
# a binary during linking. This must work even if \$libdir does
4214
# not exist.
4215
hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
4216
 
4217
# Whether we need a single -rpath flag with a separated argument.
4218
hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
4219
 
4220
# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
4221
# resulting binary.
4222
hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
4223
 
4224
# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
4225
# resulting binary.
4226
hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
4227
 
4228
# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
4229
# the resulting binary.
4230
hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
4231
 
4232
# Set to yes if building a shared library automatically hardcodes DIR into the library
4233
# and all subsequent libraries and executables linked against it.
4234
hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
4235
 
4236
# Variables whose values should be saved in libtool wrapper scripts and
4237
# restored at relink time.
4238
variables_saved_for_relink="$variables_saved_for_relink"
4239
 
4240
# Whether libtool must link a program against all its dependency libraries.
4241
link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
4242
 
4243
# Compile-time system search path for libraries
4244
sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
4245
 
4246
# Run-time system search path for libraries
4247
sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
4248
 
4249
# Fix the shell variable \$srcfile for the compiler.
4250
fix_srcfile_path=$lt_fix_srcfile_path
4251
 
4252
# Set to yes if exported symbols are required.
4253
always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
4254
 
4255
# The commands to list exported symbols.
4256
export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
4257
 
4258
# The commands to extract the exported symbol list from a shared archive.
4259
extract_expsyms_cmds=$lt_extract_expsyms_cmds
4260
 
4261
# Symbols that should not be listed in the preloaded symbols.
4262
exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
4263
 
4264
# Symbols that must always be exported.
4265
include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
4266
 
4267
ifelse([$1],[],
4268
[# ### END LIBTOOL CONFIG],
4269
[# ### END LIBTOOL TAG CONFIG: $tagname])
4270
 
4271
__EOF__
4272
 
4273
ifelse([$1],[], [
4274
  case $host_os in
4275
  aix3*)
4276
    cat <<\EOF >> "$cfgfile"
4277
 
4278
# AIX sometimes has problems with the GCC collect2 program.  For some
4279
# reason, if we set the COLLECT_NAMES environment variable, the problems
4280
# vanish in a puff of smoke.
4281
if test "X${COLLECT_NAMES+set}" != Xset; then
4282
  COLLECT_NAMES=
4283
  export COLLECT_NAMES
4284
fi
4285
EOF
4286
    ;;
4287
  esac
4288
 
4289
  # We use sed instead of cat because bash on DJGPP gets confused if
4290
  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
4291
  # text mode, it properly converts lines to CR/LF.  This bash problem
4292
  # is reportedly fixed, but why not run on old versions too?
4293
  sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
4294
 
4295
  mv -f "$cfgfile" "$ofile" || \
4296
    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
4297
  chmod +x "$ofile"
4298
])
4299
else
4300
  # If there is no Makefile yet, we rely on a make rule to execute
4301
  # `config.status --recheck' to rerun these tests and create the
4302
  # libtool script then.
4303
  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
4304
  if test -f "$ltmain_in"; then
4305
    test -f Makefile && make "$ltmain"
4306
  fi
4307
fi
4308
])
4309
m4trace:/usr/share/aclocal/libtool.m4:4723: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
4310
 
4311
_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
4312
 
4313
if test "$GCC" = yes; then
4314
  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
4315
 
4316
  AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
4317
    lt_cv_prog_compiler_rtti_exceptions,
4318
    [-fno-rtti -fno-exceptions], [],
4319
    [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
4320
fi
4321
])
4322
m4trace:/usr/share/aclocal/libtool.m4:4741: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST])
4323
AC_REQUIRE([LT_AC_PROG_SED])
4324
AC_REQUIRE([AC_PROG_NM])
4325
AC_REQUIRE([AC_OBJEXT])
4326
# Check for command to grab the raw symbol name followed by C symbol from nm.
4327
AC_MSG_CHECKING([command to parse $NM output from $compiler object])
4328
AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
4329
[
4330
# These are sane defaults that work on at least a few old systems.
4331
# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
4332
 
4333
# Character class describing NM global symbol codes.
4334
symcode='[[BCDEGRST]]'
4335
 
4336
# Regexp to match symbols that can be accessed directly from C.
4337
sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
4338
 
4339
# Transform an extracted symbol line into a proper C declaration
4340
lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
4341
 
4342
# Transform an extracted symbol line into symbol name and symbol address
4343
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'"
4344
 
4345
# Define system-specific variables.
4346
case $host_os in
4347
aix*)
4348
  symcode='[[BCDT]]'
4349
  ;;
4350
cygwin* | mingw* | pw32*)
4351
  symcode='[[ABCDGISTW]]'
4352
  ;;
4353
hpux*) # Its linker distinguishes data from code symbols
4354
  if test "$host_cpu" = ia64; then
4355
    symcode='[[ABCDEGRST]]'
4356
  fi
4357
  lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4358
  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'"
4359
  ;;
4360
linux* | k*bsd*-gnu)
4361
  if test "$host_cpu" = ia64; then
4362
    symcode='[[ABCDGIRSTW]]'
4363
    lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
4364
    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'"
4365
  fi
4366
  ;;
4367
irix* | nonstopux*)
4368
  symcode='[[BCDEGRST]]'
4369
  ;;
4370
osf*)
4371
  symcode='[[BCDEGQRST]]'
4372
  ;;
4373
solaris*)
4374
  symcode='[[BDRT]]'
4375
  ;;
4376
sco3.2v5*)
4377
  symcode='[[DT]]'
4378
  ;;
4379
sysv4.2uw2*)
4380
  symcode='[[DT]]'
4381
  ;;
4382
sysv5* | sco5v6* | unixware* | OpenUNIX*)
4383
  symcode='[[ABDT]]'
4384
  ;;
4385
sysv4)
4386
  symcode='[[DFNSTU]]'
4387
  ;;
4388
esac
4389
 
4390
# Handle CRLF in mingw tool chain
4391
opt_cr=
4392
case $build_os in
4393
mingw*)
4394
  opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
4395
  ;;
4396
esac
4397
 
4398
# If we're using GNU nm, then use its standard symbol codes.
4399
case `$NM -V 2>&1` in
4400
*GNU* | *'with BFD'*)
4401
  symcode='[[ABCDGIRSTW]]' ;;
4402
esac
4403
 
4404
# Try without a prefix undercore, then with it.
4405
for ac_symprfx in "" "_"; do
4406
 
4407
  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
4408
  symxfrm="\\1 $ac_symprfx\\2 \\2"
4409
 
4410
  # Write the raw and C identifiers.
4411
  lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ 	]]\($symcode$symcode*\)[[ 	]][[ 	]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
4412
 
4413
  # Check to see that the pipe works correctly.
4414
  pipe_works=no
4415
 
4416
  rm -f conftest*
4417
  cat > conftest.$ac_ext <<EOF
4418
#ifdef __cplusplus
4419
extern "C" {
4420
#endif
4421
char nm_test_var;
4422
void nm_test_func(){}
4423
#ifdef __cplusplus
4424
}
4425
#endif
4426
int main(){nm_test_var='a';nm_test_func();return(0);}
4427
EOF
4428
 
4429
  if AC_TRY_EVAL(ac_compile); then
4430
    # Now try to grab the symbols.
4431
    nlist=conftest.nm
4432
    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
4433
      # Try sorting and uniquifying the output.
4434
      if sort "$nlist" | uniq > "$nlist"T; then
4435
	mv -f "$nlist"T "$nlist"
4436
      else
4437
	rm -f "$nlist"T
4438
      fi
4439
 
4440
      # Make sure that we snagged all the symbols we need.
4441
      if grep ' nm_test_var$' "$nlist" >/dev/null; then
4442
	if grep ' nm_test_func$' "$nlist" >/dev/null; then
4443
	  cat <<EOF > conftest.$ac_ext
4444
#ifdef __cplusplus
4445
extern "C" {
4446
#endif
4447
 
4448
EOF
4449
	  # Now generate the symbol file.
4450
	  eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
4451
 
4452
	  cat <<EOF >> conftest.$ac_ext
4453
#if defined (__STDC__) && __STDC__
4454
# define lt_ptr_t void *
4455
#else
4456
# define lt_ptr_t char *
4457
# define const
4458
#endif
4459
 
4460
/* The mapping between symbol names and symbols. */
4461
const struct {
4462
  const char *name;
4463
  lt_ptr_t address;
4464
}
4465
lt_preloaded_symbols[[]] =
4466
{
4467
EOF
4468
	  $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
4469
	  cat <<\EOF >> conftest.$ac_ext
4470
  {0, (lt_ptr_t) 0}
4471
};
4472
 
4473
#ifdef __cplusplus
4474
}
4475
#endif
4476
EOF
4477
	  # Now try linking the two files.
4478
	  mv conftest.$ac_objext conftstm.$ac_objext
4479
	  lt_save_LIBS="$LIBS"
4480
	  lt_save_CFLAGS="$CFLAGS"
4481
	  LIBS="conftstm.$ac_objext"
4482
	  CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
4483
	  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
4484
	    pipe_works=yes
4485
	  fi
4486
	  LIBS="$lt_save_LIBS"
4487
	  CFLAGS="$lt_save_CFLAGS"
4488
	else
4489
	  echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
4490
	fi
4491
      else
4492
	echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
4493
      fi
4494
    else
4495
      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
4496
    fi
4497
  else
4498
    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
4499
    cat conftest.$ac_ext >&5
4500
  fi
4501
  rm -f conftest* conftst*
4502
 
4503
  # Do not use the global_symbol_pipe unless it works.
4504
  if test "$pipe_works" = yes; then
4505
    break
4506
  else
4507
    lt_cv_sys_global_symbol_pipe=
4508
  fi
4509
done
4510
])
4511
if test -z "$lt_cv_sys_global_symbol_pipe"; then
4512
  lt_cv_sys_global_symbol_to_cdecl=
4513
fi
4514
if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
4515
  AC_MSG_RESULT(failed)
4516
else
4517
  AC_MSG_RESULT(ok)
4518
fi
4519
])
4520
m4trace:/usr/share/aclocal/libtool.m4:4944: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
4521
_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4522
_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
4523
 
4524
AC_MSG_CHECKING([for $compiler option to produce PIC])
4525
 ifelse([$1],[CXX],[
4526
  # C++ specific cases for pic, static, wl, etc.
4527
  if test "$GXX" = yes; then
4528
    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4529
    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4530
 
4531
    case $host_os in
4532
    aix*)
4533
      # All AIX code is PIC.
4534
      if test "$host_cpu" = ia64; then
4535
	# AIX 5 now supports IA64 processor
4536
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4537
      fi
4538
      ;;
4539
    amigaos*)
4540
      # FIXME: we need at least 68020 code to build shared libraries, but
4541
      # adding the `-m68020' flag to GCC prevents building anything better,
4542
      # like `-m68040'.
4543
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4544
      ;;
4545
    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4546
      # PIC is the default for these OSes.
4547
      ;;
4548
    mingw* | cygwin* | os2* | pw32*)
4549
      # This hack is so that the source file can tell whether it is being
4550
      # built for inclusion in a dll (and should export symbols for example).
4551
      # Although the cygwin gcc ignores -fPIC, still need this for old-style
4552
      # (--disable-auto-import) libraries
4553
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
4554
      ;;
4555
    darwin* | rhapsody*)
4556
      # PIC is the default on this platform
4557
      # Common symbols not allowed in MH_DYLIB files
4558
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4559
      ;;
4560
    *djgpp*)
4561
      # DJGPP does not support shared libraries at all
4562
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4563
      ;;
4564
    interix[[3-9]]*)
4565
      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4566
      # Instead, we relocate shared libraries at runtime.
4567
      ;;
4568
    sysv4*MP*)
4569
      if test -d /usr/nec; then
4570
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4571
      fi
4572
      ;;
4573
    hpux*)
4574
      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4575
      # not for PA HP-UX.
4576
      case $host_cpu in
4577
      hppa*64*|ia64*)
4578
	;;
4579
      *)
4580
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4581
	;;
4582
      esac
4583
      ;;
4584
    *)
4585
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4586
      ;;
4587
    esac
4588
  else
4589
    case $host_os in
4590
      aix4* | aix5*)
4591
	# All AIX code is PIC.
4592
	if test "$host_cpu" = ia64; then
4593
	  # AIX 5 now supports IA64 processor
4594
	  _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4595
	else
4596
	  _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4597
	fi
4598
	;;
4599
      chorus*)
4600
	case $cc_basename in
4601
	cxch68*)
4602
	  # Green Hills C++ Compiler
4603
	  # _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"
4604
	  ;;
4605
	esac
4606
	;;
4607
       darwin*)
4608
         # PIC is the default on this platform
4609
         # Common symbols not allowed in MH_DYLIB files
4610
         case $cc_basename in
4611
           xlc*)
4612
           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
4613
           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4614
           ;;
4615
         esac
4616
       ;;
4617
      dgux*)
4618
	case $cc_basename in
4619
	  ec++*)
4620
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4621
	    ;;
4622
	  ghcx*)
4623
	    # Green Hills C++ Compiler
4624
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4625
	    ;;
4626
	  *)
4627
	    ;;
4628
	esac
4629
	;;
4630
      freebsd* | dragonfly*)
4631
	# FreeBSD uses GNU C++
4632
	;;
4633
      hpux9* | hpux10* | hpux11*)
4634
	case $cc_basename in
4635
	  CC*)
4636
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4637
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4638
	    if test "$host_cpu" != ia64; then
4639
	      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4640
	    fi
4641
	    ;;
4642
	  aCC*)
4643
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4644
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4645
	    case $host_cpu in
4646
	    hppa*64*|ia64*)
4647
	      # +Z the default
4648
	      ;;
4649
	    *)
4650
	      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4651
	      ;;
4652
	    esac
4653
	    ;;
4654
	  *)
4655
	    ;;
4656
	esac
4657
	;;
4658
      interix*)
4659
	# This is c89, which is MS Visual C++ (no shared libs)
4660
	# Anyone wants to do a port?
4661
	;;
4662
      irix5* | irix6* | nonstopux*)
4663
	case $cc_basename in
4664
	  CC*)
4665
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4666
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4667
	    # CC pic flag -KPIC is the default.
4668
	    ;;
4669
	  *)
4670
	    ;;
4671
	esac
4672
	;;
4673
      linux* | k*bsd*-gnu)
4674
	case $cc_basename in
4675
	  KCC*)
4676
	    # KAI C++ Compiler
4677
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4678
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4679
	    ;;
4680
	  icpc* | ecpc*)
4681
	    # Intel C++
4682
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4683
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4684
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4685
	    ;;
4686
	  pgCC*)
4687
	    # Portland Group C++ compiler.
4688
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4689
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4690
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4691
	    ;;
4692
	  cxx*)
4693
	    # Compaq C++
4694
	    # Make sure the PIC flag is empty.  It appears that all Alpha
4695
	    # Linux and Compaq Tru64 Unix objects are PIC.
4696
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4697
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4698
	    ;;
4699
	  *)
4700
	    case `$CC -V 2>&1 | sed 5q` in
4701
	    *Sun\ C*)
4702
	      # Sun C++ 5.9
4703
	      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4704
	      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4705
	      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4706
	      ;;
4707
	    esac
4708
	    ;;
4709
	esac
4710
	;;
4711
      lynxos*)
4712
	;;
4713
      m88k*)
4714
	;;
4715
      mvs*)
4716
	case $cc_basename in
4717
	  cxx*)
4718
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
4719
	    ;;
4720
	  *)
4721
	    ;;
4722
	esac
4723
	;;
4724
      netbsd* | netbsdelf*-gnu)
4725
	;;
4726
      osf3* | osf4* | osf5*)
4727
	case $cc_basename in
4728
	  KCC*)
4729
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
4730
	    ;;
4731
	  RCC*)
4732
	    # Rational C++ 2.4.1
4733
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4734
	    ;;
4735
	  cxx*)
4736
	    # Digital/Compaq C++
4737
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4738
	    # Make sure the PIC flag is empty.  It appears that all Alpha
4739
	    # Linux and Compaq Tru64 Unix objects are PIC.
4740
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
4741
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4742
	    ;;
4743
	  *)
4744
	    ;;
4745
	esac
4746
	;;
4747
      psos*)
4748
	;;
4749
      solaris*)
4750
	case $cc_basename in
4751
	  CC*)
4752
	    # Sun C++ 4.2, 5.x and Centerline C++
4753
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4754
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4755
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4756
	    ;;
4757
	  gcx*)
4758
	    # Green Hills C++ Compiler
4759
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4760
	    ;;
4761
	  *)
4762
	    ;;
4763
	esac
4764
	;;
4765
      sunos4*)
4766
	case $cc_basename in
4767
	  CC*)
4768
	    # Sun C++ 4.x
4769
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4770
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4771
	    ;;
4772
	  lcc*)
4773
	    # Lucid
4774
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
4775
	    ;;
4776
	  *)
4777
	    ;;
4778
	esac
4779
	;;
4780
      tandem*)
4781
	case $cc_basename in
4782
	  NCC*)
4783
	    # NonStop-UX NCC 3.20
4784
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4785
	    ;;
4786
	  *)
4787
	    ;;
4788
	esac
4789
	;;
4790
      sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
4791
	case $cc_basename in
4792
	  CC*)
4793
	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4794
	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4795
	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4796
	    ;;
4797
	esac
4798
	;;
4799
      vxworks*)
4800
	;;
4801
      *)
4802
	_LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4803
	;;
4804
    esac
4805
  fi
4806
],
4807
[
4808
  if test "$GCC" = yes; then
4809
    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4810
    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4811
 
4812
    case $host_os in
4813
      aix*)
4814
      # All AIX code is PIC.
4815
      if test "$host_cpu" = ia64; then
4816
	# AIX 5 now supports IA64 processor
4817
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4818
      fi
4819
      ;;
4820
 
4821
    amigaos*)
4822
      # FIXME: we need at least 68020 code to build shared libraries, but
4823
      # adding the `-m68020' flag to GCC prevents building anything better,
4824
      # like `-m68040'.
4825
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
4826
      ;;
4827
 
4828
    beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
4829
      # PIC is the default for these OSes.
4830
      ;;
4831
 
4832
    mingw* | cygwin* | pw32* | os2*)
4833
      # This hack is so that the source file can tell whether it is being
4834
      # built for inclusion in a dll (and should export symbols for example).
4835
      # Although the cygwin gcc ignores -fPIC, still need this for old-style
4836
      # (--disable-auto-import) libraries
4837
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
4838
      ;;
4839
 
4840
    darwin* | rhapsody*)
4841
      # PIC is the default on this platform
4842
      # Common symbols not allowed in MH_DYLIB files
4843
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
4844
      ;;
4845
 
4846
    interix[[3-9]]*)
4847
      # Interix 3.x gcc -fpic/-fPIC options generate broken code.
4848
      # Instead, we relocate shared libraries at runtime.
4849
      ;;
4850
 
4851
    msdosdjgpp*)
4852
      # Just because we use GCC doesn't mean we suddenly get shared libraries
4853
      # on systems that don't support them.
4854
      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
4855
      enable_shared=no
4856
      ;;
4857
 
4858
    sysv4*MP*)
4859
      if test -d /usr/nec; then
4860
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
4861
      fi
4862
      ;;
4863
 
4864
    hpux*)
4865
      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4866
      # not for PA HP-UX.
4867
      case $host_cpu in
4868
      hppa*64*|ia64*)
4869
	# +Z the default
4870
	;;
4871
      *)
4872
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4873
	;;
4874
      esac
4875
      ;;
4876
 
4877
    *)
4878
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
4879
      ;;
4880
    esac
4881
  else
4882
    # PORTME Check for flag to pass linker flags through the system compiler.
4883
    case $host_os in
4884
    aix*)
4885
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4886
      if test "$host_cpu" = ia64; then
4887
	# AIX 5 now supports IA64 processor
4888
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4889
      else
4890
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
4891
      fi
4892
      ;;
4893
      darwin*)
4894
        # PIC is the default on this platform
4895
        # Common symbols not allowed in MH_DYLIB files
4896
       case $cc_basename in
4897
         xlc*)
4898
         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
4899
         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4900
         ;;
4901
       esac
4902
       ;;
4903
 
4904
    mingw* | cygwin* | pw32* | os2*)
4905
      # This hack is so that the source file can tell whether it is being
4906
      # built for inclusion in a dll (and should export symbols for example).
4907
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
4908
      ;;
4909
 
4910
    hpux9* | hpux10* | hpux11*)
4911
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4912
      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
4913
      # not for PA HP-UX.
4914
      case $host_cpu in
4915
      hppa*64*|ia64*)
4916
	# +Z the default
4917
	;;
4918
      *)
4919
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
4920
	;;
4921
      esac
4922
      # Is there a better lt_prog_compiler_static that works with the bundled CC?
4923
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
4924
      ;;
4925
 
4926
    irix5* | irix6* | nonstopux*)
4927
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4928
      # PIC (with -KPIC) is the default.
4929
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4930
      ;;
4931
 
4932
    newsos6)
4933
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4934
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4935
      ;;
4936
 
4937
    linux* | k*bsd*-gnu)
4938
      case $cc_basename in
4939
      icc* | ecc*)
4940
	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4941
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4942
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
4943
        ;;
4944
      pgcc* | pgf77* | pgf90* | pgf95*)
4945
        # Portland Group compilers (*not* the Pentium gcc compiler,
4946
	# which looks to be a dead project)
4947
	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4948
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
4949
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4950
        ;;
4951
      ccc*)
4952
        _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4953
        # All Alpha code is PIC.
4954
        _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4955
        ;;
4956
      *)
4957
        case `$CC -V 2>&1 | sed 5q` in
4958
	*Sun\ C*)
4959
	  # Sun C 5.9
4960
	  _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4961
	  _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4962
	  _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4963
	  ;;
4964
	*Sun\ F*)
4965
	  # Sun Fortran 8.3 passes all unrecognized flags to the linker
4966
	  _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4967
	  _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4968
	  _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=''
4969
	  ;;
4970
	esac
4971
	;;
4972
      esac
4973
      ;;
4974
 
4975
    osf3* | osf4* | osf5*)
4976
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
4977
      # All OSF/1 code is PIC.
4978
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4979
      ;;
4980
 
4981
    rdos*)
4982
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
4983
      ;;
4984
 
4985
    solaris*)
4986
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
4987
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
4988
      case $cc_basename in
4989
      f77* | f90* | f95*)
4990
	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
4991
      *)
4992
	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
4993
      esac
4994
      ;;
4995
 
4996
    sunos4*)
4997
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
4998
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
4999
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5000
      ;;
5001
 
5002
    sysv4 | sysv4.2uw2* | sysv4.3*)
5003
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5004
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5005
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5006
      ;;
5007
 
5008
    sysv4*MP*)
5009
      if test -d /usr/nec ;then
5010
	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
5011
	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5012
      fi
5013
      ;;
5014
 
5015
    sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*)
5016
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5017
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
5018
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5019
      ;;
5020
 
5021
    unicos*)
5022
      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5023
      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5024
      ;;
5025
 
5026
    uts4*)
5027
      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
5028
      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5029
      ;;
5030
 
5031
    *)
5032
      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
5033
      ;;
5034
    esac
5035
  fi
5036
])
5037
AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
5038
 
5039
#
5040
# Check to make sure the PIC flag actually works.
5041
#
5042
if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
5043
  AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
5044
    _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1),
5045
    [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
5046
    [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
5047
     "" | " "*) ;;
5048
     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
5049
     esac],
5050
    [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5051
     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
5052
fi
5053
case $host_os in
5054
  # For platforms which do not support PIC, -DPIC is meaningless:
5055
  *djgpp*)
5056
    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5057
    ;;
5058
  *)
5059
    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
5060
    ;;
5061
esac
5062
 
5063
#
5064
# Check to make sure the static flag actually works.
5065
#
5066
wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_AC_TAGVAR(lt_prog_compiler_static, $1)\"
5067
AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works],
5068
  _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1),
5069
  $lt_tmp_static_flag,
5070
  [],
5071
  [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
5072
])
5073
m4trace:/usr/share/aclocal/libtool.m4:5503: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_REQUIRE([LT_AC_PROG_SED])dnl
5074
AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
5075
ifelse([$1],[CXX],[
5076
  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5077
  case $host_os in
5078
  aix4* | aix5*)
5079
    # If we're using GNU nm, then we don't want the "-C" option.
5080
    # -C means demangle to AIX nm, but means don't demangle with GNU nm
5081
    if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
5082
      _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'
5083
    else
5084
      _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'
5085
    fi
5086
    ;;
5087
  pw32*)
5088
    _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
5089
  ;;
5090
  cygwin* | mingw*)
5091
    _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'
5092
  ;;
5093
  linux* | k*bsd*-gnu)
5094
    _LT_AC_TAGVAR(link_all_deplibs, $1)=no
5095
  ;;
5096
  *)
5097
    _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5098
  ;;
5099
  esac
5100
],[
5101
  runpath_var=
5102
  _LT_AC_TAGVAR(allow_undefined_flag, $1)=
5103
  _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
5104
  _LT_AC_TAGVAR(archive_cmds, $1)=
5105
  _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
5106
  _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
5107
  _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
5108
  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5109
  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5110
  _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
5111
  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5112
  _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
5113
  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5114
  _LT_AC_TAGVAR(hardcode_direct, $1)=no
5115
  _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
5116
  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5117
  _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
5118
  _LT_AC_TAGVAR(hardcode_automatic, $1)=no
5119
  _LT_AC_TAGVAR(module_cmds, $1)=
5120
  _LT_AC_TAGVAR(module_expsym_cmds, $1)=
5121
  _LT_AC_TAGVAR(always_export_symbols, $1)=no
5122
  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
5123
  # include_expsyms should be a list of space-separated symbols to be *always*
5124
  # included in the symbol list
5125
  _LT_AC_TAGVAR(include_expsyms, $1)=
5126
  # exclude_expsyms can be an extended regexp of symbols to exclude
5127
  # it will be wrapped by ` (' and `)$', so one must not match beginning or
5128
  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
5129
  # as well as any symbol that contains `d'.
5130
  _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_"
5131
  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
5132
  # platforms (ab)use it in PIC code, but their linkers get confused if
5133
  # the symbol is explicitly referenced.  Since portable code cannot
5134
  # rely on this symbol name, it's probably fine to never include it in
5135
  # preloaded symbol tables.
5136
  extract_expsyms_cmds=
5137
  # Just being paranoid about ensuring that cc_basename is set.
5138
  _LT_CC_BASENAME([$compiler])
5139
  case $host_os in
5140
  cygwin* | mingw* | pw32*)
5141
    # FIXME: the MSVC++ port hasn't been tested in a loooong time
5142
    # When not using gcc, we currently assume that we are using
5143
    # Microsoft Visual C++.
5144
    if test "$GCC" != yes; then
5145
      with_gnu_ld=no
5146
    fi
5147
    ;;
5148
  interix*)
5149
    # we just hope/assume this is gcc and not c89 (= MSVC++)
5150
    with_gnu_ld=yes
5151
    ;;
5152
  openbsd*)
5153
    with_gnu_ld=no
5154
    ;;
5155
  esac
5156
 
5157
  _LT_AC_TAGVAR(ld_shlibs, $1)=yes
5158
  if test "$with_gnu_ld" = yes; then
5159
    # If archive_cmds runs LD, not CC, wlarc should be empty
5160
    wlarc='${wl}'
5161
 
5162
    # Set some defaults for GNU ld with shared library support. These
5163
    # are reset later if shared libraries are not supported. Putting them
5164
    # here allows them to be overridden if necessary.
5165
    runpath_var=LD_RUN_PATH
5166
    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
5167
    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
5168
    # ancient GNU ld didn't support --whole-archive et. al.
5169
    if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
5170
	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
5171
      else
5172
  	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5173
    fi
5174
    supports_anon_versioning=no
5175
    case `$LD -v 2>/dev/null` in
5176
      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
5177
      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
5178
      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
5179
      *\ 2.11.*) ;; # other 2.11 versions
5180
      *) supports_anon_versioning=yes ;;
5181
    esac
5182
 
5183
    # See if GNU ld supports shared libraries.
5184
    case $host_os in
5185
    aix3* | aix4* | aix5*)
5186
      # On AIX/PPC, the GNU linker is very broken
5187
      if test "$host_cpu" != ia64; then
5188
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5189
	cat <<EOF 1>&2
5190
 
5191
*** Warning: the GNU linker, at least up to release 2.9.1, is reported
5192
*** to be unable to reliably create shared libraries on AIX.
5193
*** Therefore, libtool is disabling shared libraries support.  If you
5194
*** really care for shared libraries, you may want to modify your PATH
5195
*** so that a non-GNU linker is found, and then restart.
5196
 
5197
EOF
5198
      fi
5199
      ;;
5200
 
5201
    amigaos*)
5202
      _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)'
5203
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5204
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5205
 
5206
      # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
5207
      # that the semantics of dynamic libraries on AmigaOS, at least up
5208
      # to version 4, is to share data among multiple programs linked
5209
      # with the same dynamic library.  Since this doesn't match the
5210
      # behavior of shared libraries on other platforms, we can't use
5211
      # them.
5212
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
5213
      ;;
5214
 
5215
    beos*)
5216
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5217
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5218
	# Joseph Beckenbach <jrb3@best.com> says some releases of gcc
5219
	# support --undefined.  This deserves some investigation.  FIXME
5220
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5221
      else
5222
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5223
      fi
5224
      ;;
5225
 
5226
    cygwin* | mingw* | pw32*)
5227
      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
5228
      # as there is no search path for DLLs.
5229
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5230
      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5231
      _LT_AC_TAGVAR(always_export_symbols, $1)=no
5232
      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5233
      _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'
5234
 
5235
      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
5236
        _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'
5237
	# If the export-symbols file already is a .def file (1st line
5238
	# is EXPORTS), use it as is; otherwise, prepend...
5239
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
5240
	  cp $export_symbols $output_objdir/$soname.def;
5241
	else
5242
	  echo EXPORTS > $output_objdir/$soname.def;
5243
	  cat $export_symbols >> $output_objdir/$soname.def;
5244
	fi~
5245
	$CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib'
5246
      else
5247
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5248
      fi
5249
      ;;
5250
 
5251
    interix[[3-9]]*)
5252
      _LT_AC_TAGVAR(hardcode_direct, $1)=no
5253
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5254
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5255
      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5256
      # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc.
5257
      # Instead, shared libraries are loaded at an image base (0x10000000 by
5258
      # default) and relocated if they conflict, which is a slow very memory
5259
      # consuming and fragmenting process.  To avoid this, we pick a random,
5260
      # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link
5261
      # time.  Moving up from 0x10000000 also allows more sbrk(2) space.
5262
      _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'
5263
      _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'
5264
      ;;
5265
 
5266
    gnu* | linux* | k*bsd*-gnu)
5267
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5268
	tmp_addflag=
5269
	case $cc_basename,$host_cpu in
5270
	pgcc*)				# Portland Group C compiler
5271
	  _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'
5272
	  tmp_addflag=' $pic_flag'
5273
	  ;;
5274
	pgf77* | pgf90* | pgf95*)	# Portland Group f77 and f90 compilers
5275
	  _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'
5276
	  tmp_addflag=' $pic_flag -Mnomain' ;;
5277
	ecc*,ia64* | icc*,ia64*)		# Intel C compiler on ia64
5278
	  tmp_addflag=' -i_dynamic' ;;
5279
	efc*,ia64* | ifort*,ia64*)	# Intel Fortran compiler on ia64
5280
	  tmp_addflag=' -i_dynamic -nofor_main' ;;
5281
	ifc* | ifort*)			# Intel Fortran compiler
5282
	  tmp_addflag=' -nofor_main' ;;
5283
	esac
5284
	case `$CC -V 2>&1 | sed 5q` in
5285
	*Sun\ C*)			# Sun C 5.9
5286
	  _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'
5287
	  tmp_sharedflag='-G' ;;
5288
	*Sun\ F*)			# Sun Fortran 8.3
5289
	  tmp_sharedflag='-G' ;;
5290
	*)
5291
	  tmp_sharedflag='-shared' ;;
5292
	esac
5293
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5294
 
5295
	if test $supports_anon_versioning = yes; then
5296
	  _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
5297
  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
5298
  $echo "local: *; };" >> $output_objdir/$libname.ver~
5299
	  $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
5300
	fi
5301
	_LT_AC_TAGVAR(link_all_deplibs, $1)=no
5302
      else
5303
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5304
      fi
5305
      ;;
5306
 
5307
    netbsd* | netbsdelf*-gnu)
5308
      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5309
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
5310
	wlarc=
5311
      else
5312
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5313
	_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'
5314
      fi
5315
      ;;
5316
 
5317
    solaris*)
5318
      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
5319
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5320
	cat <<EOF 1>&2
5321
 
5322
*** Warning: The releases 2.8.* of the GNU linker cannot reliably
5323
*** create shared libraries on Solaris systems.  Therefore, libtool
5324
*** is disabling shared libraries support.  We urge you to upgrade GNU
5325
*** binutils to release 2.9.1 or newer.  Another option is to modify
5326
*** your PATH or compiler configuration so that the native linker is
5327
*** used, and then restart.
5328
 
5329
EOF
5330
      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5331
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5332
	_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'
5333
      else
5334
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5335
      fi
5336
      ;;
5337
 
5338
    sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*)
5339
      case `$LD -v 2>&1` in
5340
        *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*)
5341
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5342
	cat <<_LT_EOF 1>&2
5343
 
5344
*** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not
5345
*** reliably create shared libraries on SCO systems.  Therefore, libtool
5346
*** is disabling shared libraries support.  We urge you to upgrade GNU
5347
*** binutils to release 2.16.91.0.3 or newer.  Another option is to modify
5348
*** your PATH or compiler configuration so that the native linker is
5349
*** used, and then restart.
5350
 
5351
_LT_EOF
5352
	;;
5353
	*)
5354
	  if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5355
	    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-rpath,$libdir`'
5356
	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib'
5357
	    _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'
5358
	  else
5359
	    _LT_AC_TAGVAR(ld_shlibs, $1)=no
5360
	  fi
5361
	;;
5362
      esac
5363
      ;;
5364
 
5365
    sunos4*)
5366
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5367
      wlarc=
5368
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5369
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5370
      ;;
5371
 
5372
    *)
5373
      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
5374
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
5375
	_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'
5376
      else
5377
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5378
      fi
5379
      ;;
5380
    esac
5381
 
5382
    if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
5383
      runpath_var=
5384
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5385
      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5386
      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5387
    fi
5388
  else
5389
    # PORTME fill in a description of your system's linker (not GNU ld)
5390
    case $host_os in
5391
    aix3*)
5392
      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5393
      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5394
      _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'
5395
      # Note: this linker hardcodes the directories in LIBPATH if there
5396
      # are no directories specified by -L.
5397
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5398
      if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then
5399
	# Neither direct hardcoding nor static linking is supported with a
5400
	# broken collect2.
5401
	_LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
5402
      fi
5403
      ;;
5404
 
5405
    aix4* | aix5*)
5406
      if test "$host_cpu" = ia64; then
5407
	# On IA64, the linker does run time linking by default, so we don't
5408
	# have to do anything special.
5409
	aix_use_runtimelinking=no
5410
	exp_sym_flag='-Bexport'
5411
	no_entry_flag=""
5412
      else
5413
	# If we're using GNU nm, then we don't want the "-C" option.
5414
	# -C means demangle to AIX nm, but means don't demangle with GNU nm
5415
	if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
5416
	  _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'
5417
	else
5418
	  _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'
5419
	fi
5420
	aix_use_runtimelinking=no
5421
 
5422
	# Test if we are trying to use run time linking or normal
5423
	# AIX style linking. If -brtl is somewhere in LDFLAGS, we
5424
	# need to do runtime linking.
5425
	case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
5426
	  for ld_flag in $LDFLAGS; do
5427
  	  if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
5428
  	    aix_use_runtimelinking=yes
5429
  	    break
5430
  	  fi
5431
	  done
5432
	  ;;
5433
	esac
5434
 
5435
	exp_sym_flag='-bexport'
5436
	no_entry_flag='-bnoentry'
5437
      fi
5438
 
5439
      # When large executables or shared objects are built, AIX ld can
5440
      # have problems creating the table of contents.  If linking a library
5441
      # or program results in "error TOC overflow" add -mminimal-toc to
5442
      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
5443
      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
5444
 
5445
      _LT_AC_TAGVAR(archive_cmds, $1)=''
5446
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5447
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
5448
      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5449
 
5450
      if test "$GCC" = yes; then
5451
	case $host_os in aix4.[[012]]|aix4.[[012]].*)
5452
	# We only want to do this on AIX 4.2 and lower, the check
5453
	# below for broken collect2 doesn't work under 4.3+
5454
	  collect2name=`${CC} -print-prog-name=collect2`
5455
	  if test -f "$collect2name" && \
5456
  	   strings "$collect2name" | grep resolve_lib_name >/dev/null
5457
	  then
5458
  	  # We have reworked collect2
5459
  	  :
5460
	  else
5461
  	  # We have old collect2
5462
  	  _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
5463
  	  # It fails to find uninstalled libraries when the uninstalled
5464
  	  # path is not listed in the libpath.  Setting hardcode_minus_L
5465
  	  # to unsupported forces relinking
5466
  	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5467
  	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5468
  	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5469
	  fi
5470
	  ;;
5471
	esac
5472
	shared_flag='-shared'
5473
	if test "$aix_use_runtimelinking" = yes; then
5474
	  shared_flag="$shared_flag "'${wl}-G'
5475
	fi
5476
      else
5477
	# not using gcc
5478
	if test "$host_cpu" = ia64; then
5479
  	# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
5480
  	# chokes on -Wl,-G. The following line is correct:
5481
	  shared_flag='-G'
5482
	else
5483
	  if test "$aix_use_runtimelinking" = yes; then
5484
	    shared_flag='${wl}-G'
5485
	  else
5486
	    shared_flag='${wl}-bM:SRE'
5487
	  fi
5488
	fi
5489
      fi
5490
 
5491
      # It seems that -bexpall does not export symbols beginning with
5492
      # underscore (_), so it is better to generate a list of symbols to export.
5493
      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
5494
      if test "$aix_use_runtimelinking" = yes; then
5495
	# Warning - without using the other runtime loading flags (-brtl),
5496
	# -berok will link without error, but may produce a broken library.
5497
	_LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
5498
       # Determine the default libpath from the value encoded in an empty executable.
5499
       _LT_AC_SYS_LIBPATH_AIX
5500
       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5501
	_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"
5502
       else
5503
	if test "$host_cpu" = ia64; then
5504
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
5505
	  _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
5506
	  _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"
5507
	else
5508
	 # Determine the default libpath from the value encoded in an empty executable.
5509
	 _LT_AC_SYS_LIBPATH_AIX
5510
	 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
5511
	  # Warning - without using the other run time loading flags,
5512
	  # -berok will link without error, but may produce a broken library.
5513
	  _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
5514
	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
5515
	  # Exported symbols can be pulled into shared objects from archives
5516
	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='$convenience'
5517
	  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
5518
	  # This is similar to how AIX traditionally builds its shared libraries.
5519
	  _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'
5520
	fi
5521
      fi
5522
      ;;
5523
 
5524
    amigaos*)
5525
      _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)'
5526
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5527
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5528
      # see comment about different semantics on the GNU ld section
5529
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
5530
      ;;
5531
 
5532
    bsdi[[45]]*)
5533
      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
5534
      ;;
5535
 
5536
    cygwin* | mingw* | pw32*)
5537
      # When not using gcc, we currently assume that we are using
5538
      # Microsoft Visual C++.
5539
      # hardcode_libdir_flag_spec is actually meaningless, as there is
5540
      # no search path for DLLs.
5541
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
5542
      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5543
      # Tell ltmain to make .lib files, not .a files.
5544
      libext=lib
5545
      # Tell ltmain to make .dll files, not .so files.
5546
      shrext_cmds=".dll"
5547
      # FIXME: Setting linknames here is a bad hack.
5548
      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
5549
      # The linker will automatically build a .lib file if we build a DLL.
5550
      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
5551
      # FIXME: Should let the user specify the lib program.
5552
      _LT_AC_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs'
5553
      _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
5554
      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
5555
      ;;
5556
 
5557
    darwin* | rhapsody*)
5558
      case $host_os in
5559
        rhapsody* | darwin1.[[012]])
5560
         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
5561
         ;;
5562
       *) # Darwin 1.3 on
5563
         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
5564
           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
5565
         else
5566
           case ${MACOSX_DEPLOYMENT_TARGET} in
5567
             10.[[012]])
5568
               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
5569
               ;;
5570
             10.*)
5571
               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
5572
               ;;
5573
           esac
5574
         fi
5575
         ;;
5576
      esac
5577
      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5578
      _LT_AC_TAGVAR(hardcode_direct, $1)=no
5579
      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
5580
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
5581
      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
5582
      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5583
    if test "$GCC" = yes ; then
5584
    	output_verbose_link_cmd='echo'
5585
        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
5586
      _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
5587
      # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
5588
      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='sed -e "s,#.*,," -e "s,^[    ]*,," -e "s,^\(..*\),_&," < $export_symbols > $output_objdir/${libname}-symbols.expsym~$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
5589
      _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}'
5590
    else
5591
      case $cc_basename in
5592
        xlc*)
5593
         output_verbose_link_cmd='echo'
5594
         _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'
5595
         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
5596
          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
5597
         _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}'
5598
          _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}'
5599
          ;;
5600
       *)
5601
         _LT_AC_TAGVAR(ld_shlibs, $1)=no
5602
          ;;
5603
      esac
5604
    fi
5605
      ;;
5606
 
5607
    dgux*)
5608
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5609
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5610
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5611
      ;;
5612
 
5613
    freebsd1*)
5614
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
5615
      ;;
5616
 
5617
    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
5618
    # support.  Future versions do this automatically, but an explicit c++rt0.o
5619
    # does not break anything, and helps significantly (at the cost of a little
5620
    # extra space).
5621
    freebsd2.2*)
5622
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
5623
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5624
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5625
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5626
      ;;
5627
 
5628
    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
5629
    freebsd2*)
5630
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5631
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5632
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5633
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5634
      ;;
5635
 
5636
    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
5637
    freebsd* | dragonfly*)
5638
      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
5639
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5640
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5641
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5642
      ;;
5643
 
5644
    hpux9*)
5645
      if test "$GCC" = yes; then
5646
	_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'
5647
      else
5648
	_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'
5649
      fi
5650
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5651
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5652
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5653
 
5654
      # hardcode_minus_L: Not really in the search PATH,
5655
      # but as the default location of the library.
5656
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5657
      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5658
      ;;
5659
 
5660
    hpux10*)
5661
      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
5662
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5663
      else
5664
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
5665
      fi
5666
      if test "$with_gnu_ld" = no; then
5667
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5668
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5669
 
5670
	_LT_AC_TAGVAR(hardcode_direct, $1)=yes
5671
	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5672
 
5673
	# hardcode_minus_L: Not really in the search PATH,
5674
	# but as the default location of the library.
5675
	_LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5676
      fi
5677
      ;;
5678
 
5679
    hpux11*)
5680
      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
5681
	case $host_cpu in
5682
	hppa*64*)
5683
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5684
	  ;;
5685
	ia64*)
5686
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
5687
	  ;;
5688
	*)
5689
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5690
	  ;;
5691
	esac
5692
      else
5693
	case $host_cpu in
5694
	hppa*64*)
5695
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5696
	  ;;
5697
	ia64*)
5698
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags'
5699
	  ;;
5700
	*)
5701
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
5702
	  ;;
5703
	esac
5704
      fi
5705
      if test "$with_gnu_ld" = no; then
5706
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
5707
	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5708
 
5709
	case $host_cpu in
5710
	hppa*64*|ia64*)
5711
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
5712
	  _LT_AC_TAGVAR(hardcode_direct, $1)=no
5713
	  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5714
	  ;;
5715
	*)
5716
	  _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5717
	  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5718
 
5719
	  # hardcode_minus_L: Not really in the search PATH,
5720
	  # but as the default location of the library.
5721
	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5722
	  ;;
5723
	esac
5724
      fi
5725
      ;;
5726
 
5727
    irix5* | irix6* | nonstopux*)
5728
      if test "$GCC" = yes; then
5729
	_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'
5730
      else
5731
	_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'
5732
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
5733
      fi
5734
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5735
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5736
      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5737
      ;;
5738
 
5739
    netbsd* | netbsdelf*-gnu)
5740
      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
5741
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
5742
      else
5743
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
5744
      fi
5745
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5746
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5747
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5748
      ;;
5749
 
5750
    newsos6)
5751
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5752
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5753
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5754
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5755
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5756
      ;;
5757
 
5758
    openbsd*)
5759
      if test -f /usr/libexec/ld.so; then
5760
	_LT_AC_TAGVAR(hardcode_direct, $1)=yes
5761
	_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5762
	if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
5763
	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5764
	  _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
5765
	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5766
	  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
5767
	else
5768
	  case $host_os in
5769
	   openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
5770
	     _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
5771
	     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5772
	     ;;
5773
	   *)
5774
	     _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
5775
	     _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
5776
	     ;;
5777
	  esac
5778
        fi
5779
      else
5780
	_LT_AC_TAGVAR(ld_shlibs, $1)=no
5781
      fi
5782
      ;;
5783
 
5784
    os2*)
5785
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5786
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5787
      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
5788
      _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'
5789
      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
5790
      ;;
5791
 
5792
    osf3*)
5793
      if test "$GCC" = yes; then
5794
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5795
	_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'
5796
      else
5797
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5798
	_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'
5799
      fi
5800
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5801
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5802
      ;;
5803
 
5804
    osf4* | osf5*)	# as osf3* with the addition of -msym flag
5805
      if test "$GCC" = yes; then
5806
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
5807
	_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'
5808
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
5809
      else
5810
	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
5811
	_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'
5812
	_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~
5813
	$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'
5814
 
5815
	# Both c and cxx compiler support -rpath directly
5816
	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
5817
      fi
5818
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
5819
      ;;
5820
 
5821
    solaris*)
5822
      _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
5823
      if test "$GCC" = yes; then
5824
	wlarc='${wl}'
5825
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
5826
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5827
	  $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
5828
      else
5829
	wlarc=''
5830
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
5831
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
5832
  	$LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
5833
      fi
5834
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
5835
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5836
      case $host_os in
5837
      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
5838
      *)
5839
	# The compiler driver will combine and reorder linker options,
5840
	# but understands `-z linker_flag'.  GCC discards it without `$wl',
5841
	# but is careful enough not to reorder.
5842
 	# Supported since Solaris 2.6 (maybe 2.5.1?)
5843
	if test "$GCC" = yes; then
5844
	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract'
5845
	else
5846
	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract'
5847
	fi
5848
	;;
5849
      esac
5850
      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5851
      ;;
5852
 
5853
    sunos4*)
5854
      if test "x$host_vendor" = xsequent; then
5855
	# Use $CC to link under sequent, because it throws in some extra .o
5856
	# files that make .init and .fini sections work.
5857
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
5858
      else
5859
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
5860
      fi
5861
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5862
      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
5863
      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
5864
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5865
      ;;
5866
 
5867
    sysv4)
5868
      case $host_vendor in
5869
	sni)
5870
	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5871
	  _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true???
5872
	;;
5873
	siemens)
5874
	  ## LD is ld it makes a PLAMLIB
5875
	  ## CC just makes a GrossModule.
5876
	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
5877
	  _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
5878
	  _LT_AC_TAGVAR(hardcode_direct, $1)=no
5879
        ;;
5880
	motorola)
5881
	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5882
	  _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
5883
	;;
5884
      esac
5885
      runpath_var='LD_RUN_PATH'
5886
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5887
      ;;
5888
 
5889
    sysv4.3*)
5890
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5891
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5892
      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
5893
      ;;
5894
 
5895
    sysv4*MP*)
5896
      if test -d /usr/nec; then
5897
	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5898
	_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5899
	runpath_var=LD_RUN_PATH
5900
	hardcode_runpath_var=yes
5901
	_LT_AC_TAGVAR(ld_shlibs, $1)=yes
5902
      fi
5903
      ;;
5904
 
5905
    sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*)
5906
      _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5907
      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5908
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5909
      runpath_var='LD_RUN_PATH'
5910
 
5911
      if test "$GCC" = yes; then
5912
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5913
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5914
      else
5915
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5916
	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags'
5917
      fi
5918
      ;;
5919
 
5920
    sysv5* | sco3.2v5* | sco5v6*)
5921
      # Note: We can NOT use -z defs as we might desire, because we do not
5922
      # link with -lc, and that would cause any symbols used from libc to
5923
      # always be unresolved, which means just about no library would
5924
      # ever link correctly.  If we're not using GNU ld we use -z text
5925
      # though, which does catch some bad symbols but isn't as heavy-handed
5926
      # as -z defs.
5927
      _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z,text'
5928
      _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs'
5929
      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5930
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5931
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='`test -z "$SCOABSPATH" && echo ${wl}-R,$libdir`'
5932
      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
5933
      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
5934
      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
5935
      runpath_var='LD_RUN_PATH'
5936
 
5937
      if test "$GCC" = yes; then
5938
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
5939
	_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'
5940
      else
5941
	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,\${SCOABSPATH:+${install_libdir}/}$soname -o $lib $libobjs $deplibs $compiler_flags'
5942
	_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'
5943
      fi
5944
      ;;
5945
 
5946
    uts4*)
5947
      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
5948
      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
5949
      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
5950
      ;;
5951
 
5952
    *)
5953
      _LT_AC_TAGVAR(ld_shlibs, $1)=no
5954
      ;;
5955
    esac
5956
  fi
5957
])
5958
AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
5959
test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
5960
 
5961
#
5962
# Do we need to explicitly link libc?
5963
#
5964
case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in
5965
x|xyes)
5966
  # Assume -lc should be added
5967
  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
5968
 
5969
  if test "$enable_shared" = yes && test "$GCC" = yes; then
5970
    case $_LT_AC_TAGVAR(archive_cmds, $1) in
5971
    *'~'*)
5972
      # FIXME: we may have to deal with multi-command sequences.
5973
      ;;
5974
    '$CC '*)
5975
      # Test whether the compiler implicitly links with -lc since on some
5976
      # systems, -lgcc has to come before -lc. If gcc already passes -lc
5977
      # to ld, don't add -lc before -lgcc.
5978
      AC_MSG_CHECKING([whether -lc should be explicitly linked in])
5979
      $rm conftest*
5980
      echo "$lt_simple_compile_test_code" > conftest.$ac_ext
5981
 
5982
      if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
5983
        soname=conftest
5984
        lib=conftest
5985
        libobjs=conftest.$ac_objext
5986
        deplibs=
5987
        wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
5988
	pic_flag=$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
5989
        compiler_flags=-v
5990
        linker_flags=-v
5991
        verstring=
5992
        output_objdir=.
5993
        libname=conftest
5994
        lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1)
5995
        _LT_AC_TAGVAR(allow_undefined_flag, $1)=
5996
        if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
5997
        then
5998
	  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5999
        else
6000
	  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
6001
        fi
6002
        _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
6003
      else
6004
        cat conftest.err 1>&5
6005
      fi
6006
      $rm conftest*
6007
      AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)])
6008
      ;;
6009
    esac
6010
  fi
6011
  ;;
6012
esac
6013
])
6014
m4trace:/usr/share/aclocal/libtool.m4:6450: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
6015
# /* ltdll.c starts here */
6016
# #define WIN32_LEAN_AND_MEAN
6017
# #include <windows.h>
6018
# #undef WIN32_LEAN_AND_MEAN
6019
# #include <stdio.h>
6020
#
6021
# #ifndef __CYGWIN__
6022
# #  ifdef __CYGWIN32__
6023
# #    define __CYGWIN__ __CYGWIN32__
6024
# #  endif
6025
# #endif
6026
#
6027
# #ifdef __cplusplus
6028
# extern "C" {
6029
# #endif
6030
# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
6031
# #ifdef __cplusplus
6032
# }
6033
# #endif
6034
#
6035
# #ifdef __CYGWIN__
6036
# #include <cygwin/cygwin_dll.h>
6037
# DECLARE_CYGWIN_DLL( DllMain );
6038
# #endif
6039
# HINSTANCE __hDllInstance_base;
6040
#
6041
# BOOL APIENTRY
6042
# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
6043
# {
6044
#   __hDllInstance_base = hInst;
6045
#   return TRUE;
6046
# }
6047
# /* ltdll.c ends here */
6048
])
6049
m4trace:/usr/share/aclocal/libtool.m4:6489: -1- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])])
6050
m4trace:/usr/share/aclocal/libtool.m4:6493: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL])
6051
m4trace:/usr/share/aclocal/libtool.m4:6494: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
6052
m4trace:/usr/share/aclocal/libtool.m4:6495: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
6053
m4trace:/usr/share/aclocal/libtool.m4:6496: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
6054
m4trace:/usr/share/aclocal/libtool.m4:6497: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
6055
m4trace:/usr/share/aclocal/libtool.m4:6498: -1- AC_DEFUN([AM_PROG_LD], [AC_PROG_LD])
6056
m4trace:/usr/share/aclocal/libtool.m4:6499: -1- AC_DEFUN([AM_PROG_NM], [AC_PROG_NM])
6057
m4trace:/usr/share/aclocal/libtool.m4:6504: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no)
6058
  test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
6059
  AC_SUBST(GCJFLAGS)
6060
])
6061
m4trace:/usr/share/aclocal/libtool.m4:6510: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no)
6062
])
6063
m4trace:/usr/share/aclocal/libtool.m4:6548: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output])
6064
AC_CACHE_VAL(lt_cv_path_SED,
6065
[# Loop through the user's path and test for sed and gsed.
6066
# Then use that list of sed's as ones to test for truncation.
6067
as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
6068
for as_dir in $PATH
6069
do
6070
  IFS=$as_save_IFS
6071
  test -z "$as_dir" && as_dir=.
6072
  for lt_ac_prog in sed gsed; do
6073
    for ac_exec_ext in '' $ac_executable_extensions; do
6074
      if AS_EXECUTABLE_P(["$as_dir/$lt_ac_prog$ac_exec_ext"]); then
6075
        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
6076
      fi
6077
    done
6078
  done
6079
done
6080
IFS=$as_save_IFS
6081
lt_ac_max=0
6082
lt_ac_count=0
6083
# Add /usr/xpg4/bin/sed as it is typically found on Solaris
6084
# along with /bin/sed that truncates output.
6085
for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
6086
  test ! -f $lt_ac_sed && continue
6087
  cat /dev/null > conftest.in
6088
  lt_ac_count=0
6089
  echo $ECHO_N "0123456789$ECHO_C" >conftest.in
6090
  # Check for GNU sed and select it if it is found.
6091
  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
6092
    lt_cv_path_SED=$lt_ac_sed
6093
    break
6094
  fi
6095
  while true; do
6096
    cat conftest.in conftest.in >conftest.tmp
6097
    mv conftest.tmp conftest.in
6098
    cp conftest.in conftest.nl
6099
    echo >>conftest.nl
6100
    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
6101
    cmp -s conftest.out conftest.nl || break
6102
    # 10000 chars as input seems more than enough
6103
    test $lt_ac_count -gt 10 && break
6104
    lt_ac_count=`expr $lt_ac_count + 1`
6105
    if test $lt_ac_count -gt $lt_ac_max; then
6106
      lt_ac_max=$lt_ac_count
6107
      lt_cv_path_SED=$lt_ac_sed
6108
    fi
6109
  done
6110
done
6111
])
6112
SED=$lt_cv_path_SED
6113
AC_SUBST([SED])
6114
AC_MSG_RESULT([$SED])
6115
])
6116
m4trace:/usr/share/aclocal-1.10/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.10'
6117
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
6118
dnl require some minimum version.  Point them to the right macro.
6119
m4_if([$1], [1.10], [],
6120
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
6121
])
6122
m4trace:/usr/share/aclocal-1.10/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.10])dnl
6123
_AM_AUTOCONF_VERSION(m4_PACKAGE_VERSION)])
6124
m4trace:/usr/share/aclocal-1.10/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
6125
AC_PREREQ([2.50])dnl
6126
# expand $ac_aux_dir to an absolute path
6127
am_aux_dir=`cd $ac_aux_dir && pwd`
6128
])
6129
m4trace:/usr/share/aclocal-1.10/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
6130
 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
6131
	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
6132
AC_SUBST([$1_TRUE])dnl
6133
AC_SUBST([$1_FALSE])dnl
6134
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
6135
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
6136
if $2; then
6137
  $1_TRUE=
6138
  $1_FALSE='#'
6139
else
6140
  $1_TRUE='#'
6141
  $1_FALSE=
6142
fi
6143
AC_CONFIG_COMMANDS_PRE(
6144
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
6145
  AC_MSG_ERROR([[conditional "$1" was never defined.
6146
Usually this means the macro was only invoked conditionally.]])
6147
fi])])
6148
m4trace:/usr/share/aclocal-1.10/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
6149
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
6150
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
6151
AC_REQUIRE([AM_DEP_TRACK])dnl
6152
 
6153
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
6154
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
6155
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
6156
       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
6157
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
6158
                   [depcc="$$1"   am_compiler_list=])
6159
 
6160
AC_CACHE_CHECK([dependency style of $depcc],
6161
               [am_cv_$1_dependencies_compiler_type],
6162
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
6163
  # We make a subdir and do the tests there.  Otherwise we can end up
6164
  # making bogus files that we don't know about and never remove.  For
6165
  # instance it was reported that on HP-UX the gcc test will end up
6166
  # making a dummy file named `D' -- because `-MD' means `put the output
6167
  # in D'.
6168
  mkdir conftest.dir
6169
  # Copy depcomp to subdir because otherwise we won't find it if we're
6170
  # using a relative directory.
6171
  cp "$am_depcomp" conftest.dir
6172
  cd conftest.dir
6173
  # We will build objects and dependencies in a subdirectory because
6174
  # it helps to detect inapplicable dependency modes.  For instance
6175
  # both Tru64's cc and ICC support -MD to output dependencies as a
6176
  # side effect of compilation, but ICC will put the dependencies in
6177
  # the current directory while Tru64 will put them in the object
6178
  # directory.
6179
  mkdir sub
6180
 
6181
  am_cv_$1_dependencies_compiler_type=none
6182
  if test "$am_compiler_list" = ""; then
6183
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
6184
  fi
6185
  for depmode in $am_compiler_list; do
6186
    # Setup a source with many dependencies, because some compilers
6187
    # like to wrap large dependency lists on column 80 (with \), and
6188
    # we should not choose a depcomp mode which is confused by this.
6189
    #
6190
    # We need to recreate these files for each test, as the compiler may
6191
    # overwrite some of them when testing with obscure command lines.
6192
    # This happens at least with the AIX C compiler.
6193
    : > sub/conftest.c
6194
    for i in 1 2 3 4 5 6; do
6195
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
6196
      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
6197
      # Solaris 8's {/usr,}/bin/sh.
6198
      touch sub/conftst$i.h
6199
    done
6200
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
6201
 
6202
    case $depmode in
6203
    nosideeffect)
6204
      # after this tag, mechanisms are not by side-effect, so they'll
6205
      # only be used when explicitly requested
6206
      if test "x$enable_dependency_tracking" = xyes; then
6207
	continue
6208
      else
6209
	break
6210
      fi
6211
      ;;
6212
    none) break ;;
6213
    esac
6214
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
6215
    # mode.  It turns out that the SunPro C++ compiler does not properly
6216
    # handle `-M -o', and we need to detect this.
6217
    if depmode=$depmode \
6218
       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
6219
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
6220
       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
6221
         >/dev/null 2>conftest.err &&
6222
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
6223
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
6224
       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
6225
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
6226
      # icc doesn't choke on unknown options, it will just issue warnings
6227
      # or remarks (even with -Werror).  So we grep stderr for any message
6228
      # that says an option was ignored or not supported.
6229
      # When given -MP, icc 7.0 and 7.1 complain thusly:
6230
      #   icc: Command line warning: ignoring option '-M'; no argument required
6231
      # The diagnosis changed in icc 8.0:
6232
      #   icc: Command line remark: option '-MP' not supported
6233
      if (grep 'ignoring option' conftest.err ||
6234
          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
6235
        am_cv_$1_dependencies_compiler_type=$depmode
6236
        break
6237
      fi
6238
    fi
6239
  done
6240
 
6241
  cd ..
6242
  rm -rf conftest.dir
6243
else
6244
  am_cv_$1_dependencies_compiler_type=none
6245
fi
6246
])
6247
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
6248
AM_CONDITIONAL([am__fastdep$1], [
6249
  test "x$enable_dependency_tracking" != xno \
6250
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
6251
])
6252
m4trace:/usr/share/aclocal-1.10/depend.m4:139: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
6253
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
6254
])
6255
m4trace:/usr/share/aclocal-1.10/depend.m4:147: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
6256
[  --disable-dependency-tracking  speeds up one-time build
6257
  --enable-dependency-tracking   do not reject slow dependency extractors])
6258
if test "x$enable_dependency_tracking" != xno; then
6259
  am_depcomp="$ac_aux_dir/depcomp"
6260
  AMDEPBACKSLASH='\'
6261
fi
6262
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
6263
AC_SUBST([AMDEPBACKSLASH])dnl
6264
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
6265
])
6266
m4trace:/usr/share/aclocal-1.10/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do
6267
  # Strip MF so we end up with the name of the file.
6268
  mf=`echo "$mf" | sed -e 's/:.*$//'`
6269
  # Check whether this is an Automake generated Makefile or not.
6270
  # We used to match only the files named `Makefile.in', but
6271
  # some people rename them; so instead we look at the file content.
6272
  # Grep'ing the first line is not enough: some people post-process
6273
  # each Makefile.in and add a new line on top of each file to say so.
6274
  # Grep'ing the whole file is not good either: AIX grep has a line
6275
  # limit of 2048, but all sed's we know have understand at least 4000.
6276
  if sed 10q "$mf" | grep '^#.*generated by automake' > /dev/null 2>&1; then
6277
    dirpart=`AS_DIRNAME("$mf")`
6278
  else
6279
    continue
6280
  fi
6281
  # Extract the definition of DEPDIR, am__include, and am__quote
6282
  # from the Makefile without running `make'.
6283
  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
6284
  test -z "$DEPDIR" && continue
6285
  am__include=`sed -n 's/^am__include = //p' < "$mf"`
6286
  test -z "am__include" && continue
6287
  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
6288
  # When using ansi2knr, U may be empty or an underscore; expand it
6289
  U=`sed -n 's/^U = //p' < "$mf"`
6290
  # Find all dependency output files, they are included files with
6291
  # $(DEPDIR) in their names.  We invoke sed twice because it is the
6292
  # simplest approach to changing $(DEPDIR) to its actual value in the
6293
  # expansion.
6294
  for file in `sed -n "
6295
    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
6296
       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
6297
    # Make sure the directory exists.
6298
    test -f "$dirpart/$file" && continue
6299
    fdir=`AS_DIRNAME(["$file"])`
6300
    AS_MKDIR_P([$dirpart/$fdir])
6301
    # echo "creating $dirpart/$file"
6302
    echo '# dummy' > "$dirpart/$file"
6303
  done
6304
done
6305
])
6306
m4trace:/usr/share/aclocal-1.10/depout.m4:64: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
6307
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
6308
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
6309
])
6310
m4trace:/usr/share/aclocal-1.10/header.m4:12: -1- AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
6311
m4trace:/usr/share/aclocal-1.10/header.m4:12: -1- AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete.
6312
You should run autoupdate.])dnl
6313
AC_CONFIG_HEADERS($@)])
6314
m4trace:/usr/share/aclocal-1.10/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.60])dnl
6315
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
6316
dnl the ones we care about.
6317
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
6318
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
6319
AC_REQUIRE([AC_PROG_INSTALL])dnl
6320
if test "`cd $srcdir && pwd`" != "`pwd`"; then
6321
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
6322
  # is not polluted with repeated "-I."
6323
  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
6324
  # test to see if srcdir already configured
6325
  if test -f $srcdir/config.status; then
6326
    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
6327
  fi
6328
fi
6329
 
6330
# test whether we have cygpath
6331
if test -z "$CYGPATH_W"; then
6332
  if (cygpath --version) >/dev/null 2>/dev/null; then
6333
    CYGPATH_W='cygpath -w'
6334
  else
6335
    CYGPATH_W=echo
6336
  fi
6337
fi
6338
AC_SUBST([CYGPATH_W])
6339
 
6340
# Define the identity of the package.
6341
dnl Distinguish between old-style and new-style calls.
6342
m4_ifval([$2],
6343
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
6344
 AC_SUBST([PACKAGE], [$1])dnl
6345
 AC_SUBST([VERSION], [$2])],
6346
[_AM_SET_OPTIONS([$1])dnl
6347
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
6348
m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
6349
  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
6350
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
6351
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
6352
 
6353
_AM_IF_OPTION([no-define],,
6354
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
6355
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
6356
 
6357
# Some tools Automake needs.
6358
AC_REQUIRE([AM_SANITY_CHECK])dnl
6359
AC_REQUIRE([AC_ARG_PROGRAM])dnl
6360
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
6361
AM_MISSING_PROG(AUTOCONF, autoconf)
6362
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
6363
AM_MISSING_PROG(AUTOHEADER, autoheader)
6364
AM_MISSING_PROG(MAKEINFO, makeinfo)
6365
AM_PROG_INSTALL_SH
6366
AM_PROG_INSTALL_STRIP
6367
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
6368
# We need awk for the "check" target.  The system "awk" is bad on
6369
# some platforms.
6370
AC_REQUIRE([AC_PROG_AWK])dnl
6371
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
6372
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
6373
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
6374
              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
6375
	      		     [_AM_PROG_TAR([v7])])])
6376
_AM_IF_OPTION([no-dependencies],,
6377
[AC_PROVIDE_IFELSE([AC_PROG_CC],
6378
                  [_AM_DEPENDENCIES(CC)],
6379
                  [define([AC_PROG_CC],
6380
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
6381
AC_PROVIDE_IFELSE([AC_PROG_CXX],
6382
                  [_AM_DEPENDENCIES(CXX)],
6383
                  [define([AC_PROG_CXX],
6384
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
6385
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
6386
                  [_AM_DEPENDENCIES(OBJC)],
6387
                  [define([AC_PROG_OBJC],
6388
                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
6389
])
6390
])
6391
m4trace:/usr/share/aclocal-1.10/init.m4:113: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
6392
_am_stamp_count=1
6393
for _am_header in $config_headers :; do
6394
  case $_am_header in
6395
    $1 | $1:* )
6396
      break ;;
6397
    * )
6398
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
6399
  esac
6400
done
6401
echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
6402
m4trace:/usr/share/aclocal-1.10/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
6403
install_sh=${install_sh-"\$(SHELL) $am_aux_dir/install-sh"}
6404
AC_SUBST(install_sh)])
6405
m4trace:/usr/share/aclocal-1.10/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
6406
mkdir .tst 2>/dev/null
6407
if test -d .tst; then
6408
  am__leading_dot=.
6409
else
6410
  am__leading_dot=_
6411
fi
6412
rmdir .tst 2>/dev/null
6413
AC_SUBST([am__leading_dot])])
6414
m4trace:/usr/share/aclocal-1.10/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
6415
cat > confinc << 'END'
6416
am__doit:
6417
	@echo done
6418
.PHONY: am__doit
6419
END
6420
# If we don't find an include directive, just comment out the code.
6421
AC_MSG_CHECKING([for style of include used by $am_make])
6422
am__include="#"
6423
am__quote=
6424
_am_result=none
6425
# First try GNU make style include.
6426
echo "include confinc" > confmf
6427
# We grep out `Entering directory' and `Leaving directory'
6428
# messages which can occur if `w' ends up in MAKEFLAGS.
6429
# In particular we don't look at `^make:' because GNU make might
6430
# be invoked under some other name (usually "gmake"), in which
6431
# case it prints its new name instead of `make'.
6432
if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
6433
   am__include=include
6434
   am__quote=
6435
   _am_result=GNU
6436
fi
6437
# Now try BSD make style include.
6438
if test "$am__include" = "#"; then
6439
   echo '.include "confinc"' > confmf
6440
   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
6441
      am__include=.include
6442
      am__quote="\""
6443
      _am_result=BSD
6444
   fi
6445
fi
6446
AC_SUBST([am__include])
6447
AC_SUBST([am__quote])
6448
AC_MSG_RESULT([$_am_result])
6449
rm -f confinc confmf
6450
])
6451
m4trace:/usr/share/aclocal-1.10/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
6452
$1=${$1-"${am_missing_run}$2"}
6453
AC_SUBST($1)])
6454
m4trace:/usr/share/aclocal-1.10/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
6455
AC_REQUIRE_AUX_FILE([missing])dnl
6456
test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
6457
# Use eval to expand $SHELL
6458
if eval "$MISSING --run true"; then
6459
  am_missing_run="$MISSING --run "
6460
else
6461
  am_missing_run=
6462
  AC_MSG_WARN([`missing' script is too old or missing])
6463
fi
6464
])
6465
m4trace:/usr/share/aclocal-1.10/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
6466
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
6467
dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
6468
dnl while keeping a definition of mkdir_p for backward compatibility.
6469
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
6470
dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
6471
dnl Makefile.ins that do not define MKDIR_P, so we do our own
6472
dnl adjustment using top_builddir (which is defined more often than
6473
dnl MKDIR_P).
6474
AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
6475
case $mkdir_p in
6476
  [[\\/$]]* | ?:[[\\/]]*) ;;
6477
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
6478
esac
6479
])
6480
m4trace:/usr/share/aclocal-1.10/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
6481
m4trace:/usr/share/aclocal-1.10/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
6482
m4trace:/usr/share/aclocal-1.10/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
6483
m4trace:/usr/share/aclocal-1.10/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
6484
m4trace:/usr/share/aclocal-1.10/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
6485
   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
6486
   ac_status=$?
6487
   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
6488
   (exit $ac_status); }])
6489
m4trace:/usr/share/aclocal-1.10/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
6490
# Just in case
6491
sleep 1
6492
echo timestamp > conftest.file
6493
# Do `set' in a subshell so we don't clobber the current shell's
6494
# arguments.  Must try -L first in case configure is actually a
6495
# symlink; some systems play weird games with the mod time of symlinks
6496
# (eg FreeBSD returns the mod time of the symlink's containing
6497
# directory).
6498
if (
6499
   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
6500
   if test "$[*]" = "X"; then
6501
      # -L didn't work.
6502
      set X `ls -t $srcdir/configure conftest.file`
6503
   fi
6504
   rm -f conftest.file
6505
   if test "$[*]" != "X $srcdir/configure conftest.file" \
6506
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
6507
 
6508
      # If neither matched, then we have a broken ls.  This can happen
6509
      # if, for instance, CONFIG_SHELL is bash and it inherits a
6510
      # broken ls alias from the environment.  This has actually
6511
      # happened.  Such a system could not be considered "sane".
6512
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
6513
alias in your environment])
6514
   fi
6515
 
6516
   test "$[2]" = conftest.file
6517
   )
6518
then
6519
   # Ok.
6520
   :
6521
else
6522
   AC_MSG_ERROR([newly created file is older than distributed files!
6523
Check your system clock])
6524
fi
6525
AC_MSG_RESULT(yes)])
6526
m4trace:/usr/share/aclocal-1.10/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
6527
# Installed binaries are usually stripped using `strip' when the user
6528
# run `make install-strip'.  However `strip' might not be the right
6529
# tool to use in cross-compilation environments, therefore Automake
6530
# will honor the `STRIP' environment variable to overrule this program.
6531
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
6532
if test "$cross_compiling" != no; then
6533
  AC_CHECK_TOOL([STRIP], [strip], :)
6534
fi
6535
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
6536
AC_SUBST([INSTALL_STRIP_PROGRAM])])
6537
m4trace:/usr/share/aclocal-1.10/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
6538
m4trace:/usr/share/aclocal-1.10/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
6539
AM_MISSING_PROG([AMTAR], [tar])
6540
m4_if([$1], [v7],
6541
     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
6542
     [m4_case([$1], [ustar],, [pax],,
6543
              [m4_fatal([Unknown tar format])])
6544
AC_MSG_CHECKING([how to create a $1 tar archive])
6545
# Loop over all known methods to create a tar archive until one works.
6546
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
6547
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
6548
# Do not fold the above two line into one, because Tru64 sh and
6549
# Solaris sh will not grok spaces in the rhs of `-'.
6550
for _am_tool in $_am_tools
6551
do
6552
  case $_am_tool in
6553
  gnutar)
6554
    for _am_tar in tar gnutar gtar;
6555
    do
6556
      AM_RUN_LOG([$_am_tar --version]) && break
6557
    done
6558
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
6559
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
6560
    am__untar="$_am_tar -xf -"
6561
    ;;
6562
  plaintar)
6563
    # Must skip GNU tar: if it does not support --format= it doesn't create
6564
    # ustar tarball either.
6565
    (tar --version) >/dev/null 2>&1 && continue
6566
    am__tar='tar chf - "$$tardir"'
6567
    am__tar_='tar chf - "$tardir"'
6568
    am__untar='tar xf -'
6569
    ;;
6570
  pax)
6571
    am__tar='pax -L -x $1 -w "$$tardir"'
6572
    am__tar_='pax -L -x $1 -w "$tardir"'
6573
    am__untar='pax -r'
6574
    ;;
6575
  cpio)
6576
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
6577
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
6578
    am__untar='cpio -i -H $1 -d'
6579
    ;;
6580
  none)
6581
    am__tar=false
6582
    am__tar_=false
6583
    am__untar=false
6584
    ;;
6585
  esac
6586
 
6587
  # If the value was cached, stop now.  We just wanted to have am__tar
6588
  # and am__untar set.
6589
  test -n "${am_cv_prog_tar_$1}" && break
6590
 
6591
  # tar/untar a dummy directory, and stop if the command works
6592
  rm -rf conftest.dir
6593
  mkdir conftest.dir
6594
  echo GrepMe > conftest.dir/file
6595
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
6596
  rm -rf conftest.dir
6597
  if test -s conftest.tar; then
6598
    AM_RUN_LOG([$am__untar <conftest.tar])
6599
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
6600
  fi
6601
done
6602
rm -rf conftest.dir
6603
 
6604
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
6605
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
6606
AC_SUBST([am__tar])
6607
AC_SUBST([am__untar])
6608
])
6609
m4trace:configure.in:1: -1- m4_pattern_forbid([^_?A[CHUM]_])
6610
m4trace:configure.in:1: -1- m4_pattern_forbid([_AC_])
6611
m4trace:configure.in:1: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
6612
m4trace:configure.in:1: -1- m4_pattern_allow([^AS_FLAGS$])
6613
m4trace:configure.in:1: -1- m4_pattern_forbid([^_?m4_])
6614
m4trace:configure.in:1: -1- m4_pattern_forbid([^dnl$])
6615
m4trace:configure.in:1: -1- m4_pattern_forbid([^_?AS_])
6616
m4trace:configure.in:1: -1- m4_pattern_allow([^SHELL$])
6617
m4trace:configure.in:1: -1- m4_pattern_allow([^PATH_SEPARATOR$])
6618
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
6619
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
6620
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
6621
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
6622
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
6623
m4trace:configure.in:1: -1- m4_pattern_allow([^exec_prefix$])
6624
m4trace:configure.in:1: -1- m4_pattern_allow([^prefix$])
6625
m4trace:configure.in:1: -1- m4_pattern_allow([^program_transform_name$])
6626
m4trace:configure.in:1: -1- m4_pattern_allow([^bindir$])
6627
m4trace:configure.in:1: -1- m4_pattern_allow([^sbindir$])
6628
m4trace:configure.in:1: -1- m4_pattern_allow([^libexecdir$])
6629
m4trace:configure.in:1: -1- m4_pattern_allow([^datarootdir$])
6630
m4trace:configure.in:1: -1- m4_pattern_allow([^datadir$])
6631
m4trace:configure.in:1: -1- m4_pattern_allow([^sysconfdir$])
6632
m4trace:configure.in:1: -1- m4_pattern_allow([^sharedstatedir$])
6633
m4trace:configure.in:1: -1- m4_pattern_allow([^localstatedir$])
6634
m4trace:configure.in:1: -1- m4_pattern_allow([^includedir$])
6635
m4trace:configure.in:1: -1- m4_pattern_allow([^oldincludedir$])
6636
m4trace:configure.in:1: -1- m4_pattern_allow([^docdir$])
6637
m4trace:configure.in:1: -1- m4_pattern_allow([^infodir$])
6638
m4trace:configure.in:1: -1- m4_pattern_allow([^htmldir$])
6639
m4trace:configure.in:1: -1- m4_pattern_allow([^dvidir$])
6640
m4trace:configure.in:1: -1- m4_pattern_allow([^pdfdir$])
6641
m4trace:configure.in:1: -1- m4_pattern_allow([^psdir$])
6642
m4trace:configure.in:1: -1- m4_pattern_allow([^libdir$])
6643
m4trace:configure.in:1: -1- m4_pattern_allow([^localedir$])
6644
m4trace:configure.in:1: -1- m4_pattern_allow([^mandir$])
6645
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_NAME$])
6646
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
6647
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_VERSION$])
6648
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_STRING$])
6649
m4trace:configure.in:1: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
6650
m4trace:configure.in:1: -1- m4_pattern_allow([^DEFS$])
6651
m4trace:configure.in:1: -1- m4_pattern_allow([^ECHO_C$])
6652
m4trace:configure.in:1: -1- m4_pattern_allow([^ECHO_N$])
6653
m4trace:configure.in:1: -1- m4_pattern_allow([^ECHO_T$])
6654
m4trace:configure.in:1: -1- m4_pattern_allow([^LIBS$])
6655
m4trace:configure.in:1: -1- m4_pattern_allow([^build_alias$])
6656
m4trace:configure.in:1: -1- m4_pattern_allow([^host_alias$])
6657
m4trace:configure.in:1: -1- m4_pattern_allow([^target_alias$])
6658
m4trace:configure.in:3: -1- AM_CONFIG_HEADER([config.h])
6659
m4trace:configure.in:3: -1- _m4_warn([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete.
6660
You should run autoupdate.], [/usr/share/aclocal-1.10/header.m4:12: AM_CONFIG_HEADER is expanded from...
6661
configure.in:3: the top level])
6662
m4trace:configure.in:4: -1- AM_INIT_AUTOMAKE([sidd], [0.94])
6663
m4trace:configure.in:4: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
6664
m4trace:configure.in:4: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
6665
m4trace:configure.in:4: -1- AM_AUTOMAKE_VERSION([1.10])
6666
m4trace:configure.in:4: -1- _AM_AUTOCONF_VERSION([2.61])
6667
m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
6668
m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
6669
m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_DATA$])
6670
m4trace:configure.in:4: -1- m4_pattern_allow([^am__isrc$])
6671
m4trace:configure.in:4: -1- _AM_SUBST_NOTMAKE([am__isrc])
6672
m4trace:configure.in:4: -1- m4_pattern_allow([^CYGPATH_W$])
6673
m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE$])
6674
m4trace:configure.in:4: -1- m4_pattern_allow([^VERSION$])
6675
m4trace:configure.in:4: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
6676
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
6677
m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([no-define])
6678
m4trace:configure.in:4: -1- m4_pattern_allow([^PACKAGE$])
6679
m4trace:configure.in:4: -1- m4_pattern_allow([^VERSION$])
6680
m4trace:configure.in:4: -1- AM_SANITY_CHECK
6681
m4trace:configure.in:4: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
6682
m4trace:configure.in:4: -1- AM_MISSING_HAS_RUN
6683
m4trace:configure.in:4: -1- AM_AUX_DIR_EXPAND
6684
m4trace:configure.in:4: -1- m4_pattern_allow([^ACLOCAL$])
6685
m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
6686
m4trace:configure.in:4: -1- m4_pattern_allow([^AUTOCONF$])
6687
m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
6688
m4trace:configure.in:4: -1- m4_pattern_allow([^AUTOMAKE$])
6689
m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
6690
m4trace:configure.in:4: -1- m4_pattern_allow([^AUTOHEADER$])
6691
m4trace:configure.in:4: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
6692
m4trace:configure.in:4: -1- m4_pattern_allow([^MAKEINFO$])
6693
m4trace:configure.in:4: -1- AM_PROG_INSTALL_SH
6694
m4trace:configure.in:4: -1- m4_pattern_allow([^install_sh$])
6695
m4trace:configure.in:4: -1- AM_PROG_INSTALL_STRIP
6696
m4trace:configure.in:4: -1- m4_pattern_allow([^STRIP$])
6697
m4trace:configure.in:4: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
6698
m4trace:configure.in:4: -1- AM_PROG_MKDIR_P
6699
m4trace:configure.in:4: -1- m4_pattern_allow([^mkdir_p$])
6700
m4trace:configure.in:4: -1- m4_pattern_allow([^AWK$])
6701
m4trace:configure.in:4: -1- m4_pattern_allow([^SET_MAKE$])
6702
m4trace:configure.in:4: -1- AM_SET_LEADING_DOT
6703
m4trace:configure.in:4: -1- m4_pattern_allow([^am__leading_dot$])
6704
m4trace:configure.in:4: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
6705
	      		     [_AM_PROG_TAR([v7])])])
6706
m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([tar-ustar])
6707
m4trace:configure.in:4: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
6708
m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([tar-pax])
6709
m4trace:configure.in:4: -1- _AM_PROG_TAR([v7])
6710
m4trace:configure.in:4: -1- AM_MISSING_PROG([AMTAR], [tar])
6711
m4trace:configure.in:4: -1- m4_pattern_allow([^AMTAR$])
6712
m4trace:configure.in:4: -1- m4_pattern_allow([^am__tar$])
6713
m4trace:configure.in:4: -1- m4_pattern_allow([^am__untar$])
6714
m4trace:configure.in:4: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
6715
                  [_AM_DEPENDENCIES(CC)],
6716
                  [define([AC_PROG_CC],
6717
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
6718
AC_PROVIDE_IFELSE([AC_PROG_CXX],
6719
                  [_AM_DEPENDENCIES(CXX)],
6720
                  [define([AC_PROG_CXX],
6721
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
6722
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
6723
                  [_AM_DEPENDENCIES(OBJC)],
6724
                  [define([AC_PROG_OBJC],
6725
                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
6726
])
6727
m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([no-dependencies])
6728
m4trace:configure.in:6: -1- _m4_warn([obsolete], [The macro `AC_LANG_C' is obsolete.
6729
You should run autoupdate.], [../../lib/autoconf/c.m4:73: AC_LANG_C is expanded from...
6730
configure.in:6: the top level])
6731
m4trace:configure.in:7: -1- m4_pattern_allow([^CC$])
6732
m4trace:configure.in:7: -1- m4_pattern_allow([^CFLAGS$])
6733
m4trace:configure.in:7: -1- m4_pattern_allow([^LDFLAGS$])
6734
m4trace:configure.in:7: -1- m4_pattern_allow([^LIBS$])
6735
m4trace:configure.in:7: -1- m4_pattern_allow([^CPPFLAGS$])
6736
m4trace:configure.in:7: -1- m4_pattern_allow([^CC$])
6737
m4trace:configure.in:7: -1- m4_pattern_allow([^CC$])
6738
m4trace:configure.in:7: -1- m4_pattern_allow([^CC$])
6739
m4trace:configure.in:7: -1- m4_pattern_allow([^CC$])
6740
m4trace:configure.in:7: -1- m4_pattern_allow([^ac_ct_CC$])
6741
m4trace:configure.in:7: -1- m4_pattern_allow([^EXEEXT$])
6742
m4trace:configure.in:7: -1- m4_pattern_allow([^OBJEXT$])
6743
m4trace:configure.in:7: -1- _AM_DEPENDENCIES([CC])
6744
m4trace:configure.in:7: -1- AM_SET_DEPDIR
6745
m4trace:configure.in:7: -1- m4_pattern_allow([^DEPDIR$])
6746
m4trace:configure.in:7: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
6747
m4trace:configure.in:7: -1- AM_MAKE_INCLUDE
6748
m4trace:configure.in:7: -1- m4_pattern_allow([^am__include$])
6749
m4trace:configure.in:7: -1- m4_pattern_allow([^am__quote$])
6750
m4trace:configure.in:7: -1- AM_DEP_TRACK
6751
m4trace:configure.in:7: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
6752
m4trace:configure.in:7: -1- m4_pattern_allow([^AMDEP_TRUE$])
6753
m4trace:configure.in:7: -1- m4_pattern_allow([^AMDEP_FALSE$])
6754
m4trace:configure.in:7: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
6755
m4trace:configure.in:7: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
6756
m4trace:configure.in:7: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
6757
m4trace:configure.in:7: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
6758
m4trace:configure.in:7: -1- m4_pattern_allow([^CCDEPMODE$])
6759
m4trace:configure.in:7: -1- AM_CONDITIONAL([am__fastdepCC], [
6760
  test "x$enable_dependency_tracking" != xno \
6761
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
6762
m4trace:configure.in:7: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
6763
m4trace:configure.in:7: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
6764
m4trace:configure.in:7: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
6765
m4trace:configure.in:7: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
6766
m4trace:configure.in:8: -1- AM_PROG_LIBTOOL
6767
m4trace:configure.in:8: -1- AC_PROG_LIBTOOL
6768
m4trace:configure.in:8: -1- _AC_PROG_LIBTOOL
6769
m4trace:configure.in:8: -1- AC_LIBTOOL_SETUP
6770
m4trace:configure.in:8: -1- AC_ENABLE_SHARED
6771
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
6772
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
6773
../../lib/autoconf/general.m4:1364: AC_ARG_ENABLE is expanded from...
6774
/usr/share/aclocal/libtool.m4:1960: AC_ENABLE_SHARED is expanded from...
6775
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
6776
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
6777
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
6778
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
6779
configure.in:8: the top level])
6780
m4trace:configure.in:8: -1- AC_ENABLE_STATIC
6781
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
6782
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
6783
../../lib/autoconf/general.m4:1364: AC_ARG_ENABLE is expanded from...
6784
/usr/share/aclocal/libtool.m4:1999: AC_ENABLE_STATIC is expanded from...
6785
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
6786
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
6787
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
6788
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
6789
configure.in:8: the top level])
6790
m4trace:configure.in:8: -1- AC_ENABLE_FAST_INSTALL
6791
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
6792
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
6793
../../lib/autoconf/general.m4:1364: AC_ARG_ENABLE is expanded from...
6794
/usr/share/aclocal/libtool.m4:2038: AC_ENABLE_FAST_INSTALL is expanded from...
6795
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
6796
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
6797
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
6798
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
6799
configure.in:8: the top level])
6800
m4trace:configure.in:8: -1- m4_pattern_allow([^build$])
6801
m4trace:configure.in:8: -1- m4_pattern_allow([^build_cpu$])
6802
m4trace:configure.in:8: -1- m4_pattern_allow([^build_vendor$])
6803
m4trace:configure.in:8: -1- m4_pattern_allow([^build_os$])
6804
m4trace:configure.in:8: -1- m4_pattern_allow([^host$])
6805
m4trace:configure.in:8: -1- m4_pattern_allow([^host_cpu$])
6806
m4trace:configure.in:8: -1- m4_pattern_allow([^host_vendor$])
6807
m4trace:configure.in:8: -1- m4_pattern_allow([^host_os$])
6808
m4trace:configure.in:8: -1- AC_PROG_LD
6809
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
6810
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
6811
../../lib/autoconf/general.m4:1382: AC_ARG_WITH is expanded from...
6812
/usr/share/aclocal/libtool.m4:2179: AC_PROG_LD is expanded from...
6813
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
6814
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
6815
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
6816
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
6817
configure.in:8: the top level])
6818
m4trace:configure.in:8: -1- LT_AC_PROG_SED
6819
m4trace:configure.in:8: -1- m4_pattern_allow([^SED$])
6820
m4trace:configure.in:8: -1- AC_PROG_LD_GNU
6821
m4trace:configure.in:8: -1- AC_PROG_EGREP
6822
m4trace:configure.in:8: -1- m4_pattern_allow([^GREP$])
6823
m4trace:configure.in:8: -1- m4_pattern_allow([^GREP$])
6824
m4trace:configure.in:8: -1- m4_pattern_allow([^EGREP$])
6825
m4trace:configure.in:8: -1- m4_pattern_allow([^EGREP$])
6826
m4trace:configure.in:8: -1- AC_PROG_LD_RELOAD_FLAG
6827
m4trace:configure.in:8: -1- AC_PROG_NM
6828
m4trace:configure.in:8: -1- m4_pattern_allow([^LN_S$])
6829
m4trace:configure.in:8: -1- AC_DEPLIBS_CHECK_METHOD
6830
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_MAX_CMD_LEN
6831
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
6832
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
6833
m4trace:configure.in:8: -1- AC_LIBTOOL_OBJDIR
6834
m4trace:configure.in:8: -1- _LT_AC_SYS_COMPILER
6835
m4trace:configure.in:8: -1- _LT_AC_PROG_ECHO_BACKSLASH
6836
m4trace:configure.in:8: -1- _LT_AC_SHELL_INIT([
6837
# Check that we are running under the correct shell.
6838
SHELL=${CONFIG_SHELL-/bin/sh}
6839
 
6840
case X$ECHO in
6841
X*--fallback-echo)
6842
  # Remove one level of quotation (which was required for Make).
6843
  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
6844
  ;;
6845
esac
6846
 
6847
echo=${ECHO-echo}
6848
if test "X[$]1" = X--no-reexec; then
6849
  # Discard the --no-reexec flag, and continue.
6850
  shift
6851
elif test "X[$]1" = X--fallback-echo; then
6852
  # Avoid inline document here, it may be left over
6853
  :
6854
elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
6855
  # Yippee, $echo works!
6856
  :
6857
else
6858
  # Restart under the correct shell.
6859
  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
6860
fi
6861
 
6862
if test "X[$]1" = X--fallback-echo; then
6863
  # used as fallback echo
6864
  shift
6865
  cat <<EOF
6866
[$]*
6867
EOF
6868
  exit 0
6869
fi
6870
 
6871
# The HP-UX ksh and POSIX shell print the target directory to stdout
6872
# if CDPATH is set.
6873
(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
6874
 
6875
if test -z "$ECHO"; then
6876
if test "X${echo_test_string+set}" != Xset; then
6877
# find a string as large as possible, as long as the shell can cope with it
6878
  for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
6879
    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
6880
    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
6881
       echo_test_string=`eval $cmd` &&
6882
       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
6883
    then
6884
      break
6885
    fi
6886
  done
6887
fi
6888
 
6889
if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
6890
   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
6891
   test "X$echo_testing_string" = "X$echo_test_string"; then
6892
  :
6893
else
6894
  # The Solaris, AIX, and Digital Unix default echo programs unquote
6895
  # backslashes.  This makes it impossible to quote backslashes using
6896
  #   echo "$something" | sed 's/\\/\\\\/g'
6897
  #
6898
  # So, first we look for a working echo in the user's PATH.
6899
 
6900
  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
6901
  for dir in $PATH /usr/ucb; do
6902
    IFS="$lt_save_ifs"
6903
    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
6904
       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
6905
       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
6906
       test "X$echo_testing_string" = "X$echo_test_string"; then
6907
      echo="$dir/echo"
6908
      break
6909
    fi
6910
  done
6911
  IFS="$lt_save_ifs"
6912
 
6913
  if test "X$echo" = Xecho; then
6914
    # We didn't find a better echo, so look for alternatives.
6915
    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
6916
       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
6917
       test "X$echo_testing_string" = "X$echo_test_string"; then
6918
      # This shell has a builtin print -r that does the trick.
6919
      echo='print -r'
6920
    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
6921
	 test "X$CONFIG_SHELL" != X/bin/ksh; then
6922
      # If we have ksh, try running configure again with it.
6923
      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
6924
      export ORIGINAL_CONFIG_SHELL
6925
      CONFIG_SHELL=/bin/ksh
6926
      export CONFIG_SHELL
6927
      exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
6928
    else
6929
      # Try using printf.
6930
      echo='printf %s\n'
6931
      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
6932
	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
6933
	 test "X$echo_testing_string" = "X$echo_test_string"; then
6934
	# Cool, printf works
6935
	:
6936
      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
6937
	   test "X$echo_testing_string" = 'X\t' &&
6938
	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
6939
	   test "X$echo_testing_string" = "X$echo_test_string"; then
6940
	CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
6941
	export CONFIG_SHELL
6942
	SHELL="$CONFIG_SHELL"
6943
	export SHELL
6944
	echo="$CONFIG_SHELL [$]0 --fallback-echo"
6945
      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
6946
	   test "X$echo_testing_string" = 'X\t' &&
6947
	   echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
6948
	   test "X$echo_testing_string" = "X$echo_test_string"; then
6949
	echo="$CONFIG_SHELL [$]0 --fallback-echo"
6950
      else
6951
	# maybe with a smaller string...
6952
	prev=:
6953
 
6954
	for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
6955
	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
6956
	  then
6957
	    break
6958
	  fi
6959
	  prev="$cmd"
6960
	done
6961
 
6962
	if test "$prev" != 'sed 50q "[$]0"'; then
6963
	  echo_test_string=`eval $prev`
6964
	  export echo_test_string
6965
	  exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
6966
	else
6967
	  # Oops.  We lost completely, so just stick with echo.
6968
	  echo=echo
6969
	fi
6970
      fi
6971
    fi
6972
  fi
6973
fi
6974
fi
6975
 
6976
# Copy echo and quote the copy suitably for passing to libtool from
6977
# the Makefile, instead of quoting the original, which is used later.
6978
ECHO=$echo
6979
if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
6980
   ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
6981
fi
6982
 
6983
AC_SUBST(ECHO)
6984
])
6985
m4trace:configure.in:8: -1- m4_pattern_allow([^ECHO$])
6986
m4trace:configure.in:8: -1- m4_pattern_allow([^AR$])
6987
m4trace:configure.in:8: -1- m4_pattern_allow([^RANLIB$])
6988
m4trace:configure.in:8: -1- m4_pattern_allow([^STRIP$])
6989
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
6990
m4trace:configure.in:8: -1- AC_PATH_MAGIC
6991
m4trace:configure.in:8: -1- AC_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
6992
m4trace:configure.in:8: -1- AC_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
6993
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
6994
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
6995
../../lib/autoconf/general.m4:1364: AC_ARG_ENABLE is expanded from...
6996
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
6997
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
6998
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
6999
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
7000
configure.in:8: the top level])
7001
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7002
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7003
../../lib/autoconf/general.m4:1382: AC_ARG_WITH is expanded from...
7004
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7005
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7006
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7007
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
7008
configure.in:8: the top level])
7009
m4trace:configure.in:8: -1- AC_LIBTOOL_LANG_C_CONFIG
7010
m4trace:configure.in:8: -1- _LT_AC_LANG_C_CONFIG
7011
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([objext], [])
7012
m4trace:configure.in:8: -1- _LT_AC_SYS_COMPILER
7013
m4trace:configure.in:8: -1- _LT_COMPILER_BOILERPLATE
7014
m4trace:configure.in:8: -1- _LT_LINKER_BOILERPLATE
7015
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([])
7016
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7017
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7018
m4trace:configure.in:8: -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"])
7019
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7020
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7021
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_COMPILER_PIC([])
7022
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7023
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7024
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7025
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7026
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7027
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7028
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7029
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7030
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7031
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7032
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7033
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7034
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7035
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7036
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7037
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7038
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7039
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7040
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7041
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7042
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7043
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7044
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7045
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7046
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7047
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7048
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7049
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7050
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7051
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7052
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7053
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7054
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7055
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7056
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7057
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7058
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7059
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7060
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7061
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7062
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7063
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7064
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7065
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7066
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7067
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7068
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7069
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7070
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7071
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7072
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7073
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7074
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7075
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7076
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7077
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7078
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7079
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7080
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7081
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7082
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7083
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7084
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7085
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7086
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7087
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7088
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [])
7089
m4trace:configure.in:8: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, ) works], [lt_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
7090
     "" | " "*) ;;
7091
     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, )=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, )" ;;
7092
     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, )=
7093
     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
7094
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7095
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7096
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7097
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7098
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7099
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7100
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7101
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
7102
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7103
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7104
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7105
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7106
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7107
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [])
7108
m4trace:configure.in:8: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, )=])
7109
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7110
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_CC_C_O([])
7111
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7112
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7113
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7114
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7115
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7116
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7117
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7118
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([])
7119
m4trace:configure.in:8: -1- _LT_AC_LOCK
7120
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
7121
You should run autoupdate.], [../../lib/autoconf/general.m4:2414: AC_TRY_LINK is expanded from...
7122
../../lib/m4sugar/m4sh.m4:516: AS_IF is expanded from...
7123
../../lib/autoconf/general.m4:1898: AC_CACHE_VAL is expanded from...
7124
../../lib/autoconf/general.m4:1911: AC_CACHE_CHECK is expanded from...
7125
/usr/share/aclocal/libtool.m4:479: _LT_AC_LOCK is expanded from...
7126
/usr/share/aclocal/libtool.m4:1095: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
7127
/usr/share/aclocal/libtool.m4:2712: _LT_AC_LANG_C_CONFIG is expanded from...
7128
/usr/share/aclocal/libtool.m4:2711: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
7129
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7130
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7131
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7132
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
7133
configure.in:8: the top level])
7134
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7135
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_SHLIBS([])
7136
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7137
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7138
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7139
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7140
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
7141
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
7142
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7143
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7144
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
7145
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7146
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
7147
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7148
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7149
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7150
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7151
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7152
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7153
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [])
7154
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7155
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7156
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7157
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [])
7158
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
7159
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
7160
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7161
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7162
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7163
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7164
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7165
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7166
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7167
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7168
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7169
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7170
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7171
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7172
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7173
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7174
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7175
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7176
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7177
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7178
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7179
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7180
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7181
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7182
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7183
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7184
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7185
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7186
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7187
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7188
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7189
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7190
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7191
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7192
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7193
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7194
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7195
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7196
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7197
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7198
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7199
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7200
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7201
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7202
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7203
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7204
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7205
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7206
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7207
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7208
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7209
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7210
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7211
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7212
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7213
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7214
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7215
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7216
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7217
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7218
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7219
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7220
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7221
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7222
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7223
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7224
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7225
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7226
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7227
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7228
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7229
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7230
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7231
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7232
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7233
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
7234
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7235
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7236
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7237
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7238
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7239
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
7240
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7241
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7242
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7243
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7244
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7245
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7246
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7247
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7248
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7249
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7250
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7251
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7252
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7253
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7254
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
7255
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
7256
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [])
7257
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7258
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7259
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7260
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7261
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7262
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7263
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7264
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7265
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7266
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7267
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7268
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7269
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [])
7270
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7271
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7272
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7273
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [])
7274
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7275
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7276
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7277
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7278
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7279
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7280
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7281
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7282
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7283
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7284
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7285
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7286
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7287
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7288
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7289
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7290
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7291
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7292
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7293
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7294
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7295
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7296
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7297
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7298
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7299
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7300
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7301
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7302
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7303
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7304
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7305
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7306
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7307
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7308
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7309
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7310
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7311
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7312
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7313
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7314
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7315
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
7316
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7317
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7318
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7319
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7320
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7321
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7322
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7323
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
7324
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7325
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7326
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7327
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7328
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7329
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7330
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7331
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7332
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7333
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7334
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7335
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7336
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7337
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7338
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7339
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7340
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7341
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7342
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7343
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7344
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7345
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7346
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7347
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7348
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7349
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7350
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7351
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7352
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
7353
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7354
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7355
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7356
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7357
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7358
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7359
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7360
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7361
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7362
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7363
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7364
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7365
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7366
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7367
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7368
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7369
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7370
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7371
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7372
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7373
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7374
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7375
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7376
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7377
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7378
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7379
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7380
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7381
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7382
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7383
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7384
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7385
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7386
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([reload_cmds], [])
7387
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7388
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7389
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7390
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7391
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7392
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7393
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7394
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7395
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7396
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7397
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7398
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7399
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7400
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7401
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7402
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7403
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7404
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7405
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7406
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7407
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7408
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7409
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7410
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7411
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7412
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7413
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7414
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7415
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7416
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7417
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7418
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7419
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7420
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7421
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7422
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [])
7423
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7424
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7425
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7426
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7427
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7428
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7429
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7430
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([archive_cmds], [])
7431
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7432
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7433
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7434
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7435
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7436
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([])
7437
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([])
7438
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7439
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7440
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([runpath_var], [])
7441
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7442
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7443
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7444
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7445
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7446
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7447
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7448
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7449
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7450
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_LIB_STRIP
7451
m4trace:configure.in:8: -1- AC_LIBTOOL_DLOPEN_SELF
7452
m4trace:configure.in:8: -1- _LT_AC_CHECK_DLFCN
7453
m4trace:configure.in:8: -1- m4_pattern_allow([^CPP$])
7454
m4trace:configure.in:8: -1- m4_pattern_allow([^CPPFLAGS$])
7455
m4trace:configure.in:8: -1- m4_pattern_allow([^CPP$])
7456
m4trace:configure.in:8: -1- m4_pattern_allow([^STDC_HEADERS$])
7457
m4trace:configure.in:8: -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])
7458
m4trace:configure.in:8: -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])
7459
m4trace:configure.in:8: -1- AC_LIBTOOL_CONFIG([])
7460
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [])
7461
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([CC], [])
7462
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [])
7463
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7464
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7465
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7466
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7467
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7468
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
7469
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7470
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7471
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
7472
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
7473
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [])
7474
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [])
7475
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [])
7476
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [])
7477
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [])
7478
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7479
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7480
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postinstall_cmds], [])
7481
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postuninstall_cmds], [])
7482
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
7483
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7484
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7485
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7486
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7487
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
7488
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7489
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7490
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [])
7491
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7492
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7493
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [])
7494
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
7495
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [])
7496
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
7497
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
7498
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7499
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7500
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [])
7501
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7502
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
7503
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7504
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
7505
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
7506
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [])
7507
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [])
7508
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [])
7509
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
7510
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
7511
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
7512
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
7513
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
7514
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
7515
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
7516
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
7517
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
7518
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
7519
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
7520
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [])
7521
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
7522
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [])
7523
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
7524
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [])
7525
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [])
7526
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [])
7527
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [])
7528
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [])
7529
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
7530
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
7531
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [])
7532
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
7533
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
7534
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
7535
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [])
7536
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
7537
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
7538
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
7539
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
7540
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [])
7541
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
7542
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
7543
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [])
7544
m4trace:configure.in:8: -1- _LT_AC_TAGCONFIG
7545
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
7546
You should run autoupdate.], [../../lib/autoconf/general.m4:209: AC_HELP_STRING is expanded from...
7547
../../lib/autoconf/general.m4:1382: AC_ARG_WITH is expanded from...
7548
/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
7549
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7550
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7551
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7552
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
7553
configure.in:8: the top level])
7554
m4trace:configure.in:8: -1- _m4_warn([obsolete], [back quotes and double quotes must not be escaped in: $as_me:$LINENO: error: tag name \"$tagname\" already exists], [/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
7555
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7556
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7557
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7558
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
7559
configure.in:8: the top level])
7560
m4trace:configure.in:8: -1- _m4_warn([obsolete], [back quotes and double quotes must not be escaped in: $as_me: error: tag name \"$tagname\" already exists], [/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
7561
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
7562
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
7563
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
7564
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
7565
configure.in:8: the top level])
7566
m4trace:configure.in:8: -1- AC_LIBTOOL_LANG_CXX_CONFIG
7567
m4trace:configure.in:8: -1- _LT_AC_LANG_CXX_CONFIG([CXX])
7568
m4trace:configure.in:8: -1- m4_pattern_allow([^CXX$])
7569
m4trace:configure.in:8: -1- m4_pattern_allow([^CXXFLAGS$])
7570
m4trace:configure.in:8: -1- m4_pattern_allow([^LDFLAGS$])
7571
m4trace:configure.in:8: -1- m4_pattern_allow([^LIBS$])
7572
m4trace:configure.in:8: -1- m4_pattern_allow([^CPPFLAGS$])
7573
m4trace:configure.in:8: -1- m4_pattern_allow([^CXX$])
7574
m4trace:configure.in:8: -1- m4_pattern_allow([^ac_ct_CXX$])
7575
m4trace:configure.in:8: -1- _AM_DEPENDENCIES([CXX])
7576
m4trace:configure.in:8: -1- m4_pattern_allow([^CXXDEPMODE$])
7577
m4trace:configure.in:8: -1- AM_CONDITIONAL([am__fastdepCXX], [
7578
  test "x$enable_dependency_tracking" != xno \
7579
  && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
7580
m4trace:configure.in:8: -1- m4_pattern_allow([^am__fastdepCXX_TRUE$])
7581
m4trace:configure.in:8: -1- m4_pattern_allow([^am__fastdepCXX_FALSE$])
7582
m4trace:configure.in:8: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_TRUE])
7583
m4trace:configure.in:8: -1- _AM_SUBST_NOTMAKE([am__fastdepCXX_FALSE])
7584
m4trace:configure.in:8: -1- _LT_AC_PROG_CXXCPP
7585
m4trace:configure.in:8: -1- m4_pattern_allow([^CXXCPP$])
7586
m4trace:configure.in:8: -1- m4_pattern_allow([^CPPFLAGS$])
7587
m4trace:configure.in:8: -1- m4_pattern_allow([^CXXCPP$])
7588
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7589
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7590
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
7591
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7592
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7593
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7594
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7595
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
7596
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7597
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
7598
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7599
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
7600
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
7601
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
7602
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7603
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7604
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7605
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7606
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
7607
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
7608
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
7609
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [CXX])
7610
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7611
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
7612
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([objext], [CXX])
7613
m4trace:configure.in:8: -1- _LT_AC_SYS_COMPILER
7614
m4trace:configure.in:8: -1- _LT_COMPILER_BOILERPLATE
7615
m4trace:configure.in:8: -1- _LT_LINKER_BOILERPLATE
7616
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [CXX])
7617
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
7618
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
7619
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
7620
m4trace:configure.in:8: -1- AC_PROG_LD
7621
m4trace:configure.in:8: -1- AC_PROG_LD_GNU
7622
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7623
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7624
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7625
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7626
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7627
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7628
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7629
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7630
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7631
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7632
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7633
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7634
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7635
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7636
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
7637
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7638
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7639
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
7640
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7641
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
7642
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7643
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7644
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7645
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7646
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7647
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
7648
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7649
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7650
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7651
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7652
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7653
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7654
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7655
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7656
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7657
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7658
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7659
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7660
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
7661
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
7662
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7663
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7664
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7665
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7666
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7667
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7668
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7669
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7670
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7671
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
7672
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7673
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7674
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7675
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7676
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7677
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
7678
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7679
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7680
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
7681
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7682
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
7683
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7684
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
7685
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7686
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7687
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7688
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7689
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7690
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7691
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7692
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7693
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7694
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7695
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7696
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
7697
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7698
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7699
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7700
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7701
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7702
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7703
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7704
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7705
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7706
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7707
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
7708
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7709
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7710
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7711
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7712
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7713
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7714
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7715
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7716
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7717
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7718
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7719
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7720
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7721
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7722
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7723
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7724
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7725
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7726
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7727
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7728
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7729
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7730
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7731
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7732
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7733
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7734
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7735
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7736
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7737
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7738
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7739
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7740
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7741
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7742
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7743
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7744
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7745
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7746
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7747
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7748
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7749
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7750
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7751
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7752
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7753
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7754
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7755
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7756
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7757
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7758
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7759
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7760
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7761
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7762
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7763
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7764
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7765
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7766
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
7767
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7768
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7769
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7770
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7771
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7772
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7773
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7774
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7775
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7776
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7777
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7778
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7779
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7780
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7781
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7782
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7783
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7784
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7785
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7786
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7787
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7788
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7789
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7790
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7791
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7792
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7793
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7794
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7795
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7796
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7797
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7798
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7799
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7800
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7801
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7802
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7803
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7804
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7805
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7806
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7807
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7808
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7809
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7810
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7811
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7812
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7813
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7814
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7815
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7816
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7817
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
7818
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7819
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7820
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7821
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7822
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7823
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7824
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
7825
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7826
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7827
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7828
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7829
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7830
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7831
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7832
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
7833
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7834
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7835
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
7836
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7837
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
7838
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7839
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
7840
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7841
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7842
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7843
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
7844
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7845
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7846
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7847
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7848
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7849
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7850
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7851
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [CXX])
7852
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [CXX])
7853
m4trace:configure.in:8: -1- AC_LIBTOOL_POSTDEP_PREDEP([CXX])
7854
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
7855
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
7856
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
7857
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
7858
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7859
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7860
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7861
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7862
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
7863
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
7864
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
7865
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
7866
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
7867
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
7868
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
7869
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
7870
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
7871
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
7872
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7873
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7874
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7875
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
7876
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7877
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_COMPILER_PIC([CXX])
7878
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7879
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7880
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7881
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7882
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7883
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7884
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7885
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7886
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7887
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7888
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7889
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7890
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7891
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7892
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7893
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7894
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7895
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7896
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7897
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7898
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7899
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7900
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7901
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7902
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7903
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7904
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7905
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7906
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7907
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7908
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7909
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7910
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7911
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7912
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7913
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7914
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7915
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7916
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7917
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7918
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7919
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7920
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7921
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7922
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7923
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7924
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7925
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7926
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7927
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7928
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7929
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7930
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7931
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7932
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7933
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7934
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7935
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX])
7936
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7937
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7938
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7939
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [CXX])
7940
m4trace:configure.in:8: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX) works], [lt_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
7941
     "" | " "*) ;;
7942
     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)" ;;
7943
     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=
7944
     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no])
7945
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7946
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7947
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7948
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7949
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7950
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7951
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7952
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX])
7953
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7954
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7955
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7956
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7957
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7958
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [CXX])
7959
m4trace:configure.in:8: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works_CXX], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, CXX)=])
7960
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
7961
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_CC_C_O([CXX])
7962
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7963
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7964
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7965
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7966
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7967
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7968
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7969
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([CXX])
7970
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
7971
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_SHLIBS([CXX])
7972
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
7973
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
7974
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
7975
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
7976
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
7977
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
7978
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
7979
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7980
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7981
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
7982
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7983
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7984
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
7985
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
7986
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
7987
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7988
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7989
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([archive_cmds], [CXX])
7990
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7991
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7992
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
7993
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7994
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
7995
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([CXX])
7996
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([CXX])
7997
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
7998
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
7999
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([runpath_var], [CXX])
8000
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8001
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8002
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8003
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8004
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8005
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8006
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8007
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8008
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8009
m4trace:configure.in:8: -1- AC_LIBTOOL_CONFIG([CXX])
8010
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [CXX])
8011
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([CC], [CXX])
8012
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [CXX])
8013
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8014
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8015
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8016
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
8017
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8018
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX])
8019
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8020
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
8021
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8022
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
8023
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8024
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8025
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [CXX])
8026
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8027
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8028
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8029
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8030
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postinstall_cmds], [CXX])
8031
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postuninstall_cmds], [CXX])
8032
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
8033
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8034
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8035
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8036
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8037
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
8038
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8039
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8040
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8041
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8042
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8043
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [CXX])
8044
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
8045
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [CXX])
8046
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8047
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
8048
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8049
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8050
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8051
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8052
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
8053
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8054
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
8055
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
8056
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [CXX])
8057
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [CXX])
8058
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [CXX])
8059
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
8060
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
8061
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
8062
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
8063
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
8064
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
8065
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
8066
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX])
8067
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
8068
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
8069
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
8070
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
8071
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
8072
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
8073
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
8074
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
8075
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
8076
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [CXX])
8077
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [CXX])
8078
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
8079
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
8080
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
8081
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
8082
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
8083
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
8084
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
8085
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
8086
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
8087
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
8088
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
8089
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
8090
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
8091
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
8092
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
8093
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [CXX])
8094
m4trace:configure.in:8: -1- AC_LIBTOOL_LANG_F77_CONFIG
8095
m4trace:configure.in:8: -1- _LT_AC_LANG_F77_CONFIG([F77])
8096
m4trace:configure.in:8: -1- m4_pattern_allow([^F77$])
8097
m4trace:configure.in:8: -1- m4_pattern_allow([^FFLAGS$])
8098
m4trace:configure.in:8: -1- m4_pattern_allow([^LDFLAGS$])
8099
m4trace:configure.in:8: -1- m4_pattern_allow([^LIBS$])
8100
m4trace:configure.in:8: -1- m4_pattern_allow([^F77$])
8101
m4trace:configure.in:8: -1- m4_pattern_allow([^ac_ct_F77$])
8102
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8103
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8104
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8105
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8106
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8107
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8108
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8109
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8110
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8111
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8112
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8113
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8114
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8115
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8116
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
8117
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8118
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8119
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8120
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([objext], [F77])
8121
m4trace:configure.in:8: -1- _LT_AC_SYS_COMPILER
8122
m4trace:configure.in:8: -1- _LT_COMPILER_BOILERPLATE
8123
m4trace:configure.in:8: -1- _LT_LINKER_BOILERPLATE
8124
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [F77])
8125
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
8126
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [F77])
8127
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [F77])
8128
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_COMPILER_PIC([F77])
8129
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8130
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8131
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8132
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8133
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8134
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8135
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8136
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8137
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8138
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8139
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8140
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8141
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8142
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8143
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8144
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8145
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8146
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8147
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8148
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8149
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8150
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8151
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8152
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8153
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8154
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8155
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8156
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8157
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8158
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8159
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8160
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8161
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8162
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8163
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8164
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8165
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8166
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8167
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8168
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8169
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8170
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8171
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8172
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8173
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8174
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8175
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8176
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8177
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8178
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8179
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8180
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8181
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8182
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8183
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8184
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8185
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8186
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8187
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8188
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8189
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8190
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8191
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8192
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8193
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8194
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8195
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [F77])
8196
m4trace:configure.in:8: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77) works], [lt_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
8197
     "" | " "*) ;;
8198
     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)" ;;
8199
     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=
8200
     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, F77)=no])
8201
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8202
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8203
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8204
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8205
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8206
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8207
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8208
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
8209
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8210
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8211
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8212
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8213
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8214
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [F77])
8215
m4trace:configure.in:8: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works_F77], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, F77)=])
8216
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8217
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_CC_C_O([F77])
8218
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8219
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8220
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8221
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8222
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8223
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8224
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8225
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([F77])
8226
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8227
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_SHLIBS([F77])
8228
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8229
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8230
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8231
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8232
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
8233
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
8234
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8235
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8236
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
8237
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8238
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8239
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8240
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8241
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8242
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8243
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8244
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8245
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8246
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8247
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8248
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8249
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
8250
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
8251
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
8252
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8253
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8254
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8255
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8256
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8257
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8258
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8259
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8260
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8261
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8262
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8263
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8264
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8265
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8266
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8267
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8268
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8269
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8270
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8271
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8272
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8273
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8274
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8275
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8276
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8277
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8278
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8279
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8280
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8281
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8282
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8283
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8284
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8285
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8286
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8287
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8288
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8289
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8290
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8291
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8292
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8293
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8294
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8295
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8296
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8297
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8298
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8299
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8300
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8301
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8302
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8303
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8304
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8305
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8306
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8307
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8308
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8309
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8310
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8311
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8312
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8313
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8314
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8315
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8316
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8317
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8318
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8319
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8320
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8321
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8322
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8323
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8324
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8325
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
8326
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8327
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8328
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8329
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8330
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8331
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
8332
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8333
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8334
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8335
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8336
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8337
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8338
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8339
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8340
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8341
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8342
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8343
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8344
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8345
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8346
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
8347
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
8348
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77])
8349
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8350
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8351
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8352
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8353
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8354
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8355
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8356
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8357
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8358
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8359
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8360
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8361
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8362
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8363
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8364
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8365
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8366
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8367
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8368
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8369
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8370
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8371
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8372
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8373
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8374
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8375
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8376
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8377
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8378
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8379
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8380
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8381
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8382
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8383
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8384
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8385
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8386
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8387
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8388
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8389
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8390
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8391
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8392
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8393
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8394
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8395
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8396
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8397
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8398
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8399
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8400
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8401
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8402
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8403
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8404
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8405
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8406
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8407
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8408
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8409
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8410
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8411
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8412
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8413
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8414
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8415
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8416
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8417
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8418
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8419
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8420
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8421
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8422
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8423
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8424
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8425
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8426
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8427
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8428
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8429
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8430
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8431
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8432
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8433
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8434
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8435
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8436
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8437
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8438
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8439
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8440
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8441
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8442
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8443
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8444
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
8445
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8446
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8447
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8448
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8449
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8450
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8451
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8452
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8453
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8454
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8455
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8456
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8457
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8458
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8459
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8460
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8461
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8462
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8463
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8464
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8465
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8466
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8467
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8468
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8469
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8470
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8471
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8472
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8473
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8474
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8475
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8476
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8477
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8478
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([reload_cmds], [F77])
8479
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8480
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8481
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8482
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8483
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8484
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8485
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8486
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8487
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8488
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8489
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8490
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8491
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8492
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8493
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8494
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8495
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8496
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8497
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8498
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8499
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8500
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8501
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8502
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8503
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8504
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8505
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8506
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8507
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8508
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8509
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8510
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8511
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8512
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8513
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8514
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
8515
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8516
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8517
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8518
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8519
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8520
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8521
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8522
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([archive_cmds], [F77])
8523
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8524
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8525
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8526
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8527
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8528
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([F77])
8529
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([F77])
8530
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8531
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8532
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([runpath_var], [F77])
8533
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8534
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8535
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8536
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8537
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8538
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8539
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8540
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8541
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8542
m4trace:configure.in:8: -1- AC_LIBTOOL_CONFIG([F77])
8543
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [F77])
8544
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([CC], [F77])
8545
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [F77])
8546
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8547
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8548
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8549
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77])
8550
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8551
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
8552
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8553
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8554
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
8555
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
8556
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [F77])
8557
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [F77])
8558
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [F77])
8559
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [F77])
8560
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77])
8561
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8562
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8563
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postinstall_cmds], [F77])
8564
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postuninstall_cmds], [F77])
8565
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
8566
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8567
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8568
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8569
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8570
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8571
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8572
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8573
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8574
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8575
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8576
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77])
8577
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
8578
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
8579
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
8580
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
8581
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8582
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8583
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8584
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8585
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
8586
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8587
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
8588
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
8589
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [F77])
8590
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [F77])
8591
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [F77])
8592
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
8593
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
8594
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
8595
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
8596
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77])
8597
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
8598
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
8599
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
8600
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
8601
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
8602
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
8603
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
8604
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
8605
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [F77])
8606
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
8607
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [F77])
8608
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [F77])
8609
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [F77])
8610
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [F77])
8611
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77])
8612
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
8613
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
8614
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
8615
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
8616
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
8617
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
8618
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
8619
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
8620
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
8621
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
8622
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
8623
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
8624
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
8625
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
8626
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
8627
m4trace:configure.in:8: -1- AC_LIBTOOL_LANG_GCJ_CONFIG
8628
m4trace:configure.in:8: -1- _LT_AC_LANG_GCJ_CONFIG([GCJ])
8629
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
8630
You should run autoupdate.], [../../lib/autoconf/lang.m4:167: AC_LANG_SAVE is expanded from...
8631
/usr/share/aclocal/libtool.m4:4128: _LT_AC_LANG_GCJ_CONFIG is expanded from...
8632
/usr/share/aclocal/libtool.m4:4127: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
8633
/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
8634
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
8635
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
8636
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
8637
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
8638
configure.in:8: the top level])
8639
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([objext], [GCJ])
8640
m4trace:configure.in:8: -1- _LT_AC_SYS_COMPILER
8641
m4trace:configure.in:8: -1- _LT_COMPILER_BOILERPLATE
8642
m4trace:configure.in:8: -1- _LT_LINKER_BOILERPLATE
8643
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [GCJ])
8644
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
8645
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
8646
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
8647
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([GCJ])
8648
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
8649
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
8650
m4trace:configure.in:8: -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"])
8651
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
8652
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
8653
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_COMPILER_PIC([GCJ])
8654
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8655
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8656
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8657
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8658
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8659
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8660
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8661
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8662
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8663
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
8664
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8665
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8666
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8667
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8668
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8669
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8670
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8671
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8672
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8673
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8674
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8675
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8676
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8677
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8678
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8679
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8680
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8681
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8682
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8683
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8684
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8685
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8686
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8687
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8688
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8689
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8690
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8691
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8692
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8693
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8694
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8695
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8696
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8697
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8698
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8699
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8700
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8701
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8702
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8703
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8704
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8705
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8706
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8707
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8708
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8709
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8710
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8711
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8712
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8713
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
8714
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8715
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8716
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
8717
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8718
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8719
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8720
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [GCJ])
8721
m4trace:configure.in:8: -1- AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ) works], [lt_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
8722
     "" | " "*) ;;
8723
     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)" ;;
8724
     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=
8725
     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, GCJ)=no])
8726
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8727
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8728
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8729
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8730
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8731
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8732
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8733
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
8734
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8735
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8736
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
8737
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
8738
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8739
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [GCJ])
8740
m4trace:configure.in:8: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_prog_compiler_static_works_GCJ], [$lt_tmp_static_flag], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, GCJ)=])
8741
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
8742
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_CC_C_O([GCJ])
8743
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8744
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8745
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8746
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8747
m4trace:configure.in:8: -3- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8748
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8749
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8750
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([GCJ])
8751
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
8752
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_SHLIBS([GCJ])
8753
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8754
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
8755
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8756
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8757
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
8758
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
8759
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8760
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8761
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
8762
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8763
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
8764
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8765
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8766
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8767
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8768
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
8769
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
8770
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
8771
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
8772
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
8773
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
8774
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
8775
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
8776
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
8777
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8778
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8779
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8780
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8781
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8782
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8783
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8784
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8785
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8786
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8787
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8788
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8789
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8790
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8791
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8792
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
8793
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
8794
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
8795
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8796
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8797
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8798
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8799
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8800
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8801
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8802
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8803
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8804
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8805
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8806
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8807
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8808
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8809
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
8810
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8811
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8812
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8813
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8814
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8815
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8816
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8817
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8818
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8819
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8820
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8821
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8822
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8823
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8824
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8825
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8826
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8827
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8828
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8829
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8830
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8831
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8832
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8833
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8834
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
8835
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8836
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8837
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8838
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
8839
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
8840
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8841
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8842
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8843
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
8844
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8845
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8846
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8847
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8848
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
8849
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8850
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
8851
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8852
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8853
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8854
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8855
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8856
m4trace:configure.in:8: -1- _LT_AC_SYS_LIBPATH_AIX
8857
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8858
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
8859
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8860
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8861
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
8862
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8863
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8864
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8865
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8866
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8867
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8868
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8869
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8870
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8871
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
8872
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
8873
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ])
8874
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
8875
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8876
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8877
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8878
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8879
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
8880
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8881
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
8882
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8883
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8884
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
8885
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8886
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
8887
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8888
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
8889
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8890
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
8891
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8892
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
8893
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8894
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8895
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8896
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8897
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8898
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8899
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8900
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8901
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8902
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8903
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8904
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8905
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8906
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8907
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8908
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8909
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8910
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8911
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8912
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8913
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8914
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8915
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8916
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8917
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8918
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8919
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8920
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8921
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8922
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8923
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8924
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8925
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8926
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8927
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8928
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8929
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8930
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8931
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8932
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
8933
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8934
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8935
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8936
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8937
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8938
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8939
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8940
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
8941
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8942
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8943
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
8944
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8945
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8946
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8947
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8948
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8949
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8950
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8951
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8952
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8953
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8954
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8955
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8956
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8957
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8958
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8959
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
8960
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8961
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8962
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8963
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8964
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
8965
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8966
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8967
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8968
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8969
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
8970
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8971
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8972
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8973
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8974
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8975
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8976
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8977
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8978
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8979
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
8980
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8981
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8982
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8983
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
8984
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
8985
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8986
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8987
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8988
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
8989
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8990
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
8991
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8992
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
8993
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
8994
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8995
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
8996
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
8997
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
8998
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
8999
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9000
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9001
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9002
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9003
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([reload_cmds], [GCJ])
9004
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9005
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9006
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9007
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9008
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9009
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9010
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9011
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9012
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9013
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9014
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9015
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9016
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9017
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9018
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9019
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9020
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9021
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9022
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9023
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9024
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9025
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9026
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9027
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9028
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9029
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9030
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9031
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9032
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9033
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9034
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9035
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9036
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9037
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9038
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9039
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
9040
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9041
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9042
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9043
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9044
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9045
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9046
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9047
m4trace:configure.in:8: -2- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9048
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9049
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9050
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9051
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9052
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9053
m4trace:configure.in:8: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([GCJ])
9054
m4trace:configure.in:8: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([GCJ])
9055
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9056
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9057
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([runpath_var], [GCJ])
9058
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9059
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9060
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9061
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9062
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9063
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9064
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9065
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9066
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9067
m4trace:configure.in:8: -1- AC_LIBTOOL_CONFIG([GCJ])
9068
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [GCJ])
9069
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([CC], [GCJ])
9070
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [GCJ])
9071
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9072
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9073
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9074
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9075
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9076
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
9077
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9078
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9079
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9080
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
9081
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [GCJ])
9082
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ])
9083
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [GCJ])
9084
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [GCJ])
9085
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ])
9086
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9087
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9088
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postinstall_cmds], [GCJ])
9089
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postuninstall_cmds], [GCJ])
9090
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9091
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9092
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9093
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9094
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9095
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9096
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9097
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9098
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9099
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9100
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9101
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ])
9102
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
9103
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
9104
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9105
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
9106
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9107
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9108
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9109
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9110
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9111
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9112
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
9113
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
9114
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [GCJ])
9115
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [GCJ])
9116
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [GCJ])
9117
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
9118
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
9119
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
9120
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
9121
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
9122
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
9123
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
9124
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
9125
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
9126
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
9127
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
9128
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
9129
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
9130
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
9131
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
9132
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [GCJ])
9133
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ])
9134
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [GCJ])
9135
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [GCJ])
9136
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ])
9137
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
9138
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
9139
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
9140
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
9141
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
9142
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
9143
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
9144
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
9145
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
9146
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
9147
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
9148
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
9149
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
9150
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
9151
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
9152
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
9153
You should run autoupdate.], [../../lib/autoconf/lang.m4:176: AC_LANG_RESTORE is expanded from...
9154
/usr/share/aclocal/libtool.m4:4128: _LT_AC_LANG_GCJ_CONFIG is expanded from...
9155
/usr/share/aclocal/libtool.m4:4127: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
9156
/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
9157
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9158
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9159
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9160
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
9161
configure.in:8: the top level])
9162
m4trace:configure.in:8: -1- AC_LIBTOOL_LANG_RC_CONFIG
9163
m4trace:configure.in:8: -1- _LT_AC_LANG_RC_CONFIG([RC])
9164
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
9165
You should run autoupdate.], [../../lib/autoconf/lang.m4:167: AC_LANG_SAVE is expanded from...
9166
/usr/share/aclocal/libtool.m4:4188: _LT_AC_LANG_RC_CONFIG is expanded from...
9167
/usr/share/aclocal/libtool.m4:4187: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
9168
/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
9169
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9170
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9171
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9172
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
9173
configure.in:8: the top level])
9174
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([objext], [RC])
9175
m4trace:configure.in:8: -1- _LT_AC_SYS_COMPILER
9176
m4trace:configure.in:8: -1- _LT_COMPILER_BOILERPLATE
9177
m4trace:configure.in:8: -1- _LT_LINKER_BOILERPLATE
9178
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [RC])
9179
m4trace:configure.in:8: -1- _LT_CC_BASENAME([$compiler])
9180
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
9181
m4trace:configure.in:8: -1- AC_LIBTOOL_CONFIG([RC])
9182
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [RC])
9183
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([CC], [RC])
9184
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [RC])
9185
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC])
9186
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC])
9187
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC])
9188
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC])
9189
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC])
9190
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC])
9191
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC])
9192
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC])
9193
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
9194
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
9195
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [RC])
9196
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [RC])
9197
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [RC])
9198
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [RC])
9199
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC])
9200
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
9201
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
9202
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postinstall_cmds], [RC])
9203
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postuninstall_cmds], [RC])
9204
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
9205
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC])
9206
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC])
9207
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
9208
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC])
9209
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC])
9210
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC])
9211
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC])
9212
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [RC])
9213
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
9214
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
9215
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([fix_srcfile_path], [RC])
9216
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC])
9217
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [RC])
9218
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
9219
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
9220
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
9221
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
9222
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [RC])
9223
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
9224
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
9225
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
9226
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [RC])
9227
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC])
9228
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler], [RC])
9229
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([GCC], [RC])
9230
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([LD], [RC])
9231
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC])
9232
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC])
9233
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
9234
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC])
9235
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC])
9236
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC])
9237
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC])
9238
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC])
9239
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
9240
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
9241
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
9242
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
9243
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
9244
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_cmds], [RC])
9245
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
9246
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predep_objects], [RC])
9247
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdep_objects], [RC])
9248
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([predeps], [RC])
9249
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([postdeps], [RC])
9250
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC])
9251
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC])
9252
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC])
9253
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_action], [RC])
9254
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC])
9255
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC])
9256
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC])
9257
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_direct], [RC])
9258
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_minus_L], [RC])
9259
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [RC])
9260
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC])
9261
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([link_all_deplibs], [RC])
9262
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([always_export_symbols], [RC])
9263
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
9264
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC])
9265
m4trace:configure.in:8: -1- _LT_AC_TAGVAR([include_expsyms], [RC])
9266
m4trace:configure.in:8: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
9267
You should run autoupdate.], [../../lib/autoconf/lang.m4:176: AC_LANG_RESTORE is expanded from...
9268
/usr/share/aclocal/libtool.m4:4188: _LT_AC_LANG_RC_CONFIG is expanded from...
9269
/usr/share/aclocal/libtool.m4:4187: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
9270
/usr/share/aclocal/libtool.m4:1837: _LT_AC_TAGCONFIG is expanded from...
9271
/usr/share/aclocal/libtool.m4:80: AC_LIBTOOL_SETUP is expanded from...
9272
/usr/share/aclocal/libtool.m4:60: _AC_PROG_LIBTOOL is expanded from...
9273
/usr/share/aclocal/libtool.m4:25: AC_PROG_LIBTOOL is expanded from...
9274
/usr/share/aclocal/libtool.m4:6493: AM_PROG_LIBTOOL is expanded from...
9275
configure.in:8: the top level])
9276
m4trace:configure.in:8: -1- m4_pattern_allow([^LIBTOOL$])
9277
m4trace:configure.in:8: -1- AC_LIBTOOL_CXX
9278
m4trace:configure.in:8: -1- _LT_AC_LANG_CXX
9279
m4trace:configure.in:8: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
9280
m4trace:configure.in:8: -1- AC_LIBTOOL_F77
9281
m4trace:configure.in:8: -1- _LT_AC_LANG_F77
9282
m4trace:configure.in:8: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
9283
m4trace:configure.in:10: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
9284
You should run autoupdate.], [])
9285
m4trace:configure.in:10: -1- m4_pattern_allow([^LIB@&t@OBJS$])
9286
m4trace:configure.in:10: -1- m4_pattern_allow([^LTLIBOBJS$])
9287
m4trace:configure.in:10: -1- _AC_AM_CONFIG_HEADER_HOOK([$ac_file])
9288
m4trace:configure.in:10: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS