1m4trace:/usr/share/aclocal/codeset.m4:21: -1- AC_DEFUN([AM_LANGINFO_CODESET], [
2  AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
3    [AC_TRY_LINK([#include <langinfo.h>],
4      [char* cs = nl_langinfo(CODESET);],
5      am_cv_langinfo_codeset=yes,
6      am_cv_langinfo_codeset=no)
7    ])
8  if test $am_cv_langinfo_codeset = yes; then
9    AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
10      [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
11  fi
12])
13m4trace:/usr/share/aclocal/gettext.m4:353: -1- AC_DEFUN([AM_GNU_GETTEXT], [
14  dnl Argument checking.
15  ifelse([$1], [], , [ifelse([$1], [external], , [ifelse([$1], [no-libtool], , [ifelse([$1], [use-libtool], ,
16    [errprint([ERROR: invalid first argument to AM_GNU_GETTEXT
17])])])])])
18  ifelse([$2], [], , [ifelse([$2], [need-ngettext], , [ifelse([$2], [need-formatstring-macros], ,
19    [errprint([ERROR: invalid second argument to AM_GNU_GETTEXT
20])])])])
21  define([gt_included_intl], ifelse([$1], [external], [no], [yes]))
22  define([gt_libtool_suffix_prefix], ifelse([$1], [use-libtool], [l], []))
23
24  AC_REQUIRE([AM_PO_SUBDIRS])dnl
25  ifelse(gt_included_intl, yes, [
26    AC_REQUIRE([AM_INTL_SUBDIR])dnl
27  ])
28
29  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
30  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
31  AC_REQUIRE([AC_LIB_RPATH])
32
33  dnl Sometimes libintl requires libiconv, so first search for libiconv.
34  dnl Ideally we would do this search only after the
35  dnl      if test "$USE_NLS" = "yes"; then
36  dnl        if test "$gt_cv_func_gnugettext_libc" != "yes"; then
37  dnl tests. But if configure.in invokes AM_ICONV after AM_GNU_GETTEXT
38  dnl the configure script would need to contain the same shell code
39  dnl again, outside any 'if'. There are two solutions:
40  dnl - Invoke AM_ICONV_LINKFLAGS_BODY here, outside any 'if'.
41  dnl - Control the expansions in more detail using AC_PROVIDE_IFELSE.
42  dnl Since AC_PROVIDE_IFELSE is only in autoconf >= 2.52 and not
43  dnl documented, we avoid it.
44  ifelse(gt_included_intl, yes, , [
45    AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
46  ])
47
48  dnl Sometimes, on MacOS X, libintl requires linking with CoreFoundation.
49  gt_INTL_MACOSX
50
51  dnl Set USE_NLS.
52  AM_NLS
53
54  ifelse(gt_included_intl, yes, [
55    BUILD_INCLUDED_LIBINTL=no
56    USE_INCLUDED_LIBINTL=no
57  ])
58  LIBINTL=
59  LTLIBINTL=
60  POSUB=
61
62  dnl If we use NLS figure out what method
63  if test "$USE_NLS" = "yes"; then
64    gt_use_preinstalled_gnugettext=no
65    ifelse(gt_included_intl, yes, [
66      AC_MSG_CHECKING([whether included gettext is requested])
67      AC_ARG_WITH(included-gettext,
68        [  --with-included-gettext use the GNU gettext library included here],
69        nls_cv_force_use_gnu_gettext=$withval,
70        nls_cv_force_use_gnu_gettext=no)
71      AC_MSG_RESULT($nls_cv_force_use_gnu_gettext)
72
73      nls_cv_use_gnu_gettext="$nls_cv_force_use_gnu_gettext"
74      if test "$nls_cv_force_use_gnu_gettext" != "yes"; then
75    ])
76        dnl User does not insist on using GNU NLS library.  Figure out what
77        dnl to use.  If GNU gettext is available we use this.  Else we have
78        dnl to fall back to GNU NLS library.
79
80        dnl Add a version number to the cache macros.
81        define([gt_api_version], ifelse([$2], [need-formatstring-macros], 3, ifelse([$2], [need-ngettext], 2, 1)))
82        define([gt_cv_func_gnugettext_libc], [gt_cv_func_gnugettext]gt_api_version[_libc])
83        define([gt_cv_func_gnugettext_libintl], [gt_cv_func_gnugettext]gt_api_version[_libintl])
84
85        AC_CACHE_CHECK([for GNU gettext in libc], gt_cv_func_gnugettext_libc,
86         [AC_TRY_LINK([#include <libintl.h>
87]ifelse([$2], [need-formatstring-macros],
88[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
89#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
90#endif
91changequote(,)dnl
92typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
93changequote([,])dnl
94], [])[extern int _nl_msg_cat_cntr;
95extern int *_nl_domain_bindings;],
96            [bindtextdomain ("", "");
97return * gettext ("")]ifelse([$2], [need-ngettext], [ + * ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_domain_bindings],
98            gt_cv_func_gnugettext_libc=yes,
99            gt_cv_func_gnugettext_libc=no)])
100
101        if test "$gt_cv_func_gnugettext_libc" != "yes"; then
102          dnl Sometimes libintl requires libiconv, so first search for libiconv.
103          ifelse(gt_included_intl, yes, , [
104            AM_ICONV_LINK
105          ])
106          dnl Search for libintl and define LIBINTL, LTLIBINTL and INCINTL
107          dnl accordingly. Don't use AC_LIB_LINKFLAGS_BODY([intl],[iconv])
108          dnl because that would add "-liconv" to LIBINTL and LTLIBINTL
109          dnl even if libiconv doesn't exist.
110          AC_LIB_LINKFLAGS_BODY([intl])
111          AC_CACHE_CHECK([for GNU gettext in libintl],
112            gt_cv_func_gnugettext_libintl,
113           [gt_save_CPPFLAGS="$CPPFLAGS"
114            CPPFLAGS="$CPPFLAGS $INCINTL"
115            gt_save_LIBS="$LIBS"
116            LIBS="$LIBS $LIBINTL"
117            dnl Now see whether libintl exists and does not depend on libiconv.
118            AC_TRY_LINK([#include <libintl.h>
119]ifelse([$2], [need-formatstring-macros],
120[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
121#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
122#endif
123changequote(,)dnl
124typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
125changequote([,])dnl
126], [])[extern int _nl_msg_cat_cntr;
127extern
128#ifdef __cplusplus
129"C"
130#endif
131const char *_nl_expand_alias (const char *);],
132              [bindtextdomain ("", "");
133return * gettext ("")]ifelse([$2], [need-ngettext], [ + * ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias ("")],
134              gt_cv_func_gnugettext_libintl=yes,
135              gt_cv_func_gnugettext_libintl=no)
136            dnl Now see whether libintl exists and depends on libiconv.
137            if test "$gt_cv_func_gnugettext_libintl" != yes && test -n "$LIBICONV"; then
138              LIBS="$LIBS $LIBICONV"
139              AC_TRY_LINK([#include <libintl.h>
140]ifelse([$2], [need-formatstring-macros],
141[#ifndef __GNU_GETTEXT_SUPPORTED_REVISION
142#define __GNU_GETTEXT_SUPPORTED_REVISION(major) ((major) == 0 ? 0 : -1)
143#endif
144changequote(,)dnl
145typedef int array [2 * (__GNU_GETTEXT_SUPPORTED_REVISION(0) >= 1) - 1];
146changequote([,])dnl
147], [])[extern int _nl_msg_cat_cntr;
148extern
149#ifdef __cplusplus
150"C"
151#endif
152const char *_nl_expand_alias (const char *);],
153                [bindtextdomain ("", "");
154return * gettext ("")]ifelse([$2], [need-ngettext], [ + * ngettext ("", "", 0)], [])[ + _nl_msg_cat_cntr + *_nl_expand_alias ("")],
155               [LIBINTL="$LIBINTL $LIBICONV"
156                LTLIBINTL="$LTLIBINTL $LTLIBICONV"
157                gt_cv_func_gnugettext_libintl=yes
158               ])
159            fi
160            CPPFLAGS="$gt_save_CPPFLAGS"
161            LIBS="$gt_save_LIBS"])
162        fi
163
164        dnl If an already present or preinstalled GNU gettext() is found,
165        dnl use it.  But if this macro is used in GNU gettext, and GNU
166        dnl gettext is already preinstalled in libintl, we update this
167        dnl libintl.  (Cf. the install rule in intl/Makefile.in.)
168        if test "$gt_cv_func_gnugettext_libc" = "yes" \
169           || { test "$gt_cv_func_gnugettext_libintl" = "yes" \
170                && test "$PACKAGE" != gettext-runtime \
171                && test "$PACKAGE" != gettext-tools; }; then
172          gt_use_preinstalled_gnugettext=yes
173        else
174          dnl Reset the values set by searching for libintl.
175          LIBINTL=
176          LTLIBINTL=
177          INCINTL=
178        fi
179
180    ifelse(gt_included_intl, yes, [
181        if test "$gt_use_preinstalled_gnugettext" != "yes"; then
182          dnl GNU gettext is not found in the C library.
183          dnl Fall back on included GNU gettext library.
184          nls_cv_use_gnu_gettext=yes
185        fi
186      fi
187
188      if test "$nls_cv_use_gnu_gettext" = "yes"; then
189        dnl Mark actions used to generate GNU NLS library.
190        BUILD_INCLUDED_LIBINTL=yes
191        USE_INCLUDED_LIBINTL=yes
192        LIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LIBICONV"
193        LTLIBINTL="ifelse([$3],[],\${top_builddir}/intl,[$3])/libintl.[]gt_libtool_suffix_prefix[]a $LTLIBICONV"
194        LIBS=`echo " $LIBS " | sed -e 's/ -lintl / /' -e 's/^ //' -e 's/ $//'`
195      fi
196
197      CATOBJEXT=
198      if test "$gt_use_preinstalled_gnugettext" = "yes" \
199         || test "$nls_cv_use_gnu_gettext" = "yes"; then
200        dnl Mark actions to use GNU gettext tools.
201        CATOBJEXT=.gmo
202      fi
203    ])
204
205    if test -n "$INTL_MACOSX_LIBS"; then
206      if test "$gt_use_preinstalled_gnugettext" = "yes" \
207         || test "$nls_cv_use_gnu_gettext" = "yes"; then
208        dnl Some extra flags are needed during linking.
209        LIBINTL="$LIBINTL $INTL_MACOSX_LIBS"
210        LTLIBINTL="$LTLIBINTL $INTL_MACOSX_LIBS"
211      fi
212    fi
213
214    if test "$gt_use_preinstalled_gnugettext" = "yes" \
215       || test "$nls_cv_use_gnu_gettext" = "yes"; then
216      AC_DEFINE(ENABLE_NLS, 1,
217        [Define to 1 if translation of program messages to the user's native language
218   is requested.])
219    else
220      USE_NLS=no
221    fi
222  fi
223
224  AC_MSG_CHECKING([whether to use NLS])
225  AC_MSG_RESULT([$USE_NLS])
226  if test "$USE_NLS" = "yes"; then
227    AC_MSG_CHECKING([where the gettext function comes from])
228    if test "$gt_use_preinstalled_gnugettext" = "yes"; then
229      if test "$gt_cv_func_gnugettext_libintl" = "yes"; then
230        gt_source="external libintl"
231      else
232        gt_source="libc"
233      fi
234    else
235      gt_source="included intl directory"
236    fi
237    AC_MSG_RESULT([$gt_source])
238  fi
239
240  if test "$USE_NLS" = "yes"; then
241
242    if test "$gt_use_preinstalled_gnugettext" = "yes"; then
243      if test "$gt_cv_func_gnugettext_libintl" = "yes"; then
244        AC_MSG_CHECKING([how to link with libintl])
245        AC_MSG_RESULT([$LIBINTL])
246        AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCINTL])
247      fi
248
249      dnl For backward compatibility. Some packages may be using this.
250      AC_DEFINE(HAVE_GETTEXT, 1,
251       [Define if the GNU gettext() function is already present or preinstalled.])
252      AC_DEFINE(HAVE_DCGETTEXT, 1,
253       [Define if the GNU dcgettext() function is already present or preinstalled.])
254    fi
255
256    dnl We need to process the po/ directory.
257    POSUB=po
258  fi
259
260  ifelse(gt_included_intl, yes, [
261    dnl If this is used in GNU gettext we have to set BUILD_INCLUDED_LIBINTL
262    dnl to 'yes' because some of the testsuite requires it.
263    if test "$PACKAGE" = gettext-runtime || test "$PACKAGE" = gettext-tools; then
264      BUILD_INCLUDED_LIBINTL=yes
265    fi
266
267    dnl Make all variables we use known to autoconf.
268    AC_SUBST(BUILD_INCLUDED_LIBINTL)
269    AC_SUBST(USE_INCLUDED_LIBINTL)
270    AC_SUBST(CATOBJEXT)
271
272    dnl For backward compatibility. Some configure.ins may be using this.
273    nls_cv_header_intl=
274    nls_cv_header_libgt=
275
276    dnl For backward compatibility. Some Makefiles may be using this.
277    DATADIRNAME=share
278    AC_SUBST(DATADIRNAME)
279
280    dnl For backward compatibility. Some Makefiles may be using this.
281    INSTOBJEXT=.mo
282    AC_SUBST(INSTOBJEXT)
283
284    dnl For backward compatibility. Some Makefiles may be using this.
285    GENCAT=gencat
286    AC_SUBST(GENCAT)
287
288    dnl For backward compatibility. Some Makefiles may be using this.
289    INTLOBJS=
290    if test "$USE_INCLUDED_LIBINTL" = yes; then
291      INTLOBJS="\$(GETTOBJS)"
292    fi
293    AC_SUBST(INTLOBJS)
294
295    dnl Enable libtool support if the surrounding package wishes it.
296    INTL_LIBTOOL_SUFFIX_PREFIX=gt_libtool_suffix_prefix
297    AC_SUBST(INTL_LIBTOOL_SUFFIX_PREFIX)
298  ])
299
300  dnl For backward compatibility. Some Makefiles may be using this.
301  INTLLIBS="$LIBINTL"
302  AC_SUBST(INTLLIBS)
303
304  dnl Make all documented variables known to autoconf.
305  AC_SUBST(LIBINTL)
306  AC_SUBST(LTLIBINTL)
307  AC_SUBST(POSUB)
308])
309m4trace:/usr/share/aclocal/gettext.m4:481: -1- AC_DEFUN([AM_INTL_SUBDIR], [
310  AC_REQUIRE([AC_PROG_INSTALL])dnl
311  AC_REQUIRE([AM_MKINSTALLDIRS])dnl
312  AC_REQUIRE([AC_PROG_CC])dnl
313  AC_REQUIRE([AC_CANONICAL_HOST])dnl
314  AC_REQUIRE([gt_GLIBC2])dnl
315  AC_REQUIRE([AC_PROG_RANLIB])dnl
316  AC_REQUIRE([AC_ISC_POSIX])dnl
317  AC_REQUIRE([AC_HEADER_STDC])dnl
318  AC_REQUIRE([AC_C_CONST])dnl
319  AC_REQUIRE([bh_C_SIGNED])dnl
320  AC_REQUIRE([AC_C_INLINE])dnl
321  AC_REQUIRE([AC_TYPE_OFF_T])dnl
322  AC_REQUIRE([AC_TYPE_SIZE_T])dnl
323  AC_REQUIRE([gl_AC_TYPE_LONG_LONG])dnl
324  AC_REQUIRE([gt_TYPE_LONGDOUBLE])dnl
325  AC_REQUIRE([gt_TYPE_WCHAR_T])dnl
326  AC_REQUIRE([gt_TYPE_WINT_T])dnl
327  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
328  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
329  AC_REQUIRE([gt_TYPE_INTMAX_T])
330  AC_REQUIRE([gt_PRINTF_POSIX])
331  AC_REQUIRE([AC_FUNC_ALLOCA])dnl
332  AC_REQUIRE([AC_FUNC_MMAP])dnl
333  AC_REQUIRE([gl_GLIBC21])dnl
334  AC_REQUIRE([gt_INTDIV0])dnl
335  AC_REQUIRE([gl_AC_TYPE_UINTMAX_T])dnl
336  AC_REQUIRE([gt_HEADER_INTTYPES_H])dnl
337  AC_REQUIRE([gt_INTTYPES_PRI])dnl
338  AC_REQUIRE([gl_XSIZE])dnl
339  AC_REQUIRE([gt_INTL_MACOSX])dnl
340
341  AC_CHECK_TYPE([ptrdiff_t], ,
342    [AC_DEFINE([ptrdiff_t], [long],
343       [Define as the type of the result of subtracting two pointers, if the system doesn't define it.])
344    ])
345  AC_CHECK_HEADERS([argz.h limits.h locale.h nl_types.h malloc.h stddef.h \
346stdlib.h string.h unistd.h sys/param.h])
347  AC_CHECK_FUNCS([asprintf fwprintf getcwd getegid geteuid getgid getuid \
348mempcpy munmap putenv setenv setlocale snprintf stpcpy strcasecmp strdup \
349strtoul tsearch wcslen __argz_count __argz_stringify __argz_next \
350__fsetlocking])
351
352  dnl Use the _snprintf function only if it is declared (because on NetBSD it
353  dnl is defined as a weak alias of snprintf; we prefer to use the latter).
354  gt_CHECK_DECL(_snprintf, [#include <stdio.h>])
355  gt_CHECK_DECL(_snwprintf, [#include <stdio.h>])
356
357  dnl Use the *_unlocked functions only if they are declared.
358  dnl (because some of them were defined without being declared in Solaris
359  dnl 2.5.1 but were removed in Solaris 2.6, whereas we want binaries built
360  dnl on Solaris 2.5.1 to run on Solaris 2.6).
361  dnl Don't use AC_CHECK_DECLS because it isn't supported in autoconf-2.13.
362  gt_CHECK_DECL(feof_unlocked, [#include <stdio.h>])
363  gt_CHECK_DECL(fgets_unlocked, [#include <stdio.h>])
364  gt_CHECK_DECL(getc_unlocked, [#include <stdio.h>])
365
366  case $gt_cv_func_printf_posix in
367    *yes) HAVE_POSIX_PRINTF=1 ;;
368    *) HAVE_POSIX_PRINTF=0 ;;
369  esac
370  AC_SUBST([HAVE_POSIX_PRINTF])
371  if test "$ac_cv_func_asprintf" = yes; then
372    HAVE_ASPRINTF=1
373  else
374    HAVE_ASPRINTF=0
375  fi
376  AC_SUBST([HAVE_ASPRINTF])
377  if test "$ac_cv_func_snprintf" = yes; then
378    HAVE_SNPRINTF=1
379  else
380    HAVE_SNPRINTF=0
381  fi
382  AC_SUBST([HAVE_SNPRINTF])
383  if test "$ac_cv_func_wprintf" = yes; then
384    HAVE_WPRINTF=1
385  else
386    HAVE_WPRINTF=0
387  fi
388  AC_SUBST([HAVE_WPRINTF])
389
390  AM_ICONV
391  AM_LANGINFO_CODESET
392  if test $ac_cv_header_locale_h = yes; then
393    gt_LC_MESSAGES
394  fi
395
396  if test -n "$INTL_MACOSX_LIBS"; then
397    CPPFLAGS="$CPPFLAGS -I/System/Library/Frameworks/CoreFoundation.framework/Headers"
398  fi
399
400  dnl intl/plural.c is generated from intl/plural.y. It requires bison,
401  dnl because plural.y uses bison specific features. It requires at least
402  dnl bison-1.26 because earlier versions generate a plural.c that doesn't
403  dnl compile.
404  dnl bison is only needed for the maintainer (who touches plural.y). But in
405  dnl order to avoid separate Makefiles or --enable-maintainer-mode, we put
406  dnl the rule in general Makefile. Now, some people carelessly touch the
407  dnl files or have a broken "make" program, hence the plural.c rule will
408  dnl sometimes fire. To avoid an error, defines BISON to ":" if it is not
409  dnl present or too old.
410  AC_CHECK_PROGS([INTLBISON], [bison])
411  if test -z "$INTLBISON"; then
412    ac_verc_fail=yes
413  else
414    dnl Found it, now check the version.
415    AC_MSG_CHECKING([version of bison])
416changequote(<<,>>)dnl
417    ac_prog_version=`$INTLBISON --version 2>&1 | sed -n 's/^.*GNU Bison.* \([0-9]*\.[0-9.]*\).*$/\1/p'`
418    case $ac_prog_version in
419      '') ac_prog_version="v. ?.??, bad"; ac_verc_fail=yes;;
420      1.2[6-9]* | 1.[3-9][0-9]* | [2-9].*)
421changequote([,])dnl
422         ac_prog_version="$ac_prog_version, ok"; ac_verc_fail=no;;
423      *) ac_prog_version="$ac_prog_version, bad"; ac_verc_fail=yes;;
424    esac
425    AC_MSG_RESULT([$ac_prog_version])
426  fi
427  if test $ac_verc_fail = yes; then
428    INTLBISON=:
429  fi
430])
431m4trace:/usr/share/aclocal/gettext.m4:525: -1- AC_DEFUN([gt_INTL_MACOSX], [
432  dnl Check for API introduced in MacOS X 10.2.
433  AC_CACHE_CHECK([for CFPreferencesCopyAppValue],
434    gt_cv_func_CFPreferencesCopyAppValue,
435    [gt_save_CPPFLAGS="$CPPFLAGS"
436     CPPFLAGS="$CPPFLAGS -I/System/Library/Frameworks/CoreFoundation.framework/Headers"
437     gt_save_LIBS="$LIBS"
438     LIBS="$LIBS -framework CoreFoundation"
439     AC_TRY_LINK([#include <CFPreferences.h>],
440       [CFPreferencesCopyAppValue(NULL, NULL)],
441       [gt_cv_func_CFPreferencesCopyAppValue=yes],
442       [gt_cv_func_CFPreferencesCopyAppValue=no])
443     CPPFLAGS="$gt_save_CPPFLAGS"
444     LIBS="$gt_save_LIBS"])
445  if test $gt_cv_func_CFPreferencesCopyAppValue = yes; then
446    AC_DEFINE([HAVE_CFPREFERENCESCOPYAPPVALUE], 1,
447      [Define to 1 if you have the MacOS X function CFPreferencesCopyAppValue in the CoreFoundation framework.])
448  fi
449  dnl Check for API introduced in MacOS X 10.3.
450  AC_CACHE_CHECK([for CFLocaleCopyCurrent], gt_cv_func_CFLocaleCopyCurrent,
451    [gt_save_CPPFLAGS="$CPPFLAGS"
452     CPPFLAGS="$CPPFLAGS -I/System/Library/Frameworks/CoreFoundation.framework/Headers"
453     gt_save_LIBS="$LIBS"
454     LIBS="$LIBS -framework CoreFoundation"
455     AC_TRY_LINK([#include <CFLocale.h>], [CFLocaleCopyCurrent();],
456       [gt_cv_func_CFLocaleCopyCurrent=yes],
457       [gt_cv_func_CFLocaleCopyCurrent=no])
458     CPPFLAGS="$gt_save_CPPFLAGS"
459     LIBS="$gt_save_LIBS"])
460  if test $gt_cv_func_CFLocaleCopyCurrent = yes; then
461    AC_DEFINE([HAVE_CFLOCALECOPYCURRENT], 1,
462      [Define to 1 if you have the MacOS X function CFLocaleCopyCurrent in the CoreFoundation framework.])
463  fi
464  INTL_MACOSX_LIBS=
465  if test $gt_cv_func_CFPreferencesCopyAppValue = yes || test $gt_cv_func_CFLocaleCopyCurrent = yes; then
466    INTL_MACOSX_LIBS="-Wl,-framework -Wl,CoreFoundation"
467  fi
468  AC_SUBST([INTL_MACOSX_LIBS])
469])
470m4trace:/usr/share/aclocal/gettext.m4:545: -1- AC_DEFUN([gt_CHECK_DECL], [
471  AC_CACHE_CHECK([whether $1 is declared], ac_cv_have_decl_$1,
472    [AC_TRY_COMPILE([$2], [
473#ifndef $1
474  char *p = (char *) $1;
475#endif
476], ac_cv_have_decl_$1=yes, ac_cv_have_decl_$1=no)])
477  if test $ac_cv_have_decl_$1 = yes; then
478    gt_value=1
479  else
480    gt_value=0
481  fi
482  AC_DEFINE_UNQUOTED([HAVE_DECL_]translit($1, [a-z], [A-Z]), [$gt_value],
483    [Define to 1 if you have the declaration of `$1', and to 0 if you don't.])
484])
485m4trace:/usr/share/aclocal/gettext.m4:549: -1- AC_DEFUN([AM_GNU_GETTEXT_VERSION], [])
486m4trace:/usr/share/aclocal/glib-gettext.m4:398: -1- AC_DEFUN([AM_GLIB_GNU_GETTEXT], [GLIB_GNU_GETTEXT($@)])
487m4trace:/usr/share/aclocal/glib-gettext.m4:398: -1- AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR], [GLIB_DEFINE_LOCALEDIR($@)])
488m4trace:/usr/share/aclocal/glibc2.m4:30: -1- AC_DEFUN([gt_GLIBC2], [
489    AC_CACHE_CHECK(whether we are using the GNU C Library 2 or newer,
490      ac_cv_gnu_library_2,
491      [AC_EGREP_CPP([Lucky GNU user],
492	[
493#include <features.h>
494#ifdef __GNU_LIBRARY__
495 #if (__GLIBC__ >= 2)
496  Lucky GNU user
497 #endif
498#endif
499	],
500	ac_cv_gnu_library_2=yes,
501	ac_cv_gnu_library_2=no)
502      ]
503    )
504    AC_SUBST(GLIBC2)
505    GLIBC2="$ac_cv_gnu_library_2"
506
507])
508m4trace:/usr/share/aclocal/glibc21.m4:30: -1- AC_DEFUN([gl_GLIBC21], [
509    AC_CACHE_CHECK(whether we are using the GNU C Library 2.1 or newer,
510      ac_cv_gnu_library_2_1,
511      [AC_EGREP_CPP([Lucky GNU user],
512	[
513#include <features.h>
514#ifdef __GNU_LIBRARY__
515 #if (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 1) || (__GLIBC__ > 2)
516  Lucky GNU user
517 #endif
518#endif
519	],
520	ac_cv_gnu_library_2_1=yes,
521	ac_cv_gnu_library_2_1=no)
522      ]
523    )
524    AC_SUBST(GLIBC21)
525    GLIBC21="$ac_cv_gnu_library_2_1"
526
527])
528m4trace:/usr/share/aclocal/iconv.m4:18: -1- AC_DEFUN([AM_ICONV_LINKFLAGS_BODY], [
529  dnl Prerequisites of AC_LIB_LINKFLAGS_BODY.
530  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
531  AC_REQUIRE([AC_LIB_RPATH])
532
533  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
534  dnl accordingly.
535  AC_LIB_LINKFLAGS_BODY([iconv])
536])
537m4trace:/usr/share/aclocal/iconv.m4:73: -1- AC_DEFUN([AM_ICONV_LINK], [
538  dnl Some systems have iconv in libc, some have it in libiconv (OSF/1 and
539  dnl those with the standalone portable GNU libiconv installed).
540
541  dnl Search for libiconv and define LIBICONV, LTLIBICONV and INCICONV
542  dnl accordingly.
543  AC_REQUIRE([AM_ICONV_LINKFLAGS_BODY])
544
545  dnl Add $INCICONV to CPPFLAGS before performing the following checks,
546  dnl because if the user has installed libiconv and not disabled its use
547  dnl via --without-libiconv-prefix, he wants to use it. The first
548  dnl AC_TRY_LINK will then fail, the second AC_TRY_LINK will succeed.
549  am_save_CPPFLAGS="$CPPFLAGS"
550  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INCICONV])
551
552  AC_CACHE_CHECK(for iconv, am_cv_func_iconv, [
553    am_cv_func_iconv="no, consider installing GNU libiconv"
554    am_cv_lib_iconv=no
555    AC_TRY_LINK([#include <stdlib.h>
556#include <iconv.h>],
557      [iconv_t cd = iconv_open("","");
558       iconv(cd,NULL,NULL,NULL,NULL);
559       iconv_close(cd);],
560      am_cv_func_iconv=yes)
561    if test "$am_cv_func_iconv" != yes; then
562      am_save_LIBS="$LIBS"
563      LIBS="$LIBS $LIBICONV"
564      AC_TRY_LINK([#include <stdlib.h>
565#include <iconv.h>],
566        [iconv_t cd = iconv_open("","");
567         iconv(cd,NULL,NULL,NULL,NULL);
568         iconv_close(cd);],
569        am_cv_lib_iconv=yes
570        am_cv_func_iconv=yes)
571      LIBS="$am_save_LIBS"
572    fi
573  ])
574  if test "$am_cv_func_iconv" = yes; then
575    AC_DEFINE(HAVE_ICONV, 1, [Define if you have the iconv() function.])
576  fi
577  if test "$am_cv_lib_iconv" = yes; then
578    AC_MSG_CHECKING([how to link with libiconv])
579    AC_MSG_RESULT([$LIBICONV])
580  else
581    dnl If $LIBICONV didn't lead to a usable library, we don't need $INCICONV
582    dnl either.
583    CPPFLAGS="$am_save_CPPFLAGS"
584    LIBICONV=
585    LTLIBICONV=
586  fi
587  AC_SUBST(LIBICONV)
588  AC_SUBST(LTLIBICONV)
589])
590m4trace:/usr/share/aclocal/iconv.m4:101: -1- AC_DEFUN([AM_ICONV], [
591  AM_ICONV_LINK
592  if test "$am_cv_func_iconv" = yes; then
593    AC_MSG_CHECKING([for iconv declaration])
594    AC_CACHE_VAL(am_cv_proto_iconv, [
595      AC_TRY_COMPILE([
596#include <stdlib.h>
597#include <iconv.h>
598extern
599#ifdef __cplusplus
600"C"
601#endif
602#if defined(__STDC__) || defined(__cplusplus)
603size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
604#else
605size_t iconv();
606#endif
607], [], am_cv_proto_iconv_arg1="", am_cv_proto_iconv_arg1="const")
608      am_cv_proto_iconv="extern size_t iconv (iconv_t cd, $am_cv_proto_iconv_arg1 char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);"])
609    am_cv_proto_iconv=`echo "[$]am_cv_proto_iconv" | tr -s ' ' | sed -e 's/( /(/'`
610    AC_MSG_RESULT([$]{ac_t:-
611         }[$]am_cv_proto_iconv)
612    AC_DEFINE_UNQUOTED(ICONV_CONST, $am_cv_proto_iconv_arg1,
613      [Define as const if the declaration of iconv() needs const.])
614  fi
615])
616m4trace:/usr/share/aclocal/intdiv0.m4:70: -1- AC_DEFUN([gt_INTDIV0], [
617  AC_REQUIRE([AC_PROG_CC])dnl
618  AC_REQUIRE([AC_CANONICAL_HOST])dnl
619
620  AC_CACHE_CHECK([whether integer division by zero raises SIGFPE],
621    gt_cv_int_divbyzero_sigfpe,
622    [
623      AC_TRY_RUN([
624#include <stdlib.h>
625#include <signal.h>
626
627static void
628#ifdef __cplusplus
629sigfpe_handler (int sig)
630#else
631sigfpe_handler (sig) int sig;
632#endif
633{
634  /* Exit with code 0 if SIGFPE, with code 1 if any other signal.  */
635  exit (sig != SIGFPE);
636}
637
638int x = 1;
639int y = 0;
640int z;
641int nan;
642
643int main ()
644{
645  signal (SIGFPE, sigfpe_handler);
646/* IRIX and AIX (when "xlc -qcheck" is used) yield signal SIGTRAP.  */
647#if (defined (__sgi) || defined (_AIX)) && defined (SIGTRAP)
648  signal (SIGTRAP, sigfpe_handler);
649#endif
650/* Linux/SPARC yields signal SIGILL.  */
651#if defined (__sparc__) && defined (__linux__)
652  signal (SIGILL, sigfpe_handler);
653#endif
654
655  z = x / y;
656  nan = y / y;
657  exit (1);
658}
659], gt_cv_int_divbyzero_sigfpe=yes, gt_cv_int_divbyzero_sigfpe=no,
660        [
661          # Guess based on the CPU.
662          case "$host_cpu" in
663            alpha* | i[34567]86 | m68k | s390*)
664              gt_cv_int_divbyzero_sigfpe="guessing yes";;
665            *)
666              gt_cv_int_divbyzero_sigfpe="guessing no";;
667          esac
668        ])
669    ])
670  case "$gt_cv_int_divbyzero_sigfpe" in
671    *yes) value=1;;
672    *) value=0;;
673  esac
674  AC_DEFINE_UNQUOTED(INTDIV0_RAISES_SIGFPE, $value,
675    [Define if integer division by zero raises signal SIGFPE.])
676])
677m4trace:/usr/share/aclocal/intltool.m4:211: -1- AC_DEFUN([IT_PROG_INTLTOOL], [
678
679if test -n "$1"; then
680    AC_MSG_CHECKING(for intltool >= $1)
681
682    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ printf "%d", $[1] * 100 + $[2]; }'`
683    INTLTOOL_APPLIED_VERSION=`awk -F\" '/\\$VERSION / { printf $[2]; }'  < ${ac_aux_dir}/intltool-update.in`
684    changequote({{,}})
685    INTLTOOL_APPLIED_VERSION_AS_INT=`awk -F\" '/\\$VERSION / { split(${{2}}, VERSION, "."); printf "%d\n", VERSION[1] * 100 + VERSION[2];}' < ${ac_aux_dir}/intltool-update.in`
686    changequote([,])
687
688    if test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT"; then
689	AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
690    else
691	AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found. Your intltool is too old.  You need intltool $1 or later.])
692	exit 1
693    fi
694fi
695
696  INTLTOOL_DESKTOP_RULE='%.desktop:   %.desktop.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
697INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
698     INTLTOOL_KEYS_RULE='%.keys:      %.keys.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
699     INTLTOOL_PROP_RULE='%.prop:      %.prop.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
700      INTLTOOL_OAF_RULE='%.oaf:       %.oaf.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
701     INTLTOOL_PONG_RULE='%.pong:      %.pong.in      $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
702   INTLTOOL_SERVER_RULE='%.server:    %.server.in    $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
703    INTLTOOL_SHEET_RULE='%.sheet:     %.sheet.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
704INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
705       INTLTOOL_UI_RULE='%.ui:        %.ui.in        $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
706      INTLTOOL_XML_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
707      INTLTOOL_XML_NOMERGE_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@'
708      INTLTOOL_XAM_RULE='%.xam:       %.xml.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
709      INTLTOOL_KBD_RULE='%.kbd:       %.kbd.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
710    INTLTOOL_CAVES_RULE='%.caves:     %.caves.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
711  INTLTOOL_SCHEMAS_RULE='%.schemas:   %.schemas.in   $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
712    INTLTOOL_THEME_RULE='%.theme:     %.theme.in     $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< [$]@'
713
714AC_SUBST(INTLTOOL_DESKTOP_RULE)
715AC_SUBST(INTLTOOL_DIRECTORY_RULE)
716AC_SUBST(INTLTOOL_KEYS_RULE)
717AC_SUBST(INTLTOOL_PROP_RULE)
718AC_SUBST(INTLTOOL_OAF_RULE)
719AC_SUBST(INTLTOOL_PONG_RULE)
720AC_SUBST(INTLTOOL_SERVER_RULE)
721AC_SUBST(INTLTOOL_SHEET_RULE)
722AC_SUBST(INTLTOOL_SOUNDLIST_RULE)
723AC_SUBST(INTLTOOL_UI_RULE)
724AC_SUBST(INTLTOOL_XAM_RULE)
725AC_SUBST(INTLTOOL_KBD_RULE)
726AC_SUBST(INTLTOOL_XML_RULE)
727AC_SUBST(INTLTOOL_XML_NOMERGE_RULE)
728AC_SUBST(INTLTOOL_CAVES_RULE)
729AC_SUBST(INTLTOOL_SCHEMAS_RULE)
730AC_SUBST(INTLTOOL_THEME_RULE)
731
732# Use the tools built into the package, not the ones that are installed.
733
734INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract'
735INTLTOOL_MERGE='$(top_builddir)/intltool-merge'
736INTLTOOL_UPDATE='$(top_builddir)/intltool-update'
737
738AC_SUBST(INTLTOOL_EXTRACT)
739AC_SUBST(INTLTOOL_MERGE)
740AC_SUBST(INTLTOOL_UPDATE)
741
742AC_PATH_PROG(INTLTOOL_PERL, perl)
743if test -z "$INTLTOOL_PERL"; then
744   AC_MSG_ERROR([perl not found; required for intltool])
745fi
746if test -z "`$INTLTOOL_PERL -v | fgrep '5.' 2> /dev/null`"; then
747   AC_MSG_ERROR([perl 5.x required for intltool])
748fi
749if test "x$2" != "xno-xml"; then
750   AC_MSG_CHECKING([for XML::Parser])
751   if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
752       AC_MSG_RESULT([ok])
753   else
754       AC_MSG_ERROR([XML::Parser perl module is required for intltool])
755   fi
756fi
757
758AC_PATH_PROG(INTLTOOL_ICONV, iconv, iconv)
759AC_PATH_PROG(INTLTOOL_MSGFMT, msgfmt, msgfmt)
760AC_PATH_PROG(INTLTOOL_MSGMERGE, msgmerge, msgmerge)
761AC_PATH_PROG(INTLTOOL_XGETTEXT, xgettext, xgettext)
762
763# Remove file type tags (using []) from po/POTFILES.
764
765ifdef([AC_DIVERSION_ICMDS],[
766  AC_DIVERT_PUSH(AC_DIVERSION_ICMDS)
767      changequote(,)
768      mv -f po/POTFILES po/POTFILES.tmp
769      sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES
770      rm -f po/POTFILES.tmp
771      changequote([,])
772  AC_DIVERT_POP()
773],[
774  ifdef([AC_CONFIG_COMMANDS_PRE],[
775    AC_CONFIG_COMMANDS_PRE([
776        changequote(,)
777        mv -f po/POTFILES po/POTFILES.tmp
778        sed -e '/\[encoding.*\]/d' -e 's/\[.*\] *//' < po/POTFILES.tmp > po/POTFILES
779        rm -f po/POTFILES.tmp
780        changequote([,])
781    ])
782  ])
783
784############################################################################
785## Take this bit from AM_PROG_MKDIR_P to set mkdir_p for automake 1.4 users
786############################################################################
787if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
788  # Keeping the `.' argument allows $(mkdir_p) to be used without
789  # argument.  Indeed, we sometimes output rules like
790  #   $(mkdir_p) $(somedir)
791  # where $(somedir) is conditionally defined.
792  # (`test -n '$(somedir)' && $(mkdir_p) $(somedir)' is a more
793  # expensive solution, as it forces Make to start a sub-shell.)
794  mkdir_p='mkdir -p -- .'
795else
796  # On NextStep and OpenStep, the `mkdir' command does not
797  # recognize any option.  It will interpret all options as
798  # directories to create, and then abort because `.' already
799  # exists.
800  for d in ./-p ./--version;
801  do
802    test -d $d && rmdir $d
803  done
804  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
805  if test -f "$ac_aux_dir/mkinstalldirs"; then
806    mkdir_p='$(mkinstalldirs)'
807  else
808    mkdir_p='$(install_sh) -d'
809  fi
810fi
811AC_SUBST([mkdir_p])
812])
813
814# Manually sed perl in so people don't have to put the intltool scripts in AC_OUTPUT.
815
816AC_CONFIG_COMMANDS([intltool], [
817
818intltool_edit="-e 's#@INTLTOOL_EXTRACT@#`pwd`/intltool-extract#g' \
819               -e 's#@INTLTOOL_ICONV@#${INTLTOOL_ICONV}#g' \
820               -e 's#@INTLTOOL_MSGFMT@#${INTLTOOL_MSGFMT}#g' \
821               -e 's#@INTLTOOL_MSGMERGE@#${INTLTOOL_MSGMERGE}#g' \
822               -e 's#@INTLTOOL_XGETTEXT@#${INTLTOOL_XGETTEXT}#g' \
823               -e 's#@INTLTOOL_PERL@#${INTLTOOL_PERL}#g'"
824
825eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-extract.in \
826  > intltool-extract.out
827if cmp -s intltool-extract intltool-extract.out 2>/dev/null; then
828  rm -f intltool-extract.out
829else
830  mv -f intltool-extract.out intltool-extract
831fi
832chmod ugo+x intltool-extract
833chmod u+w intltool-extract
834
835eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-merge.in \
836  > intltool-merge.out
837if cmp -s intltool-merge intltool-merge.out 2>/dev/null; then
838  rm -f intltool-merge.out
839else
840  mv -f intltool-merge.out intltool-merge
841fi
842chmod ugo+x intltool-merge
843chmod u+w intltool-merge
844
845eval sed ${intltool_edit} < ${ac_aux_dir}/intltool-update.in \
846  > intltool-update.out
847if cmp -s intltool-update intltool-update.out 2>/dev/null; then
848  rm -f intltool-update.out
849else
850  mv -f intltool-update.out intltool-update
851fi
852chmod ugo+x intltool-update
853chmod u+w intltool-update
854
855], INTLTOOL_PERL='${INTLTOOL_PERL}' ac_aux_dir=${ac_aux_dir}
856INTLTOOL_EXTRACT='${INTLTOOL_EXTRACT}' ICONV='${INTLTOOL_ICONV}'
857MSGFMT='${INTLTOOL_MSGFMT}' MSGMERGE='${INTLTOOL_MSGMERGE}'
858XGETTEXT='${INTLTOOL_XGETTEXT}')
859
860])
861m4trace:/usr/share/aclocal/intltool.m4:214: -1- AC_DEFUN([AC_PROG_INTLTOOL], [IT_PROG_INTLTOOL($@)])
862m4trace:/usr/share/aclocal/intmax.m4:30: -1- AC_DEFUN([gt_TYPE_INTMAX_T], [
863  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
864  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
865  AC_CACHE_CHECK(for intmax_t, gt_cv_c_intmax_t,
866    [AC_TRY_COMPILE([
867#include <stddef.h>
868#include <stdlib.h>
869#if HAVE_STDINT_H_WITH_UINTMAX
870#include <stdint.h>
871#endif
872#if HAVE_INTTYPES_H_WITH_UINTMAX
873#include <inttypes.h>
874#endif
875], [intmax_t x = -1;], gt_cv_c_intmax_t=yes, gt_cv_c_intmax_t=no)])
876  if test $gt_cv_c_intmax_t = yes; then
877    AC_DEFINE(HAVE_INTMAX_T, 1,
878      [Define if you have the 'intmax_t' type in <stdint.h> or <inttypes.h>.])
879  fi
880])
881m4trace:/usr/share/aclocal/inttypes-pri.m4:30: -1- AC_DEFUN([gt_INTTYPES_PRI], [
882  AC_REQUIRE([gt_HEADER_INTTYPES_H])
883  if test $gt_cv_header_inttypes_h = yes; then
884    AC_CACHE_CHECK([whether the inttypes.h PRIxNN macros are broken],
885      gt_cv_inttypes_pri_broken,
886      [
887        AC_TRY_COMPILE([#include <inttypes.h>
888#ifdef PRId32
889char *p = PRId32;
890#endif
891], [], gt_cv_inttypes_pri_broken=no, gt_cv_inttypes_pri_broken=yes)
892      ])
893  fi
894  if test "$gt_cv_inttypes_pri_broken" = yes; then
895    AC_DEFINE_UNQUOTED(PRI_MACROS_BROKEN, 1,
896      [Define if <inttypes.h> exists and defines unusable PRI* macros.])
897  fi
898])
899m4trace:/usr/share/aclocal/inttypes.m4:25: -1- AC_DEFUN([gt_HEADER_INTTYPES_H], [
900  AC_CACHE_CHECK([for inttypes.h], gt_cv_header_inttypes_h,
901  [
902    AC_TRY_COMPILE(
903      [#include <sys/types.h>
904#include <inttypes.h>],
905      [], gt_cv_header_inttypes_h=yes, gt_cv_header_inttypes_h=no)
906  ])
907  if test $gt_cv_header_inttypes_h = yes; then
908    AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H, 1,
909      [Define if <inttypes.h> exists and doesn't clash with <sys/types.h>.])
910  fi
911])
912m4trace:/usr/share/aclocal/inttypes_h.m4:26: -1- AC_DEFUN([gl_AC_HEADER_INTTYPES_H], [
913  AC_CACHE_CHECK([for inttypes.h], gl_cv_header_inttypes_h,
914  [AC_TRY_COMPILE(
915    [#include <sys/types.h>
916#include <inttypes.h>],
917    [uintmax_t i = (uintmax_t) -1;],
918    gl_cv_header_inttypes_h=yes,
919    gl_cv_header_inttypes_h=no)])
920  if test $gl_cv_header_inttypes_h = yes; then
921    AC_DEFINE_UNQUOTED(HAVE_INTTYPES_H_WITH_UINTMAX, 1,
922      [Define if <inttypes.h> exists, doesn't clash with <sys/types.h>,
923       and declares uintmax_t. ])
924  fi
925])
926m4trace:/usr/share/aclocal/isc-posix.m4:24: -1- AC_DEFUN([AC_ISC_POSIX], [
927    dnl This test replaces the obsolescent AC_ISC_POSIX kludge.
928    AC_CHECK_LIB(cposix, strerror, [LIBS="$LIBS -lcposix"])
929
930])
931m4trace:/usr/share/aclocal/lcmessage.m4:30: -1- AC_DEFUN([gt_LC_MESSAGES], [
932  AC_CACHE_CHECK([for LC_MESSAGES], gt_cv_val_LC_MESSAGES,
933    [AC_TRY_LINK([#include <locale.h>], [return LC_MESSAGES],
934       gt_cv_val_LC_MESSAGES=yes, gt_cv_val_LC_MESSAGES=no)])
935  if test $gt_cv_val_LC_MESSAGES = yes; then
936    AC_DEFINE(HAVE_LC_MESSAGES, 1,
937      [Define if your <locale.h> file defines LC_MESSAGES.])
938  fi
939])
940m4trace:/usr/share/aclocal/lib-ld.m4:22: -1- AC_DEFUN([AC_LIB_PROG_LD_GNU], [AC_CACHE_CHECK([if the linker ($LD) is GNU ld], acl_cv_prog_gnu_ld,
941[# I'd rather use --version here, but apparently some GNU ld's only accept -v.
942case `$LD -v 2>&1 </dev/null` in
943*GNU* | *'with BFD'*)
944  acl_cv_prog_gnu_ld=yes ;;
945*)
946  acl_cv_prog_gnu_ld=no ;;
947esac])
948with_gnu_ld=$acl_cv_prog_gnu_ld
949])
950m4trace:/usr/share/aclocal/lib-ld.m4:110: -1- AC_DEFUN([AC_LIB_PROG_LD], [AC_ARG_WITH(gnu-ld,
951[  --with-gnu-ld           assume the C compiler uses GNU ld [default=no]],
952test "$withval" = no || with_gnu_ld=yes, with_gnu_ld=no)
953AC_REQUIRE([AC_PROG_CC])dnl
954AC_REQUIRE([AC_CANONICAL_HOST])dnl
955# Prepare PATH_SEPARATOR.
956# The user is always right.
957if test "${PATH_SEPARATOR+set}" != set; then
958  echo "#! /bin/sh" >conf$$.sh
959  echo  "exit 0"   >>conf$$.sh
960  chmod +x conf$$.sh
961  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
962    PATH_SEPARATOR=';'
963  else
964    PATH_SEPARATOR=:
965  fi
966  rm -f conf$$.sh
967fi
968ac_prog=ld
969if test "$GCC" = yes; then
970  # Check if gcc -print-prog-name=ld gives a path.
971  AC_MSG_CHECKING([for ld used by GCC])
972  case $host in
973  *-*-mingw*)
974    # gcc leaves a trailing carriage return which upsets mingw
975    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
976  *)
977    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
978  esac
979  case $ac_prog in
980    # Accept absolute paths.
981    [[\\/]* | [A-Za-z]:[\\/]*)]
982      [re_direlt='/[^/][^/]*/\.\./']
983      # Canonicalize the path of ld
984      ac_prog=`echo $ac_prog| sed 's%\\\\%/%g'`
985      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
986	ac_prog=`echo $ac_prog| sed "s%$re_direlt%/%"`
987      done
988      test -z "$LD" && LD="$ac_prog"
989      ;;
990  "")
991    # If it fails, then pretend we aren't using GCC.
992    ac_prog=ld
993    ;;
994  *)
995    # If it is relative, then search for the first ld in PATH.
996    with_gnu_ld=unknown
997    ;;
998  esac
999elif test "$with_gnu_ld" = yes; then
1000  AC_MSG_CHECKING([for GNU ld])
1001else
1002  AC_MSG_CHECKING([for non-GNU ld])
1003fi
1004AC_CACHE_VAL(acl_cv_path_LD,
1005[if test -z "$LD"; then
1006  IFS="${IFS= 	}"; ac_save_ifs="$IFS"; IFS="${IFS}${PATH_SEPARATOR-:}"
1007  for ac_dir in $PATH; do
1008    test -z "$ac_dir" && ac_dir=.
1009    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
1010      acl_cv_path_LD="$ac_dir/$ac_prog"
1011      # Check to see if the program is GNU ld.  I'd rather use --version,
1012      # but apparently some GNU ld's only accept -v.
1013      # Break only if it was the GNU/non-GNU ld that we prefer.
1014      case `"$acl_cv_path_LD" -v 2>&1 < /dev/null` in
1015      *GNU* | *'with BFD'*)
1016	test "$with_gnu_ld" != no && break ;;
1017      *)
1018	test "$with_gnu_ld" != yes && break ;;
1019      esac
1020    fi
1021  done
1022  IFS="$ac_save_ifs"
1023else
1024  acl_cv_path_LD="$LD" # Let the user override the test with a path.
1025fi])
1026LD="$acl_cv_path_LD"
1027if test -n "$LD"; then
1028  AC_MSG_RESULT($LD)
1029else
1030  AC_MSG_RESULT(no)
1031fi
1032test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
1033AC_LIB_PROG_LD_GNU
1034])
1035m4trace:/usr/share/aclocal/lib-link.m4:39: -1- AC_DEFUN([AC_LIB_LINKFLAGS], [
1036  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
1037  AC_REQUIRE([AC_LIB_RPATH])
1038  define([Name],[translit([$1],[./-], [___])])
1039  define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
1040                               [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
1041  AC_CACHE_CHECK([how to link with lib[]$1], [ac_cv_lib[]Name[]_libs], [
1042    AC_LIB_LINKFLAGS_BODY([$1], [$2])
1043    ac_cv_lib[]Name[]_libs="$LIB[]NAME"
1044    ac_cv_lib[]Name[]_ltlibs="$LTLIB[]NAME"
1045    ac_cv_lib[]Name[]_cppflags="$INC[]NAME"
1046  ])
1047  LIB[]NAME="$ac_cv_lib[]Name[]_libs"
1048  LTLIB[]NAME="$ac_cv_lib[]Name[]_ltlibs"
1049  INC[]NAME="$ac_cv_lib[]Name[]_cppflags"
1050  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
1051  AC_SUBST([LIB]NAME)
1052  AC_SUBST([LTLIB]NAME)
1053  dnl Also set HAVE_LIB[]NAME so that AC_LIB_HAVE_LINKFLAGS can reuse the
1054  dnl results of this search when this library appears as a dependency.
1055  HAVE_LIB[]NAME=yes
1056  undefine([Name])
1057  undefine([NAME])
1058])
1059m4trace:/usr/share/aclocal/lib-link.m4:91: -1- AC_DEFUN([AC_LIB_HAVE_LINKFLAGS], [
1060  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
1061  AC_REQUIRE([AC_LIB_RPATH])
1062  define([Name],[translit([$1],[./-], [___])])
1063  define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
1064                               [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
1065
1066  dnl Search for lib[]Name and define LIB[]NAME, LTLIB[]NAME and INC[]NAME
1067  dnl accordingly.
1068  AC_LIB_LINKFLAGS_BODY([$1], [$2])
1069
1070  dnl Add $INC[]NAME to CPPFLAGS before performing the following checks,
1071  dnl because if the user has installed lib[]Name and not disabled its use
1072  dnl via --without-lib[]Name-prefix, he wants to use it.
1073  ac_save_CPPFLAGS="$CPPFLAGS"
1074  AC_LIB_APPENDTOVAR([CPPFLAGS], [$INC]NAME)
1075
1076  AC_CACHE_CHECK([for lib[]$1], [ac_cv_lib[]Name], [
1077    ac_save_LIBS="$LIBS"
1078    LIBS="$LIBS $LIB[]NAME"
1079    AC_TRY_LINK([$3], [$4], [ac_cv_lib[]Name=yes], [ac_cv_lib[]Name=no])
1080    LIBS="$ac_save_LIBS"
1081  ])
1082  if test "$ac_cv_lib[]Name" = yes; then
1083    HAVE_LIB[]NAME=yes
1084    AC_DEFINE([HAVE_LIB]NAME, 1, [Define if you have the $1 library.])
1085    AC_MSG_CHECKING([how to link with lib[]$1])
1086    AC_MSG_RESULT([$LIB[]NAME])
1087  else
1088    HAVE_LIB[]NAME=no
1089    dnl If $LIB[]NAME didn't lead to a usable library, we don't need
1090    dnl $INC[]NAME either.
1091    CPPFLAGS="$ac_save_CPPFLAGS"
1092    LIB[]NAME=
1093    LTLIB[]NAME=
1094  fi
1095  AC_SUBST([HAVE_LIB]NAME)
1096  AC_SUBST([LIB]NAME)
1097  AC_SUBST([LTLIB]NAME)
1098  undefine([Name])
1099  undefine([NAME])
1100])
1101m4trace:/usr/share/aclocal/lib-link.m4:122: -1- AC_DEFUN([AC_LIB_RPATH], [
1102  dnl Tell automake >= 1.10 to complain if config.rpath is missing.
1103  m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([config.rpath])])
1104  AC_REQUIRE([AC_PROG_CC])                dnl we use $CC, $GCC, $LDFLAGS
1105  AC_REQUIRE([AC_LIB_PROG_LD])            dnl we use $LD, $with_gnu_ld
1106  AC_REQUIRE([AC_CANONICAL_HOST])         dnl we use $host
1107  AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT]) dnl we use $ac_aux_dir
1108  AC_CACHE_CHECK([for shared library run path origin], acl_cv_rpath, [
1109    CC="$CC" GCC="$GCC" LDFLAGS="$LDFLAGS" LD="$LD" with_gnu_ld="$with_gnu_ld" \
1110    ${CONFIG_SHELL-/bin/sh} "$ac_aux_dir/config.rpath" "$host" > conftest.sh
1111    . ./conftest.sh
1112    rm -f ./conftest.sh
1113    acl_cv_rpath=done
1114  ])
1115  wl="$acl_cv_wl"
1116  libext="$acl_cv_libext"
1117  shlibext="$acl_cv_shlibext"
1118  hardcode_libdir_flag_spec="$acl_cv_hardcode_libdir_flag_spec"
1119  hardcode_libdir_separator="$acl_cv_hardcode_libdir_separator"
1120  hardcode_direct="$acl_cv_hardcode_direct"
1121  hardcode_minus_L="$acl_cv_hardcode_minus_L"
1122  dnl Determine whether the user wants rpath handling at all.
1123  AC_ARG_ENABLE(rpath,
1124    [  --disable-rpath         do not hardcode runtime library paths],
1125    :, enable_rpath=yes)
1126])
1127m4trace:/usr/share/aclocal/lib-link.m4:532: -1- AC_DEFUN([AC_LIB_LINKFLAGS_BODY], [
1128  define([NAME],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
1129                               [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
1130  dnl By default, look in $includedir and $libdir.
1131  use_additional=yes
1132  AC_LIB_WITH_FINAL_PREFIX([
1133    eval additional_includedir=\"$includedir\"
1134    eval additional_libdir=\"$libdir\"
1135  ])
1136  AC_LIB_ARG_WITH([lib$1-prefix],
1137[  --with-lib$1-prefix[=DIR]  search for lib$1 in DIR/include and DIR/lib
1138  --without-lib$1-prefix     don't search for lib$1 in includedir and libdir],
1139[
1140    if test "X$withval" = "Xno"; then
1141      use_additional=no
1142    else
1143      if test "X$withval" = "X"; then
1144        AC_LIB_WITH_FINAL_PREFIX([
1145          eval additional_includedir=\"$includedir\"
1146          eval additional_libdir=\"$libdir\"
1147        ])
1148      else
1149        additional_includedir="$withval/include"
1150        additional_libdir="$withval/lib"
1151      fi
1152    fi
1153])
1154  dnl Search the library and its dependencies in $additional_libdir and
1155  dnl $LDFLAGS. Using breadth-first-seach.
1156  LIB[]NAME=
1157  LTLIB[]NAME=
1158  INC[]NAME=
1159  rpathdirs=
1160  ltrpathdirs=
1161  names_already_handled=
1162  names_next_round='$1 $2'
1163  while test -n "$names_next_round"; do
1164    names_this_round="$names_next_round"
1165    names_next_round=
1166    for name in $names_this_round; do
1167      already_handled=
1168      for n in $names_already_handled; do
1169        if test "$n" = "$name"; then
1170          already_handled=yes
1171          break
1172        fi
1173      done
1174      if test -z "$already_handled"; then
1175        names_already_handled="$names_already_handled $name"
1176        dnl See if it was already located by an earlier AC_LIB_LINKFLAGS
1177        dnl or AC_LIB_HAVE_LINKFLAGS call.
1178        uppername=`echo "$name" | sed -e 'y|abcdefghijklmnopqrstuvwxyz./-|ABCDEFGHIJKLMNOPQRSTUVWXYZ___|'`
1179        eval value=\"\$HAVE_LIB$uppername\"
1180        if test -n "$value"; then
1181          if test "$value" = yes; then
1182            eval value=\"\$LIB$uppername\"
1183            test -z "$value" || LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$value"
1184            eval value=\"\$LTLIB$uppername\"
1185            test -z "$value" || LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$value"
1186          else
1187            dnl An earlier call to AC_LIB_HAVE_LINKFLAGS has determined
1188            dnl that this library doesn't exist. So just drop it.
1189            :
1190          fi
1191        else
1192          dnl Search the library lib$name in $additional_libdir and $LDFLAGS
1193          dnl and the already constructed $LIBNAME/$LTLIBNAME.
1194          found_dir=
1195          found_la=
1196          found_so=
1197          found_a=
1198          if test $use_additional = yes; then
1199            if test -n "$shlibext" && test -f "$additional_libdir/lib$name.$shlibext"; then
1200              found_dir="$additional_libdir"
1201              found_so="$additional_libdir/lib$name.$shlibext"
1202              if test -f "$additional_libdir/lib$name.la"; then
1203                found_la="$additional_libdir/lib$name.la"
1204              fi
1205            else
1206              if test -f "$additional_libdir/lib$name.$libext"; then
1207                found_dir="$additional_libdir"
1208                found_a="$additional_libdir/lib$name.$libext"
1209                if test -f "$additional_libdir/lib$name.la"; then
1210                  found_la="$additional_libdir/lib$name.la"
1211                fi
1212              fi
1213            fi
1214          fi
1215          if test "X$found_dir" = "X"; then
1216            for x in $LDFLAGS $LTLIB[]NAME; do
1217              AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1218              case "$x" in
1219                -L*)
1220                  dir=`echo "X$x" | sed -e 's/^X-L//'`
1221                  if test -n "$shlibext" && test -f "$dir/lib$name.$shlibext"; then
1222                    found_dir="$dir"
1223                    found_so="$dir/lib$name.$shlibext"
1224                    if test -f "$dir/lib$name.la"; then
1225                      found_la="$dir/lib$name.la"
1226                    fi
1227                  else
1228                    if test -f "$dir/lib$name.$libext"; then
1229                      found_dir="$dir"
1230                      found_a="$dir/lib$name.$libext"
1231                      if test -f "$dir/lib$name.la"; then
1232                        found_la="$dir/lib$name.la"
1233                      fi
1234                    fi
1235                  fi
1236                  ;;
1237              esac
1238              if test "X$found_dir" != "X"; then
1239                break
1240              fi
1241            done
1242          fi
1243          if test "X$found_dir" != "X"; then
1244            dnl Found the library.
1245            LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$found_dir -l$name"
1246            if test "X$found_so" != "X"; then
1247              dnl Linking with a shared library. We attempt to hardcode its
1248              dnl directory into the executable's runpath, unless it's the
1249              dnl standard /usr/lib.
1250              if test "$enable_rpath" = no || test "X$found_dir" = "X/usr/lib"; then
1251                dnl No hardcoding is needed.
1252                LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
1253              else
1254                dnl Use an explicit option to hardcode DIR into the resulting
1255                dnl binary.
1256                dnl Potentially add DIR to ltrpathdirs.
1257                dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
1258                haveit=
1259                for x in $ltrpathdirs; do
1260                  if test "X$x" = "X$found_dir"; then
1261                    haveit=yes
1262                    break
1263                  fi
1264                done
1265                if test -z "$haveit"; then
1266                  ltrpathdirs="$ltrpathdirs $found_dir"
1267                fi
1268                dnl The hardcoding into $LIBNAME is system dependent.
1269                if test "$hardcode_direct" = yes; then
1270                  dnl Using DIR/libNAME.so during linking hardcodes DIR into the
1271                  dnl resulting binary.
1272                  LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
1273                else
1274                  if test -n "$hardcode_libdir_flag_spec" && test "$hardcode_minus_L" = no; then
1275                    dnl Use an explicit option to hardcode DIR into the resulting
1276                    dnl binary.
1277                    LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
1278                    dnl Potentially add DIR to rpathdirs.
1279                    dnl The rpathdirs will be appended to $LIBNAME at the end.
1280                    haveit=
1281                    for x in $rpathdirs; do
1282                      if test "X$x" = "X$found_dir"; then
1283                        haveit=yes
1284                        break
1285                      fi
1286                    done
1287                    if test -z "$haveit"; then
1288                      rpathdirs="$rpathdirs $found_dir"
1289                    fi
1290                  else
1291                    dnl Rely on "-L$found_dir".
1292                    dnl But don't add it if it's already contained in the LDFLAGS
1293                    dnl or the already constructed $LIBNAME
1294                    haveit=
1295                    for x in $LDFLAGS $LIB[]NAME; do
1296                      AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1297                      if test "X$x" = "X-L$found_dir"; then
1298                        haveit=yes
1299                        break
1300                      fi
1301                    done
1302                    if test -z "$haveit"; then
1303                      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir"
1304                    fi
1305                    if test "$hardcode_minus_L" != no; then
1306                      dnl FIXME: Not sure whether we should use
1307                      dnl "-L$found_dir -l$name" or "-L$found_dir $found_so"
1308                      dnl here.
1309                      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_so"
1310                    else
1311                      dnl We cannot use $hardcode_runpath_var and LD_RUN_PATH
1312                      dnl here, because this doesn't fit in flags passed to the
1313                      dnl compiler. So give up. No hardcoding. This affects only
1314                      dnl very old systems.
1315                      dnl FIXME: Not sure whether we should use
1316                      dnl "-L$found_dir -l$name" or "-L$found_dir $found_so"
1317                      dnl here.
1318                      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name"
1319                    fi
1320                  fi
1321                fi
1322              fi
1323            else
1324              if test "X$found_a" != "X"; then
1325                dnl Linking with a static library.
1326                LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$found_a"
1327              else
1328                dnl We shouldn't come here, but anyway it's good to have a
1329                dnl fallback.
1330                LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$found_dir -l$name"
1331              fi
1332            fi
1333            dnl Assume the include files are nearby.
1334            additional_includedir=
1335            case "$found_dir" in
1336              */lib | */lib/)
1337                basedir=`echo "X$found_dir" | sed -e 's,^X,,' -e 's,/lib/*$,,'`
1338                additional_includedir="$basedir/include"
1339                ;;
1340            esac
1341            if test "X$additional_includedir" != "X"; then
1342              dnl Potentially add $additional_includedir to $INCNAME.
1343              dnl But don't add it
1344              dnl   1. if it's the standard /usr/include,
1345              dnl   2. if it's /usr/local/include and we are using GCC on Linux,
1346              dnl   3. if it's already present in $CPPFLAGS or the already
1347              dnl      constructed $INCNAME,
1348              dnl   4. if it doesn't exist as a directory.
1349              if test "X$additional_includedir" != "X/usr/include"; then
1350                haveit=
1351                if test "X$additional_includedir" = "X/usr/local/include"; then
1352                  if test -n "$GCC"; then
1353                    case $host_os in
1354                      linux* | gnu* | k*bsd*-gnu) haveit=yes;;
1355                    esac
1356                  fi
1357                fi
1358                if test -z "$haveit"; then
1359                  for x in $CPPFLAGS $INC[]NAME; do
1360                    AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1361                    if test "X$x" = "X-I$additional_includedir"; then
1362                      haveit=yes
1363                      break
1364                    fi
1365                  done
1366                  if test -z "$haveit"; then
1367                    if test -d "$additional_includedir"; then
1368                      dnl Really add $additional_includedir to $INCNAME.
1369                      INC[]NAME="${INC[]NAME}${INC[]NAME:+ }-I$additional_includedir"
1370                    fi
1371                  fi
1372                fi
1373              fi
1374            fi
1375            dnl Look for dependencies.
1376            if test -n "$found_la"; then
1377              dnl Read the .la file. It defines the variables
1378              dnl dlname, library_names, old_library, dependency_libs, current,
1379              dnl age, revision, installed, dlopen, dlpreopen, libdir.
1380              save_libdir="$libdir"
1381              case "$found_la" in
1382                */* | *\\*) . "$found_la" ;;
1383                *) . "./$found_la" ;;
1384              esac
1385              libdir="$save_libdir"
1386              dnl We use only dependency_libs.
1387              for dep in $dependency_libs; do
1388                case "$dep" in
1389                  -L*)
1390                    additional_libdir=`echo "X$dep" | sed -e 's/^X-L//'`
1391                    dnl Potentially add $additional_libdir to $LIBNAME and $LTLIBNAME.
1392                    dnl But don't add it
1393                    dnl   1. if it's the standard /usr/lib,
1394                    dnl   2. if it's /usr/local/lib and we are using GCC on Linux,
1395                    dnl   3. if it's already present in $LDFLAGS or the already
1396                    dnl      constructed $LIBNAME,
1397                    dnl   4. if it doesn't exist as a directory.
1398                    if test "X$additional_libdir" != "X/usr/lib"; then
1399                      haveit=
1400                      if test "X$additional_libdir" = "X/usr/local/lib"; then
1401                        if test -n "$GCC"; then
1402                          case $host_os in
1403                            linux* | gnu* | k*bsd*-gnu) haveit=yes;;
1404                          esac
1405                        fi
1406                      fi
1407                      if test -z "$haveit"; then
1408                        haveit=
1409                        for x in $LDFLAGS $LIB[]NAME; do
1410                          AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1411                          if test "X$x" = "X-L$additional_libdir"; then
1412                            haveit=yes
1413                            break
1414                          fi
1415                        done
1416                        if test -z "$haveit"; then
1417                          if test -d "$additional_libdir"; then
1418                            dnl Really add $additional_libdir to $LIBNAME.
1419                            LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-L$additional_libdir"
1420                          fi
1421                        fi
1422                        haveit=
1423                        for x in $LDFLAGS $LTLIB[]NAME; do
1424                          AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1425                          if test "X$x" = "X-L$additional_libdir"; then
1426                            haveit=yes
1427                            break
1428                          fi
1429                        done
1430                        if test -z "$haveit"; then
1431                          if test -d "$additional_libdir"; then
1432                            dnl Really add $additional_libdir to $LTLIBNAME.
1433                            LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-L$additional_libdir"
1434                          fi
1435                        fi
1436                      fi
1437                    fi
1438                    ;;
1439                  -R*)
1440                    dir=`echo "X$dep" | sed -e 's/^X-R//'`
1441                    if test "$enable_rpath" != no; then
1442                      dnl Potentially add DIR to rpathdirs.
1443                      dnl The rpathdirs will be appended to $LIBNAME at the end.
1444                      haveit=
1445                      for x in $rpathdirs; do
1446                        if test "X$x" = "X$dir"; then
1447                          haveit=yes
1448                          break
1449                        fi
1450                      done
1451                      if test -z "$haveit"; then
1452                        rpathdirs="$rpathdirs $dir"
1453                      fi
1454                      dnl Potentially add DIR to ltrpathdirs.
1455                      dnl The ltrpathdirs will be appended to $LTLIBNAME at the end.
1456                      haveit=
1457                      for x in $ltrpathdirs; do
1458                        if test "X$x" = "X$dir"; then
1459                          haveit=yes
1460                          break
1461                        fi
1462                      done
1463                      if test -z "$haveit"; then
1464                        ltrpathdirs="$ltrpathdirs $dir"
1465                      fi
1466                    fi
1467                    ;;
1468                  -l*)
1469                    dnl Handle this in the next round.
1470                    names_next_round="$names_next_round "`echo "X$dep" | sed -e 's/^X-l//'`
1471                    ;;
1472                  *.la)
1473                    dnl Handle this in the next round. Throw away the .la's
1474                    dnl directory; it is already contained in a preceding -L
1475                    dnl option.
1476                    names_next_round="$names_next_round "`echo "X$dep" | sed -e 's,^X.*/,,' -e 's,^lib,,' -e 's,\.la$,,'`
1477                    ;;
1478                  *)
1479                    dnl Most likely an immediate library name.
1480                    LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$dep"
1481                    LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }$dep"
1482                    ;;
1483                esac
1484              done
1485            fi
1486          else
1487            dnl Didn't find the library; assume it is in the system directories
1488            dnl known to the linker and runtime loader. (All the system
1489            dnl directories known to the linker should also be known to the
1490            dnl runtime loader, otherwise the system is severely misconfigured.)
1491            LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }-l$name"
1492            LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-l$name"
1493          fi
1494        fi
1495      fi
1496    done
1497  done
1498  if test "X$rpathdirs" != "X"; then
1499    if test -n "$hardcode_libdir_separator"; then
1500      dnl Weird platform: only the last -rpath option counts, the user must
1501      dnl pass all path elements in one option. We can arrange that for a
1502      dnl single library, but not when more than one $LIBNAMEs are used.
1503      alldirs=
1504      for found_dir in $rpathdirs; do
1505        alldirs="${alldirs}${alldirs:+$hardcode_libdir_separator}$found_dir"
1506      done
1507      dnl Note: hardcode_libdir_flag_spec uses $libdir and $wl.
1508      acl_save_libdir="$libdir"
1509      libdir="$alldirs"
1510      eval flag=\"$hardcode_libdir_flag_spec\"
1511      libdir="$acl_save_libdir"
1512      LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag"
1513    else
1514      dnl The -rpath options are cumulative.
1515      for found_dir in $rpathdirs; do
1516        acl_save_libdir="$libdir"
1517        libdir="$found_dir"
1518        eval flag=\"$hardcode_libdir_flag_spec\"
1519        libdir="$acl_save_libdir"
1520        LIB[]NAME="${LIB[]NAME}${LIB[]NAME:+ }$flag"
1521      done
1522    fi
1523  fi
1524  if test "X$ltrpathdirs" != "X"; then
1525    dnl When using libtool, the option that works for both libraries and
1526    dnl executables is -R. The -R options are cumulative.
1527    for found_dir in $ltrpathdirs; do
1528      LTLIB[]NAME="${LTLIB[]NAME}${LTLIB[]NAME:+ }-R$found_dir"
1529    done
1530  fi
1531])
1532m4trace:/usr/share/aclocal/lib-link.m4:553: -1- AC_DEFUN([AC_LIB_APPENDTOVAR], [
1533  for element in [$2]; do
1534    haveit=
1535    for x in $[$1]; do
1536      AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1537      if test "X$x" = "X$element"; then
1538        haveit=yes
1539        break
1540      fi
1541    done
1542    if test -z "$haveit"; then
1543      [$1]="${[$1]}${[$1]:+ }$element"
1544    fi
1545  done
1546])
1547m4trace:/usr/share/aclocal/lib-prefix.m4:14: -1- AC_DEFUN([AC_LIB_ARG_WITH], [AC_ARG_WITH([$1],[[$2]],[$3],[$4])])
1548m4trace:/usr/share/aclocal/lib-prefix.m4:116: -1- AC_DEFUN([AC_LIB_PREFIX], [
1549  AC_BEFORE([$0], [AC_LIB_LINKFLAGS])
1550  AC_REQUIRE([AC_PROG_CC])
1551  AC_REQUIRE([AC_CANONICAL_HOST])
1552  AC_REQUIRE([AC_LIB_PREPARE_PREFIX])
1553  dnl By default, look in $includedir and $libdir.
1554  use_additional=yes
1555  AC_LIB_WITH_FINAL_PREFIX([
1556    eval additional_includedir=\"$includedir\"
1557    eval additional_libdir=\"$libdir\"
1558  ])
1559  AC_LIB_ARG_WITH([lib-prefix],
1560[  --with-lib-prefix[=DIR] search for libraries in DIR/include and DIR/lib
1561  --without-lib-prefix    don't search for libraries in includedir and libdir],
1562[
1563    if test "X$withval" = "Xno"; then
1564      use_additional=no
1565    else
1566      if test "X$withval" = "X"; then
1567        AC_LIB_WITH_FINAL_PREFIX([
1568          eval additional_includedir=\"$includedir\"
1569          eval additional_libdir=\"$libdir\"
1570        ])
1571      else
1572        additional_includedir="$withval/include"
1573        additional_libdir="$withval/lib"
1574      fi
1575    fi
1576])
1577  if test $use_additional = yes; then
1578    dnl Potentially add $additional_includedir to $CPPFLAGS.
1579    dnl But don't add it
1580    dnl   1. if it's the standard /usr/include,
1581    dnl   2. if it's already present in $CPPFLAGS,
1582    dnl   3. if it's /usr/local/include and we are using GCC on Linux,
1583    dnl   4. if it doesn't exist as a directory.
1584    if test "X$additional_includedir" != "X/usr/include"; then
1585      haveit=
1586      for x in $CPPFLAGS; do
1587        AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1588        if test "X$x" = "X-I$additional_includedir"; then
1589          haveit=yes
1590          break
1591        fi
1592      done
1593      if test -z "$haveit"; then
1594        if test "X$additional_includedir" = "X/usr/local/include"; then
1595          if test -n "$GCC"; then
1596            case $host_os in
1597              linux* | gnu* | k*bsd*-gnu) haveit=yes;;
1598            esac
1599          fi
1600        fi
1601        if test -z "$haveit"; then
1602          if test -d "$additional_includedir"; then
1603            dnl Really add $additional_includedir to $CPPFLAGS.
1604            CPPFLAGS="${CPPFLAGS}${CPPFLAGS:+ }-I$additional_includedir"
1605          fi
1606        fi
1607      fi
1608    fi
1609    dnl Potentially add $additional_libdir to $LDFLAGS.
1610    dnl But don't add it
1611    dnl   1. if it's the standard /usr/lib,
1612    dnl   2. if it's already present in $LDFLAGS,
1613    dnl   3. if it's /usr/local/lib and we are using GCC on Linux,
1614    dnl   4. if it doesn't exist as a directory.
1615    if test "X$additional_libdir" != "X/usr/lib"; then
1616      haveit=
1617      for x in $LDFLAGS; do
1618        AC_LIB_WITH_FINAL_PREFIX([eval x=\"$x\"])
1619        if test "X$x" = "X-L$additional_libdir"; then
1620          haveit=yes
1621          break
1622        fi
1623      done
1624      if test -z "$haveit"; then
1625        if test "X$additional_libdir" = "X/usr/local/lib"; then
1626          if test -n "$GCC"; then
1627            case $host_os in
1628              linux*) haveit=yes;;
1629            esac
1630          fi
1631        fi
1632        if test -z "$haveit"; then
1633          if test -d "$additional_libdir"; then
1634            dnl Really add $additional_libdir to $LDFLAGS.
1635            LDFLAGS="${LDFLAGS}${LDFLAGS:+ }-L$additional_libdir"
1636          fi
1637        fi
1638      fi
1639    fi
1640  fi
1641])
1642m4trace:/usr/share/aclocal/lib-prefix.m4:139: -1- AC_DEFUN([AC_LIB_PREPARE_PREFIX], [
1643  dnl Unfortunately, prefix and exec_prefix get only finally determined
1644  dnl at the end of configure.
1645  if test "X$prefix" = "XNONE"; then
1646    acl_final_prefix="$ac_default_prefix"
1647  else
1648    acl_final_prefix="$prefix"
1649  fi
1650  if test "X$exec_prefix" = "XNONE"; then
1651    acl_final_exec_prefix='${prefix}'
1652  else
1653    acl_final_exec_prefix="$exec_prefix"
1654  fi
1655  acl_save_prefix="$prefix"
1656  prefix="$acl_final_prefix"
1657  eval acl_final_exec_prefix=\"$acl_final_exec_prefix\"
1658  prefix="$acl_save_prefix"
1659])
1660m4trace:/usr/share/aclocal/lib-prefix.m4:153: -1- AC_DEFUN([AC_LIB_WITH_FINAL_PREFIX], [
1661  acl_save_prefix="$prefix"
1662  prefix="$acl_final_prefix"
1663  acl_save_exec_prefix="$exec_prefix"
1664  exec_prefix="$acl_final_exec_prefix"
1665  $1
1666  exec_prefix="$acl_save_exec_prefix"
1667  prefix="$acl_save_prefix"
1668])
1669m4trace:/usr/share/aclocal/libtool.m4:55: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_REQUIRE([_AC_PROG_LIBTOOL])dnl
1670dnl If AC_PROG_CXX has already been expanded, run AC_LIBTOOL_CXX
1671dnl immediately, otherwise, hook it in at the end of AC_PROG_CXX.
1672  AC_PROVIDE_IFELSE([AC_PROG_CXX],
1673    [AC_LIBTOOL_CXX],
1674    [define([AC_PROG_CXX], defn([AC_PROG_CXX])[AC_LIBTOOL_CXX
1675  ])])
1676dnl And a similar setup for Fortran 77 support
1677  AC_PROVIDE_IFELSE([AC_PROG_F77],
1678    [AC_LIBTOOL_F77],
1679    [define([AC_PROG_F77], defn([AC_PROG_F77])[AC_LIBTOOL_F77
1680])])
1681
1682dnl Quote AM_PROG_GCJ so that aclocal doesn't bring it in needlessly.
1683dnl If either AC_PROG_GCJ or AM_PROG_GCJ have already been expanded, run
1684dnl AC_LIBTOOL_GCJ immediately, otherwise, hook it in at the end of both.
1685  AC_PROVIDE_IFELSE([AC_PROG_GCJ],
1686    [AC_LIBTOOL_GCJ],
1687    [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],
1688      [AC_LIBTOOL_GCJ],
1689      [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],
1690	[AC_LIBTOOL_GCJ],
1691      [ifdef([AC_PROG_GCJ],
1692	     [define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])
1693       ifdef([A][M_PROG_GCJ],
1694	     [define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[AC_LIBTOOL_GCJ])])
1695       ifdef([LT_AC_PROG_GCJ],
1696	     [define([LT_AC_PROG_GCJ],
1697		defn([LT_AC_PROG_GCJ])[AC_LIBTOOL_GCJ])])])])
1698])])
1699m4trace:/usr/share/aclocal/libtool.m4:75: -1- AC_DEFUN([_AC_PROG_LIBTOOL], [AC_REQUIRE([AC_LIBTOOL_SETUP])dnl
1700AC_BEFORE([$0],[AC_LIBTOOL_CXX])dnl
1701AC_BEFORE([$0],[AC_LIBTOOL_F77])dnl
1702AC_BEFORE([$0],[AC_LIBTOOL_GCJ])dnl
1703
1704# This can be used to rebuild libtool when needed
1705LIBTOOL_DEPS="$ac_aux_dir/ltmain.sh"
1706
1707# Always use our own libtool.
1708LIBTOOL='$(SHELL) $(top_builddir)/libtool'
1709AC_SUBST(LIBTOOL)dnl
1710
1711# Prevent multiple expansion
1712define([AC_PROG_LIBTOOL], [])
1713])
1714m4trace:/usr/share/aclocal/libtool.m4:219: -1- AC_DEFUN([AC_LIBTOOL_SETUP], [AC_PREREQ(2.50)dnl
1715AC_REQUIRE([AC_ENABLE_SHARED])dnl
1716AC_REQUIRE([AC_ENABLE_STATIC])dnl
1717AC_REQUIRE([AC_ENABLE_FAST_INSTALL])dnl
1718AC_REQUIRE([AC_CANONICAL_HOST])dnl
1719AC_REQUIRE([AC_CANONICAL_BUILD])dnl
1720AC_REQUIRE([AC_PROG_CC])dnl
1721AC_REQUIRE([AC_PROG_LD])dnl
1722AC_REQUIRE([AC_PROG_LD_RELOAD_FLAG])dnl
1723AC_REQUIRE([AC_PROG_NM])dnl
1724
1725AC_REQUIRE([AC_PROG_LN_S])dnl
1726AC_REQUIRE([AC_DEPLIBS_CHECK_METHOD])dnl
1727# Autoconf 2.13's AC_OBJEXT and AC_EXEEXT macros only works for C compilers!
1728AC_REQUIRE([AC_OBJEXT])dnl
1729AC_REQUIRE([AC_EXEEXT])dnl
1730dnl
1731
1732AC_LIBTOOL_SYS_MAX_CMD_LEN
1733AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
1734AC_LIBTOOL_OBJDIR
1735
1736AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
1737_LT_AC_PROG_ECHO_BACKSLASH
1738
1739case $host_os in
1740aix3*)
1741  # AIX sometimes has problems with the GCC collect2 program.  For some
1742  # reason, if we set the COLLECT_NAMES environment variable, the problems
1743  # vanish in a puff of smoke.
1744  if test "X${COLLECT_NAMES+set}" != Xset; then
1745    COLLECT_NAMES=
1746    export COLLECT_NAMES
1747  fi
1748  ;;
1749esac
1750
1751# Sed substitution that helps us do robust quoting.  It backslashifies
1752# metacharacters that are still active within double-quoted strings.
1753Xsed='sed -e 1s/^X//'
1754[sed_quote_subst='s/\([\\"\\`$\\\\]\)/\\\1/g']
1755
1756# Same as above, but do not quote variable references.
1757[double_quote_subst='s/\([\\"\\`\\\\]\)/\\\1/g']
1758
1759# Sed substitution to delay expansion of an escaped shell variable in a
1760# double_quote_subst'ed string.
1761delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g'
1762
1763# Sed substitution to avoid accidental globbing in evaled expressions
1764no_glob_subst='s/\*/\\\*/g'
1765
1766# Constants:
1767rm="rm -f"
1768
1769# Global variables:
1770default_ofile=libtool
1771can_build_shared=yes
1772
1773# All known linkers require a `.a' archive for static linking (except MSVC,
1774# which needs '.lib').
1775libext=a
1776ltmain="$ac_aux_dir/ltmain.sh"
1777ofile="$default_ofile"
1778with_gnu_ld="$lt_cv_prog_gnu_ld"
1779
1780AC_CHECK_TOOL(AR, ar, false)
1781AC_CHECK_TOOL(RANLIB, ranlib, :)
1782AC_CHECK_TOOL(STRIP, strip, :)
1783
1784old_CC="$CC"
1785old_CFLAGS="$CFLAGS"
1786
1787# Set sane defaults for various variables
1788test -z "$AR" && AR=ar
1789test -z "$AR_FLAGS" && AR_FLAGS=cru
1790test -z "$AS" && AS=as
1791test -z "$CC" && CC=cc
1792test -z "$LTCC" && LTCC=$CC
1793test -z "$DLLTOOL" && DLLTOOL=dlltool
1794test -z "$LD" && LD=ld
1795test -z "$LN_S" && LN_S="ln -s"
1796test -z "$MAGIC_CMD" && MAGIC_CMD=file
1797test -z "$NM" && NM=nm
1798test -z "$SED" && SED=sed
1799test -z "$OBJDUMP" && OBJDUMP=objdump
1800test -z "$RANLIB" && RANLIB=:
1801test -z "$STRIP" && STRIP=:
1802test -z "$ac_objext" && ac_objext=o
1803
1804# Determine commands to create old-style static archives.
1805old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs$old_deplibs'
1806old_postinstall_cmds='chmod 644 $oldlib'
1807old_postuninstall_cmds=
1808
1809if test -n "$RANLIB"; then
1810  case $host_os in
1811  openbsd*)
1812    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib"
1813    ;;
1814  *)
1815    old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib"
1816    ;;
1817  esac
1818  old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib"
1819fi
1820
1821_LT_CC_BASENAME([$compiler])
1822
1823# Only perform the check for file, if the check method requires it
1824case $deplibs_check_method in
1825file_magic*)
1826  if test "$file_magic_cmd" = '$MAGIC_CMD'; then
1827    AC_PATH_MAGIC
1828  fi
1829  ;;
1830esac
1831
1832AC_PROVIDE_IFELSE([AC_LIBTOOL_DLOPEN], enable_dlopen=yes, enable_dlopen=no)
1833AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
1834enable_win32_dll=yes, enable_win32_dll=no)
1835
1836AC_ARG_ENABLE([libtool-lock],
1837    [AC_HELP_STRING([--disable-libtool-lock],
1838	[avoid locking (might break parallel builds)])])
1839test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
1840
1841AC_ARG_WITH([pic],
1842    [AC_HELP_STRING([--with-pic],
1843	[try to use only PIC/non-PIC objects @<:@default=use both@:>@])],
1844    [pic_mode="$withval"],
1845    [pic_mode=default])
1846test -z "$pic_mode" && pic_mode=default
1847
1848# Use C for the default configuration in the libtool script
1849tagname=
1850AC_LIBTOOL_LANG_C_CONFIG
1851_LT_AC_TAGCONFIG
1852])
1853m4trace:/usr/share/aclocal/libtool.m4:232: -1- AC_DEFUN([_LT_AC_SYS_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl
1854
1855# If no C compiler was specified, use CC.
1856LTCC=${LTCC-"$CC"}
1857
1858# Allow CC to be a program name with arguments.
1859compiler=$CC
1860])
1861m4trace:/usr/share/aclocal/libtool.m4:248: -1- AC_DEFUN([_LT_CC_BASENAME], [for cc_temp in $1""; do
1862  case $cc_temp in
1863    compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;;
1864    distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;;
1865    \-*) ;;
1866    *) break;;
1867  esac
1868done
1869cc_basename=`$echo "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"`
1870])
1871m4trace:/usr/share/aclocal/libtool.m4:261: -1- AC_DEFUN([_LT_COMPILER_BOILERPLATE], [ac_outfile=conftest.$ac_objext
1872printf "$lt_simple_compile_test_code" >conftest.$ac_ext
1873eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
1874_lt_compiler_boilerplate=`cat conftest.err`
1875$rm conftest*
1876])
1877m4trace:/usr/share/aclocal/libtool.m4:274: -1- AC_DEFUN([_LT_LINKER_BOILERPLATE], [ac_outfile=conftest.$ac_objext
1878printf "$lt_simple_link_test_code" >conftest.$ac_ext
1879eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d' >conftest.err
1880_lt_linker_boilerplate=`cat conftest.err`
1881$rm conftest*
1882])
1883m4trace:/usr/share/aclocal/libtool.m4:293: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX], [AC_LINK_IFELSE(AC_LANG_PROGRAM,[
1884aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
1885}'`
1886# Check for a 64-bit object if we didn't find anything.
1887if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e '/Import File Strings/,/^$/ { /^0/ { s/^0  *\(.*\)$/\1/; p; }
1888}'`; fi],[])
1889if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi
1890])
1891m4trace:/usr/share/aclocal/libtool.m4:304: -1- AC_DEFUN([_LT_AC_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE],
1892	     [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)],
1893	 [AC_DIVERT_PUSH(NOTICE)])
1894$1
1895AC_DIVERT_POP
1896])
1897m4trace:/usr/share/aclocal/libtool.m4:460: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH], [_LT_AC_SHELL_INIT([
1898# Check that we are running under the correct shell.
1899SHELL=${CONFIG_SHELL-/bin/sh}
1900
1901case X$ECHO in
1902X*--fallback-echo)
1903  # Remove one level of quotation (which was required for Make).
1904  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
1905  ;;
1906esac
1907
1908echo=${ECHO-echo}
1909if test "X[$]1" = X--no-reexec; then
1910  # Discard the --no-reexec flag, and continue.
1911  shift
1912elif test "X[$]1" = X--fallback-echo; then
1913  # Avoid inline document here, it may be left over
1914  :
1915elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
1916  # Yippee, $echo works!
1917  :
1918else
1919  # Restart under the correct shell.
1920  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
1921fi
1922
1923if test "X[$]1" = X--fallback-echo; then
1924  # used as fallback echo
1925  shift
1926  cat <<EOF
1927[$]*
1928EOF
1929  exit 0
1930fi
1931
1932# The HP-UX ksh and POSIX shell print the target directory to stdout
1933# if CDPATH is set.
1934(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
1935
1936if test -z "$ECHO"; then
1937if test "X${echo_test_string+set}" != Xset; then
1938# find a string as large as possible, as long as the shell can cope with it
1939  for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
1940    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
1941    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
1942       echo_test_string=`eval $cmd` &&
1943       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
1944    then
1945      break
1946    fi
1947  done
1948fi
1949
1950if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
1951   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
1952   test "X$echo_testing_string" = "X$echo_test_string"; then
1953  :
1954else
1955  # The Solaris, AIX, and Digital Unix default echo programs unquote
1956  # backslashes.  This makes it impossible to quote backslashes using
1957  #   echo "$something" | sed 's/\\/\\\\/g'
1958  #
1959  # So, first we look for a working echo in the user's PATH.
1960
1961  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
1962  for dir in $PATH /usr/ucb; do
1963    IFS="$lt_save_ifs"
1964    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
1965       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
1966       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
1967       test "X$echo_testing_string" = "X$echo_test_string"; then
1968      echo="$dir/echo"
1969      break
1970    fi
1971  done
1972  IFS="$lt_save_ifs"
1973
1974  if test "X$echo" = Xecho; then
1975    # We didn't find a better echo, so look for alternatives.
1976    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
1977       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
1978       test "X$echo_testing_string" = "X$echo_test_string"; then
1979      # This shell has a builtin print -r that does the trick.
1980      echo='print -r'
1981    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
1982	 test "X$CONFIG_SHELL" != X/bin/ksh; then
1983      # If we have ksh, try running configure again with it.
1984      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
1985      export ORIGINAL_CONFIG_SHELL
1986      CONFIG_SHELL=/bin/ksh
1987      export CONFIG_SHELL
1988      exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
1989    else
1990      # Try using printf.
1991      echo='printf %s\n'
1992      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
1993	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
1994	 test "X$echo_testing_string" = "X$echo_test_string"; then
1995	# Cool, printf works
1996	:
1997      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
1998	   test "X$echo_testing_string" = 'X\t' &&
1999	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
2000	   test "X$echo_testing_string" = "X$echo_test_string"; then
2001	CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
2002	export CONFIG_SHELL
2003	SHELL="$CONFIG_SHELL"
2004	export SHELL
2005	echo="$CONFIG_SHELL [$]0 --fallback-echo"
2006      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
2007	   test "X$echo_testing_string" = 'X\t' &&
2008	   echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
2009	   test "X$echo_testing_string" = "X$echo_test_string"; then
2010	echo="$CONFIG_SHELL [$]0 --fallback-echo"
2011      else
2012	# maybe with a smaller string...
2013	prev=:
2014
2015	for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
2016	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
2017	  then
2018	    break
2019	  fi
2020	  prev="$cmd"
2021	done
2022
2023	if test "$prev" != 'sed 50q "[$]0"'; then
2024	  echo_test_string=`eval $prev`
2025	  export echo_test_string
2026	  exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
2027	else
2028	  # Oops.  We lost completely, so just stick with echo.
2029	  echo=echo
2030	fi
2031      fi
2032    fi
2033  fi
2034fi
2035fi
2036
2037# Copy echo and quote the copy suitably for passing to libtool from
2038# the Makefile, instead of quoting the original, which is used later.
2039ECHO=$echo
2040if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
2041   ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
2042fi
2043
2044AC_SUBST(ECHO)
2045])])
2046m4trace:/usr/share/aclocal/libtool.m4:588: -1- AC_DEFUN([_LT_AC_LOCK], [AC_ARG_ENABLE([libtool-lock],
2047    [AC_HELP_STRING([--disable-libtool-lock],
2048	[avoid locking (might break parallel builds)])])
2049test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes
2050
2051# Some flags need to be propagated to the compiler or linker for good
2052# libtool support.
2053case $host in
2054ia64-*-hpux*)
2055  # Find out which ABI we are using.
2056  echo 'int i;' > conftest.$ac_ext
2057  if AC_TRY_EVAL(ac_compile); then
2058    case `/usr/bin/file conftest.$ac_objext` in
2059    *ELF-32*)
2060      HPUX_IA64_MODE="32"
2061      ;;
2062    *ELF-64*)
2063      HPUX_IA64_MODE="64"
2064      ;;
2065    esac
2066  fi
2067  rm -rf conftest*
2068  ;;
2069*-*-irix6*)
2070  # Find out which ABI we are using.
2071  echo '[#]line __oline__ "configure"' > conftest.$ac_ext
2072  if AC_TRY_EVAL(ac_compile); then
2073   if test "$lt_cv_prog_gnu_ld" = yes; then
2074    case `/usr/bin/file conftest.$ac_objext` in
2075    *32-bit*)
2076      LD="${LD-ld} -melf32bsmip"
2077      ;;
2078    *N32*)
2079      LD="${LD-ld} -melf32bmipn32"
2080      ;;
2081    *64-bit*)
2082      LD="${LD-ld} -melf64bmip"
2083      ;;
2084    esac
2085   else
2086    case `/usr/bin/file conftest.$ac_objext` in
2087    *32-bit*)
2088      LD="${LD-ld} -32"
2089      ;;
2090    *N32*)
2091      LD="${LD-ld} -n32"
2092      ;;
2093    *64-bit*)
2094      LD="${LD-ld} -64"
2095      ;;
2096    esac
2097   fi
2098  fi
2099  rm -rf conftest*
2100  ;;
2101
2102x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*|s390*-*linux*|sparc*-*linux*)
2103  # Find out which ABI we are using.
2104  echo 'int i;' > conftest.$ac_ext
2105  if AC_TRY_EVAL(ac_compile); then
2106    case `/usr/bin/file conftest.o` in
2107    *32-bit*)
2108      case $host in
2109        x86_64-*linux*)
2110          LD="${LD-ld} -m elf_i386"
2111          ;;
2112        ppc64-*linux*|powerpc64-*linux*)
2113          LD="${LD-ld} -m elf32ppclinux"
2114          ;;
2115        s390x-*linux*)
2116          LD="${LD-ld} -m elf_s390"
2117          ;;
2118        sparc64-*linux*)
2119          LD="${LD-ld} -m elf32_sparc"
2120          ;;
2121      esac
2122      ;;
2123    *64-bit*)
2124      case $host in
2125        x86_64-*linux*)
2126          LD="${LD-ld} -m elf_x86_64"
2127          ;;
2128        ppc*-*linux*|powerpc*-*linux*)
2129          LD="${LD-ld} -m elf64ppc"
2130          ;;
2131        s390*-*linux*)
2132          LD="${LD-ld} -m elf64_s390"
2133          ;;
2134        sparc*-*linux*)
2135          LD="${LD-ld} -m elf64_sparc"
2136          ;;
2137      esac
2138      ;;
2139    esac
2140  fi
2141  rm -rf conftest*
2142  ;;
2143
2144*-*-sco3.2v5*)
2145  # On SCO OpenServer 5, we need -belf to get full-featured binaries.
2146  SAVE_CFLAGS="$CFLAGS"
2147  CFLAGS="$CFLAGS -belf"
2148  AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf,
2149    [AC_LANG_PUSH(C)
2150     AC_TRY_LINK([],[],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no])
2151     AC_LANG_POP])
2152  if test x"$lt_cv_cc_needs_belf" != x"yes"; then
2153    # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf
2154    CFLAGS="$SAVE_CFLAGS"
2155  fi
2156  ;;
2157AC_PROVIDE_IFELSE([AC_LIBTOOL_WIN32_DLL],
2158[*-*-cygwin* | *-*-mingw* | *-*-pw32*)
2159  AC_CHECK_TOOL(DLLTOOL, dlltool, false)
2160  AC_CHECK_TOOL(AS, as, false)
2161  AC_CHECK_TOOL(OBJDUMP, objdump, false)
2162  ;;
2163  ])
2164esac
2165
2166need_locks="$enable_libtool_lock"
2167
2168])
2169m4trace:/usr/share/aclocal/libtool.m4:633: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_REQUIRE([LT_AC_PROG_SED])
2170AC_CACHE_CHECK([$1], [$2],
2171  [$2=no
2172  ifelse([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
2173   printf "$lt_simple_compile_test_code" > conftest.$ac_ext
2174   lt_compiler_flag="$3"
2175   # Insert the option either (1) after the last *FLAGS variable, or
2176   # (2) before a word containing "conftest.", or (3) at the end.
2177   # Note that $ac_compile itself does not contain backslashes and begins
2178   # with a dollar sign (not a hyphen), so the echo should work correctly.
2179   # The option is referenced via a variable to avoid confusing sed.
2180   lt_compile=`echo "$ac_compile" | $SED \
2181   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
2182   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
2183   -e 's:$: $lt_compiler_flag:'`
2184   (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
2185   (eval "$lt_compile" 2>conftest.err)
2186   ac_status=$?
2187   cat conftest.err >&AS_MESSAGE_LOG_FD
2188   echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2189   if (exit $ac_status) && test -s "$ac_outfile"; then
2190     # The compiler can only warn and ignore the option if not recognized
2191     # So say no if there are warnings other than the usual output.
2192     $echo "X$_lt_compiler_boilerplate" | $Xsed >conftest.exp
2193     $SED '/^$/d' conftest.err >conftest.er2
2194     if test ! -s conftest.err || diff conftest.exp conftest.er2 >/dev/null; then
2195       $2=yes
2196     fi
2197   fi
2198   $rm conftest*
2199])
2200
2201if test x"[$]$2" = xyes; then
2202    ifelse([$5], , :, [$5])
2203else
2204    ifelse([$6], , :, [$6])
2205fi
2206])
2207m4trace:/usr/share/aclocal/libtool.m4:670: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_CACHE_CHECK([$1], [$2],
2208  [$2=no
2209   save_LDFLAGS="$LDFLAGS"
2210   LDFLAGS="$LDFLAGS $3"
2211   printf "$lt_simple_link_test_code" > conftest.$ac_ext
2212   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
2213     # The linker can only warn and ignore the option if not recognized
2214     # So say no if there are warnings
2215     if test -s conftest.err; then
2216       # Append any errors to the config.log.
2217       cat conftest.err 1>&AS_MESSAGE_LOG_FD
2218       $echo "X$_lt_linker_boilerplate" | $Xsed > conftest.exp
2219       $SED '/^$/d' conftest.err >conftest.er2
2220       if diff conftest.exp conftest.er2 >/dev/null; then
2221         $2=yes
2222       fi
2223     else
2224       $2=yes
2225     fi
2226   fi
2227   $rm conftest*
2228   LDFLAGS="$save_LDFLAGS"
2229])
2230
2231if test x"[$]$2" = xyes; then
2232    ifelse([$4], , :, [$4])
2233else
2234    ifelse([$5], , :, [$5])
2235fi
2236])
2237m4trace:/usr/share/aclocal/libtool.m4:768: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [# find the maximum length of command line arguments
2238AC_MSG_CHECKING([the maximum length of command line arguments])
2239AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
2240  i=0
2241  teststring="ABCD"
2242
2243  case $build_os in
2244  msdosdjgpp*)
2245    # On DJGPP, this test can blow up pretty badly due to problems in libc
2246    # (any single argument exceeding 2000 bytes causes a buffer overrun
2247    # during glob expansion).  Even if it were fixed, the result of this
2248    # check would be larger than it should be.
2249    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
2250    ;;
2251
2252  gnu*)
2253    # Under GNU Hurd, this test is not required because there is
2254    # no limit to the length of command line arguments.
2255    # Libtool will interpret -1 as no limit whatsoever
2256    lt_cv_sys_max_cmd_len=-1;
2257    ;;
2258
2259  cygwin* | mingw*)
2260    # On Win9x/ME, this test blows up -- it succeeds, but takes
2261    # about 5 minutes as the teststring grows exponentially.
2262    # Worse, since 9x/ME are not pre-emptively multitasking,
2263    # you end up with a "frozen" computer, even though with patience
2264    # the test eventually succeeds (with a max line length of 256k).
2265    # Instead, let's just punt: use the minimum linelength reported by
2266    # all of the supported platforms: 8192 (on NT/2K/XP).
2267    lt_cv_sys_max_cmd_len=8192;
2268    ;;
2269
2270  amigaos*)
2271    # On AmigaOS with pdksh, this test takes hours, literally.
2272    # So we just punt and use a minimum line length of 8192.
2273    lt_cv_sys_max_cmd_len=8192;
2274    ;;
2275
2276  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
2277    # This has been around since 386BSD, at least.  Likely further.
2278    if test -x /sbin/sysctl; then
2279      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
2280    elif test -x /usr/sbin/sysctl; then
2281      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
2282    else
2283      lt_cv_sys_max_cmd_len=65536	# usable default for all BSDs
2284    fi
2285    # And add a safety zone
2286    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
2287    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
2288    ;;
2289  osf*)
2290    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
2291    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
2292    # nice to cause kernel panics so lets avoid the loop below.
2293    # First set a reasonable default.
2294    lt_cv_sys_max_cmd_len=16384
2295    #
2296    if test -x /sbin/sysconfig; then
2297      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
2298        *1*) lt_cv_sys_max_cmd_len=-1 ;;
2299      esac
2300    fi
2301    ;;
2302  *)
2303    # If test is not a shell built-in, we'll probably end up computing a
2304    # maximum length that is only half of the actual maximum length, but
2305    # we can't tell.
2306    SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
2307    while (test "X"`$SHELL [$]0 --fallback-echo "X$teststring" 2>/dev/null` \
2308	       = "XX$teststring") >/dev/null 2>&1 &&
2309	    new_result=`expr "X$teststring" : ".*" 2>&1` &&
2310	    lt_cv_sys_max_cmd_len=$new_result &&
2311	    test $i != 17 # 1/2 MB should be enough
2312    do
2313      i=`expr $i + 1`
2314      teststring=$teststring$teststring
2315    done
2316    teststring=
2317    # Add a significant safety factor because C++ compilers can tack on massive
2318    # amounts of additional arguments before passing them to the linker.
2319    # It appears as though 1/2 is a usable value.
2320    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
2321    ;;
2322  esac
2323])
2324if test -n $lt_cv_sys_max_cmd_len ; then
2325  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
2326else
2327  AC_MSG_RESULT(none)
2328fi
2329])
2330m4trace:/usr/share/aclocal/libtool.m4:775: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN], [AC_CHECK_HEADERS(dlfcn.h)dnl
2331])
2332m4trace:/usr/share/aclocal/libtool.m4:864: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
2333if test "$cross_compiling" = yes; then :
2334  [$4]
2335else
2336  lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
2337  lt_status=$lt_dlunknown
2338  cat > conftest.$ac_ext <<EOF
2339[#line __oline__ "configure"
2340#include "confdefs.h"
2341
2342#if HAVE_DLFCN_H
2343#include <dlfcn.h>
2344#endif
2345
2346#include <stdio.h>
2347
2348#ifdef RTLD_GLOBAL
2349#  define LT_DLGLOBAL		RTLD_GLOBAL
2350#else
2351#  ifdef DL_GLOBAL
2352#    define LT_DLGLOBAL		DL_GLOBAL
2353#  else
2354#    define LT_DLGLOBAL		0
2355#  endif
2356#endif
2357
2358/* We may have to define LT_DLLAZY_OR_NOW in the command line if we
2359   find out it does not work in some platform. */
2360#ifndef LT_DLLAZY_OR_NOW
2361#  ifdef RTLD_LAZY
2362#    define LT_DLLAZY_OR_NOW		RTLD_LAZY
2363#  else
2364#    ifdef DL_LAZY
2365#      define LT_DLLAZY_OR_NOW		DL_LAZY
2366#    else
2367#      ifdef RTLD_NOW
2368#        define LT_DLLAZY_OR_NOW	RTLD_NOW
2369#      else
2370#        ifdef DL_NOW
2371#          define LT_DLLAZY_OR_NOW	DL_NOW
2372#        else
2373#          define LT_DLLAZY_OR_NOW	0
2374#        endif
2375#      endif
2376#    endif
2377#  endif
2378#endif
2379
2380#ifdef __cplusplus
2381extern "C" void exit (int);
2382#endif
2383
2384void fnord() { int i=42;}
2385int main ()
2386{
2387  void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW);
2388  int status = $lt_dlunknown;
2389
2390  if (self)
2391    {
2392      if (dlsym (self,"fnord"))       status = $lt_dlno_uscore;
2393      else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore;
2394      /* dlclose (self); */
2395    }
2396
2397    exit (status);
2398}]
2399EOF
2400  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then
2401    (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
2402    lt_status=$?
2403    case x$lt_status in
2404      x$lt_dlno_uscore) $1 ;;
2405      x$lt_dlneed_uscore) $2 ;;
2406      x$lt_unknown|x*) $3 ;;
2407    esac
2408  else :
2409    # compilation failed
2410    $3
2411  fi
2412fi
2413rm -fr conftest*
2414])
2415m4trace:/usr/share/aclocal/libtool.m4:977: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_REQUIRE([_LT_AC_CHECK_DLFCN])dnl
2416if test "x$enable_dlopen" != xyes; then
2417  enable_dlopen=unknown
2418  enable_dlopen_self=unknown
2419  enable_dlopen_self_static=unknown
2420else
2421  lt_cv_dlopen=no
2422  lt_cv_dlopen_libs=
2423
2424  case $host_os in
2425  beos*)
2426    lt_cv_dlopen="load_add_on"
2427    lt_cv_dlopen_libs=
2428    lt_cv_dlopen_self=yes
2429    ;;
2430
2431  mingw* | pw32*)
2432    lt_cv_dlopen="LoadLibrary"
2433    lt_cv_dlopen_libs=
2434   ;;
2435
2436  cygwin*)
2437    lt_cv_dlopen="dlopen"
2438    lt_cv_dlopen_libs=
2439   ;;
2440
2441  darwin*)
2442  # if libdl is installed we need to link against it
2443    AC_CHECK_LIB([dl], [dlopen],
2444		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
2445    lt_cv_dlopen="dyld"
2446    lt_cv_dlopen_libs=
2447    lt_cv_dlopen_self=yes
2448    ])
2449   ;;
2450
2451  *)
2452    AC_CHECK_FUNC([shl_load],
2453	  [lt_cv_dlopen="shl_load"],
2454      [AC_CHECK_LIB([dld], [shl_load],
2455	    [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"],
2456	[AC_CHECK_FUNC([dlopen],
2457	      [lt_cv_dlopen="dlopen"],
2458	  [AC_CHECK_LIB([dl], [dlopen],
2459		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
2460	    [AC_CHECK_LIB([svld], [dlopen],
2461		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
2462	      [AC_CHECK_LIB([dld], [dld_link],
2463		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
2464	      ])
2465	    ])
2466	  ])
2467	])
2468      ])
2469    ;;
2470  esac
2471
2472  if test "x$lt_cv_dlopen" != xno; then
2473    enable_dlopen=yes
2474  else
2475    enable_dlopen=no
2476  fi
2477
2478  case $lt_cv_dlopen in
2479  dlopen)
2480    save_CPPFLAGS="$CPPFLAGS"
2481    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
2482
2483    save_LDFLAGS="$LDFLAGS"
2484    eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
2485
2486    save_LIBS="$LIBS"
2487    LIBS="$lt_cv_dlopen_libs $LIBS"
2488
2489    AC_CACHE_CHECK([whether a program can dlopen itself],
2490	  lt_cv_dlopen_self, [dnl
2491	  _LT_AC_TRY_DLOPEN_SELF(
2492	    lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
2493	    lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
2494    ])
2495
2496    if test "x$lt_cv_dlopen_self" = xyes; then
2497      LDFLAGS="$LDFLAGS $link_static_flag"
2498      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
2499    	  lt_cv_dlopen_self_static, [dnl
2500	  _LT_AC_TRY_DLOPEN_SELF(
2501	    lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
2502	    lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
2503      ])
2504    fi
2505
2506    CPPFLAGS="$save_CPPFLAGS"
2507    LDFLAGS="$save_LDFLAGS"
2508    LIBS="$save_LIBS"
2509    ;;
2510  esac
2511
2512  case $lt_cv_dlopen_self in
2513  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
2514  *) enable_dlopen_self=unknown ;;
2515  esac
2516
2517  case $lt_cv_dlopen_self_static in
2518  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
2519  *) enable_dlopen_self_static=unknown ;;
2520  esac
2521fi
2522])
2523m4trace:/usr/share/aclocal/libtool.m4:1028: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
2524AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext],
2525  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)],
2526  [_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no
2527   $rm -r conftest 2>/dev/null
2528   mkdir conftest
2529   cd conftest
2530   mkdir out
2531   printf "$lt_simple_compile_test_code" > conftest.$ac_ext
2532
2533   lt_compiler_flag="-o out/conftest2.$ac_objext"
2534   # Insert the option either (1) after the last *FLAGS variable, or
2535   # (2) before a word containing "conftest.", or (3) at the end.
2536   # Note that $ac_compile itself does not contain backslashes and begins
2537   # with a dollar sign (not a hyphen), so the echo should work correctly.
2538   lt_compile=`echo "$ac_compile" | $SED \
2539   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
2540   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
2541   -e 's:$: $lt_compiler_flag:'`
2542   (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
2543   (eval "$lt_compile" 2>out/conftest.err)
2544   ac_status=$?
2545   cat out/conftest.err >&AS_MESSAGE_LOG_FD
2546   echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2547   if (exit $ac_status) && test -s out/conftest2.$ac_objext
2548   then
2549     # The compiler can only warn and ignore the option if not recognized
2550     # So say no if there are warnings
2551     $echo "X$_lt_compiler_boilerplate" | $Xsed > out/conftest.exp
2552     $SED '/^$/d' out/conftest.err >out/conftest.er2
2553     if test ! -s out/conftest.err || diff out/conftest.exp out/conftest.er2 >/dev/null; then
2554       _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
2555     fi
2556   fi
2557   chmod u+w . 2>&AS_MESSAGE_LOG_FD
2558   $rm conftest*
2559   # SGI C++ compiler will create directory out/ii_files/ for
2560   # template instantiation
2561   test -d out/ii_files && $rm out/ii_files/* && rmdir out/ii_files
2562   $rm out/* && rmdir out
2563   cd ..
2564   rmdir conftest
2565   $rm conftest*
2566])
2567])
2568m4trace:/usr/share/aclocal/libtool.m4:1055: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_REQUIRE([_LT_AC_LOCK])dnl
2569
2570hard_links="nottested"
2571if test "$_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then
2572  # do not overwrite the value of need_locks provided by the user
2573  AC_MSG_CHECKING([if we can lock with hard links])
2574  hard_links=yes
2575  $rm conftest*
2576  ln conftest.a conftest.b 2>/dev/null && hard_links=no
2577  touch conftest.a
2578  ln conftest.a conftest.b 2>&5 || hard_links=no
2579  ln conftest.a conftest.b 2>/dev/null && hard_links=no
2580  AC_MSG_RESULT([$hard_links])
2581  if test "$hard_links" = no; then
2582    AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe])
2583    need_locks=warn
2584  fi
2585else
2586  need_locks=no
2587fi
2588])
2589m4trace:/usr/share/aclocal/libtool.m4:1072: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir],
2590[rm -f .libs 2>/dev/null
2591mkdir .libs 2>/dev/null
2592if test -d .libs; then
2593  lt_cv_objdir=.libs
2594else
2595  # MS-DOS does not allow filenames that begin with a dot.
2596  lt_cv_objdir=_libs
2597fi
2598rmdir .libs 2>/dev/null])
2599objdir=$lt_cv_objdir
2600])
2601m4trace:/usr/share/aclocal/libtool.m4:1113: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs])
2602_LT_AC_TAGVAR(hardcode_action, $1)=
2603if test -n "$_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)" || \
2604   test -n "$_LT_AC_TAGVAR(runpath_var, $1)" || \
2605   test "X$_LT_AC_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then
2606
2607  # We can hardcode non-existant directories.
2608  if test "$_LT_AC_TAGVAR(hardcode_direct, $1)" != no &&
2609     # If the only mechanism to avoid hardcoding is shlibpath_var, we
2610     # have to relink, otherwise we might link with an installed library
2611     # when we should be linking with a yet-to-be-installed one
2612     ## test "$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)" != no &&
2613     test "$_LT_AC_TAGVAR(hardcode_minus_L, $1)" != no; then
2614    # Linking always hardcodes the temporary library directory.
2615    _LT_AC_TAGVAR(hardcode_action, $1)=relink
2616  else
2617    # We can link without hardcoding, and we can hardcode nonexisting dirs.
2618    _LT_AC_TAGVAR(hardcode_action, $1)=immediate
2619  fi
2620else
2621  # We cannot hardcode anything, or else we can only hardcode existing
2622  # directories.
2623  _LT_AC_TAGVAR(hardcode_action, $1)=unsupported
2624fi
2625AC_MSG_RESULT([$_LT_AC_TAGVAR(hardcode_action, $1)])
2626
2627if test "$_LT_AC_TAGVAR(hardcode_action, $1)" = relink; then
2628  # Fast installation is not supported
2629  enable_fast_install=no
2630elif test "$shlibpath_overrides_runpath" = yes ||
2631     test "$enable_shared" = no; then
2632  # Fast installation is not necessary
2633  enable_fast_install=needless
2634fi
2635])
2636m4trace:/usr/share/aclocal/libtool.m4:1142: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP], [striplib=
2637old_striplib=
2638AC_MSG_CHECKING([whether stripping libraries is possible])
2639if test -n "$STRIP" && $STRIP -V 2>&1 | grep "GNU strip" >/dev/null; then
2640  test -z "$old_striplib" && old_striplib="$STRIP --strip-debug"
2641  test -z "$striplib" && striplib="$STRIP --strip-unneeded"
2642  AC_MSG_RESULT([yes])
2643else
2644# FIXME - insert some real tests, host_os isn't really good enough
2645  case $host_os in
2646   darwin*)
2647       if test -n "$STRIP" ; then
2648         striplib="$STRIP -x"
2649         AC_MSG_RESULT([yes])
2650       else
2651  AC_MSG_RESULT([no])
2652fi
2653       ;;
2654   *)
2655  AC_MSG_RESULT([no])
2656    ;;
2657  esac
2658fi
2659])
2660m4trace:/usr/share/aclocal/libtool.m4:1704: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_MSG_CHECKING([dynamic linker characteristics])
2661library_names_spec=
2662libname_spec='lib$name'
2663soname_spec=
2664shrext_cmds=".so"
2665postinstall_cmds=
2666postuninstall_cmds=
2667finish_cmds=
2668finish_eval=
2669shlibpath_var=
2670shlibpath_overrides_runpath=unknown
2671version_type=none
2672dynamic_linker="$host_os ld.so"
2673sys_lib_dlsearch_path_spec="/lib /usr/lib"
2674if test "$GCC" = yes; then
2675  sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
2676  if echo "$sys_lib_search_path_spec" | grep ';' >/dev/null ; then
2677    # if the path contains ";" then we assume it to be the separator
2678    # otherwise default to the standard path separator (i.e. ":") - it is
2679    # assumed that no part of a normal pathname contains ";" but that should
2680    # okay in the real world where ";" in dirpaths is itself problematic.
2681    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
2682  else
2683    sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
2684  fi
2685else
2686  sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib"
2687fi
2688need_lib_prefix=unknown
2689hardcode_into_libs=no
2690
2691# when you set need_version to no, make sure it does not cause -set_version
2692# flags to be left without arguments
2693need_version=unknown
2694
2695case $host_os in
2696aix3*)
2697  version_type=linux
2698  library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a'
2699  shlibpath_var=LIBPATH
2700
2701  # AIX 3 has no versioning support, so we append a major version to the name.
2702  soname_spec='${libname}${release}${shared_ext}$major'
2703  ;;
2704
2705aix4* | aix5*)
2706  version_type=linux
2707  need_lib_prefix=no
2708  need_version=no
2709  hardcode_into_libs=yes
2710  if test "$host_cpu" = ia64; then
2711    # AIX 5 supports IA64
2712    library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}'
2713    shlibpath_var=LD_LIBRARY_PATH
2714  else
2715    # With GCC up to 2.95.x, collect2 would create an import file
2716    # for dependence libraries.  The import file would start with
2717    # the line `#! .'.  This would cause the generated library to
2718    # depend on `.', always an invalid library.  This was fixed in
2719    # development snapshots of GCC prior to 3.0.
2720    case $host_os in
2721      aix4 | aix4.[[01]] | aix4.[[01]].*)
2722      if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)'
2723	   echo ' yes '
2724	   echo '#endif'; } | ${CC} -E - | grep yes > /dev/null; then
2725	:
2726      else
2727	can_build_shared=no
2728      fi
2729      ;;
2730    esac
2731    # AIX (on Power*) has no versioning support, so currently we can not hardcode correct
2732    # soname into executable. Probably we can add versioning support to
2733    # collect2, so additional links can be useful in future.
2734    if test "$aix_use_runtimelinking" = yes; then
2735      # If using run time linking (on AIX 4.2 or later) use lib<name>.so
2736      # instead of lib<name>.a to let people know that these are not
2737      # typical AIX shared libraries.
2738      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2739    else
2740      # We preserve .a as extension for shared libraries through AIX4.2
2741      # and later when we are not doing run time linking.
2742      library_names_spec='${libname}${release}.a $libname.a'
2743      soname_spec='${libname}${release}${shared_ext}$major'
2744    fi
2745    shlibpath_var=LIBPATH
2746  fi
2747  ;;
2748
2749amigaos*)
2750  library_names_spec='$libname.ixlibrary $libname.a'
2751  # Create ${libname}_ixlibrary.a entries in /sys/libs.
2752  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'
2753  ;;
2754
2755beos*)
2756  library_names_spec='${libname}${shared_ext}'
2757  dynamic_linker="$host_os ld.so"
2758  shlibpath_var=LIBRARY_PATH
2759  ;;
2760
2761bsdi[[45]]*)
2762  version_type=linux
2763  need_version=no
2764  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2765  soname_spec='${libname}${release}${shared_ext}$major'
2766  finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir'
2767  shlibpath_var=LD_LIBRARY_PATH
2768  sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib"
2769  sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib"
2770  # the default ld.so.conf also contains /usr/contrib/lib and
2771  # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow
2772  # libtool to hard-code these into programs
2773  ;;
2774
2775cygwin* | mingw* | pw32*)
2776  version_type=windows
2777  shrext_cmds=".dll"
2778  need_version=no
2779  need_lib_prefix=no
2780
2781  case $GCC,$host_os in
2782  yes,cygwin* | yes,mingw* | yes,pw32*)
2783    library_names_spec='$libname.dll.a'
2784    # DLL is installed to $(libdir)/../bin by postinstall_cmds
2785    postinstall_cmds='base_file=`basename \${file}`~
2786      dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i;echo \$dlname'\''`~
2787      dldir=$destdir/`dirname \$dlpath`~
2788      test -d \$dldir || mkdir -p \$dldir~
2789      $install_prog $dir/$dlname \$dldir/$dlname~
2790      chmod a+x \$dldir/$dlname'
2791    postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~
2792      dlpath=$dir/\$dldll~
2793       $rm \$dlpath'
2794    shlibpath_overrides_runpath=yes
2795
2796    case $host_os in
2797    cygwin*)
2798      # Cygwin DLLs use 'cyg' prefix rather than 'lib'
2799      soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
2800      sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib"
2801      ;;
2802    mingw*)
2803      # MinGW DLLs use traditional 'lib' prefix
2804      soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
2805      sys_lib_search_path_spec=`$CC -print-search-dirs | grep "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"`
2806      if echo "$sys_lib_search_path_spec" | [grep ';[c-zC-Z]:/' >/dev/null]; then
2807        # It is most probably a Windows format PATH printed by
2808        # mingw gcc, but we are running on Cygwin. Gcc prints its search
2809        # path with ; separators, and with drive letters. We can handle the
2810        # drive letters (cygwin fileutils understands them), so leave them,
2811        # especially as we might pass files found there to a mingw objdump,
2812        # which wouldn't understand a cygwinified path. Ahh.
2813        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'`
2814      else
2815        sys_lib_search_path_spec=`echo "$sys_lib_search_path_spec" | $SED  -e "s/$PATH_SEPARATOR/ /g"`
2816      fi
2817      ;;
2818    pw32*)
2819      # pw32 DLLs use 'pw' prefix rather than 'lib'
2820      library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}'
2821      ;;
2822    esac
2823    ;;
2824
2825  *)
2826    library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib'
2827    ;;
2828  esac
2829  dynamic_linker='Win32 ld.exe'
2830  # FIXME: first we should search . and the directory the executable is in
2831  shlibpath_var=PATH
2832  ;;
2833
2834darwin* | rhapsody*)
2835  dynamic_linker="$host_os dyld"
2836  version_type=darwin
2837  need_lib_prefix=no
2838  need_version=no
2839  library_names_spec='${libname}${release}${versuffix}$shared_ext ${libname}${release}${major}$shared_ext ${libname}$shared_ext'
2840  soname_spec='${libname}${release}${major}$shared_ext'
2841  shlibpath_overrides_runpath=yes
2842  shlibpath_var=DYLD_LIBRARY_PATH
2843  shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`'
2844  # Apple's gcc prints 'gcc -print-search-dirs' doesn't operate the same.
2845  if test "$GCC" = yes; then
2846    sys_lib_search_path_spec=`$CC -print-search-dirs | tr "\n" "$PATH_SEPARATOR" | sed -e 's/libraries:/@libraries:/' | tr "@" "\n" | grep "^libraries:" | sed -e "s/^libraries://" -e "s,=/,/,g" -e "s,$PATH_SEPARATOR, ,g" -e "s,.*,& /lib /usr/lib /usr/local/lib,g"`
2847  else
2848    sys_lib_search_path_spec='/lib /usr/lib /usr/local/lib'
2849  fi
2850  sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib'
2851  ;;
2852
2853dgux*)
2854  version_type=linux
2855  need_lib_prefix=no
2856  need_version=no
2857  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext'
2858  soname_spec='${libname}${release}${shared_ext}$major'
2859  shlibpath_var=LD_LIBRARY_PATH
2860  ;;
2861
2862freebsd1*)
2863  dynamic_linker=no
2864  ;;
2865
2866kfreebsd*-gnu)
2867  version_type=linux
2868  need_lib_prefix=no
2869  need_version=no
2870  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
2871  soname_spec='${libname}${release}${shared_ext}$major'
2872  shlibpath_var=LD_LIBRARY_PATH
2873  shlibpath_overrides_runpath=no
2874  hardcode_into_libs=yes
2875  dynamic_linker='GNU ld.so'
2876  ;;
2877
2878freebsd* | dragonfly*)
2879  # DragonFly does not have aout.  When/if they implement a new
2880  # versioning mechanism, adjust this.
2881  if test -x /usr/bin/objformat; then
2882    objformat=`/usr/bin/objformat`
2883  else
2884    case $host_os in
2885    freebsd[[123]]*) objformat=aout ;;
2886    *) objformat=elf ;;
2887    esac
2888  fi
2889  version_type=freebsd-$objformat
2890  case $version_type in
2891    freebsd-elf*)
2892      library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}'
2893      need_version=no
2894      need_lib_prefix=no
2895      ;;
2896    freebsd-*)
2897      library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix'
2898      need_version=yes
2899      ;;
2900  esac
2901  shlibpath_var=LD_LIBRARY_PATH
2902  case $host_os in
2903  freebsd2*)
2904    shlibpath_overrides_runpath=yes
2905    ;;
2906  freebsd3.[[01]]* | freebsdelf3.[[01]]*)
2907    shlibpath_overrides_runpath=yes
2908    hardcode_into_libs=yes
2909    ;;
2910  *) # from 3.2 on
2911    shlibpath_overrides_runpath=no
2912    hardcode_into_libs=yes
2913    ;;
2914  esac
2915  ;;
2916
2917gnu*)
2918  version_type=linux
2919  need_lib_prefix=no
2920  need_version=no
2921  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}'
2922  soname_spec='${libname}${release}${shared_ext}$major'
2923  shlibpath_var=LD_LIBRARY_PATH
2924  hardcode_into_libs=yes
2925  ;;
2926
2927hpux9* | hpux10* | hpux11*)
2928  # Give a soname corresponding to the major version so that dld.sl refuses to
2929  # link against other versions.
2930  version_type=sunos
2931  need_lib_prefix=no
2932  need_version=no
2933  case $host_cpu in
2934  ia64*)
2935    shrext_cmds='.so'
2936    hardcode_into_libs=yes
2937    dynamic_linker="$host_os dld.so"
2938    shlibpath_var=LD_LIBRARY_PATH
2939    shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
2940    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2941    soname_spec='${libname}${release}${shared_ext}$major'
2942    if test "X$HPUX_IA64_MODE" = X32; then
2943      sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib"
2944    else
2945      sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64"
2946    fi
2947    sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
2948    ;;
2949   hppa*64*)
2950     shrext_cmds='.sl'
2951     hardcode_into_libs=yes
2952     dynamic_linker="$host_os dld.sl"
2953     shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH
2954     shlibpath_overrides_runpath=yes # Unless +noenvvar is specified.
2955     library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2956     soname_spec='${libname}${release}${shared_ext}$major'
2957     sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64"
2958     sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec
2959     ;;
2960   *)
2961    shrext_cmds='.sl'
2962    dynamic_linker="$host_os dld.sl"
2963    shlibpath_var=SHLIB_PATH
2964    shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH
2965    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
2966    soname_spec='${libname}${release}${shared_ext}$major'
2967    ;;
2968  esac
2969  # HP-UX runs *really* slowly unless shared libraries are mode 555.
2970  postinstall_cmds='chmod 555 $lib'
2971  ;;
2972
2973irix5* | irix6* | nonstopux*)
2974  case $host_os in
2975    nonstopux*) version_type=nonstopux ;;
2976    *)
2977	if test "$lt_cv_prog_gnu_ld" = yes; then
2978		version_type=linux
2979	else
2980		version_type=irix
2981	fi ;;
2982  esac
2983  need_lib_prefix=no
2984  need_version=no
2985  soname_spec='${libname}${release}${shared_ext}$major'
2986  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}'
2987  case $host_os in
2988  irix5* | nonstopux*)
2989    libsuff= shlibsuff=
2990    ;;
2991  *)
2992    case $LD in # libtool.m4 will add one of these switches to LD
2993    *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ")
2994      libsuff= shlibsuff= libmagic=32-bit;;
2995    *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ")
2996      libsuff=32 shlibsuff=N32 libmagic=N32;;
2997    *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ")
2998      libsuff=64 shlibsuff=64 libmagic=64-bit;;
2999    *) libsuff= shlibsuff= libmagic=never-match;;
3000    esac
3001    ;;
3002  esac
3003  shlibpath_var=LD_LIBRARY${shlibsuff}_PATH
3004  shlibpath_overrides_runpath=no
3005  sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}"
3006  sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}"
3007  hardcode_into_libs=yes
3008  ;;
3009
3010# No shared lib support for Linux oldld, aout, or coff.
3011linux*oldld* | linux*aout* | linux*coff*)
3012  dynamic_linker=no
3013  ;;
3014
3015# This must be Linux ELF.
3016linux*)
3017  version_type=linux
3018  need_lib_prefix=no
3019  need_version=no
3020  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3021  soname_spec='${libname}${release}${shared_ext}$major'
3022  finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir'
3023  shlibpath_var=LD_LIBRARY_PATH
3024  shlibpath_overrides_runpath=no
3025  # This implies no fast_install, which is unacceptable.
3026  # Some rework will be needed to allow for fast_install
3027  # before this can be enabled.
3028  hardcode_into_libs=yes
3029
3030  # Append ld.so.conf contents to the search path
3031  if test -f /etc/ld.so.conf; then
3032    lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;s/[:,	]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '`
3033    sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra"
3034  fi
3035
3036  # We used to test for /lib/ld.so.1 and disable shared libraries on
3037  # powerpc, because MkLinux only supported shared libraries with the
3038  # GNU dynamic linker.  Since this was broken with cross compilers,
3039  # most powerpc-linux boxes support dynamic linking these days and
3040  # people can always --disable-shared, the test was removed, and we
3041  # assume the GNU/Linux dynamic linker is in use.
3042  dynamic_linker='GNU/Linux ld.so'
3043  ;;
3044
3045knetbsd*-gnu)
3046  version_type=linux
3047  need_lib_prefix=no
3048  need_version=no
3049  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
3050  soname_spec='${libname}${release}${shared_ext}$major'
3051  shlibpath_var=LD_LIBRARY_PATH
3052  shlibpath_overrides_runpath=no
3053  hardcode_into_libs=yes
3054  dynamic_linker='GNU ld.so'
3055  ;;
3056
3057netbsd*)
3058  version_type=sunos
3059  need_lib_prefix=no
3060  need_version=no
3061  if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
3062    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
3063    finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
3064    dynamic_linker='NetBSD (a.out) ld.so'
3065  else
3066    library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}'
3067    soname_spec='${libname}${release}${shared_ext}$major'
3068    dynamic_linker='NetBSD ld.elf_so'
3069  fi
3070  shlibpath_var=LD_LIBRARY_PATH
3071  shlibpath_overrides_runpath=yes
3072  hardcode_into_libs=yes
3073  ;;
3074
3075newsos6)
3076  version_type=linux
3077  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3078  shlibpath_var=LD_LIBRARY_PATH
3079  shlibpath_overrides_runpath=yes
3080  ;;
3081
3082nto-qnx*)
3083  version_type=linux
3084  need_lib_prefix=no
3085  need_version=no
3086  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3087  soname_spec='${libname}${release}${shared_ext}$major'
3088  shlibpath_var=LD_LIBRARY_PATH
3089  shlibpath_overrides_runpath=yes
3090  ;;
3091
3092openbsd*)
3093  version_type=sunos
3094  need_lib_prefix=no
3095  # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs.
3096  case $host_os in
3097    openbsd3.3 | openbsd3.3.*) need_version=yes ;;
3098    *)                         need_version=no  ;;
3099  esac
3100  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
3101  finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir'
3102  shlibpath_var=LD_LIBRARY_PATH
3103  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3104    case $host_os in
3105      openbsd2.[[89]] | openbsd2.[[89]].*)
3106	shlibpath_overrides_runpath=no
3107	;;
3108      *)
3109	shlibpath_overrides_runpath=yes
3110	;;
3111      esac
3112  else
3113    shlibpath_overrides_runpath=yes
3114  fi
3115  ;;
3116
3117os2*)
3118  libname_spec='$name'
3119  shrext_cmds=".dll"
3120  need_lib_prefix=no
3121  library_names_spec='$libname${shared_ext} $libname.a'
3122  dynamic_linker='OS/2 ld.exe'
3123  shlibpath_var=LIBPATH
3124  ;;
3125
3126osf3* | osf4* | osf5*)
3127  version_type=osf
3128  need_lib_prefix=no
3129  need_version=no
3130  soname_spec='${libname}${release}${shared_ext}$major'
3131  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3132  shlibpath_var=LD_LIBRARY_PATH
3133  sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib"
3134  sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec"
3135  ;;
3136
3137sco3.2v5*)
3138  version_type=osf
3139  soname_spec='${libname}${release}${shared_ext}$major'
3140  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3141  shlibpath_var=LD_LIBRARY_PATH
3142  ;;
3143
3144solaris*)
3145  version_type=linux
3146  need_lib_prefix=no
3147  need_version=no
3148  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3149  soname_spec='${libname}${release}${shared_ext}$major'
3150  shlibpath_var=LD_LIBRARY_PATH
3151  shlibpath_overrides_runpath=yes
3152  hardcode_into_libs=yes
3153  # ldd complains unless libraries are executable
3154  postinstall_cmds='chmod +x $lib'
3155  ;;
3156
3157sunos4*)
3158  version_type=sunos
3159  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix'
3160  finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir'
3161  shlibpath_var=LD_LIBRARY_PATH
3162  shlibpath_overrides_runpath=yes
3163  if test "$with_gnu_ld" = yes; then
3164    need_lib_prefix=no
3165  fi
3166  need_version=yes
3167  ;;
3168
3169sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
3170  version_type=linux
3171  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3172  soname_spec='${libname}${release}${shared_ext}$major'
3173  shlibpath_var=LD_LIBRARY_PATH
3174  case $host_vendor in
3175    sni)
3176      shlibpath_overrides_runpath=no
3177      need_lib_prefix=no
3178      export_dynamic_flag_spec='${wl}-Blargedynsym'
3179      runpath_var=LD_RUN_PATH
3180      ;;
3181    siemens)
3182      need_lib_prefix=no
3183      ;;
3184    motorola)
3185      need_lib_prefix=no
3186      need_version=no
3187      shlibpath_overrides_runpath=no
3188      sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib'
3189      ;;
3190  esac
3191  ;;
3192
3193sysv4*MP*)
3194  if test -d /usr/nec ;then
3195    version_type=linux
3196    library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}'
3197    soname_spec='$libname${shared_ext}.$major'
3198    shlibpath_var=LD_LIBRARY_PATH
3199  fi
3200  ;;
3201
3202uts4*)
3203  version_type=linux
3204  library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}'
3205  soname_spec='${libname}${release}${shared_ext}$major'
3206  shlibpath_var=LD_LIBRARY_PATH
3207  ;;
3208
3209*)
3210  dynamic_linker=no
3211  ;;
3212esac
3213AC_MSG_RESULT([$dynamic_linker])
3214test "$dynamic_linker" = no && can_build_shared=no
3215])
3216m4trace:/usr/share/aclocal/libtool.m4:1805: -1- AC_DEFUN([_LT_AC_TAGCONFIG], [AC_ARG_WITH([tags],
3217    [AC_HELP_STRING([--with-tags@<:@=TAGS@:>@],
3218        [include additional configurations @<:@automatic@:>@])],
3219    [tagnames="$withval"])
3220
3221if test -f "$ltmain" && test -n "$tagnames"; then
3222  if test ! -f "${ofile}"; then
3223    AC_MSG_WARN([output file `$ofile' does not exist])
3224  fi
3225
3226  if test -z "$LTCC"; then
3227    eval "`$SHELL ${ofile} --config | grep '^LTCC='`"
3228    if test -z "$LTCC"; then
3229      AC_MSG_WARN([output file `$ofile' does not look like a libtool script])
3230    else
3231      AC_MSG_WARN([using `LTCC=$LTCC', extracted from `$ofile'])
3232    fi
3233  fi
3234
3235  # Extract list of available tagged configurations in $ofile.
3236  # Note that this assumes the entire list is on one line.
3237  available_tags=`grep "^available_tags=" "${ofile}" | $SED -e 's/available_tags=\(.*$\)/\1/' -e 's/\"//g'`
3238
3239  lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
3240  for tagname in $tagnames; do
3241    IFS="$lt_save_ifs"
3242    # Check whether tagname contains only valid characters
3243    case `$echo "X$tagname" | $Xsed -e 's:[[-_ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz1234567890,/]]::g'` in
3244    "") ;;
3245    *)  AC_MSG_ERROR([invalid tag name: $tagname])
3246	;;
3247    esac
3248
3249    if grep "^# ### BEGIN LIBTOOL TAG CONFIG: $tagname$" < "${ofile}" > /dev/null
3250    then
3251      AC_MSG_ERROR([tag name \"$tagname\" already exists])
3252    fi
3253
3254    # Update the list of available tags.
3255    if test -n "$tagname"; then
3256      echo appending configuration tag \"$tagname\" to $ofile
3257
3258      case $tagname in
3259      CXX)
3260	if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
3261	    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
3262	    (test "X$CXX" != "Xg++"))) ; then
3263	  AC_LIBTOOL_LANG_CXX_CONFIG
3264	else
3265	  tagname=""
3266	fi
3267	;;
3268
3269      F77)
3270	if test -n "$F77" && test "X$F77" != "Xno"; then
3271	  AC_LIBTOOL_LANG_F77_CONFIG
3272	else
3273	  tagname=""
3274	fi
3275	;;
3276
3277      GCJ)
3278	if test -n "$GCJ" && test "X$GCJ" != "Xno"; then
3279	  AC_LIBTOOL_LANG_GCJ_CONFIG
3280	else
3281	  tagname=""
3282	fi
3283	;;
3284
3285      RC)
3286	AC_LIBTOOL_LANG_RC_CONFIG
3287	;;
3288
3289      *)
3290	AC_MSG_ERROR([Unsupported tag name: $tagname])
3291	;;
3292      esac
3293
3294      # Append the new tag name to the list of available tags.
3295      if test -n "$tagname" ; then
3296      available_tags="$available_tags $tagname"
3297    fi
3298    fi
3299  done
3300  IFS="$lt_save_ifs"
3301
3302  # Now substitute the updated list of available tags.
3303  if eval "sed -e 's/^available_tags=.*\$/available_tags=\"$available_tags\"/' \"$ofile\" > \"${ofile}T\""; then
3304    mv "${ofile}T" "$ofile"
3305    chmod +x "$ofile"
3306  else
3307    rm -f "${ofile}T"
3308    AC_MSG_ERROR([unable to update list of available tagged configurations.])
3309  fi
3310fi
3311])
3312m4trace:/usr/share/aclocal/libtool.m4:1813: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])
3313])
3314m4trace:/usr/share/aclocal/libtool.m4:1821: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_BEFORE([$0], [AC_LIBTOOL_SETUP])
3315])
3316m4trace:/usr/share/aclocal/libtool.m4:1851: -1- AC_DEFUN([AC_ENABLE_SHARED], [define([AC_ENABLE_SHARED_DEFAULT], ifelse($1, no, no, yes))dnl
3317AC_ARG_ENABLE([shared],
3318    [AC_HELP_STRING([--enable-shared@<:@=PKGS@:>@],
3319	[build shared libraries @<:@default=]AC_ENABLE_SHARED_DEFAULT[@:>@])],
3320    [p=${PACKAGE-default}
3321    case $enableval in
3322    yes) enable_shared=yes ;;
3323    no) enable_shared=no ;;
3324    *)
3325      enable_shared=no
3326      # Look at the argument we got.  We use all the common list separators.
3327      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
3328      for pkg in $enableval; do
3329	IFS="$lt_save_ifs"
3330	if test "X$pkg" = "X$p"; then
3331	  enable_shared=yes
3332	fi
3333      done
3334      IFS="$lt_save_ifs"
3335      ;;
3336    esac],
3337    [enable_shared=]AC_ENABLE_SHARED_DEFAULT)
3338])
3339m4trace:/usr/share/aclocal/libtool.m4:1860: -1- AC_DEFUN([AC_DISABLE_SHARED], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3340AC_ENABLE_SHARED(no)
3341])
3342m4trace:/usr/share/aclocal/libtool.m4:1890: -1- AC_DEFUN([AC_ENABLE_STATIC], [define([AC_ENABLE_STATIC_DEFAULT], ifelse($1, no, no, yes))dnl
3343AC_ARG_ENABLE([static],
3344    [AC_HELP_STRING([--enable-static@<:@=PKGS@:>@],
3345	[build static libraries @<:@default=]AC_ENABLE_STATIC_DEFAULT[@:>@])],
3346    [p=${PACKAGE-default}
3347    case $enableval in
3348    yes) enable_static=yes ;;
3349    no) enable_static=no ;;
3350    *)
3351     enable_static=no
3352      # Look at the argument we got.  We use all the common list separators.
3353      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
3354      for pkg in $enableval; do
3355	IFS="$lt_save_ifs"
3356	if test "X$pkg" = "X$p"; then
3357	  enable_static=yes
3358	fi
3359      done
3360      IFS="$lt_save_ifs"
3361      ;;
3362    esac],
3363    [enable_static=]AC_ENABLE_STATIC_DEFAULT)
3364])
3365m4trace:/usr/share/aclocal/libtool.m4:1899: -1- AC_DEFUN([AC_DISABLE_STATIC], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3366AC_ENABLE_STATIC(no)
3367])
3368m4trace:/usr/share/aclocal/libtool.m4:1929: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [define([AC_ENABLE_FAST_INSTALL_DEFAULT], ifelse($1, no, no, yes))dnl
3369AC_ARG_ENABLE([fast-install],
3370    [AC_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@],
3371    [optimize for fast installation @<:@default=]AC_ENABLE_FAST_INSTALL_DEFAULT[@:>@])],
3372    [p=${PACKAGE-default}
3373    case $enableval in
3374    yes) enable_fast_install=yes ;;
3375    no) enable_fast_install=no ;;
3376    *)
3377      enable_fast_install=no
3378      # Look at the argument we got.  We use all the common list separators.
3379      lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR,"
3380      for pkg in $enableval; do
3381	IFS="$lt_save_ifs"
3382	if test "X$pkg" = "X$p"; then
3383	  enable_fast_install=yes
3384	fi
3385      done
3386      IFS="$lt_save_ifs"
3387      ;;
3388    esac],
3389    [enable_fast_install=]AC_ENABLE_FAST_INSTALL_DEFAULT)
3390])
3391m4trace:/usr/share/aclocal/libtool.m4:1938: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3392AC_ENABLE_FAST_INSTALL(no)
3393])
3394m4trace:/usr/share/aclocal/libtool.m4:1948: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3395pic_mode=ifelse($#,1,$1,default)
3396])
3397m4trace:/usr/share/aclocal/libtool.m4:2026: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_REQUIRE([AC_PROG_EGREP])dnl
3398AC_MSG_CHECKING([for $1])
3399AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
3400[case $MAGIC_CMD in
3401[[\\/*] |  ?:[\\/]*])
3402  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
3403  ;;
3404*)
3405  lt_save_MAGIC_CMD="$MAGIC_CMD"
3406  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3407dnl $ac_dummy forces splitting on constant user-supplied paths.
3408dnl POSIX.2 word splitting is done only on the output of word expansions,
3409dnl not every word.  This closes a longstanding sh security hole.
3410  ac_dummy="ifelse([$2], , $PATH, [$2])"
3411  for ac_dir in $ac_dummy; do
3412    IFS="$lt_save_ifs"
3413    test -z "$ac_dir" && ac_dir=.
3414    if test -f $ac_dir/$1; then
3415      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
3416      if test -n "$file_magic_test_file"; then
3417	case $deplibs_check_method in
3418	"file_magic "*)
3419	  file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
3420	  MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3421	  if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
3422	    $EGREP "$file_magic_regex" > /dev/null; then
3423	    :
3424	  else
3425	    cat <<EOF 1>&2
3426
3427*** Warning: the command libtool uses to detect shared libraries,
3428*** $file_magic_cmd, produces output that libtool cannot recognize.
3429*** The result is that libtool may fail to recognize shared libraries
3430*** as such.  This will affect the creation of libtool libraries that
3431*** depend on shared libraries, but programs linked with such libtool
3432*** libraries will work regardless of this problem.  Nevertheless, you
3433*** may want to report the problem to your system manager and/or to
3434*** bug-libtool@gnu.org
3435
3436EOF
3437	  fi ;;
3438	esac
3439      fi
3440      break
3441    fi
3442  done
3443  IFS="$lt_save_ifs"
3444  MAGIC_CMD="$lt_save_MAGIC_CMD"
3445  ;;
3446esac])
3447MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
3448if test -n "$MAGIC_CMD"; then
3449  AC_MSG_RESULT($MAGIC_CMD)
3450else
3451  AC_MSG_RESULT(no)
3452fi
3453])
3454m4trace:/usr/share/aclocal/libtool.m4:2041: -1- AC_DEFUN([AC_PATH_MAGIC], [AC_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH)
3455if test -z "$lt_cv_path_MAGIC_CMD"; then
3456  if test -n "$ac_tool_prefix"; then
3457    AC_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH)
3458  else
3459    MAGIC_CMD=:
3460  fi
3461fi
3462])
3463m4trace:/usr/share/aclocal/libtool.m4:2126: -1- AC_DEFUN([AC_PROG_LD], [AC_ARG_WITH([gnu-ld],
3464    [AC_HELP_STRING([--with-gnu-ld],
3465	[assume the C compiler uses GNU ld @<:@default=no@:>@])],
3466    [test "$withval" = no || with_gnu_ld=yes],
3467    [with_gnu_ld=no])
3468AC_REQUIRE([LT_AC_PROG_SED])dnl
3469AC_REQUIRE([AC_PROG_CC])dnl
3470AC_REQUIRE([AC_CANONICAL_HOST])dnl
3471AC_REQUIRE([AC_CANONICAL_BUILD])dnl
3472ac_prog=ld
3473if test "$GCC" = yes; then
3474  # Check if gcc -print-prog-name=ld gives a path.
3475  AC_MSG_CHECKING([for ld used by $CC])
3476  case $host in
3477  *-*-mingw*)
3478    # gcc leaves a trailing carriage return which upsets mingw
3479    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
3480  *)
3481    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
3482  esac
3483  case $ac_prog in
3484    # Accept absolute paths.
3485    [[\\/]]* | ?:[[\\/]]*)
3486      re_direlt='/[[^/]][[^/]]*/\.\./'
3487      # Canonicalize the pathname of ld
3488      ac_prog=`echo $ac_prog| $SED 's%\\\\%/%g'`
3489      while echo $ac_prog | grep "$re_direlt" > /dev/null 2>&1; do
3490	ac_prog=`echo $ac_prog| $SED "s%$re_direlt%/%"`
3491      done
3492      test -z "$LD" && LD="$ac_prog"
3493      ;;
3494  "")
3495    # If it fails, then pretend we aren't using GCC.
3496    ac_prog=ld
3497    ;;
3498  *)
3499    # If it is relative, then search for the first ld in PATH.
3500    with_gnu_ld=unknown
3501    ;;
3502  esac
3503elif test "$with_gnu_ld" = yes; then
3504  AC_MSG_CHECKING([for GNU ld])
3505else
3506  AC_MSG_CHECKING([for non-GNU ld])
3507fi
3508AC_CACHE_VAL(lt_cv_path_LD,
3509[if test -z "$LD"; then
3510  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3511  for ac_dir in $PATH; do
3512    IFS="$lt_save_ifs"
3513    test -z "$ac_dir" && ac_dir=.
3514    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
3515      lt_cv_path_LD="$ac_dir/$ac_prog"
3516      # Check to see if the program is GNU ld.  I'd rather use --version,
3517      # but apparently some variants of GNU ld only accept -v.
3518      # Break only if it was the GNU/non-GNU ld that we prefer.
3519      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
3520      *GNU* | *'with BFD'*)
3521	test "$with_gnu_ld" != no && break
3522	;;
3523      *)
3524	test "$with_gnu_ld" != yes && break
3525	;;
3526      esac
3527    fi
3528  done
3529  IFS="$lt_save_ifs"
3530else
3531  lt_cv_path_LD="$LD" # Let the user override the test with a path.
3532fi])
3533LD="$lt_cv_path_LD"
3534if test -n "$LD"; then
3535  AC_MSG_RESULT($LD)
3536else
3537  AC_MSG_RESULT(no)
3538fi
3539test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
3540AC_PROG_LD_GNU
3541])
3542m4trace:/usr/share/aclocal/libtool.m4:2144: -1- AC_DEFUN([AC_PROG_LD_GNU], [AC_REQUIRE([AC_PROG_EGREP])dnl
3543AC_CACHE_CHECK([if the linker ($LD) is GNU ld], lt_cv_prog_gnu_ld,
3544[# I'd rather use --version here, but apparently some GNU lds only accept -v.
3545case `$LD -v 2>&1 </dev/null` in
3546*GNU* | *'with BFD'*)
3547  lt_cv_prog_gnu_ld=yes
3548  ;;
3549*)
3550  lt_cv_prog_gnu_ld=no
3551  ;;
3552esac])
3553with_gnu_ld=$lt_cv_prog_gnu_ld
3554])
3555m4trace:/usr/share/aclocal/libtool.m4:2170: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG], [AC_CACHE_CHECK([for $LD option to reload object files],
3556  lt_cv_ld_reload_flag,
3557  [lt_cv_ld_reload_flag='-r'])
3558reload_flag=$lt_cv_ld_reload_flag
3559case $reload_flag in
3560"" | " "*) ;;
3561*) reload_flag=" $reload_flag" ;;
3562esac
3563reload_cmds='$LD$reload_flag -o $output$reload_objs'
3564case $host_os in
3565  darwin*)
3566    if test "$GCC" = yes; then
3567      reload_cmds='$CC -nostdlib ${wl}-r -o $output$reload_objs'
3568    else
3569      reload_cmds='$LD$reload_flag -o $output$reload_objs'
3570    fi
3571    ;;
3572esac
3573])
3574m4trace:/usr/share/aclocal/libtool.m4:2349: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD], [AC_CACHE_CHECK([how to recognise dependent libraries],
3575lt_cv_deplibs_check_method,
3576[lt_cv_file_magic_cmd='$MAGIC_CMD'
3577lt_cv_file_magic_test_file=
3578lt_cv_deplibs_check_method='unknown'
3579# Need to set the preceding variable on all platforms that support
3580# interlibrary dependencies.
3581# 'none' -- dependencies not supported.
3582# `unknown' -- same as none, but documents that we really don't know.
3583# 'pass_all' -- all dependencies passed with no checks.
3584# 'test_compile' -- check by making test program.
3585# 'file_magic [[regex]]' -- check by looking for files in library path
3586# which responds to the $file_magic_cmd with a given extended regex.
3587# If you have `file' or equivalent on your system and you're not sure
3588# whether `pass_all' will *always* work, you probably want this one.
3589
3590case $host_os in
3591aix4* | aix5*)
3592  lt_cv_deplibs_check_method=pass_all
3593  ;;
3594
3595beos*)
3596  lt_cv_deplibs_check_method=pass_all
3597  ;;
3598
3599bsdi[[45]]*)
3600  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib)'
3601  lt_cv_file_magic_cmd='/usr/bin/file -L'
3602  lt_cv_file_magic_test_file=/shlib/libc.so
3603  ;;
3604
3605cygwin*)
3606  # func_win32_libid is a shell function defined in ltmain.sh
3607  lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL'
3608  lt_cv_file_magic_cmd='func_win32_libid'
3609  ;;
3610
3611mingw* | pw32*)
3612  # Base MSYS/MinGW do not provide the 'file' command needed by
3613  # func_win32_libid shell function, so use a weaker test based on 'objdump'.
3614  lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?'
3615  lt_cv_file_magic_cmd='$OBJDUMP -f'
3616  ;;
3617
3618darwin* | rhapsody*)
3619  lt_cv_deplibs_check_method=pass_all
3620  ;;
3621
3622freebsd* | kfreebsd*-gnu | dragonfly*)
3623  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3624    case $host_cpu in
3625    i*86 )
3626      # Not sure whether the presence of OpenBSD here was a mistake.
3627      # Let's accept both of them until this is cleared up.
3628      lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library'
3629      lt_cv_file_magic_cmd=/usr/bin/file
3630      lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*`
3631      ;;
3632    esac
3633  else
3634    lt_cv_deplibs_check_method=pass_all
3635  fi
3636  ;;
3637
3638gnu*)
3639  lt_cv_deplibs_check_method=pass_all
3640  ;;
3641
3642hpux10.20* | hpux11*)
3643  lt_cv_file_magic_cmd=/usr/bin/file
3644  case $host_cpu in
3645  ia64*)
3646    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64'
3647    lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so
3648    ;;
3649  hppa*64*)
3650    [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]']
3651    lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl
3652    ;;
3653  *)
3654    lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library'
3655    lt_cv_file_magic_test_file=/usr/lib/libc.sl
3656    ;;
3657  esac
3658  ;;
3659
3660irix5* | irix6* | nonstopux*)
3661  case $LD in
3662  *-32|*"-32 ") libmagic=32-bit;;
3663  *-n32|*"-n32 ") libmagic=N32;;
3664  *-64|*"-64 ") libmagic=64-bit;;
3665  *) libmagic=never-match;;
3666  esac
3667  lt_cv_deplibs_check_method=pass_all
3668  ;;
3669
3670# This must be Linux ELF.
3671linux*)
3672  lt_cv_deplibs_check_method=pass_all
3673  ;;
3674
3675netbsd*)
3676  if echo __ELF__ | $CC -E - | grep __ELF__ > /dev/null; then
3677    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3678  else
3679    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$'
3680  fi
3681  ;;
3682
3683newos6*)
3684  lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)'
3685  lt_cv_file_magic_cmd=/usr/bin/file
3686  lt_cv_file_magic_test_file=/usr/lib/libnls.so
3687  ;;
3688
3689nto-qnx*)
3690  lt_cv_deplibs_check_method=unknown
3691  ;;
3692
3693openbsd*)
3694  if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
3695    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$'
3696  else
3697    lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$'
3698  fi
3699  ;;
3700
3701osf3* | osf4* | osf5*)
3702  lt_cv_deplibs_check_method=pass_all
3703  ;;
3704
3705sco3.2v5*)
3706  lt_cv_deplibs_check_method=pass_all
3707  ;;
3708
3709solaris*)
3710  lt_cv_deplibs_check_method=pass_all
3711  ;;
3712
3713sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
3714  case $host_vendor in
3715  motorola)
3716    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]]'
3717    lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*`
3718    ;;
3719  ncr)
3720    lt_cv_deplibs_check_method=pass_all
3721    ;;
3722  sequent)
3723    lt_cv_file_magic_cmd='/bin/file'
3724    lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )'
3725    ;;
3726  sni)
3727    lt_cv_file_magic_cmd='/bin/file'
3728    lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib"
3729    lt_cv_file_magic_test_file=/lib/libc.so
3730    ;;
3731  siemens)
3732    lt_cv_deplibs_check_method=pass_all
3733    ;;
3734  esac
3735  ;;
3736
3737sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7* | sysv4*uw2*)
3738  lt_cv_deplibs_check_method=pass_all
3739  ;;
3740esac
3741])
3742file_magic_cmd=$lt_cv_file_magic_cmd
3743deplibs_check_method=$lt_cv_deplibs_check_method
3744test -z "$deplibs_check_method" && deplibs_check_method=unknown
3745])
3746m4trace:/usr/share/aclocal/libtool.m4:2394: -1- AC_DEFUN([AC_PROG_NM], [AC_CACHE_CHECK([for BSD-compatible nm], lt_cv_path_NM,
3747[if test -n "$NM"; then
3748  # Let the user override the test.
3749  lt_cv_path_NM="$NM"
3750else
3751  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
3752  for ac_dir in $PATH /usr/ccs/bin /usr/ucb /bin; do
3753    IFS="$lt_save_ifs"
3754    test -z "$ac_dir" && ac_dir=.
3755    tmp_nm="$ac_dir/${ac_tool_prefix}nm"
3756    if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
3757      # Check to see if the nm accepts a BSD-compat flag.
3758      # Adding the `sed 1q' prevents false positives on HP-UX, which says:
3759      #   nm: unknown option "B" ignored
3760      # Tru64's nm complains that /dev/null is an invalid object file
3761      case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
3762      */dev/null* | *'Invalid file or object type'*)
3763	lt_cv_path_NM="$tmp_nm -B"
3764	break
3765        ;;
3766      *)
3767	case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
3768	*/dev/null*)
3769	  lt_cv_path_NM="$tmp_nm -p"
3770	  break
3771	  ;;
3772	*)
3773	  lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
3774	  continue # so that we can try to find one that supports BSD flags
3775	  ;;
3776	esac
3777      esac
3778    fi
3779  done
3780  IFS="$lt_save_ifs"
3781  test -z "$lt_cv_path_NM" && lt_cv_path_NM=nm
3782fi])
3783NM="$lt_cv_path_NM"
3784])
3785m4trace:/usr/share/aclocal/libtool.m4:2415: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
3786LIBM=
3787case $host in
3788*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
3789  # These system don't have libm, or don't need it
3790  ;;
3791*-ncr-sysv4.3*)
3792  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
3793  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
3794  ;;
3795*)
3796  AC_CHECK_LIB(m, cos, LIBM="-lm")
3797  ;;
3798esac
3799])
3800m4trace:/usr/share/aclocal/libtool.m4:2440: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3801  case $enable_ltdl_convenience in
3802  no) AC_MSG_ERROR([this package needs a convenience libltdl]) ;;
3803  "") enable_ltdl_convenience=yes
3804      ac_configure_args="$ac_configure_args --enable-ltdl-convenience" ;;
3805  esac
3806  LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdlc.la
3807  LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
3808  # For backwards non-gettext consistent compatibility...
3809  INCLTDL="$LTDLINCL"
3810])
3811m4trace:/usr/share/aclocal/libtool.m4:2476: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_BEFORE([$0],[AC_LIBTOOL_SETUP])dnl
3812  AC_CHECK_LIB(ltdl, lt_dlinit,
3813  [test x"$enable_ltdl_install" != xyes && enable_ltdl_install=no],
3814  [if test x"$enable_ltdl_install" = xno; then
3815     AC_MSG_WARN([libltdl not installed, but installation disabled])
3816   else
3817     enable_ltdl_install=yes
3818   fi
3819  ])
3820  if test x"$enable_ltdl_install" = x"yes"; then
3821    ac_configure_args="$ac_configure_args --enable-ltdl-install"
3822    LIBLTDL='${top_builddir}/'ifelse($#,1,[$1],['libltdl'])/libltdl.la
3823    LTDLINCL='-I${top_srcdir}/'ifelse($#,1,[$1],['libltdl'])
3824  else
3825    ac_configure_args="$ac_configure_args --enable-ltdl-install=no"
3826    LIBLTDL="-lltdl"
3827    LTDLINCL=
3828  fi
3829  # For backwards non-gettext consistent compatibility...
3830  INCLTDL="$LTDLINCL"
3831])
3832m4trace:/usr/share/aclocal/libtool.m4:2484: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_REQUIRE([_LT_AC_LANG_CXX])
3833])
3834m4trace:/usr/share/aclocal/libtool.m4:2493: -1- AC_DEFUN([_LT_AC_LANG_CXX], [AC_REQUIRE([AC_PROG_CXX])
3835AC_REQUIRE([_LT_AC_PROG_CXXCPP])
3836_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
3837])
3838m4trace:/usr/share/aclocal/libtool.m4:2505: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP], [
3839AC_REQUIRE([AC_PROG_CXX])
3840if test -n "$CXX" && ( test "X$CXX" != "Xno" &&
3841    ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) ||
3842    (test "X$CXX" != "Xg++"))) ; then
3843  AC_PROG_CXXCPP
3844fi
3845])
3846m4trace:/usr/share/aclocal/libtool.m4:2512: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_REQUIRE([_LT_AC_LANG_F77])
3847])
3848m4trace:/usr/share/aclocal/libtool.m4:2520: -1- AC_DEFUN([_LT_AC_LANG_F77], [AC_REQUIRE([AC_PROG_F77])
3849_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
3850])
3851m4trace:/usr/share/aclocal/libtool.m4:2528: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_REQUIRE([_LT_AC_LANG_GCJ])
3852])
3853m4trace:/usr/share/aclocal/libtool.m4:2541: -1- AC_DEFUN([_LT_AC_LANG_GCJ], [AC_PROVIDE_IFELSE([AC_PROG_GCJ],[],
3854  [AC_PROVIDE_IFELSE([A][M_PROG_GCJ],[],
3855    [AC_PROVIDE_IFELSE([LT_AC_PROG_GCJ],[],
3856      [ifdef([AC_PROG_GCJ],[AC_REQUIRE([AC_PROG_GCJ])],
3857	 [ifdef([A][M_PROG_GCJ],[AC_REQUIRE([A][M_PROG_GCJ])],
3858	   [AC_REQUIRE([A][C_PROG_GCJ_OR_A][M_PROG_GCJ])])])])])])
3859_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}GCJ])
3860])
3861m4trace:/usr/share/aclocal/libtool.m4:2550: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_REQUIRE([LT_AC_PROG_RC])
3862_LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}RC])
3863])
3864m4trace:/usr/share/aclocal/libtool.m4:2558: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG], [_LT_AC_LANG_C_CONFIG])
3865m4trace:/usr/share/aclocal/libtool.m4:2662: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG], [lt_save_CC="$CC"
3866AC_LANG_PUSH(C)
3867
3868# Source file extension for C test sources.
3869ac_ext=c
3870
3871# Object file extension for compiled C test sources.
3872objext=o
3873_LT_AC_TAGVAR(objext, $1)=$objext
3874
3875# Code to be used in simple compile tests
3876lt_simple_compile_test_code="int some_variable = 0;\n"
3877
3878# Code to be used in simple link tests
3879lt_simple_link_test_code='int main(){return(0);}\n'
3880
3881_LT_AC_SYS_COMPILER
3882
3883# save warnings/boilerplate of simple test code
3884_LT_COMPILER_BOILERPLATE
3885_LT_LINKER_BOILERPLATE
3886
3887#
3888# Check for any special shared library compilation flags.
3889#
3890_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)=
3891if test "$GCC" = no; then
3892  case $host_os in
3893  sco3.2v5*)
3894    _LT_AC_TAGVAR(lt_prog_cc_shlib, $1)='-belf'
3895    ;;
3896  esac
3897fi
3898if test -n "$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)"; then
3899  AC_MSG_WARN([`$CC' requires `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to build shared libraries])
3900  if echo "$old_CC $old_CFLAGS " | grep "[[ 	]]$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)[[ 	]]" >/dev/null; then :
3901  else
3902    AC_MSG_WARN([add `$_LT_AC_TAGVAR(lt_prog_cc_shlib, $1)' to the CC or CFLAGS env variable and reconfigure])
3903    _LT_AC_TAGVAR(lt_cv_prog_cc_can_build_shared, $1)=no
3904  fi
3905fi
3906
3907
3908#
3909# Check to make sure the static flag actually works.
3910#
3911AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, $1) works],
3912  _LT_AC_TAGVAR(lt_prog_compiler_static_works, $1),
3913  $_LT_AC_TAGVAR(lt_prog_compiler_static, $1),
3914  [],
3915  [_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=])
3916
3917
3918## CAVEAT EMPTOR:
3919## There is no encapsulation within the following macros, do not change
3920## the running order or otherwise move them around unless you know exactly
3921## what you are doing...
3922AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
3923AC_LIBTOOL_PROG_COMPILER_PIC($1)
3924AC_LIBTOOL_PROG_CC_C_O($1)
3925AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
3926AC_LIBTOOL_PROG_LD_SHLIBS($1)
3927AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
3928AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
3929AC_LIBTOOL_SYS_LIB_STRIP
3930AC_LIBTOOL_DLOPEN_SELF($1)
3931
3932# Report which librarie types wil actually be built
3933AC_MSG_CHECKING([if libtool supports shared libraries])
3934AC_MSG_RESULT([$can_build_shared])
3935
3936AC_MSG_CHECKING([whether to build shared libraries])
3937test "$can_build_shared" = "no" && enable_shared=no
3938
3939# On AIX, shared libraries and static libraries use the same namespace, and
3940# are all built from PIC.
3941case $host_os in
3942aix3*)
3943  test "$enable_shared" = yes && enable_static=no
3944  if test -n "$RANLIB"; then
3945    archive_cmds="$archive_cmds~\$RANLIB \$lib"
3946    postinstall_cmds='$RANLIB $lib'
3947  fi
3948  ;;
3949
3950aix4* | aix5*)
3951  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
3952    test "$enable_shared" = yes && enable_static=no
3953  fi
3954    ;;
3955esac
3956AC_MSG_RESULT([$enable_shared])
3957
3958AC_MSG_CHECKING([whether to build static libraries])
3959# Make sure either enable_shared or enable_static is yes.
3960test "$enable_shared" = yes || enable_static=yes
3961AC_MSG_RESULT([$enable_static])
3962
3963AC_LIBTOOL_CONFIG($1)
3964
3965AC_LANG_POP
3966CC="$lt_save_CC"
3967])
3968m4trace:/usr/share/aclocal/libtool.m4:2670: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG], [_LT_AC_LANG_CXX_CONFIG(CXX)])
3969m4trace:/usr/share/aclocal/libtool.m4:3613: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG], [AC_LANG_PUSH(C++)
3970AC_REQUIRE([AC_PROG_CXX])
3971AC_REQUIRE([_LT_AC_PROG_CXXCPP])
3972
3973_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
3974_LT_AC_TAGVAR(allow_undefined_flag, $1)=
3975_LT_AC_TAGVAR(always_export_symbols, $1)=no
3976_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
3977_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
3978_LT_AC_TAGVAR(hardcode_direct, $1)=no
3979_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
3980_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
3981_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
3982_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
3983_LT_AC_TAGVAR(hardcode_automatic, $1)=no
3984_LT_AC_TAGVAR(module_cmds, $1)=
3985_LT_AC_TAGVAR(module_expsym_cmds, $1)=
3986_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
3987_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
3988_LT_AC_TAGVAR(no_undefined_flag, $1)=
3989_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
3990_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
3991
3992# Dependencies to place before and after the object being linked:
3993_LT_AC_TAGVAR(predep_objects, $1)=
3994_LT_AC_TAGVAR(postdep_objects, $1)=
3995_LT_AC_TAGVAR(predeps, $1)=
3996_LT_AC_TAGVAR(postdeps, $1)=
3997_LT_AC_TAGVAR(compiler_lib_search_path, $1)=
3998
3999# Source file extension for C++ test sources.
4000ac_ext=cpp
4001
4002# Object file extension for compiled C++ test sources.
4003objext=o
4004_LT_AC_TAGVAR(objext, $1)=$objext
4005
4006# Code to be used in simple compile tests
4007lt_simple_compile_test_code="int some_variable = 0;\n"
4008
4009# Code to be used in simple link tests
4010lt_simple_link_test_code='int main(int, char *[]) { return(0); }\n'
4011
4012# ltmain only uses $CC for tagged configurations so make sure $CC is set.
4013_LT_AC_SYS_COMPILER
4014
4015# save warnings/boilerplate of simple test code
4016_LT_COMPILER_BOILERPLATE
4017_LT_LINKER_BOILERPLATE
4018
4019# Allow CC to be a program name with arguments.
4020lt_save_CC=$CC
4021lt_save_LD=$LD
4022lt_save_GCC=$GCC
4023GCC=$GXX
4024lt_save_with_gnu_ld=$with_gnu_ld
4025lt_save_path_LD=$lt_cv_path_LD
4026if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then
4027  lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx
4028else
4029  unset lt_cv_prog_gnu_ld
4030fi
4031if test -n "${lt_cv_path_LDCXX+set}"; then
4032  lt_cv_path_LD=$lt_cv_path_LDCXX
4033else
4034  unset lt_cv_path_LD
4035fi
4036test -z "${LDCXX+set}" || LD=$LDCXX
4037CC=${CXX-"c++"}
4038compiler=$CC
4039_LT_AC_TAGVAR(compiler, $1)=$CC
4040_LT_CC_BASENAME([$compiler])
4041
4042# We don't want -fno-exception wen compiling C++ code, so set the
4043# no_builtin_flag separately
4044if test "$GXX" = yes; then
4045  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
4046else
4047  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
4048fi
4049
4050if test "$GXX" = yes; then
4051  # Set up default GNU C++ configuration
4052
4053  AC_PROG_LD
4054
4055  # Check if GNU C++ uses GNU ld as the underlying linker, since the
4056  # archiving commands below assume that GNU ld is being used.
4057  if test "$with_gnu_ld" = yes; then
4058    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
4059    _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'
4060
4061    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
4062    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
4063
4064    # If archive_cmds runs LD, not CC, wlarc should be empty
4065    # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to
4066    #     investigate it a little bit more. (MM)
4067    wlarc='${wl}'
4068
4069    # ancient GNU ld didn't support --whole-archive et. al.
4070    if eval "`$CC -print-prog-name=ld` --help 2>&1" | \
4071	grep 'no-whole-archive' > /dev/null; then
4072      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
4073    else
4074      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
4075    fi
4076  else
4077    with_gnu_ld=no
4078    wlarc=
4079
4080    # A generic and very simple default shared library creation
4081    # command for GNU C++ for the case where it uses the native
4082    # linker, instead of GNU ld.  If possible, this setting should
4083    # overridden to take advantage of the native linker features on
4084    # the platform it is being used on.
4085    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
4086  fi
4087
4088  # Commands to make compiler produce verbose output that lists
4089  # what "hidden" libraries, object files and flags are used when
4090  # linking a shared library.
4091  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
4092
4093else
4094  GXX=no
4095  with_gnu_ld=no
4096  wlarc=
4097fi
4098
4099# PORTME: fill in a description of your system's C++ link characteristics
4100AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
4101_LT_AC_TAGVAR(ld_shlibs, $1)=yes
4102case $host_os in
4103  aix3*)
4104    # FIXME: insert proper C++ library support
4105    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4106    ;;
4107  aix4* | aix5*)
4108    if test "$host_cpu" = ia64; then
4109      # On IA64, the linker does run time linking by default, so we don't
4110      # have to do anything special.
4111      aix_use_runtimelinking=no
4112      exp_sym_flag='-Bexport'
4113      no_entry_flag=""
4114    else
4115      aix_use_runtimelinking=no
4116
4117      # Test if we are trying to use run time linking or normal
4118      # AIX style linking. If -brtl is somewhere in LDFLAGS, we
4119      # need to do runtime linking.
4120      case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
4121	for ld_flag in $LDFLAGS; do
4122	  case $ld_flag in
4123	  *-brtl*)
4124	    aix_use_runtimelinking=yes
4125	    break
4126	    ;;
4127	  esac
4128	done
4129      esac
4130
4131      exp_sym_flag='-bexport'
4132      no_entry_flag='-bnoentry'
4133    fi
4134
4135    # When large executables or shared objects are built, AIX ld can
4136    # have problems creating the table of contents.  If linking a library
4137    # or program results in "error TOC overflow" add -mminimal-toc to
4138    # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
4139    # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
4140
4141    _LT_AC_TAGVAR(archive_cmds, $1)=''
4142    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4143    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
4144    _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
4145
4146    if test "$GXX" = yes; then
4147      case $host_os in aix4.[[012]]|aix4.[[012]].*)
4148      # We only want to do this on AIX 4.2 and lower, the check
4149      # below for broken collect2 doesn't work under 4.3+
4150	collect2name=`${CC} -print-prog-name=collect2`
4151	if test -f "$collect2name" && \
4152	   strings "$collect2name" | grep resolve_lib_name >/dev/null
4153	then
4154	  # We have reworked collect2
4155	  _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4156	else
4157	  # We have old collect2
4158	  _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
4159	  # It fails to find uninstalled libraries when the uninstalled
4160	  # path is not listed in the libpath.  Setting hardcode_minus_L
4161	  # to unsupported forces relinking
4162	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
4163	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4164	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
4165	fi
4166      esac
4167      shared_flag='-shared'
4168      if test "$aix_use_runtimelinking" = yes; then
4169	shared_flag="$shared_flag "'${wl}-G'
4170      fi
4171    else
4172      # not using gcc
4173      if test "$host_cpu" = ia64; then
4174	# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
4175	# chokes on -Wl,-G. The following line is correct:
4176	shared_flag='-G'
4177      else
4178	if test "$aix_use_runtimelinking" = yes; then
4179	  shared_flag='${wl}-G'
4180	else
4181	  shared_flag='${wl}-bM:SRE'
4182	fi
4183      fi
4184    fi
4185
4186    # It seems that -bexpall does not export symbols beginning with
4187    # underscore (_), so it is better to generate a list of symbols to export.
4188    _LT_AC_TAGVAR(always_export_symbols, $1)=yes
4189    if test "$aix_use_runtimelinking" = yes; then
4190      # Warning - without using the other runtime loading flags (-brtl),
4191      # -berok will link without error, but may produce a broken library.
4192      _LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
4193      # Determine the default libpath from the value encoded in an empty executable.
4194      _LT_AC_SYS_LIBPATH_AIX
4195      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
4196
4197      _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
4198     else
4199      if test "$host_cpu" = ia64; then
4200	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
4201	_LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
4202	_LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
4203      else
4204	# Determine the default libpath from the value encoded in an empty executable.
4205	_LT_AC_SYS_LIBPATH_AIX
4206	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
4207	# Warning - without using the other run time loading flags,
4208	# -berok will link without error, but may produce a broken library.
4209	_LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
4210	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
4211	# -bexpall does not export symbols beginning with underscore (_)
4212	_LT_AC_TAGVAR(always_export_symbols, $1)=yes
4213	# Exported symbols can be pulled into shared objects from archives
4214	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
4215	_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
4216	# This is similar to how AIX traditionally builds its shared libraries.
4217	_LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
4218      fi
4219    fi
4220    ;;
4221  chorus*)
4222    case $cc_basename in
4223      *)
4224	# FIXME: insert proper C++ library support
4225	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4226	;;
4227    esac
4228    ;;
4229
4230
4231  cygwin* | mingw* | pw32*)
4232    # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
4233    # as there is no search path for DLLs.
4234    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4235    _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
4236    _LT_AC_TAGVAR(always_export_symbols, $1)=no
4237    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
4238
4239    if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
4240      _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 ${wl}--out-implib,$lib'
4241      # If the export-symbols file already is a .def file (1st line
4242      # is EXPORTS), use it as is; otherwise, prepend...
4243      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
4244	cp $export_symbols $output_objdir/$soname.def;
4245      else
4246	echo EXPORTS > $output_objdir/$soname.def;
4247	cat $export_symbols >> $output_objdir/$soname.def;
4248      fi~
4249      $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base ${wl}--out-implib,$lib'
4250    else
4251      _LT_AC_TAGVAR(ld_shlibs, $1)=no
4252    fi
4253  ;;
4254      darwin* | rhapsody*)
4255        case $host_os in
4256        rhapsody* | darwin1.[[012]])
4257         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
4258         ;;
4259       *) # Darwin 1.3 on
4260         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
4261           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
4262         else
4263           case ${MACOSX_DEPLOYMENT_TARGET} in
4264             10.[[012]])
4265               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
4266               ;;
4267             10.*)
4268               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
4269               ;;
4270           esac
4271         fi
4272         ;;
4273        esac
4274      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
4275      _LT_AC_TAGVAR(hardcode_direct, $1)=no
4276      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
4277      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
4278      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
4279      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
4280
4281    if test "$GXX" = yes ; then
4282      lt_int_apple_cc_single_mod=no
4283      output_verbose_link_cmd='echo'
4284      if $CC -dumpspecs 2>&1 | $EGREP 'single_module' >/dev/null ; then
4285       lt_int_apple_cc_single_mod=yes
4286      fi
4287      if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
4288       _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib -single_module $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
4289      else
4290          _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'
4291        fi
4292        _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
4293        # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
4294          if test "X$lt_int_apple_cc_single_mod" = Xyes ; then
4295            _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}'
4296          else
4297            _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}'
4298          fi
4299            _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}'
4300      else
4301      case $cc_basename in
4302        xlc*)
4303         output_verbose_link_cmd='echo'
4304          _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` $verstring'
4305          _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
4306          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
4307          _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 $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
4308          _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}'
4309          ;;
4310       *)
4311         _LT_AC_TAGVAR(ld_shlibs, $1)=no
4312          ;;
4313      esac
4314      fi
4315        ;;
4316
4317  dgux*)
4318    case $cc_basename in
4319      ec++*)
4320	# FIXME: insert proper C++ library support
4321	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4322	;;
4323      ghcx*)
4324	# Green Hills C++ Compiler
4325	# FIXME: insert proper C++ library support
4326	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4327	;;
4328      *)
4329	# FIXME: insert proper C++ library support
4330	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4331	;;
4332    esac
4333    ;;
4334  freebsd[[12]]*)
4335    # C++ shared libraries reported to be fairly broken before switch to ELF
4336    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4337    ;;
4338  freebsd-elf*)
4339    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
4340    ;;
4341  freebsd* | kfreebsd*-gnu | dragonfly*)
4342    # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF
4343    # conventions
4344    _LT_AC_TAGVAR(ld_shlibs, $1)=yes
4345    ;;
4346  gnu*)
4347    ;;
4348  hpux9*)
4349    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4350    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4351    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4352    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4353    _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
4354				# but as the default
4355				# location of the library.
4356
4357    case $cc_basename in
4358    CC*)
4359      # FIXME: insert proper C++ library support
4360      _LT_AC_TAGVAR(ld_shlibs, $1)=no
4361      ;;
4362    aCC*)
4363      _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'
4364      # Commands to make compiler produce verbose output that lists
4365      # what "hidden" libraries, object files and flags are used when
4366      # linking a shared library.
4367      #
4368      # There doesn't appear to be a way to prevent this compiler from
4369      # explicitly linking system object files so we need to strip them
4370      # from the output so that they don't get included in the library
4371      # dependencies.
4372      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'
4373      ;;
4374    *)
4375      if test "$GXX" = yes; then
4376        _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'
4377      else
4378        # FIXME: insert proper C++ library support
4379        _LT_AC_TAGVAR(ld_shlibs, $1)=no
4380      fi
4381      ;;
4382    esac
4383    ;;
4384  hpux10*|hpux11*)
4385    if test $with_gnu_ld = no; then
4386      case $host_cpu in
4387      hppa*64*)
4388	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4389	_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
4390	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4391        ;;
4392      ia64*)
4393	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
4394        ;;
4395      *)
4396	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
4397	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4398	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4399        ;;
4400      esac
4401    fi
4402    case $host_cpu in
4403    hppa*64*)
4404      _LT_AC_TAGVAR(hardcode_direct, $1)=no
4405      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
4406      ;;
4407    ia64*)
4408      _LT_AC_TAGVAR(hardcode_direct, $1)=no
4409      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
4410      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
4411					      # but as the default
4412					      # location of the library.
4413      ;;
4414    *)
4415      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4416      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH,
4417					      # but as the default
4418					      # location of the library.
4419      ;;
4420    esac
4421
4422    case $cc_basename in
4423      CC*)
4424	# FIXME: insert proper C++ library support
4425	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4426	;;
4427      aCC*)
4428	case $host_cpu in
4429	hppa*64*|ia64*)
4430	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
4431	  ;;
4432	*)
4433	  _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'
4434	  ;;
4435	esac
4436	# Commands to make compiler produce verbose output that lists
4437	# what "hidden" libraries, object files and flags are used when
4438	# linking a shared library.
4439	#
4440	# There doesn't appear to be a way to prevent this compiler from
4441	# explicitly linking system object files so we need to strip them
4442	# from the output so that they don't get included in the library
4443	# dependencies.
4444	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'
4445	;;
4446      *)
4447	if test "$GXX" = yes; then
4448	  if test $with_gnu_ld = no; then
4449	    case $host_cpu in
4450	    ia64*|hppa*64*)
4451	      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $linker_flags $libobjs $deplibs'
4452	      ;;
4453	    *)
4454	      _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'
4455	      ;;
4456	    esac
4457	  fi
4458	else
4459	  # FIXME: insert proper C++ library support
4460	  _LT_AC_TAGVAR(ld_shlibs, $1)=no
4461	fi
4462	;;
4463    esac
4464    ;;
4465  irix5* | irix6*)
4466    case $cc_basename in
4467      CC*)
4468	# SGI C++
4469	_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'
4470
4471	# Archives containing C++ object files must be created using
4472	# "CC -ar", where "CC" is the IRIX C++ compiler.  This is
4473	# necessary to make sure instantiated templates are included
4474	# in the archive.
4475	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs'
4476	;;
4477      *)
4478	if test "$GXX" = yes; then
4479	  if test "$with_gnu_ld" = no; then
4480	    _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'
4481	  else
4482	    _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'
4483	  fi
4484	fi
4485	_LT_AC_TAGVAR(link_all_deplibs, $1)=yes
4486	;;
4487    esac
4488    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4489    _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4490    ;;
4491  linux*)
4492    case $cc_basename in
4493      KCC*)
4494	# Kuck and Associates, Inc. (KAI) C++ Compiler
4495
4496	# KCC will only create a shared library if the output file
4497	# ends with ".so" (or ".sl" for HP-UX), so rename the library
4498	# to its proper name (with version) after linking.
4499	_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'
4500	_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'
4501	# Commands to make compiler produce verbose output that lists
4502	# what "hidden" libraries, object files and flags are used when
4503	# linking a shared library.
4504	#
4505	# There doesn't appear to be a way to prevent this compiler from
4506	# explicitly linking system object files so we need to strip them
4507	# from the output so that they don't get included in the library
4508	# dependencies.
4509	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'
4510
4511	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath,$libdir'
4512	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
4513
4514	# Archives containing C++ object files must be created using
4515	# "CC -Bstatic", where "CC" is the KAI C++ compiler.
4516	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
4517	;;
4518      icpc*)
4519	# Intel C++
4520	with_gnu_ld=yes
4521	# version 8.0 and above of icpc choke on multiply defined symbols
4522	# if we add $predep_objects and $postdep_objects, however 7.1 and
4523	# earlier do not add the objects themselves.
4524	case `$CC -V 2>&1` in
4525	*"Version 7."*)
4526  	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
4527  	  _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'
4528	  ;;
4529	*)  # Version 8.0 or newer
4530	  tmp_idyn=
4531	  case $host_cpu in
4532	    ia64*) tmp_idyn=' -i_dynamic';;
4533	  esac
4534  	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
4535	  _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'
4536	  ;;
4537	esac
4538	_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
4539	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
4540	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
4541	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive'
4542	;;
4543      pgCC*)
4544        # Portland Group C++ compiler
4545	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib'
4546  	_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'
4547
4548	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
4549	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
4550	_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'
4551        ;;
4552      cxx*)
4553	# Compaq C++
4554	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib'
4555	_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'
4556
4557	runpath_var=LD_RUN_PATH
4558	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
4559	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4560
4561	# Commands to make compiler produce verbose output that lists
4562	# what "hidden" libraries, object files and flags are used when
4563	# linking a shared library.
4564	#
4565	# There doesn't appear to be a way to prevent this compiler from
4566	# explicitly linking system object files so we need to strip them
4567	# from the output so that they don't get included in the library
4568	# dependencies.
4569	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'
4570	;;
4571    esac
4572    ;;
4573  lynxos*)
4574    # FIXME: insert proper C++ library support
4575    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4576    ;;
4577  m88k*)
4578    # FIXME: insert proper C++ library support
4579    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4580    ;;
4581  mvs*)
4582    case $cc_basename in
4583      cxx*)
4584	# FIXME: insert proper C++ library support
4585	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4586	;;
4587      *)
4588	# FIXME: insert proper C++ library support
4589	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4590	;;
4591    esac
4592    ;;
4593  netbsd*)
4594    if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
4595      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable  -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags'
4596      wlarc=
4597      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
4598      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4599      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
4600    fi
4601    # Workaround some broken pre-1.5 toolchains
4602    output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"'
4603    ;;
4604  openbsd2*)
4605    # C++ shared libraries are fairly broken
4606    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4607    ;;
4608  openbsd*)
4609    _LT_AC_TAGVAR(hardcode_direct, $1)=yes
4610    _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
4611    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib'
4612    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
4613    if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
4614      _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'
4615      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
4616      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
4617    fi
4618    output_verbose_link_cmd='echo'
4619    ;;
4620  osf3*)
4621    case $cc_basename in
4622      KCC*)
4623	# Kuck and Associates, Inc. (KAI) C++ Compiler
4624
4625	# KCC will only create a shared library if the output file
4626	# ends with ".so" (or ".sl" for HP-UX), so rename the library
4627	# to its proper name (with version) after linking.
4628	_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'
4629
4630	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
4631	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4632
4633	# Archives containing C++ object files must be created using
4634	# "CC -Bstatic", where "CC" is the KAI C++ compiler.
4635	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs'
4636
4637	;;
4638      RCC*)
4639	# Rational C++ 2.4.1
4640	# FIXME: insert proper C++ library support
4641	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4642	;;
4643      cxx*)
4644	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
4645	_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'
4646
4647	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4648	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4649
4650	# Commands to make compiler produce verbose output that lists
4651	# what "hidden" libraries, object files and flags are used when
4652	# linking a shared library.
4653	#
4654	# There doesn't appear to be a way to prevent this compiler from
4655	# explicitly linking system object files so we need to strip them
4656	# from the output so that they don't get included in the library
4657	# dependencies.
4658	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'
4659	;;
4660      *)
4661	if test "$GXX" = yes && test "$with_gnu_ld" = no; then
4662	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
4663	  _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'
4664
4665	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4666	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4667
4668	  # Commands to make compiler produce verbose output that lists
4669	  # what "hidden" libraries, object files and flags are used when
4670	  # linking a shared library.
4671	  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
4672
4673	else
4674	  # FIXME: insert proper C++ library support
4675	  _LT_AC_TAGVAR(ld_shlibs, $1)=no
4676	fi
4677	;;
4678    esac
4679    ;;
4680  osf4* | osf5*)
4681    case $cc_basename in
4682      KCC*)
4683	# Kuck and Associates, Inc. (KAI) C++ Compiler
4684
4685	# KCC will only create a shared library if the output file
4686	# ends with ".so" (or ".sl" for HP-UX), so rename the library
4687	# to its proper name (with version) after linking.
4688	_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'
4689
4690	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
4691	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4692
4693	# Archives containing C++ object files must be created using
4694	# the KAI C++ compiler.
4695	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs'
4696	;;
4697      RCC*)
4698	# Rational C++ 2.4.1
4699	# FIXME: insert proper C++ library support
4700	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4701	;;
4702      cxx*)
4703	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
4704	_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'
4705	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~
4706	  echo "-hidden">> $lib.exp~
4707	  $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~
4708	  $rm $lib.exp'
4709
4710	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
4711	_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4712
4713	# Commands to make compiler produce verbose output that lists
4714	# what "hidden" libraries, object files and flags are used when
4715	# linking a shared library.
4716	#
4717	# There doesn't appear to be a way to prevent this compiler from
4718	# explicitly linking system object files so we need to strip them
4719	# from the output so that they don't get included in the library
4720	# dependencies.
4721	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'
4722	;;
4723      *)
4724	if test "$GXX" = yes && test "$with_gnu_ld" = no; then
4725	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
4726	 _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'
4727
4728	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
4729	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
4730
4731	  # Commands to make compiler produce verbose output that lists
4732	  # what "hidden" libraries, object files and flags are used when
4733	  # linking a shared library.
4734	  output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep "\-L"'
4735
4736	else
4737	  # FIXME: insert proper C++ library support
4738	  _LT_AC_TAGVAR(ld_shlibs, $1)=no
4739	fi
4740	;;
4741    esac
4742    ;;
4743  psos*)
4744    # FIXME: insert proper C++ library support
4745    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4746    ;;
4747  sco*)
4748    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
4749    case $cc_basename in
4750      CC*)
4751	# FIXME: insert proper C++ library support
4752	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4753	;;
4754      *)
4755	# FIXME: insert proper C++ library support
4756	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4757	;;
4758    esac
4759    ;;
4760  sunos4*)
4761    case $cc_basename in
4762      CC*)
4763	# Sun C++ 4.x
4764	# FIXME: insert proper C++ library support
4765	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4766	;;
4767      lcc*)
4768	# Lucid
4769	# FIXME: insert proper C++ library support
4770	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4771	;;
4772      *)
4773	# FIXME: insert proper C++ library support
4774	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4775	;;
4776    esac
4777    ;;
4778  solaris*)
4779    case $cc_basename in
4780      CC*)
4781	# Sun C++ 4.2, 5.x and Centerline C++
4782        _LT_AC_TAGVAR(archive_cmds_need_lc,$1)=yes
4783	_LT_AC_TAGVAR(no_undefined_flag, $1)=' -zdefs'
4784	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag}  -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags'
4785	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
4786	$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'
4787
4788	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
4789	_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
4790	case $host_os in
4791	  solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
4792	  *)
4793	    # The C++ compiler is used as linker so we must use $wl
4794	    # flag to pass the commands to the underlying system
4795	    # linker. We must also pass each convience library through
4796	    # to the system linker between allextract/defaultextract.
4797	    # The C++ compiler will combine linker options so we
4798	    # cannot just pass the convience library names through
4799	    # without $wl.
4800	    # Supported since Solaris 2.6 (maybe 2.5.1?)
4801	    _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract'
4802	    ;;
4803	esac
4804	_LT_AC_TAGVAR(link_all_deplibs, $1)=yes
4805
4806	output_verbose_link_cmd='echo'
4807
4808	# Archives containing C++ object files must be created using
4809	# "CC -xar", where "CC" is the Sun C++ compiler.  This is
4810	# necessary to make sure instantiated templates are included
4811	# in the archive.
4812	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs'
4813	;;
4814      gcx*)
4815	# Green Hills C++ Compiler
4816	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
4817
4818	# The C++ compiler must be used to create the archive.
4819	_LT_AC_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs'
4820	;;
4821      *)
4822	# GNU C++ compiler with Solaris linker
4823	if test "$GXX" = yes && test "$with_gnu_ld" = no; then
4824	  _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs'
4825	  if $CC --version | grep -v '^2\.7' > /dev/null; then
4826	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
4827	    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
4828		$CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
4829
4830	    # Commands to make compiler produce verbose output that lists
4831	    # what "hidden" libraries, object files and flags are used when
4832	    # linking a shared library.
4833	    output_verbose_link_cmd="$CC -shared $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
4834	  else
4835	    # g++ 2.7 appears to require `-G' NOT `-shared' on this
4836	    # platform.
4837	    _LT_AC_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib'
4838	    _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
4839		$CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$rm $lib.exp'
4840
4841	    # Commands to make compiler produce verbose output that lists
4842	    # what "hidden" libraries, object files and flags are used when
4843	    # linking a shared library.
4844	    output_verbose_link_cmd="$CC -G $CFLAGS -v conftest.$objext 2>&1 | grep \"\-L\""
4845	  fi
4846
4847	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir'
4848	fi
4849	;;
4850    esac
4851    ;;
4852  sysv5OpenUNIX8* | sysv5UnixWare7* | sysv5uw[[78]]* | unixware7*)
4853    _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
4854    ;;
4855  tandem*)
4856    case $cc_basename in
4857      NCC*)
4858	# NonStop-UX NCC 3.20
4859	# FIXME: insert proper C++ library support
4860	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4861	;;
4862      *)
4863	# FIXME: insert proper C++ library support
4864	_LT_AC_TAGVAR(ld_shlibs, $1)=no
4865	;;
4866    esac
4867    ;;
4868  vxworks*)
4869    # FIXME: insert proper C++ library support
4870    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4871    ;;
4872  *)
4873    # FIXME: insert proper C++ library support
4874    _LT_AC_TAGVAR(ld_shlibs, $1)=no
4875    ;;
4876esac
4877AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
4878test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
4879
4880_LT_AC_TAGVAR(GCC, $1)="$GXX"
4881_LT_AC_TAGVAR(LD, $1)="$LD"
4882
4883## CAVEAT EMPTOR:
4884## There is no encapsulation within the following macros, do not change
4885## the running order or otherwise move them around unless you know exactly
4886## what you are doing...
4887AC_LIBTOOL_POSTDEP_PREDEP($1)
4888AC_LIBTOOL_PROG_COMPILER_PIC($1)
4889AC_LIBTOOL_PROG_CC_C_O($1)
4890AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
4891AC_LIBTOOL_PROG_LD_SHLIBS($1)
4892AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
4893AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
4894AC_LIBTOOL_SYS_LIB_STRIP
4895AC_LIBTOOL_DLOPEN_SELF($1)
4896
4897AC_LIBTOOL_CONFIG($1)
4898
4899AC_LANG_POP
4900CC=$lt_save_CC
4901LDCXX=$LD
4902LD=$lt_save_LD
4903GCC=$lt_save_GCC
4904with_gnu_ldcxx=$with_gnu_ld
4905with_gnu_ld=$lt_save_with_gnu_ld
4906lt_cv_path_LDCXX=$lt_cv_path_LD
4907lt_cv_path_LD=$lt_save_path_LD
4908lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld
4909lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld
4910])
4911m4trace:/usr/share/aclocal/libtool.m4:3764: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP], [
4912dnl we can't use the lt_simple_compile_test_code here,
4913dnl because it contains code intended for an executable,
4914dnl not a library.  It's possible we should let each
4915dnl tag define a new lt_????_link_test_code variable,
4916dnl but it's only used here...
4917ifelse([$1],[],[cat > conftest.$ac_ext <<EOF
4918int a;
4919void foo (void) { a = 0; }
4920EOF
4921],[$1],[CXX],[cat > conftest.$ac_ext <<EOF
4922class Foo
4923{
4924public:
4925  Foo (void) { a = 0; }
4926private:
4927  int a;
4928};
4929EOF
4930],[$1],[F77],[cat > conftest.$ac_ext <<EOF
4931      subroutine foo
4932      implicit none
4933      integer*4 a
4934      a=0
4935      return
4936      end
4937EOF
4938],[$1],[GCJ],[cat > conftest.$ac_ext <<EOF
4939public class foo {
4940  private int a;
4941  public void bar (void) {
4942    a = 0;
4943  }
4944};
4945EOF
4946])
4947dnl Parse the compiler output and extract the necessary
4948dnl objects, libraries and library flags.
4949if AC_TRY_EVAL(ac_compile); then
4950  # Parse the compiler output and extract the necessary
4951  # objects, libraries and library flags.
4952
4953  # Sentinel used to keep track of whether or not we are before
4954  # the conftest object file.
4955  pre_test_object_deps_done=no
4956
4957  # The `*' in the case matches for architectures that use `case' in
4958  # $output_verbose_cmd can trigger glob expansion during the loop
4959  # eval without this substitution.
4960  output_verbose_link_cmd=`$echo "X$output_verbose_link_cmd" | $Xsed -e "$no_glob_subst"`
4961
4962  for p in `eval $output_verbose_link_cmd`; do
4963    case $p in
4964
4965    -L* | -R* | -l*)
4966       # Some compilers place space between "-{L,R}" and the path.
4967       # Remove the space.
4968       if test $p = "-L" \
4969	  || test $p = "-R"; then
4970	 prev=$p
4971	 continue
4972       else
4973	 prev=
4974       fi
4975
4976       if test "$pre_test_object_deps_done" = no; then
4977	 case $p in
4978	 -L* | -R*)
4979	   # Internal compiler library paths should come after those
4980	   # provided the user.  The postdeps already come after the
4981	   # user supplied libs so there is no need to process them.
4982	   if test -z "$_LT_AC_TAGVAR(compiler_lib_search_path, $1)"; then
4983	     _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}"
4984	   else
4985	     _LT_AC_TAGVAR(compiler_lib_search_path, $1)="${_LT_AC_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}"
4986	   fi
4987	   ;;
4988	 # The "-l" case would never come before the object being
4989	 # linked, so don't bother handling this case.
4990	 esac
4991       else
4992	 if test -z "$_LT_AC_TAGVAR(postdeps, $1)"; then
4993	   _LT_AC_TAGVAR(postdeps, $1)="${prev}${p}"
4994	 else
4995	   _LT_AC_TAGVAR(postdeps, $1)="${_LT_AC_TAGVAR(postdeps, $1)} ${prev}${p}"
4996	 fi
4997       fi
4998       ;;
4999
5000    *.$objext)
5001       # This assumes that the test object file only shows up
5002       # once in the compiler output.
5003       if test "$p" = "conftest.$objext"; then
5004	 pre_test_object_deps_done=yes
5005	 continue
5006       fi
5007
5008       if test "$pre_test_object_deps_done" = no; then
5009	 if test -z "$_LT_AC_TAGVAR(predep_objects, $1)"; then
5010	   _LT_AC_TAGVAR(predep_objects, $1)="$p"
5011	 else
5012	   _LT_AC_TAGVAR(predep_objects, $1)="$_LT_AC_TAGVAR(predep_objects, $1) $p"
5013	 fi
5014       else
5015	 if test -z "$_LT_AC_TAGVAR(postdep_objects, $1)"; then
5016	   _LT_AC_TAGVAR(postdep_objects, $1)="$p"
5017	 else
5018	   _LT_AC_TAGVAR(postdep_objects, $1)="$_LT_AC_TAGVAR(postdep_objects, $1) $p"
5019	 fi
5020       fi
5021       ;;
5022
5023    *) ;; # Ignore the rest.
5024
5025    esac
5026  done
5027
5028  # Clean up.
5029  rm -f a.out a.exe
5030else
5031  echo "libtool.m4: error: problem compiling $1 test program"
5032fi
5033
5034$rm -f confest.$objext
5035
5036# PORTME: override above test on systems where it is broken
5037ifelse([$1],[CXX],
5038[case $host_os in
5039solaris*)
5040  case $cc_basename in
5041  CC*)
5042    # Adding this requires a known-good setup of shared libraries for
5043    # Sun compiler versions before 5.6, else PIC objects from an old
5044    # archive will be linked into the output, leading to subtle bugs.
5045    _LT_AC_TAGVAR(postdeps,$1)='-lCstd -lCrun'
5046    ;;
5047  esac
5048esac
5049])
5050
5051case " $_LT_AC_TAGVAR(postdeps, $1) " in
5052*" -lc "*) _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no ;;
5053esac
5054])
5055m4trace:/usr/share/aclocal/libtool.m4:3771: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG], [_LT_AC_LANG_F77_CONFIG(F77)])
5056m4trace:/usr/share/aclocal/libtool.m4:3869: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG], [AC_REQUIRE([AC_PROG_F77])
5057AC_LANG_PUSH(Fortran 77)
5058
5059_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5060_LT_AC_TAGVAR(allow_undefined_flag, $1)=
5061_LT_AC_TAGVAR(always_export_symbols, $1)=no
5062_LT_AC_TAGVAR(archive_expsym_cmds, $1)=
5063_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
5064_LT_AC_TAGVAR(hardcode_direct, $1)=no
5065_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
5066_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
5067_LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
5068_LT_AC_TAGVAR(hardcode_minus_L, $1)=no
5069_LT_AC_TAGVAR(hardcode_automatic, $1)=no
5070_LT_AC_TAGVAR(module_cmds, $1)=
5071_LT_AC_TAGVAR(module_expsym_cmds, $1)=
5072_LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
5073_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
5074_LT_AC_TAGVAR(no_undefined_flag, $1)=
5075_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
5076_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
5077
5078# Source file extension for f77 test sources.
5079ac_ext=f
5080
5081# Object file extension for compiled f77 test sources.
5082objext=o
5083_LT_AC_TAGVAR(objext, $1)=$objext
5084
5085# Code to be used in simple compile tests
5086lt_simple_compile_test_code="      subroutine t\n      return\n      end\n"
5087
5088# Code to be used in simple link tests
5089lt_simple_link_test_code="      program t\n      end\n"
5090
5091# ltmain only uses $CC for tagged configurations so make sure $CC is set.
5092_LT_AC_SYS_COMPILER
5093
5094# save warnings/boilerplate of simple test code
5095_LT_COMPILER_BOILERPLATE
5096_LT_LINKER_BOILERPLATE
5097
5098# Allow CC to be a program name with arguments.
5099lt_save_CC="$CC"
5100CC=${F77-"f77"}
5101compiler=$CC
5102_LT_AC_TAGVAR(compiler, $1)=$CC
5103_LT_CC_BASENAME([$compiler])
5104
5105AC_MSG_CHECKING([if libtool supports shared libraries])
5106AC_MSG_RESULT([$can_build_shared])
5107
5108AC_MSG_CHECKING([whether to build shared libraries])
5109test "$can_build_shared" = "no" && enable_shared=no
5110
5111# On AIX, shared libraries and static libraries use the same namespace, and
5112# are all built from PIC.
5113case $host_os in
5114aix3*)
5115  test "$enable_shared" = yes && enable_static=no
5116  if test -n "$RANLIB"; then
5117    archive_cmds="$archive_cmds~\$RANLIB \$lib"
5118    postinstall_cmds='$RANLIB $lib'
5119  fi
5120  ;;
5121aix4* | aix5*)
5122  if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then
5123    test "$enable_shared" = yes && enable_static=no
5124  fi
5125  ;;
5126esac
5127AC_MSG_RESULT([$enable_shared])
5128
5129AC_MSG_CHECKING([whether to build static libraries])
5130# Make sure either enable_shared or enable_static is yes.
5131test "$enable_shared" = yes || enable_static=yes
5132AC_MSG_RESULT([$enable_static])
5133
5134test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
5135
5136_LT_AC_TAGVAR(GCC, $1)="$G77"
5137_LT_AC_TAGVAR(LD, $1)="$LD"
5138
5139AC_LIBTOOL_PROG_COMPILER_PIC($1)
5140AC_LIBTOOL_PROG_CC_C_O($1)
5141AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
5142AC_LIBTOOL_PROG_LD_SHLIBS($1)
5143AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
5144AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
5145AC_LIBTOOL_SYS_LIB_STRIP
5146
5147
5148AC_LIBTOOL_CONFIG($1)
5149
5150AC_LANG_POP
5151CC="$lt_save_CC"
5152])
5153m4trace:/usr/share/aclocal/libtool.m4:3877: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG], [_LT_AC_LANG_GCJ_CONFIG(GCJ)])
5154m4trace:/usr/share/aclocal/libtool.m4:3931: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG], [AC_LANG_SAVE
5155
5156# Source file extension for Java test sources.
5157ac_ext=java
5158
5159# Object file extension for compiled Java test sources.
5160objext=o
5161_LT_AC_TAGVAR(objext, $1)=$objext
5162
5163# Code to be used in simple compile tests
5164lt_simple_compile_test_code="class foo {}\n"
5165
5166# Code to be used in simple link tests
5167lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }\n'
5168
5169# ltmain only uses $CC for tagged configurations so make sure $CC is set.
5170_LT_AC_SYS_COMPILER
5171
5172# save warnings/boilerplate of simple test code
5173_LT_COMPILER_BOILERPLATE
5174_LT_LINKER_BOILERPLATE
5175
5176# Allow CC to be a program name with arguments.
5177lt_save_CC="$CC"
5178CC=${GCJ-"gcj"}
5179compiler=$CC
5180_LT_AC_TAGVAR(compiler, $1)=$CC
5181_LT_CC_BASENAME([$compiler])
5182
5183# GCJ did not exist at the time GCC didn't implicitly link libc in.
5184_LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
5185
5186_LT_AC_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds
5187
5188## CAVEAT EMPTOR:
5189## There is no encapsulation within the following macros, do not change
5190## the running order or otherwise move them around unless you know exactly
5191## what you are doing...
5192AC_LIBTOOL_PROG_COMPILER_NO_RTTI($1)
5193AC_LIBTOOL_PROG_COMPILER_PIC($1)
5194AC_LIBTOOL_PROG_CC_C_O($1)
5195AC_LIBTOOL_SYS_HARD_LINK_LOCKS($1)
5196AC_LIBTOOL_PROG_LD_SHLIBS($1)
5197AC_LIBTOOL_SYS_DYNAMIC_LINKER($1)
5198AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH($1)
5199AC_LIBTOOL_SYS_LIB_STRIP
5200AC_LIBTOOL_DLOPEN_SELF($1)
5201
5202AC_LIBTOOL_CONFIG($1)
5203
5204AC_LANG_RESTORE
5205CC="$lt_save_CC"
5206])
5207m4trace:/usr/share/aclocal/libtool.m4:3939: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG], [_LT_AC_LANG_RC_CONFIG(RC)])
5208m4trace:/usr/share/aclocal/libtool.m4:3975: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG], [AC_LANG_SAVE
5209
5210# Source file extension for RC test sources.
5211ac_ext=rc
5212
5213# Object file extension for compiled RC test sources.
5214objext=o
5215_LT_AC_TAGVAR(objext, $1)=$objext
5216
5217# Code to be used in simple compile tests
5218lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }\n'
5219
5220# Code to be used in simple link tests
5221lt_simple_link_test_code="$lt_simple_compile_test_code"
5222
5223# ltmain only uses $CC for tagged configurations so make sure $CC is set.
5224_LT_AC_SYS_COMPILER
5225
5226# save warnings/boilerplate of simple test code
5227_LT_COMPILER_BOILERPLATE
5228_LT_LINKER_BOILERPLATE
5229
5230# Allow CC to be a program name with arguments.
5231lt_save_CC="$CC"
5232CC=${RC-"windres"}
5233compiler=$CC
5234_LT_AC_TAGVAR(compiler, $1)=$CC
5235_LT_CC_BASENAME([$compiler])
5236_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes
5237
5238AC_LIBTOOL_CONFIG($1)
5239
5240AC_LANG_RESTORE
5241CC="$lt_save_CC"
5242])
5243m4trace:/usr/share/aclocal/libtool.m4:4466: -1- AC_DEFUN([AC_LIBTOOL_CONFIG], [# The else clause should only fire when bootstrapping the
5244# libtool distribution, otherwise you forgot to ship ltmain.sh
5245# with your package, and you will get complaints that there are
5246# no rules to generate ltmain.sh.
5247if test -f "$ltmain"; then
5248  # See if we are running on zsh, and set the options which allow our commands through
5249  # without removal of \ escapes.
5250  if test -n "${ZSH_VERSION+set}" ; then
5251    setopt NO_GLOB_SUBST
5252  fi
5253  # Now quote all the things that may contain metacharacters while being
5254  # careful not to overquote the AC_SUBSTed values.  We take copies of the
5255  # variables and quote the copies for generation of the libtool script.
5256  for var in echo old_CC old_CFLAGS AR AR_FLAGS EGREP RANLIB LN_S LTCC NM \
5257    SED SHELL STRIP \
5258    libname_spec library_names_spec soname_spec extract_expsyms_cmds \
5259    old_striplib striplib file_magic_cmd finish_cmds finish_eval \
5260    deplibs_check_method reload_flag reload_cmds need_locks \
5261    lt_cv_sys_global_symbol_pipe lt_cv_sys_global_symbol_to_cdecl \
5262    lt_cv_sys_global_symbol_to_c_name_address \
5263    sys_lib_search_path_spec sys_lib_dlsearch_path_spec \
5264    old_postinstall_cmds old_postuninstall_cmds \
5265    _LT_AC_TAGVAR(compiler, $1) \
5266    _LT_AC_TAGVAR(CC, $1) \
5267    _LT_AC_TAGVAR(LD, $1) \
5268    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1) \
5269    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1) \
5270    _LT_AC_TAGVAR(lt_prog_compiler_static, $1) \
5271    _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) \
5272    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1) \
5273    _LT_AC_TAGVAR(thread_safe_flag_spec, $1) \
5274    _LT_AC_TAGVAR(whole_archive_flag_spec, $1) \
5275    _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1) \
5276    _LT_AC_TAGVAR(old_archive_cmds, $1) \
5277    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) \
5278    _LT_AC_TAGVAR(predep_objects, $1) \
5279    _LT_AC_TAGVAR(postdep_objects, $1) \
5280    _LT_AC_TAGVAR(predeps, $1) \
5281    _LT_AC_TAGVAR(postdeps, $1) \
5282    _LT_AC_TAGVAR(compiler_lib_search_path, $1) \
5283    _LT_AC_TAGVAR(archive_cmds, $1) \
5284    _LT_AC_TAGVAR(archive_expsym_cmds, $1) \
5285    _LT_AC_TAGVAR(postinstall_cmds, $1) \
5286    _LT_AC_TAGVAR(postuninstall_cmds, $1) \
5287    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) \
5288    _LT_AC_TAGVAR(allow_undefined_flag, $1) \
5289    _LT_AC_TAGVAR(no_undefined_flag, $1) \
5290    _LT_AC_TAGVAR(export_symbols_cmds, $1) \
5291    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) \
5292    _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1) \
5293    _LT_AC_TAGVAR(hardcode_libdir_separator, $1) \
5294    _LT_AC_TAGVAR(hardcode_automatic, $1) \
5295    _LT_AC_TAGVAR(module_cmds, $1) \
5296    _LT_AC_TAGVAR(module_expsym_cmds, $1) \
5297    _LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1) \
5298    _LT_AC_TAGVAR(exclude_expsyms, $1) \
5299    _LT_AC_TAGVAR(include_expsyms, $1); do
5300
5301    case $var in
5302    _LT_AC_TAGVAR(old_archive_cmds, $1) | \
5303    _LT_AC_TAGVAR(old_archive_from_new_cmds, $1) | \
5304    _LT_AC_TAGVAR(archive_cmds, $1) | \
5305    _LT_AC_TAGVAR(archive_expsym_cmds, $1) | \
5306    _LT_AC_TAGVAR(module_cmds, $1) | \
5307    _LT_AC_TAGVAR(module_expsym_cmds, $1) | \
5308    _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1) | \
5309    _LT_AC_TAGVAR(export_symbols_cmds, $1) | \
5310    extract_expsyms_cmds | reload_cmds | finish_cmds | \
5311    postinstall_cmds | postuninstall_cmds | \
5312    old_postinstall_cmds | old_postuninstall_cmds | \
5313    sys_lib_search_path_spec | sys_lib_dlsearch_path_spec)
5314      # Double-quote double-evaled strings.
5315      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$double_quote_subst\" -e \"\$sed_quote_subst\" -e \"\$delay_variable_subst\"\`\\\""
5316      ;;
5317    *)
5318      eval "lt_$var=\\\"\`\$echo \"X\$$var\" | \$Xsed -e \"\$sed_quote_subst\"\`\\\""
5319      ;;
5320    esac
5321  done
5322
5323  case $lt_echo in
5324  *'\[$]0 --fallback-echo"')
5325    lt_echo=`$echo "X$lt_echo" | $Xsed -e 's/\\\\\\\[$]0 --fallback-echo"[$]/[$]0 --fallback-echo"/'`
5326    ;;
5327  esac
5328
5329ifelse([$1], [],
5330  [cfgfile="${ofile}T"
5331  trap "$rm \"$cfgfile\"; exit 1" 1 2 15
5332  $rm -f "$cfgfile"
5333  AC_MSG_NOTICE([creating $ofile])],
5334  [cfgfile="$ofile"])
5335
5336  cat <<__EOF__ >> "$cfgfile"
5337ifelse([$1], [],
5338[#! $SHELL
5339
5340# `$echo "$cfgfile" | sed 's%^.*/%%'` - Provide generalized library-building support services.
5341# Generated automatically by $PROGRAM (GNU $PACKAGE $VERSION$TIMESTAMP)
5342# NOTE: Changes made to this file will be lost: look at ltmain.sh.
5343#
5344# Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001
5345# Free Software Foundation, Inc.
5346#
5347# This file is part of GNU Libtool:
5348# Originally by Gordon Matzigkeit <gord@gnu.ai.mit.edu>, 1996
5349#
5350# This program is free software; you can redistribute it and/or modify
5351# it under the terms of the GNU General Public License as published by
5352# the Free Software Foundation; either version 2 of the License, or
5353# (at your option) any later version.
5354#
5355# This program is distributed in the hope that it will be useful, but
5356# WITHOUT ANY WARRANTY; without even the implied warranty of
5357# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
5358# General Public License for more details.
5359#
5360# You should have received a copy of the GNU General Public License
5361# along with this program; if not, write to the Free Software
5362# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
5363#
5364# As a special exception to the GNU General Public License, if you
5365# distribute this file as part of a program that contains a
5366# configuration script generated by Autoconf, you may include it under
5367# the same distribution terms that you use for the rest of that program.
5368
5369# A sed program that does not truncate output.
5370SED=$lt_SED
5371
5372# Sed that helps us avoid accidentally triggering echo(1) options like -n.
5373Xsed="$SED -e 1s/^X//"
5374
5375# The HP-UX ksh and POSIX shell print the target directory to stdout
5376# if CDPATH is set.
5377(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
5378
5379# The names of the tagged configurations supported by this script.
5380available_tags=
5381
5382# ### BEGIN LIBTOOL CONFIG],
5383[# ### BEGIN LIBTOOL TAG CONFIG: $tagname])
5384
5385# Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
5386
5387# Shell to use when invoking shell scripts.
5388SHELL=$lt_SHELL
5389
5390# Whether or not to build shared libraries.
5391build_libtool_libs=$enable_shared
5392
5393# Whether or not to build static libraries.
5394build_old_libs=$enable_static
5395
5396# Whether or not to add -lc for building shared libraries.
5397build_libtool_need_lc=$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)
5398
5399# Whether or not to disallow shared libs when runtime libs are static
5400allow_libtool_libs_with_static_runtimes=$_LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)
5401
5402# Whether or not to optimize for fast installation.
5403fast_install=$enable_fast_install
5404
5405# The host system.
5406host_alias=$host_alias
5407host=$host
5408host_os=$host_os
5409
5410# The build system.
5411build_alias=$build_alias
5412build=$build
5413build_os=$build_os
5414
5415# An echo program that does not interpret backslashes.
5416echo=$lt_echo
5417
5418# The archiver.
5419AR=$lt_AR
5420AR_FLAGS=$lt_AR_FLAGS
5421
5422# A C compiler.
5423LTCC=$lt_LTCC
5424
5425# A language-specific compiler.
5426CC=$lt_[]_LT_AC_TAGVAR(compiler, $1)
5427
5428# Is the compiler the GNU C compiler?
5429with_gcc=$_LT_AC_TAGVAR(GCC, $1)
5430
5431# An ERE matcher.
5432EGREP=$lt_EGREP
5433
5434# The linker used to build libraries.
5435LD=$lt_[]_LT_AC_TAGVAR(LD, $1)
5436
5437# Whether we need hard or soft links.
5438LN_S=$lt_LN_S
5439
5440# A BSD-compatible nm program.
5441NM=$lt_NM
5442
5443# A symbol stripping program
5444STRIP=$lt_STRIP
5445
5446# Used to examine libraries when file_magic_cmd begins "file"
5447MAGIC_CMD=$MAGIC_CMD
5448
5449# Used on cygwin: DLL creation program.
5450DLLTOOL="$DLLTOOL"
5451
5452# Used on cygwin: object dumper.
5453OBJDUMP="$OBJDUMP"
5454
5455# Used on cygwin: assembler.
5456AS="$AS"
5457
5458# The name of the directory that contains temporary libtool files.
5459objdir=$objdir
5460
5461# How to create reloadable object files.
5462reload_flag=$lt_reload_flag
5463reload_cmds=$lt_reload_cmds
5464
5465# How to pass a linker flag through the compiler.
5466wl=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
5467
5468# Object file suffix (normally "o").
5469objext="$ac_objext"
5470
5471# Old archive suffix (normally "a").
5472libext="$libext"
5473
5474# Shared library suffix (normally ".so").
5475shrext_cmds='$shrext_cmds'
5476
5477# Executable file suffix (normally "").
5478exeext="$exeext"
5479
5480# Additional compiler flags for building library objects.
5481pic_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)
5482pic_mode=$pic_mode
5483
5484# What is the maximum length of a command?
5485max_cmd_len=$lt_cv_sys_max_cmd_len
5486
5487# Does compiler simultaneously support -c and -o options?
5488compiler_c_o=$lt_[]_LT_AC_TAGVAR(lt_cv_prog_compiler_c_o, $1)
5489
5490# Must we lock files when doing compilation?
5491need_locks=$lt_need_locks
5492
5493# Do we need the lib prefix for modules?
5494need_lib_prefix=$need_lib_prefix
5495
5496# Do we need a version for libraries?
5497need_version=$need_version
5498
5499# Whether dlopen is supported.
5500dlopen_support=$enable_dlopen
5501
5502# Whether dlopen of programs is supported.
5503dlopen_self=$enable_dlopen_self
5504
5505# Whether dlopen of statically linked programs is supported.
5506dlopen_self_static=$enable_dlopen_self_static
5507
5508# Compiler flag to prevent dynamic linking.
5509link_static_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_static, $1)
5510
5511# Compiler flag to turn off builtin functions.
5512no_builtin_flag=$lt_[]_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)
5513
5514# Compiler flag to allow reflexive dlopens.
5515export_dynamic_flag_spec=$lt_[]_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)
5516
5517# Compiler flag to generate shared objects directly from archives.
5518whole_archive_flag_spec=$lt_[]_LT_AC_TAGVAR(whole_archive_flag_spec, $1)
5519
5520# Compiler flag to generate thread-safe objects.
5521thread_safe_flag_spec=$lt_[]_LT_AC_TAGVAR(thread_safe_flag_spec, $1)
5522
5523# Library versioning type.
5524version_type=$version_type
5525
5526# Format of library name prefix.
5527libname_spec=$lt_libname_spec
5528
5529# List of archive names.  First name is the real one, the rest are links.
5530# The last name is the one that the linker finds with -lNAME.
5531library_names_spec=$lt_library_names_spec
5532
5533# The coded name of the library, if different from the real name.
5534soname_spec=$lt_soname_spec
5535
5536# Commands used to build and install an old-style archive.
5537RANLIB=$lt_RANLIB
5538old_archive_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_cmds, $1)
5539old_postinstall_cmds=$lt_old_postinstall_cmds
5540old_postuninstall_cmds=$lt_old_postuninstall_cmds
5541
5542# Create an old-style archive from a shared archive.
5543old_archive_from_new_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_new_cmds, $1)
5544
5545# Create a temporary old-style archive to link instead of a shared archive.
5546old_archive_from_expsyms_cmds=$lt_[]_LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)
5547
5548# Commands used to build and install a shared archive.
5549archive_cmds=$lt_[]_LT_AC_TAGVAR(archive_cmds, $1)
5550archive_expsym_cmds=$lt_[]_LT_AC_TAGVAR(archive_expsym_cmds, $1)
5551postinstall_cmds=$lt_postinstall_cmds
5552postuninstall_cmds=$lt_postuninstall_cmds
5553
5554# Commands used to build a loadable module (assumed same as above if empty)
5555module_cmds=$lt_[]_LT_AC_TAGVAR(module_cmds, $1)
5556module_expsym_cmds=$lt_[]_LT_AC_TAGVAR(module_expsym_cmds, $1)
5557
5558# Commands to strip libraries.
5559old_striplib=$lt_old_striplib
5560striplib=$lt_striplib
5561
5562# Dependencies to place before the objects being linked to create a
5563# shared library.
5564predep_objects=$lt_[]_LT_AC_TAGVAR(predep_objects, $1)
5565
5566# Dependencies to place after the objects being linked to create a
5567# shared library.
5568postdep_objects=$lt_[]_LT_AC_TAGVAR(postdep_objects, $1)
5569
5570# Dependencies to place before the objects being linked to create a
5571# shared library.
5572predeps=$lt_[]_LT_AC_TAGVAR(predeps, $1)
5573
5574# Dependencies to place after the objects being linked to create a
5575# shared library.
5576postdeps=$lt_[]_LT_AC_TAGVAR(postdeps, $1)
5577
5578# The library search path used internally by the compiler when linking
5579# a shared library.
5580compiler_lib_search_path=$lt_[]_LT_AC_TAGVAR(compiler_lib_search_path, $1)
5581
5582# Method to check whether dependent libraries are shared objects.
5583deplibs_check_method=$lt_deplibs_check_method
5584
5585# Command to use when deplibs_check_method == file_magic.
5586file_magic_cmd=$lt_file_magic_cmd
5587
5588# Flag that allows shared libraries with undefined symbols to be built.
5589allow_undefined_flag=$lt_[]_LT_AC_TAGVAR(allow_undefined_flag, $1)
5590
5591# Flag that forces no undefined symbols.
5592no_undefined_flag=$lt_[]_LT_AC_TAGVAR(no_undefined_flag, $1)
5593
5594# Commands used to finish a libtool library installation in a directory.
5595finish_cmds=$lt_finish_cmds
5596
5597# Same as above, but a single script fragment to be evaled but not shown.
5598finish_eval=$lt_finish_eval
5599
5600# Take the output of nm and produce a listing of raw symbols and C names.
5601global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe
5602
5603# Transform the output of nm in a proper C declaration
5604global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl
5605
5606# Transform the output of nm in a C name address pair
5607global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address
5608
5609# This is the shared library runtime path variable.
5610runpath_var=$runpath_var
5611
5612# This is the shared library path variable.
5613shlibpath_var=$shlibpath_var
5614
5615# Is shlibpath searched before the hard-coded library search path?
5616shlibpath_overrides_runpath=$shlibpath_overrides_runpath
5617
5618# How to hardcode a shared library path into an executable.
5619hardcode_action=$_LT_AC_TAGVAR(hardcode_action, $1)
5620
5621# Whether we should hardcode library paths into libraries.
5622hardcode_into_libs=$hardcode_into_libs
5623
5624# Flag to hardcode \$libdir into a binary during linking.
5625# This must work even if \$libdir does not exist.
5626hardcode_libdir_flag_spec=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)
5627
5628# If ld is used when linking, flag to hardcode \$libdir into
5629# a binary during linking. This must work even if \$libdir does
5630# not exist.
5631hardcode_libdir_flag_spec_ld=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)
5632
5633# Whether we need a single -rpath flag with a separated argument.
5634hardcode_libdir_separator=$lt_[]_LT_AC_TAGVAR(hardcode_libdir_separator, $1)
5635
5636# Set to yes if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the
5637# resulting binary.
5638hardcode_direct=$_LT_AC_TAGVAR(hardcode_direct, $1)
5639
5640# Set to yes if using the -LDIR flag during linking hardcodes DIR into the
5641# resulting binary.
5642hardcode_minus_L=$_LT_AC_TAGVAR(hardcode_minus_L, $1)
5643
5644# Set to yes if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into
5645# the resulting binary.
5646hardcode_shlibpath_var=$_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)
5647
5648# Set to yes if building a shared library automatically hardcodes DIR into the library
5649# and all subsequent libraries and executables linked against it.
5650hardcode_automatic=$_LT_AC_TAGVAR(hardcode_automatic, $1)
5651
5652# Variables whose values should be saved in libtool wrapper scripts and
5653# restored at relink time.
5654variables_saved_for_relink="$variables_saved_for_relink"
5655
5656# Whether libtool must link a program against all its dependency libraries.
5657link_all_deplibs=$_LT_AC_TAGVAR(link_all_deplibs, $1)
5658
5659# Compile-time system search path for libraries
5660sys_lib_search_path_spec=$lt_sys_lib_search_path_spec
5661
5662# Run-time system search path for libraries
5663sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec
5664
5665# Fix the shell variable \$srcfile for the compiler.
5666fix_srcfile_path="$_LT_AC_TAGVAR(fix_srcfile_path, $1)"
5667
5668# Set to yes if exported symbols are required.
5669always_export_symbols=$_LT_AC_TAGVAR(always_export_symbols, $1)
5670
5671# The commands to list exported symbols.
5672export_symbols_cmds=$lt_[]_LT_AC_TAGVAR(export_symbols_cmds, $1)
5673
5674# The commands to extract the exported symbol list from a shared archive.
5675extract_expsyms_cmds=$lt_extract_expsyms_cmds
5676
5677# Symbols that should not be listed in the preloaded symbols.
5678exclude_expsyms=$lt_[]_LT_AC_TAGVAR(exclude_expsyms, $1)
5679
5680# Symbols that must always be exported.
5681include_expsyms=$lt_[]_LT_AC_TAGVAR(include_expsyms, $1)
5682
5683ifelse([$1],[],
5684[# ### END LIBTOOL CONFIG],
5685[# ### END LIBTOOL TAG CONFIG: $tagname])
5686
5687__EOF__
5688
5689ifelse([$1],[], [
5690  case $host_os in
5691  aix3*)
5692    cat <<\EOF >> "$cfgfile"
5693
5694# AIX sometimes has problems with the GCC collect2 program.  For some
5695# reason, if we set the COLLECT_NAMES environment variable, the problems
5696# vanish in a puff of smoke.
5697if test "X${COLLECT_NAMES+set}" != Xset; then
5698  COLLECT_NAMES=
5699  export COLLECT_NAMES
5700fi
5701EOF
5702    ;;
5703  esac
5704
5705  # We use sed instead of cat because bash on DJGPP gets confused if
5706  # if finds mixed CR/LF and LF-only lines.  Since sed operates in
5707  # text mode, it properly converts lines to CR/LF.  This bash problem
5708  # is reportedly fixed, but why not run on old versions too?
5709  sed '$q' "$ltmain" >> "$cfgfile" || (rm -f "$cfgfile"; exit 1)
5710
5711  mv -f "$cfgfile" "$ofile" || \
5712    (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile")
5713  chmod +x "$ofile"
5714])
5715else
5716  # If there is no Makefile yet, we rely on a make rule to execute
5717  # `config.status --recheck' to rerun these tests and create the
5718  # libtool script then.
5719  ltmain_in=`echo $ltmain | sed -e 's/\.sh$/.in/'`
5720  if test -f "$ltmain_in"; then
5721    test -f Makefile && make "$ltmain"
5722  fi
5723fi
5724])
5725m4trace:/usr/share/aclocal/libtool.m4:4484: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_REQUIRE([_LT_AC_SYS_COMPILER])dnl
5726
5727_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=
5728
5729if test "$GCC" = yes; then
5730  _LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin'
5731
5732  AC_LIBTOOL_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions],
5733    lt_cv_prog_compiler_rtti_exceptions,
5734    [-fno-rtti -fno-exceptions], [],
5735    [_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"])
5736fi
5737])
5738m4trace:/usr/share/aclocal/libtool.m4:4677: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_REQUIRE([AC_CANONICAL_HOST])
5739AC_REQUIRE([AC_PROG_NM])
5740AC_REQUIRE([AC_OBJEXT])
5741# Check for command to grab the raw symbol name followed by C symbol from nm.
5742AC_MSG_CHECKING([command to parse $NM output from $compiler object])
5743AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe],
5744[
5745# These are sane defaults that work on at least a few old systems.
5746# [They come from Ultrix.  What could be older than Ultrix?!! ;)]
5747
5748# Character class describing NM global symbol codes.
5749symcode='[[BCDEGRST]]'
5750
5751# Regexp to match symbols that can be accessed directly from C.
5752sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)'
5753
5754# Transform an extracted symbol line into a proper C declaration
5755lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^. .* \(.*\)$/extern int \1;/p'"
5756
5757# Transform an extracted symbol line into symbol name and symbol address
5758lt_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'"
5759
5760# Define system-specific variables.
5761case $host_os in
5762aix*)
5763  symcode='[[BCDT]]'
5764  ;;
5765cygwin* | mingw* | pw32*)
5766  symcode='[[ABCDGISTW]]'
5767  ;;
5768hpux*) # Its linker distinguishes data from code symbols
5769  if test "$host_cpu" = ia64; then
5770    symcode='[[ABCDEGRST]]'
5771  fi
5772  lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
5773  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'"
5774  ;;
5775linux*)
5776  if test "$host_cpu" = ia64; then
5777    symcode='[[ABCDGIRSTW]]'
5778    lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'"
5779    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'"
5780  fi
5781  ;;
5782irix* | nonstopux*)
5783  symcode='[[BCDEGRST]]'
5784  ;;
5785osf*)
5786  symcode='[[BCDEGQRST]]'
5787  ;;
5788solaris* | sysv5*)
5789  symcode='[[BDRT]]'
5790  ;;
5791sysv4)
5792  symcode='[[DFNSTU]]'
5793  ;;
5794esac
5795
5796# Handle CRLF in mingw tool chain
5797opt_cr=
5798case $build_os in
5799mingw*)
5800  opt_cr=`echo 'x\{0,1\}' | tr x '\015'` # option cr in regexp
5801  ;;
5802esac
5803
5804# If we're using GNU nm, then use its standard symbol codes.
5805case `$NM -V 2>&1` in
5806*GNU* | *'with BFD'*)
5807  symcode='[[ABCDGIRSTW]]' ;;
5808esac
5809
5810# Try without a prefix undercore, then with it.
5811for ac_symprfx in "" "_"; do
5812
5813  # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol.
5814  symxfrm="\\1 $ac_symprfx\\2 \\2"
5815
5816  # Write the raw and C identifiers.
5817  lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ 	]]\($symcode$symcode*\)[[ 	]][[ 	]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'"
5818
5819  # Check to see that the pipe works correctly.
5820  pipe_works=no
5821
5822  rm -f conftest*
5823  cat > conftest.$ac_ext <<EOF
5824#ifdef __cplusplus
5825extern "C" {
5826#endif
5827char nm_test_var;
5828void nm_test_func(){}
5829#ifdef __cplusplus
5830}
5831#endif
5832int main(){nm_test_var='a';nm_test_func();return(0);}
5833EOF
5834
5835  if AC_TRY_EVAL(ac_compile); then
5836    # Now try to grab the symbols.
5837    nlist=conftest.nm
5838    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then
5839      # Try sorting and uniquifying the output.
5840      if sort "$nlist" | uniq > "$nlist"T; then
5841	mv -f "$nlist"T "$nlist"
5842      else
5843	rm -f "$nlist"T
5844      fi
5845
5846      # Make sure that we snagged all the symbols we need.
5847      if grep ' nm_test_var$' "$nlist" >/dev/null; then
5848	if grep ' nm_test_func$' "$nlist" >/dev/null; then
5849	  cat <<EOF > conftest.$ac_ext
5850#ifdef __cplusplus
5851extern "C" {
5852#endif
5853
5854EOF
5855	  # Now generate the symbol file.
5856	  eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | grep -v main >> conftest.$ac_ext'
5857
5858	  cat <<EOF >> conftest.$ac_ext
5859#if defined (__STDC__) && __STDC__
5860# define lt_ptr_t void *
5861#else
5862# define lt_ptr_t char *
5863# define const
5864#endif
5865
5866/* The mapping between symbol names and symbols. */
5867const struct {
5868  const char *name;
5869  lt_ptr_t address;
5870}
5871lt_preloaded_symbols[[]] =
5872{
5873EOF
5874	  $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/  {\"\2\", (lt_ptr_t) \&\2},/" < "$nlist" | grep -v main >> conftest.$ac_ext
5875	  cat <<\EOF >> conftest.$ac_ext
5876  {0, (lt_ptr_t) 0}
5877};
5878
5879#ifdef __cplusplus
5880}
5881#endif
5882EOF
5883	  # Now try linking the two files.
5884	  mv conftest.$ac_objext conftstm.$ac_objext
5885	  lt_save_LIBS="$LIBS"
5886	  lt_save_CFLAGS="$CFLAGS"
5887	  LIBS="conftstm.$ac_objext"
5888	  CFLAGS="$CFLAGS$_LT_AC_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)"
5889	  if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then
5890	    pipe_works=yes
5891	  fi
5892	  LIBS="$lt_save_LIBS"
5893	  CFLAGS="$lt_save_CFLAGS"
5894	else
5895	  echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD
5896	fi
5897      else
5898	echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD
5899      fi
5900    else
5901      echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
5902    fi
5903  else
5904    echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD
5905    cat conftest.$ac_ext >&5
5906  fi
5907  rm -f conftest* conftst*
5908
5909  # Do not use the global_symbol_pipe unless it works.
5910  if test "$pipe_works" = yes; then
5911    break
5912  else
5913    lt_cv_sys_global_symbol_pipe=
5914  fi
5915done
5916])
5917if test -z "$lt_cv_sys_global_symbol_pipe"; then
5918  lt_cv_sys_global_symbol_to_cdecl=
5919fi
5920if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then
5921  AC_MSG_RESULT(failed)
5922else
5923  AC_MSG_RESULT(ok)
5924fi
5925])
5926m4trace:/usr/share/aclocal/libtool.m4:5181: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC], [_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)=
5927_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5928_LT_AC_TAGVAR(lt_prog_compiler_static, $1)=
5929
5930AC_MSG_CHECKING([for $compiler option to produce PIC])
5931 ifelse([$1],[CXX],[
5932  # C++ specific cases for pic, static, wl, etc.
5933  if test "$GXX" = yes; then
5934    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
5935    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
5936
5937    case $host_os in
5938    aix*)
5939      # All AIX code is PIC.
5940      if test "$host_cpu" = ia64; then
5941	# AIX 5 now supports IA64 processor
5942	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5943      fi
5944      ;;
5945    amigaos*)
5946      # FIXME: we need at least 68020 code to build shared libraries, but
5947      # adding the `-m68020' flag to GCC prevents building anything better,
5948      # like `-m68040'.
5949      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
5950      ;;
5951    beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
5952      # PIC is the default for these OSes.
5953      ;;
5954    mingw* | os2* | pw32*)
5955      # This hack is so that the source file can tell whether it is being
5956      # built for inclusion in a dll (and should export symbols for example).
5957      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
5958      ;;
5959    darwin* | rhapsody*)
5960      # PIC is the default on this platform
5961      # Common symbols not allowed in MH_DYLIB files
5962      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
5963      ;;
5964    *djgpp*)
5965      # DJGPP does not support shared libraries at all
5966      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
5967      ;;
5968    sysv4*MP*)
5969      if test -d /usr/nec; then
5970	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
5971      fi
5972      ;;
5973    hpux*)
5974      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
5975      # not for PA HP-UX.
5976      case $host_cpu in
5977      hppa*64*|ia64*)
5978	;;
5979      *)
5980	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
5981	;;
5982      esac
5983      ;;
5984    *)
5985      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
5986      ;;
5987    esac
5988  else
5989    case $host_os in
5990      aix4* | aix5*)
5991	# All AIX code is PIC.
5992	if test "$host_cpu" = ia64; then
5993	  # AIX 5 now supports IA64 processor
5994	  _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
5995	else
5996	  _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
5997	fi
5998	;;
5999      chorus*)
6000	case $cc_basename in
6001	cxch68*)
6002	  # Green Hills C++ Compiler
6003	  # _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"
6004	  ;;
6005	esac
6006	;;
6007       darwin*)
6008         # PIC is the default on this platform
6009         # Common symbols not allowed in MH_DYLIB files
6010         case $cc_basename in
6011           xlc*)
6012           _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
6013           _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6014           ;;
6015         esac
6016       ;;
6017      dgux*)
6018	case $cc_basename in
6019	  ec++*)
6020	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6021	    ;;
6022	  ghcx*)
6023	    # Green Hills C++ Compiler
6024	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
6025	    ;;
6026	  *)
6027	    ;;
6028	esac
6029	;;
6030      freebsd* | kfreebsd*-gnu | dragonfly*)
6031	# FreeBSD uses GNU C++
6032	;;
6033      hpux9* | hpux10* | hpux11*)
6034	case $cc_basename in
6035	  CC*)
6036	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6037	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
6038	    if test "$host_cpu" != ia64; then
6039	      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
6040	    fi
6041	    ;;
6042	  aCC*)
6043	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6044	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)="${ac_cv_prog_cc_wl}-a ${ac_cv_prog_cc_wl}archive"
6045	    case $host_cpu in
6046	    hppa*64*|ia64*)
6047	      # +Z the default
6048	      ;;
6049	    *)
6050	      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
6051	      ;;
6052	    esac
6053	    ;;
6054	  *)
6055	    ;;
6056	esac
6057	;;
6058      irix5* | irix6* | nonstopux*)
6059	case $cc_basename in
6060	  CC*)
6061	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6062	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6063	    # CC pic flag -KPIC is the default.
6064	    ;;
6065	  *)
6066	    ;;
6067	esac
6068	;;
6069      linux*)
6070	case $cc_basename in
6071	  KCC*)
6072	    # KAI C++ Compiler
6073	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
6074	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
6075	    ;;
6076	  icpc* | ecpc*)
6077	    # Intel C++
6078	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6079	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6080	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
6081	    ;;
6082	  pgCC*)
6083	    # Portland Group C++ compiler.
6084	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6085	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
6086	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6087	    ;;
6088	  cxx*)
6089	    # Compaq C++
6090	    # Make sure the PIC flag is empty.  It appears that all Alpha
6091	    # Linux and Compaq Tru64 Unix objects are PIC.
6092	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
6093	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6094	    ;;
6095	  *)
6096	    ;;
6097	esac
6098	;;
6099      lynxos*)
6100	;;
6101      m88k*)
6102	;;
6103      mvs*)
6104	case $cc_basename in
6105	  cxx*)
6106	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall'
6107	    ;;
6108	  *)
6109	    ;;
6110	esac
6111	;;
6112      netbsd*)
6113	;;
6114      osf3* | osf4* | osf5*)
6115	case $cc_basename in
6116	  KCC*)
6117	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,'
6118	    ;;
6119	  RCC*)
6120	    # Rational C++ 2.4.1
6121	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
6122	    ;;
6123	  cxx*)
6124	    # Digital/Compaq C++
6125	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6126	    # Make sure the PIC flag is empty.  It appears that all Alpha
6127	    # Linux and Compaq Tru64 Unix objects are PIC.
6128	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
6129	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6130	    ;;
6131	  *)
6132	    ;;
6133	esac
6134	;;
6135      psos*)
6136	;;
6137      sco*)
6138	case $cc_basename in
6139	  CC*)
6140	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
6141	    ;;
6142	  *)
6143	    ;;
6144	esac
6145	;;
6146      solaris*)
6147	case $cc_basename in
6148	  CC*)
6149	    # Sun C++ 4.2, 5.x and Centerline C++
6150	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6151	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6152	    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
6153	    ;;
6154	  gcx*)
6155	    # Green Hills C++ Compiler
6156	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
6157	    ;;
6158	  *)
6159	    ;;
6160	esac
6161	;;
6162      sunos4*)
6163	case $cc_basename in
6164	  CC*)
6165	    # Sun C++ 4.x
6166	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
6167	    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6168	    ;;
6169	  lcc*)
6170	    # Lucid
6171	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
6172	    ;;
6173	  *)
6174	    ;;
6175	esac
6176	;;
6177      tandem*)
6178	case $cc_basename in
6179	  NCC*)
6180	    # NonStop-UX NCC 3.20
6181	    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6182	    ;;
6183	  *)
6184	    ;;
6185	esac
6186	;;
6187      unixware*)
6188	;;
6189      vxworks*)
6190	;;
6191      *)
6192	_LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6193	;;
6194    esac
6195  fi
6196],
6197[
6198  if test "$GCC" = yes; then
6199    _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6200    _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
6201
6202    case $host_os in
6203      aix*)
6204      # All AIX code is PIC.
6205      if test "$host_cpu" = ia64; then
6206	# AIX 5 now supports IA64 processor
6207	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6208      fi
6209      ;;
6210
6211    amigaos*)
6212      # FIXME: we need at least 68020 code to build shared libraries, but
6213      # adding the `-m68020' flag to GCC prevents building anything better,
6214      # like `-m68040'.
6215      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4'
6216      ;;
6217
6218    beos* | cygwin* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*)
6219      # PIC is the default for these OSes.
6220      ;;
6221
6222    mingw* | pw32* | os2*)
6223      # This hack is so that the source file can tell whether it is being
6224      # built for inclusion in a dll (and should export symbols for example).
6225      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
6226      ;;
6227
6228    darwin* | rhapsody*)
6229      # PIC is the default on this platform
6230      # Common symbols not allowed in MH_DYLIB files
6231      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common'
6232      ;;
6233
6234    msdosdjgpp*)
6235      # Just because we use GCC doesn't mean we suddenly get shared libraries
6236      # on systems that don't support them.
6237      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6238      enable_shared=no
6239      ;;
6240
6241    sysv4*MP*)
6242      if test -d /usr/nec; then
6243	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic
6244      fi
6245      ;;
6246
6247    hpux*)
6248      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
6249      # not for PA HP-UX.
6250      case $host_cpu in
6251      hppa*64*|ia64*)
6252	# +Z the default
6253	;;
6254      *)
6255	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
6256	;;
6257      esac
6258      ;;
6259
6260    *)
6261      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC'
6262      ;;
6263    esac
6264  else
6265    # PORTME Check for flag to pass linker flags through the system compiler.
6266    case $host_os in
6267    aix*)
6268      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6269      if test "$host_cpu" = ia64; then
6270	# AIX 5 now supports IA64 processor
6271	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6272      else
6273	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp'
6274      fi
6275      ;;
6276      darwin*)
6277        # PIC is the default on this platform
6278        # Common symbols not allowed in MH_DYLIB files
6279       case $cc_basename in
6280         xlc*)
6281         _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-qnocommon'
6282         _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6283         ;;
6284       esac
6285       ;;
6286
6287    mingw* | pw32* | os2*)
6288      # This hack is so that the source file can tell whether it is being
6289      # built for inclusion in a dll (and should export symbols for example).
6290      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT'
6291      ;;
6292
6293    hpux9* | hpux10* | hpux11*)
6294      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6295      # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but
6296      # not for PA HP-UX.
6297      case $host_cpu in
6298      hppa*64*|ia64*)
6299	# +Z the default
6300	;;
6301      *)
6302	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='+Z'
6303	;;
6304      esac
6305      # Is there a better lt_prog_compiler_static that works with the bundled CC?
6306      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive'
6307      ;;
6308
6309    irix5* | irix6* | nonstopux*)
6310      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6311      # PIC (with -KPIC) is the default.
6312      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6313      ;;
6314
6315    newsos6)
6316      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6317      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6318      ;;
6319
6320    linux*)
6321      case $cc_basename in
6322      icc* | ecc*)
6323	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6324	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6325	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-static'
6326        ;;
6327      pgcc* | pgf77* | pgf90* | pgf95*)
6328        # Portland Group compilers (*not* the Pentium gcc compiler,
6329	# which looks to be a dead project)
6330	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6331	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-fpic'
6332	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6333        ;;
6334      ccc*)
6335        _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6336        # All Alpha code is PIC.
6337        _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6338        ;;
6339      esac
6340      ;;
6341
6342    osf3* | osf4* | osf5*)
6343      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6344      # All OSF/1 code is PIC.
6345      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-non_shared'
6346      ;;
6347
6348    sco3.2v5*)
6349      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kpic'
6350      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-dn'
6351      ;;
6352
6353    solaris*)
6354      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6355      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6356      case $cc_basename in
6357      f77* | f90* | f95*)
6358	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';;
6359      *)
6360	_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';;
6361      esac
6362      ;;
6363
6364    sunos4*)
6365      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld '
6366      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-PIC'
6367      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6368      ;;
6369
6370    sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*)
6371      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6372      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC'
6373      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6374      ;;
6375
6376    sysv4*MP*)
6377      if test -d /usr/nec ;then
6378	_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic'
6379	_LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6380      fi
6381      ;;
6382
6383    unicos*)
6384      _LT_AC_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,'
6385      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6386      ;;
6387
6388    uts4*)
6389      _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)='-pic'
6390      _LT_AC_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic'
6391      ;;
6392
6393    *)
6394      _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no
6395      ;;
6396    esac
6397  fi
6398])
6399AC_MSG_RESULT([$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)])
6400
6401#
6402# Check to make sure the PIC flag actually works.
6403#
6404if test -n "$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)"; then
6405  AC_LIBTOOL_COMPILER_OPTION([if $compiler PIC flag $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) works],
6406    _LT_AC_TAGVAR(lt_prog_compiler_pic_works, $1),
6407    [$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])], [],
6408    [case $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1) in
6409     "" | " "*) ;;
6410     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)" ;;
6411     esac],
6412    [_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
6413     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no])
6414fi
6415case $host_os in
6416  # For platforms which do not support PIC, -DPIC is meaningless:
6417  *djgpp*)
6418    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)=
6419    ;;
6420  *)
6421    _LT_AC_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_AC_TAGVAR(lt_prog_compiler_pic, $1)ifelse([$1],[],[ -DPIC],[ifelse([$1],[CXX],[ -DPIC],[])])"
6422    ;;
6423esac
6424])
6425m4trace:/usr/share/aclocal/libtool.m4:6053: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries])
6426ifelse([$1],[CXX],[
6427  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
6428  case $host_os in
6429  aix4* | aix5*)
6430    # If we're using GNU nm, then we don't want the "-C" option.
6431    # -C means demangle to AIX nm, but means don't demangle with GNU nm
6432    if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
6433      _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'
6434    else
6435      _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'
6436    fi
6437    ;;
6438  pw32*)
6439    _LT_AC_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds"
6440  ;;
6441  cygwin* | mingw*)
6442    _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'
6443  ;;
6444  *)
6445    _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
6446  ;;
6447  esac
6448],[
6449  runpath_var=
6450  _LT_AC_TAGVAR(allow_undefined_flag, $1)=
6451  _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=no
6452  _LT_AC_TAGVAR(archive_cmds, $1)=
6453  _LT_AC_TAGVAR(archive_expsym_cmds, $1)=
6454  _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)=
6455  _LT_AC_TAGVAR(old_archive_from_expsyms_cmds, $1)=
6456  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
6457  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
6458  _LT_AC_TAGVAR(thread_safe_flag_spec, $1)=
6459  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
6460  _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)=
6461  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
6462  _LT_AC_TAGVAR(hardcode_direct, $1)=no
6463  _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
6464  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
6465  _LT_AC_TAGVAR(link_all_deplibs, $1)=unknown
6466  _LT_AC_TAGVAR(hardcode_automatic, $1)=no
6467  _LT_AC_TAGVAR(module_cmds, $1)=
6468  _LT_AC_TAGVAR(module_expsym_cmds, $1)=
6469  _LT_AC_TAGVAR(always_export_symbols, $1)=no
6470  _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols'
6471  # include_expsyms should be a list of space-separated symbols to be *always*
6472  # included in the symbol list
6473  _LT_AC_TAGVAR(include_expsyms, $1)=
6474  # exclude_expsyms can be an extended regexp of symbols to exclude
6475  # it will be wrapped by ` (' and `)$', so one must not match beginning or
6476  # end of line.  Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc',
6477  # as well as any symbol that contains `d'.
6478  _LT_AC_TAGVAR(exclude_expsyms, $1)="_GLOBAL_OFFSET_TABLE_"
6479  # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out
6480  # platforms (ab)use it in PIC code, but their linkers get confused if
6481  # the symbol is explicitly referenced.  Since portable code cannot
6482  # rely on this symbol name, it's probably fine to never include it in
6483  # preloaded symbol tables.
6484  extract_expsyms_cmds=
6485  # Just being paranoid about ensuring that cc_basename is set.
6486  _LT_CC_BASENAME([$compiler])
6487  case $host_os in
6488  cygwin* | mingw* | pw32*)
6489    # FIXME: the MSVC++ port hasn't been tested in a loooong time
6490    # When not using gcc, we currently assume that we are using
6491    # Microsoft Visual C++.
6492    if test "$GCC" != yes; then
6493      with_gnu_ld=no
6494    fi
6495    ;;
6496  openbsd*)
6497    with_gnu_ld=no
6498    ;;
6499  esac
6500
6501  _LT_AC_TAGVAR(ld_shlibs, $1)=yes
6502  if test "$with_gnu_ld" = yes; then
6503    # If archive_cmds runs LD, not CC, wlarc should be empty
6504    wlarc='${wl}'
6505
6506    # Set some defaults for GNU ld with shared library support. These
6507    # are reset later if shared libraries are not supported. Putting them
6508    # here allows them to be overridden if necessary.
6509    runpath_var=LD_RUN_PATH
6510    _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir'
6511    _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic'
6512    # ancient GNU ld didn't support --whole-archive et. al.
6513    if $LD --help 2>&1 | grep 'no-whole-archive' > /dev/null; then
6514	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive'
6515      else
6516  	_LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
6517    fi
6518    supports_anon_versioning=no
6519    case `$LD -v 2>/dev/null` in
6520      *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11
6521      *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ...
6522      *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ...
6523      *\ 2.11.*) ;; # other 2.11 versions
6524      *) supports_anon_versioning=yes ;;
6525    esac
6526
6527    # See if GNU ld supports shared libraries.
6528    case $host_os in
6529    aix3* | aix4* | aix5*)
6530      # On AIX/PPC, the GNU linker is very broken
6531      if test "$host_cpu" != ia64; then
6532	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6533	cat <<EOF 1>&2
6534
6535*** Warning: the GNU linker, at least up to release 2.9.1, is reported
6536*** to be unable to reliably create shared libraries on AIX.
6537*** Therefore, libtool is disabling shared libraries support.  If you
6538*** really care for shared libraries, you may want to modify your PATH
6539*** so that a non-GNU linker is found, and then restart.
6540
6541EOF
6542      fi
6543      ;;
6544
6545    amigaos*)
6546      _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)'
6547      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6548      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6549
6550      # Samuel A. Falvo II <kc5tja@dolphin.openprojects.net> reports
6551      # that the semantics of dynamic libraries on AmigaOS, at least up
6552      # to version 4, is to share data among multiple programs linked
6553      # with the same dynamic library.  Since this doesn't match the
6554      # behavior of shared libraries on other platforms, we can't use
6555      # them.
6556      _LT_AC_TAGVAR(ld_shlibs, $1)=no
6557      ;;
6558
6559    beos*)
6560      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
6561	_LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
6562	# Joseph Beckenbach <jrb3@best.com> says some releases of gcc
6563	# support --undefined.  This deserves some investigation.  FIXME
6564	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6565      else
6566	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6567      fi
6568      ;;
6569
6570    cygwin* | mingw* | pw32*)
6571      # _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless,
6572      # as there is no search path for DLLs.
6573      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6574      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
6575      _LT_AC_TAGVAR(always_export_symbols, $1)=no
6576      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6577      _LT_AC_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]] /s/.* \([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]] /s/.* //'\'' | sort | uniq > $export_symbols'
6578
6579      if $LD --help 2>&1 | grep 'auto-import' > /dev/null; then
6580        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base ${wl}--out-implib,$lib'
6581	# If the export-symbols file already is a .def file (1st line
6582	# is EXPORTS), use it as is; otherwise, prepend...
6583	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then
6584	  cp $export_symbols $output_objdir/$soname.def;
6585	else
6586	  echo EXPORTS > $output_objdir/$soname.def;
6587	  cat $export_symbols >> $output_objdir/$soname.def;
6588	fi~
6589	$CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base ${wl}--out-implib,$lib'
6590      else
6591	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6592      fi
6593      ;;
6594
6595    linux*)
6596      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
6597	tmp_addflag=
6598	case $cc_basename,$host_cpu in
6599	pgcc*)				# Portland Group C compiler
6600	  _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'
6601	  tmp_addflag=' $pic_flag'
6602	  ;;
6603	pgf77* | pgf90* | pgf95*)	# Portland Group f77 and f90 compilers
6604	  _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'
6605	  tmp_addflag=' $pic_flag -Mnomain' ;;
6606	ecc*,ia64* | icc*,ia64*)		# Intel C compiler on ia64
6607	  tmp_addflag=' -i_dynamic' ;;
6608	efc*,ia64* | ifort*,ia64*)	# Intel Fortran compiler on ia64
6609	  tmp_addflag=' -i_dynamic -nofor_main' ;;
6610	ifc* | ifort*)			# Intel Fortran compiler
6611	  tmp_addflag=' -nofor_main' ;;
6612	esac
6613	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6614
6615	if test $supports_anon_versioning = yes; then
6616	  _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $output_objdir/$libname.ver~
6617  cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~
6618  $echo "local: *; };" >> $output_objdir/$libname.ver~
6619	  $CC -shared'"$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib'
6620	fi
6621      else
6622	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6623      fi
6624      ;;
6625
6626    netbsd*)
6627      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
6628	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib'
6629	wlarc=
6630      else
6631	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6632	_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'
6633      fi
6634      ;;
6635
6636    solaris* | sysv5*)
6637      if $LD -v 2>&1 | grep 'BFD 2\.8' > /dev/null; then
6638	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6639	cat <<EOF 1>&2
6640
6641*** Warning: The releases 2.8.* of the GNU linker cannot reliably
6642*** create shared libraries on Solaris systems.  Therefore, libtool
6643*** is disabling shared libraries support.  We urge you to upgrade GNU
6644*** binutils to release 2.9.1 or newer.  Another option is to modify
6645*** your PATH or compiler configuration so that the native linker is
6646*** used, and then restart.
6647
6648EOF
6649      elif $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
6650	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6651	_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'
6652      else
6653	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6654      fi
6655      ;;
6656
6657    sunos4*)
6658      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags'
6659      wlarc=
6660      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6661      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6662      ;;
6663
6664    *)
6665      if $LD --help 2>&1 | grep ': supported targets:.* elf' > /dev/null; then
6666	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib'
6667	_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'
6668      else
6669	_LT_AC_TAGVAR(ld_shlibs, $1)=no
6670      fi
6671      ;;
6672    esac
6673
6674    if test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no; then
6675      runpath_var=
6676      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
6677      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=
6678      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=
6679    fi
6680  else
6681    # PORTME fill in a description of your system's linker (not GNU ld)
6682    case $host_os in
6683    aix3*)
6684      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
6685      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
6686      _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'
6687      # Note: this linker hardcodes the directories in LIBPATH if there
6688      # are no directories specified by -L.
6689      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6690      if test "$GCC" = yes && test -z "$link_static_flag"; then
6691	# Neither direct hardcoding nor static linking is supported with a
6692	# broken collect2.
6693	_LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
6694      fi
6695      ;;
6696
6697    aix4* | aix5*)
6698      if test "$host_cpu" = ia64; then
6699	# On IA64, the linker does run time linking by default, so we don't
6700	# have to do anything special.
6701	aix_use_runtimelinking=no
6702	exp_sym_flag='-Bexport'
6703	no_entry_flag=""
6704      else
6705	# If we're using GNU nm, then we don't want the "-C" option.
6706	# -C means demangle to AIX nm, but means don't demangle with GNU nm
6707	if $NM -V 2>&1 | grep 'GNU' > /dev/null; then
6708	  _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'
6709	else
6710	  _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'
6711	fi
6712	aix_use_runtimelinking=no
6713
6714	# Test if we are trying to use run time linking or normal
6715	# AIX style linking. If -brtl is somewhere in LDFLAGS, we
6716	# need to do runtime linking.
6717	case $host_os in aix4.[[23]]|aix4.[[23]].*|aix5*)
6718	  for ld_flag in $LDFLAGS; do
6719  	  if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then
6720  	    aix_use_runtimelinking=yes
6721  	    break
6722  	  fi
6723	  done
6724	esac
6725
6726	exp_sym_flag='-bexport'
6727	no_entry_flag='-bnoentry'
6728      fi
6729
6730      # When large executables or shared objects are built, AIX ld can
6731      # have problems creating the table of contents.  If linking a library
6732      # or program results in "error TOC overflow" add -mminimal-toc to
6733      # CXXFLAGS/CFLAGS for g++/gcc.  In the cases where that is not
6734      # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS.
6735
6736      _LT_AC_TAGVAR(archive_cmds, $1)=''
6737      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6738      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=':'
6739      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
6740
6741      if test "$GCC" = yes; then
6742	case $host_os in aix4.[[012]]|aix4.[[012]].*)
6743	# We only want to do this on AIX 4.2 and lower, the check
6744	# below for broken collect2 doesn't work under 4.3+
6745	  collect2name=`${CC} -print-prog-name=collect2`
6746	  if test -f "$collect2name" && \
6747  	   strings "$collect2name" | grep resolve_lib_name >/dev/null
6748	  then
6749  	  # We have reworked collect2
6750  	  _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6751	  else
6752  	  # We have old collect2
6753  	  _LT_AC_TAGVAR(hardcode_direct, $1)=unsupported
6754  	  # It fails to find uninstalled libraries when the uninstalled
6755  	  # path is not listed in the libpath.  Setting hardcode_minus_L
6756  	  # to unsupported forces relinking
6757  	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6758  	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6759  	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=
6760	  fi
6761	esac
6762	shared_flag='-shared'
6763	if test "$aix_use_runtimelinking" = yes; then
6764	  shared_flag="$shared_flag "'${wl}-G'
6765	fi
6766      else
6767	# not using gcc
6768	if test "$host_cpu" = ia64; then
6769  	# VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release
6770  	# chokes on -Wl,-G. The following line is correct:
6771	  shared_flag='-G'
6772	else
6773  	if test "$aix_use_runtimelinking" = yes; then
6774	    shared_flag='${wl}-G'
6775	  else
6776	    shared_flag='${wl}-bM:SRE'
6777  	fi
6778	fi
6779      fi
6780
6781      # It seems that -bexpall does not export symbols beginning with
6782      # underscore (_), so it is better to generate a list of symbols to export.
6783      _LT_AC_TAGVAR(always_export_symbols, $1)=yes
6784      if test "$aix_use_runtimelinking" = yes; then
6785	# Warning - without using the other runtime loading flags (-brtl),
6786	# -berok will link without error, but may produce a broken library.
6787	_LT_AC_TAGVAR(allow_undefined_flag, $1)='-berok'
6788       # Determine the default libpath from the value encoded in an empty executable.
6789       _LT_AC_SYS_LIBPATH_AIX
6790       _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
6791	_LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then echo "${wl}${allow_undefined_flag}"; else :; fi` '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols $shared_flag"
6792       else
6793	if test "$host_cpu" = ia64; then
6794	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib'
6795	  _LT_AC_TAGVAR(allow_undefined_flag, $1)="-z nodefs"
6796	  _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$no_entry_flag \${wl}$exp_sym_flag:\$export_symbols"
6797	else
6798	 # Determine the default libpath from the value encoded in an empty executable.
6799	 _LT_AC_SYS_LIBPATH_AIX
6800	 _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath"
6801	  # Warning - without using the other run time loading flags,
6802	  # -berok will link without error, but may produce a broken library.
6803	  _LT_AC_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok'
6804	  _LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok'
6805	  # -bexpall does not export symbols beginning with underscore (_)
6806	  _LT_AC_TAGVAR(always_export_symbols, $1)=yes
6807	  # Exported symbols can be pulled into shared objects from archives
6808	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=' '
6809	  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
6810	  # This is similar to how AIX traditionally builds its shared libraries.
6811	  _LT_AC_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs $compiler_flags ${wl}-bE:$export_symbols ${wl}-bnoentry${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname'
6812	fi
6813      fi
6814      ;;
6815
6816    amigaos*)
6817      _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)'
6818      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6819      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6820      # see comment about different semantics on the GNU ld section
6821      _LT_AC_TAGVAR(ld_shlibs, $1)=no
6822      ;;
6823
6824    bsdi[[45]]*)
6825      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic
6826      ;;
6827
6828    cygwin* | mingw* | pw32*)
6829      # When not using gcc, we currently assume that we are using
6830      # Microsoft Visual C++.
6831      # hardcode_libdir_flag_spec is actually meaningless, as there is
6832      # no search path for DLLs.
6833      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=' '
6834      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
6835      # Tell ltmain to make .lib files, not .a files.
6836      libext=lib
6837      # Tell ltmain to make .dll files, not .so files.
6838      shrext_cmds=".dll"
6839      # FIXME: Setting linknames here is a bad hack.
6840      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `echo "$deplibs" | $SED -e '\''s/ -lc$//'\''` -link -dll~linknames='
6841      # The linker will automatically build a .lib file if we build a DLL.
6842      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='true'
6843      # FIXME: Should let the user specify the lib program.
6844      _LT_AC_TAGVAR(old_archive_cmds, $1)='lib /OUT:$oldlib$oldobjs$old_deplibs'
6845      _LT_AC_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`'
6846      _LT_AC_TAGVAR(enable_shared_with_static_runtimes, $1)=yes
6847      ;;
6848
6849    darwin* | rhapsody*)
6850      case $host_os in
6851        rhapsody* | darwin1.[[012]])
6852         _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}suppress'
6853         ;;
6854       *) # Darwin 1.3 on
6855         if test -z ${MACOSX_DEPLOYMENT_TARGET} ; then
6856           _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
6857         else
6858           case ${MACOSX_DEPLOYMENT_TARGET} in
6859             10.[[012]])
6860               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-flat_namespace ${wl}-undefined ${wl}suppress'
6861               ;;
6862             10.*)
6863               _LT_AC_TAGVAR(allow_undefined_flag, $1)='${wl}-undefined ${wl}dynamic_lookup'
6864               ;;
6865           esac
6866         fi
6867         ;;
6868      esac
6869      _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
6870      _LT_AC_TAGVAR(hardcode_direct, $1)=no
6871      _LT_AC_TAGVAR(hardcode_automatic, $1)=yes
6872      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=unsupported
6873      _LT_AC_TAGVAR(whole_archive_flag_spec, $1)=''
6874      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
6875    if test "$GCC" = yes ; then
6876    	output_verbose_link_cmd='echo'
6877        _LT_AC_TAGVAR(archive_cmds, $1)='$CC -dynamiclib $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags -install_name $rpath/$soname $verstring'
6878      _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
6879      # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
6880      _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}'
6881      _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}'
6882    else
6883      case $cc_basename in
6884        xlc*)
6885         output_verbose_link_cmd='echo'
6886         _LT_AC_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $allow_undefined_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-install_name ${wl}`echo $rpath/$soname` $verstring'
6887         _LT_AC_TAGVAR(module_cmds, $1)='$CC $allow_undefined_flag -o $lib -bundle $libobjs $deplibs$compiler_flags'
6888          # Don't fix this by using the ld -exported_symbols_list flag, it doesn't exist in older darwin lds
6889         _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 $verstring~nmedit -s $output_objdir/${libname}-symbols.expsym ${lib}'
6890          _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}'
6891          ;;
6892       *)
6893         _LT_AC_TAGVAR(ld_shlibs, $1)=no
6894          ;;
6895      esac
6896    fi
6897      ;;
6898
6899    dgux*)
6900      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
6901      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6902      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6903      ;;
6904
6905    freebsd1*)
6906      _LT_AC_TAGVAR(ld_shlibs, $1)=no
6907      ;;
6908
6909    # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor
6910    # support.  Future versions do this automatically, but an explicit c++rt0.o
6911    # does not break anything, and helps significantly (at the cost of a little
6912    # extra space).
6913    freebsd2.2*)
6914      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o'
6915      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
6916      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6917      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6918      ;;
6919
6920    # Unfortunately, older versions of FreeBSD 2 do not have this feature.
6921    freebsd2*)
6922      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
6923      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6924      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6925      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6926      ;;
6927
6928    # FreeBSD 3 and greater uses gcc -shared to do shared libraries.
6929    freebsd* | kfreebsd*-gnu | dragonfly*)
6930      _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags'
6931      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
6932      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6933      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6934      ;;
6935
6936    hpux9*)
6937      if test "$GCC" = yes; then
6938	_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'
6939      else
6940	_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'
6941      fi
6942      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
6943      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
6944      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6945
6946      # hardcode_minus_L: Not really in the search PATH,
6947      # but as the default location of the library.
6948      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6949      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
6950      ;;
6951
6952    hpux10* | hpux11*)
6953      if test "$GCC" = yes -a "$with_gnu_ld" = no; then
6954	case $host_cpu in
6955	hppa*64*|ia64*)
6956	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
6957	  ;;
6958	*)
6959	  _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'
6960	  ;;
6961	esac
6962      else
6963	case $host_cpu in
6964	hppa*64*|ia64*)
6965	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname -o $lib $libobjs $deplibs $linker_flags'
6966	  ;;
6967	*)
6968	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'
6969	  ;;
6970	esac
6971      fi
6972      if test "$with_gnu_ld" = no; then
6973	case $host_cpu in
6974	hppa*64*)
6975	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
6976	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir'
6977	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
6978	  _LT_AC_TAGVAR(hardcode_direct, $1)=no
6979	  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6980	  ;;
6981	ia64*)
6982	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
6983	  _LT_AC_TAGVAR(hardcode_direct, $1)=no
6984	  _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
6985
6986	  # hardcode_minus_L: Not really in the search PATH,
6987	  # but as the default location of the library.
6988	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6989	  ;;
6990	*)
6991	  _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir'
6992	  _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
6993	  _LT_AC_TAGVAR(hardcode_direct, $1)=yes
6994	  _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
6995
6996	  # hardcode_minus_L: Not really in the search PATH,
6997	  # but as the default location of the library.
6998	  _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
6999	  ;;
7000	esac
7001      fi
7002      ;;
7003
7004    irix5* | irix6* | nonstopux*)
7005      if test "$GCC" = yes; then
7006	_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'
7007      else
7008	_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'
7009	_LT_AC_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir'
7010      fi
7011      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
7012      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
7013      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
7014      ;;
7015
7016    netbsd*)
7017      if echo __ELF__ | $CC -E - | grep __ELF__ >/dev/null; then
7018	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'  # a.out
7019      else
7020	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags'      # ELF
7021      fi
7022      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
7023      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
7024      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7025      ;;
7026
7027    newsos6)
7028      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7029      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
7030      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
7031      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
7032      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7033      ;;
7034
7035    openbsd*)
7036      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
7037      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7038      if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then
7039	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
7040	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols'
7041	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
7042	_LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E'
7043      else
7044       case $host_os in
7045	 openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*)
7046	   _LT_AC_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags'
7047	   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
7048	   ;;
7049	 *)
7050	   _LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags'
7051	   _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir'
7052	   ;;
7053       esac
7054      fi
7055      ;;
7056
7057    os2*)
7058      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
7059      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
7060      _LT_AC_TAGVAR(allow_undefined_flag, $1)=unsupported
7061      _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'
7062      _LT_AC_TAGVAR(old_archive_From_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def'
7063      ;;
7064
7065    osf3*)
7066      if test "$GCC" = yes; then
7067	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
7068	_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'
7069      else
7070	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
7071	_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'
7072      fi
7073      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
7074      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
7075      ;;
7076
7077    osf4* | osf5*)	# as osf3* with the addition of -msym flag
7078      if test "$GCC" = yes; then
7079	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*'
7080	_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'
7081	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir'
7082      else
7083	_LT_AC_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*'
7084	_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'
7085	_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~
7086	$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'
7087
7088	# Both c and cxx compiler support -rpath directly
7089	_LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir'
7090      fi
7091      _LT_AC_TAGVAR(hardcode_libdir_separator, $1)=:
7092      ;;
7093
7094    sco3.2v5*)
7095      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7096      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7097      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport'
7098      runpath_var=LD_RUN_PATH
7099      hardcode_runpath_var=yes
7100      ;;
7101
7102    solaris*)
7103      _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
7104      if test "$GCC" = yes; then
7105	wlarc='${wl}'
7106	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
7107	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
7108	  $CC -shared ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$rm $lib.exp'
7109      else
7110	wlarc=''
7111	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
7112	_LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
7113  	$LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
7114      fi
7115      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir'
7116      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7117      case $host_os in
7118      solaris2.[[0-5]] | solaris2.[[0-5]].*) ;;
7119      *)
7120 	# The compiler driver will combine linker options so we
7121 	# cannot just pass the convience library names through
7122 	# without $wl, iff we do not link with $LD.
7123 	# Luckily, gcc supports the same syntax we need for Sun Studio.
7124 	# Supported since Solaris 2.6 (maybe 2.5.1?)
7125 	case $wlarc in
7126 	'')
7127 	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;;
7128 	*)
7129 	  _LT_AC_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $echo \"$new_convenience\"` ${wl}-z ${wl}defaultextract' ;;
7130 	esac ;;
7131      esac
7132      _LT_AC_TAGVAR(link_all_deplibs, $1)=yes
7133      ;;
7134
7135    sunos4*)
7136      if test "x$host_vendor" = xsequent; then
7137	# Use $CC to link under sequent, because it throws in some extra .o
7138	# files that make .init and .fini sections work.
7139	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags'
7140      else
7141	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags'
7142      fi
7143      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
7144      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
7145      _LT_AC_TAGVAR(hardcode_minus_L, $1)=yes
7146      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7147      ;;
7148
7149    sysv4)
7150      case $host_vendor in
7151	sni)
7152	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7153	  _LT_AC_TAGVAR(hardcode_direct, $1)=yes # is this really true???
7154	;;
7155	siemens)
7156	  ## LD is ld it makes a PLAMLIB
7157	  ## CC just makes a GrossModule.
7158	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
7159	  _LT_AC_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs'
7160	  _LT_AC_TAGVAR(hardcode_direct, $1)=no
7161        ;;
7162	motorola)
7163	  _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7164	  _LT_AC_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie
7165	;;
7166      esac
7167      runpath_var='LD_RUN_PATH'
7168      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7169      ;;
7170
7171    sysv4.3*)
7172      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7173      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7174      _LT_AC_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport'
7175      ;;
7176
7177    sysv4*MP*)
7178      if test -d /usr/nec; then
7179	_LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7180	_LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7181	runpath_var=LD_RUN_PATH
7182	hardcode_runpath_var=yes
7183	_LT_AC_TAGVAR(ld_shlibs, $1)=yes
7184      fi
7185      ;;
7186
7187    sysv4.2uw2*)
7188      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags'
7189      _LT_AC_TAGVAR(hardcode_direct, $1)=yes
7190      _LT_AC_TAGVAR(hardcode_minus_L, $1)=no
7191      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7192      hardcode_runpath_var=yes
7193      runpath_var=LD_RUN_PATH
7194      ;;
7195
7196   sysv5OpenUNIX8* | sysv5UnixWare7* |  sysv5uw[[78]]* | unixware7*)
7197      _LT_AC_TAGVAR(no_undefined_flag, $1)='${wl}-z ${wl}text'
7198      if test "$GCC" = yes; then
7199	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
7200      else
7201	_LT_AC_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags'
7202      fi
7203      runpath_var='LD_RUN_PATH'
7204      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7205      ;;
7206
7207    sysv5*)
7208      _LT_AC_TAGVAR(no_undefined_flag, $1)=' -z text'
7209      # $CC -shared without GNU ld will not create a library from C++
7210      # object files and a static libstdc++, better avoid it by now
7211      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags'
7212      _LT_AC_TAGVAR(archive_expsym_cmds, $1)='$echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~
7213  		$LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$rm $lib.exp'
7214      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)=
7215      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7216      runpath_var='LD_RUN_PATH'
7217      ;;
7218
7219    uts4*)
7220      _LT_AC_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags'
7221      _LT_AC_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir'
7222      _LT_AC_TAGVAR(hardcode_shlibpath_var, $1)=no
7223      ;;
7224
7225    *)
7226      _LT_AC_TAGVAR(ld_shlibs, $1)=no
7227      ;;
7228    esac
7229  fi
7230])
7231AC_MSG_RESULT([$_LT_AC_TAGVAR(ld_shlibs, $1)])
7232test "$_LT_AC_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no
7233
7234variables_saved_for_relink="PATH $shlibpath_var $runpath_var"
7235if test "$GCC" = yes; then
7236  variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH"
7237fi
7238
7239#
7240# Do we need to explicitly link libc?
7241#
7242case "x$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)" in
7243x|xyes)
7244  # Assume -lc should be added
7245  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
7246
7247  if test "$enable_shared" = yes && test "$GCC" = yes; then
7248    case $_LT_AC_TAGVAR(archive_cmds, $1) in
7249    *'~'*)
7250      # FIXME: we may have to deal with multi-command sequences.
7251      ;;
7252    '$CC '*)
7253      # Test whether the compiler implicitly links with -lc since on some
7254      # systems, -lgcc has to come before -lc. If gcc already passes -lc
7255      # to ld, don't add -lc before -lgcc.
7256      AC_MSG_CHECKING([whether -lc should be explicitly linked in])
7257      $rm conftest*
7258      printf "$lt_simple_compile_test_code" > conftest.$ac_ext
7259
7260      if AC_TRY_EVAL(ac_compile) 2>conftest.err; then
7261        soname=conftest
7262        lib=conftest
7263        libobjs=conftest.$ac_objext
7264        deplibs=
7265        wl=$_LT_AC_TAGVAR(lt_prog_compiler_wl, $1)
7266        compiler_flags=-v
7267        linker_flags=-v
7268        verstring=
7269        output_objdir=.
7270        libname=conftest
7271        lt_save_allow_undefined_flag=$_LT_AC_TAGVAR(allow_undefined_flag, $1)
7272        _LT_AC_TAGVAR(allow_undefined_flag, $1)=
7273        if AC_TRY_EVAL(_LT_AC_TAGVAR(archive_cmds, $1) 2\>\&1 \| grep \" -lc \" \>/dev/null 2\>\&1)
7274        then
7275	  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=no
7276        else
7277	  _LT_AC_TAGVAR(archive_cmds_need_lc, $1)=yes
7278        fi
7279        _LT_AC_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag
7280      else
7281        cat conftest.err 1>&5
7282      fi
7283      $rm conftest*
7284      AC_MSG_RESULT([$_LT_AC_TAGVAR(archive_cmds_need_lc, $1)])
7285      ;;
7286    esac
7287  fi
7288  ;;
7289esac
7290])
7291m4trace:/usr/share/aclocal/libtool.m4:6093: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C], [
7292# /* ltdll.c starts here */
7293# #define WIN32_LEAN_AND_MEAN
7294# #include <windows.h>
7295# #undef WIN32_LEAN_AND_MEAN
7296# #include <stdio.h>
7297#
7298# #ifndef __CYGWIN__
7299# #  ifdef __CYGWIN32__
7300# #    define __CYGWIN__ __CYGWIN32__
7301# #  endif
7302# #endif
7303#
7304# #ifdef __cplusplus
7305# extern "C" {
7306# #endif
7307# BOOL APIENTRY DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved);
7308# #ifdef __cplusplus
7309# }
7310# #endif
7311#
7312# #ifdef __CYGWIN__
7313# #include <cygwin/cygwin_dll.h>
7314# DECLARE_CYGWIN_DLL( DllMain );
7315# #endif
7316# HINSTANCE __hDllInstance_base;
7317#
7318# BOOL APIENTRY
7319# DllMain (HINSTANCE hInst, DWORD reason, LPVOID reserved)
7320# {
7321#   __hDllInstance_base = hInst;
7322#   return TRUE;
7323# }
7324# /* ltdll.c ends here */
7325])
7326m4trace:/usr/share/aclocal/libtool.m4:6098: -1- AC_DEFUN([_LT_AC_TAGVAR], [ifelse([$2], [], [$1], [$1_$2])])
7327m4trace:/usr/share/aclocal/libtool.m4:6102: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_PROG_LIBTOOL])
7328m4trace:/usr/share/aclocal/libtool.m4:6103: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
7329m4trace:/usr/share/aclocal/libtool.m4:6104: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
7330m4trace:/usr/share/aclocal/libtool.m4:6105: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
7331m4trace:/usr/share/aclocal/libtool.m4:6106: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
7332m4trace:/usr/share/aclocal/libtool.m4:6107: -1- AC_DEFUN([AM_PROG_LD], [AC_PROG_LD])
7333m4trace:/usr/share/aclocal/libtool.m4:6108: -1- AC_DEFUN([AM_PROG_NM], [AC_PROG_NM])
7334m4trace:/usr/share/aclocal/libtool.m4:6117: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj, no)
7335  test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
7336  AC_SUBST(GCJFLAGS)
7337])
7338m4trace:/usr/share/aclocal/libtool.m4:6121: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_CHECK_TOOL(RC, windres, no)
7339])
7340m4trace:/usr/share/aclocal/libtool.m4:6184: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output])
7341AC_CACHE_VAL(lt_cv_path_SED,
7342[# Loop through the user's path and test for sed and gsed.
7343# Then use that list of sed's as ones to test for truncation.
7344as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7345for as_dir in $PATH
7346do
7347  IFS=$as_save_IFS
7348  test -z "$as_dir" && as_dir=.
7349  for lt_ac_prog in sed gsed; do
7350    for ac_exec_ext in '' $ac_executable_extensions; do
7351      if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then
7352        lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext"
7353      fi
7354    done
7355  done
7356done
7357lt_ac_max=0
7358lt_ac_count=0
7359# Add /usr/xpg4/bin/sed as it is typically found on Solaris
7360# along with /bin/sed that truncates output.
7361for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do
7362  test ! -f $lt_ac_sed && continue
7363  cat /dev/null > conftest.in
7364  lt_ac_count=0
7365  echo $ECHO_N "0123456789$ECHO_C" >conftest.in
7366  # Check for GNU sed and select it if it is found.
7367  if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then
7368    lt_cv_path_SED=$lt_ac_sed
7369    break
7370  fi
7371  while true; do
7372    cat conftest.in conftest.in >conftest.tmp
7373    mv conftest.tmp conftest.in
7374    cp conftest.in conftest.nl
7375    echo >>conftest.nl
7376    $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break
7377    cmp -s conftest.out conftest.nl || break
7378    # 10000 chars as input seems more than enough
7379    test $lt_ac_count -gt 10 && break
7380    lt_ac_count=`expr $lt_ac_count + 1`
7381    if test $lt_ac_count -gt $lt_ac_max; then
7382      lt_ac_max=$lt_ac_count
7383      lt_cv_path_SED=$lt_ac_sed
7384    fi
7385  done
7386done
7387])
7388SED=$lt_cv_path_SED
7389AC_MSG_RESULT([$SED])
7390])
7391m4trace:/usr/share/aclocal/longdouble.m4:28: -1- AC_DEFUN([gt_TYPE_LONGDOUBLE], [
7392  AC_CACHE_CHECK([for long double], gt_cv_c_long_double,
7393    [if test "$GCC" = yes; then
7394       gt_cv_c_long_double=yes
7395     else
7396       AC_TRY_COMPILE([
7397         /* The Stardent Vistra knows sizeof(long double), but does not support it.  */
7398         long double foo = 0.0;
7399         /* On Ultrix 4.3 cc, long double is 4 and double is 8.  */
7400         int array [2*(sizeof(long double) >= sizeof(double)) - 1];
7401         ], ,
7402         gt_cv_c_long_double=yes, gt_cv_c_long_double=no)
7403     fi])
7404  if test $gt_cv_c_long_double = yes; then
7405    AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have the 'long double' type.])
7406  fi
7407])
7408m4trace:/usr/share/aclocal/longlong.m4:23: -1- AC_DEFUN([gl_AC_TYPE_LONG_LONG], [
7409  AC_CACHE_CHECK([for long long], ac_cv_type_long_long,
7410  [AC_TRY_LINK([long long ll = 1LL; int i = 63;],
7411    [long long llmax = (long long) -1;
7412     return ll << i | ll >> i | llmax / ll | llmax % ll;],
7413    ac_cv_type_long_long=yes,
7414    ac_cv_type_long_long=no)])
7415  if test $ac_cv_type_long_long = yes; then
7416    AC_DEFINE(HAVE_LONG_LONG, 1,
7417      [Define if you have the 'long long' type.])
7418  fi
7419])
7420m4trace:/usr/share/aclocal/nls.m4:31: -1- AC_DEFUN([AM_NLS], [
7421  AC_MSG_CHECKING([whether NLS is requested])
7422  dnl Default is enabled NLS
7423  AC_ARG_ENABLE(nls,
7424    [  --disable-nls           do not use Native Language Support],
7425    USE_NLS=$enableval, USE_NLS=yes)
7426  AC_MSG_RESULT($USE_NLS)
7427  AC_SUBST(USE_NLS)
7428])
7429m4trace:/usr/share/aclocal/nls.m4:51: -1- AC_DEFUN([AM_MKINSTALLDIRS], [
7430  dnl Tell automake >= 1.10 to complain if mkinstalldirs is missing.
7431  m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([mkinstalldirs])])
7432  dnl If the AC_CONFIG_AUX_DIR macro for autoconf is used we possibly
7433  dnl find the mkinstalldirs script in another subdir but $(top_srcdir).
7434  dnl Try to locate it.
7435  MKINSTALLDIRS=
7436  if test -n "$ac_aux_dir"; then
7437    case "$ac_aux_dir" in
7438      /*) MKINSTALLDIRS="$ac_aux_dir/mkinstalldirs" ;;
7439      *) MKINSTALLDIRS="\$(top_builddir)/$ac_aux_dir/mkinstalldirs" ;;
7440    esac
7441  fi
7442  if test -z "$MKINSTALLDIRS"; then
7443    MKINSTALLDIRS="\$(top_srcdir)/mkinstalldirs"
7444  fi
7445  AC_SUBST(MKINSTALLDIRS)
7446])
7447m4trace:/usr/share/aclocal/po.m4:208: -1- AC_DEFUN([AM_PO_SUBDIRS], [
7448  AC_REQUIRE([AC_PROG_MAKE_SET])dnl
7449  AC_REQUIRE([AC_PROG_INSTALL])dnl
7450  AC_REQUIRE([AM_MKINSTALLDIRS])dnl
7451  AC_REQUIRE([AM_NLS])dnl
7452
7453  dnl Perform the following tests also if --disable-nls has been given,
7454  dnl because they are needed for "make dist" to work.
7455
7456  dnl Search for GNU msgfmt in the PATH.
7457  dnl The first test excludes Solaris msgfmt and early GNU msgfmt versions.
7458  dnl The second test excludes FreeBSD msgfmt.
7459  AM_PATH_PROG_WITH_TEST(MSGFMT, msgfmt,
7460    [$ac_dir/$ac_word --statistics /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
7461     (if $ac_dir/$ac_word --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
7462    :)
7463  AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
7464
7465  dnl Search for GNU xgettext 0.12 or newer in the PATH.
7466  dnl The first test excludes Solaris xgettext and early GNU xgettext versions.
7467  dnl The second test excludes FreeBSD xgettext.
7468  AM_PATH_PROG_WITH_TEST(XGETTEXT, xgettext,
7469    [$ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1 &&
7470     (if $ac_dir/$ac_word --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi)],
7471    :)
7472  dnl Remove leftover from FreeBSD xgettext call.
7473  rm -f messages.po
7474
7475  dnl Search for GNU msgmerge 0.11 or newer in the PATH.
7476  AM_PATH_PROG_WITH_TEST(MSGMERGE, msgmerge,
7477    [$ac_dir/$ac_word --update -q /dev/null /dev/null >&]AS_MESSAGE_LOG_FD[ 2>&1], :)
7478
7479  dnl This could go away some day; the PATH_PROG_WITH_TEST already does it.
7480  dnl Test whether we really found GNU msgfmt.
7481  if test "$GMSGFMT" != ":"; then
7482    dnl If it is no GNU msgfmt we define it as : so that the
7483    dnl Makefiles still can work.
7484    if $GMSGFMT --statistics /dev/null >/dev/null 2>&1 &&
7485       (if $GMSGFMT --statistics /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
7486      : ;
7487    else
7488      GMSGFMT=`echo "$GMSGFMT" | sed -e 's,^.*/,,'`
7489      AC_MSG_RESULT(
7490        [found $GMSGFMT program is not GNU msgfmt; ignore it])
7491      GMSGFMT=":"
7492    fi
7493  fi
7494
7495  dnl This could go away some day; the PATH_PROG_WITH_TEST already does it.
7496  dnl Test whether we really found GNU xgettext.
7497  if test "$XGETTEXT" != ":"; then
7498    dnl If it is no GNU xgettext we define it as : so that the
7499    dnl Makefiles still can work.
7500    if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null >/dev/null 2>&1 &&
7501       (if $XGETTEXT --omit-header --copyright-holder= --msgid-bugs-address= /dev/null 2>&1 >/dev/null | grep usage >/dev/null; then exit 1; else exit 0; fi); then
7502      : ;
7503    else
7504      AC_MSG_RESULT(
7505        [found xgettext program is not GNU xgettext; ignore it])
7506      XGETTEXT=":"
7507    fi
7508    dnl Remove leftover from FreeBSD xgettext call.
7509    rm -f messages.po
7510  fi
7511
7512  AC_OUTPUT_COMMANDS([
7513    for ac_file in $CONFIG_FILES; do
7514      # Support "outfile[:infile[:infile...]]"
7515      case "$ac_file" in
7516        *:*) ac_file=`echo "$ac_file"|sed 's%:.*%%'` ;;
7517      esac
7518      # PO directories have a Makefile.in generated from Makefile.in.in.
7519      case "$ac_file" in */Makefile.in)
7520        # Adjust a relative srcdir.
7521        ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
7522        ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
7523        ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
7524        # In autoconf-2.13 it is called $ac_given_srcdir.
7525        # In autoconf-2.50 it is called $srcdir.
7526        test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
7527        case "$ac_given_srcdir" in
7528          .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
7529          /*) top_srcdir="$ac_given_srcdir" ;;
7530          *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
7531        esac
7532        # Treat a directory as a PO directory if and only if it has a
7533        # POTFILES.in file. This allows packages to have multiple PO
7534        # directories under different names or in different locations.
7535        if test -f "$ac_given_srcdir/$ac_dir/POTFILES.in"; then
7536          rm -f "$ac_dir/POTFILES"
7537          test -n "$as_me" && echo "$as_me: creating $ac_dir/POTFILES" || echo "creating $ac_dir/POTFILES"
7538          cat "$ac_given_srcdir/$ac_dir/POTFILES.in" | sed -e "/^#/d" -e "/^[ 	]*\$/d" -e "s,.*,     $top_srcdir/& \\\\," | sed -e "\$s/\(.*\) \\\\/\1/" > "$ac_dir/POTFILES"
7539          POMAKEFILEDEPS="POTFILES.in"
7540          # ALL_LINGUAS, POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES depend
7541          # on $ac_dir but don't depend on user-specified configuration
7542          # parameters.
7543          if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
7544            # The LINGUAS file contains the set of available languages.
7545            if test -n "$OBSOLETE_ALL_LINGUAS"; then
7546              test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
7547            fi
7548            ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
7549            # Hide the ALL_LINGUAS assigment from automake.
7550            eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
7551            POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
7552          else
7553            # The set of available languages was given in configure.in.
7554            eval 'ALL_LINGUAS''=$OBSOLETE_ALL_LINGUAS'
7555          fi
7556          # Compute POFILES
7557          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
7558          # Compute UPDATEPOFILES
7559          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
7560          # Compute DUMMYPOFILES
7561          # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
7562          # Compute GMOFILES
7563          # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
7564          case "$ac_given_srcdir" in
7565            .) srcdirpre= ;;
7566            *) srcdirpre='$(srcdir)/' ;;
7567          esac
7568          POFILES=
7569          UPDATEPOFILES=
7570          DUMMYPOFILES=
7571          GMOFILES=
7572          for lang in $ALL_LINGUAS; do
7573            POFILES="$POFILES $srcdirpre$lang.po"
7574            UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
7575            DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
7576            GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
7577          done
7578          # CATALOGS depends on both $ac_dir and the user's LINGUAS
7579          # environment variable.
7580          INST_LINGUAS=
7581          if test -n "$ALL_LINGUAS"; then
7582            for presentlang in $ALL_LINGUAS; do
7583              useit=no
7584              if test "%UNSET%" != "$LINGUAS"; then
7585                desiredlanguages="$LINGUAS"
7586              else
7587                desiredlanguages="$ALL_LINGUAS"
7588              fi
7589              for desiredlang in $desiredlanguages; do
7590                # Use the presentlang catalog if desiredlang is
7591                #   a. equal to presentlang, or
7592                #   b. a variant of presentlang (because in this case,
7593                #      presentlang can be used as a fallback for messages
7594                #      which are not translated in the desiredlang catalog).
7595                case "$desiredlang" in
7596                  "$presentlang"*) useit=yes;;
7597                esac
7598              done
7599              if test $useit = yes; then
7600                INST_LINGUAS="$INST_LINGUAS $presentlang"
7601              fi
7602            done
7603          fi
7604          CATALOGS=
7605          if test -n "$INST_LINGUAS"; then
7606            for lang in $INST_LINGUAS; do
7607              CATALOGS="$CATALOGS $lang.gmo"
7608            done
7609          fi
7610          test -n "$as_me" && echo "$as_me: creating $ac_dir/Makefile" || echo "creating $ac_dir/Makefile"
7611          sed -e "/^POTFILES =/r $ac_dir/POTFILES" -e "/^# Makevars/r $ac_given_srcdir/$ac_dir/Makevars" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@POMAKEFILEDEPS@|$POMAKEFILEDEPS|g" "$ac_dir/Makefile.in" > "$ac_dir/Makefile"
7612          for f in "$ac_given_srcdir/$ac_dir"/Rules-*; do
7613            if test -f "$f"; then
7614              case "$f" in
7615                *.orig | *.bak | *~) ;;
7616                *) cat "$f" >> "$ac_dir/Makefile" ;;
7617              esac
7618            fi
7619          done
7620        fi
7621        ;;
7622      esac
7623    done],
7624   [# Capture the value of obsolete ALL_LINGUAS because we need it to compute
7625    # POFILES, UPDATEPOFILES, DUMMYPOFILES, GMOFILES, CATALOGS. But hide it
7626    # from automake.
7627    eval 'OBSOLETE_ALL_LINGUAS''="$ALL_LINGUAS"'
7628    # Capture the value of LINGUAS because we need it to compute CATALOGS.
7629    LINGUAS="${LINGUAS-%UNSET%}"
7630   ])
7631])
7632m4trace:/usr/share/aclocal/po.m4:429: -1- AC_DEFUN([AM_POSTPROCESS_PO_MAKEFILE], [
7633  # When this code is run, in config.status, two variables have already been
7634  # set:
7635  # - OBSOLETE_ALL_LINGUAS is the value of LINGUAS set in configure.in,
7636  # - LINGUAS is the value of the environment variable LINGUAS at configure
7637  #   time.
7638
7639changequote(,)dnl
7640  # Adjust a relative srcdir.
7641  ac_dir=`echo "$ac_file"|sed 's%/[^/][^/]*$%%'`
7642  ac_dir_suffix="/`echo "$ac_dir"|sed 's%^\./%%'`"
7643  ac_dots=`echo "$ac_dir_suffix"|sed 's%/[^/]*%../%g'`
7644  # In autoconf-2.13 it is called $ac_given_srcdir.
7645  # In autoconf-2.50 it is called $srcdir.
7646  test -n "$ac_given_srcdir" || ac_given_srcdir="$srcdir"
7647  case "$ac_given_srcdir" in
7648    .)  top_srcdir=`echo $ac_dots|sed 's%/$%%'` ;;
7649    /*) top_srcdir="$ac_given_srcdir" ;;
7650    *)  top_srcdir="$ac_dots$ac_given_srcdir" ;;
7651  esac
7652
7653  # Find a way to echo strings without interpreting backslash.
7654  if test "X`(echo '\t') 2>/dev/null`" = 'X\t'; then
7655    gt_echo='echo'
7656  else
7657    if test "X`(printf '%s\n' '\t') 2>/dev/null`" = 'X\t'; then
7658      gt_echo='printf %s\n'
7659    else
7660      echo_func () {
7661        cat <<EOT
7662$*
7663EOT
7664      }
7665      gt_echo='echo_func'
7666    fi
7667  fi
7668
7669  # A sed script that extracts the value of VARIABLE from a Makefile.
7670  sed_x_variable='
7671# Test if the hold space is empty.
7672x
7673s/P/P/
7674x
7675ta
7676# Yes it was empty. Look if we have the expected variable definition.
7677/^[	 ]*VARIABLE[	 ]*=/{
7678  # Seen the first line of the variable definition.
7679  s/^[	 ]*VARIABLE[	 ]*=//
7680  ba
7681}
7682bd
7683:a
7684# Here we are processing a line from the variable definition.
7685# Remove comment, more precisely replace it with a space.
7686s/#.*$/ /
7687# See if the line ends in a backslash.
7688tb
7689:b
7690s/\\$//
7691# Print the line, without the trailing backslash.
7692p
7693tc
7694# There was no trailing backslash. The end of the variable definition is
7695# reached. Clear the hold space.
7696s/^.*$//
7697x
7698bd
7699:c
7700# A trailing backslash means that the variable definition continues in the
7701# next line. Put a nonempty string into the hold space to indicate this.
7702s/^.*$/P/
7703x
7704:d
7705'
7706changequote([,])dnl
7707
7708  # Set POTFILES to the value of the Makefile variable POTFILES.
7709  sed_x_POTFILES="`$gt_echo \"$sed_x_variable\" | sed -e '/^ *#/d' -e 's/VARIABLE/POTFILES/g'`"
7710  POTFILES=`sed -n -e "$sed_x_POTFILES" < "$ac_file"`
7711  # Compute POTFILES_DEPS as
7712  #   $(foreach file, $(POTFILES), $(top_srcdir)/$(file))
7713  POTFILES_DEPS=
7714  for file in $POTFILES; do
7715    POTFILES_DEPS="$POTFILES_DEPS "'$(top_srcdir)/'"$file"
7716  done
7717  POMAKEFILEDEPS=""
7718
7719  if test -n "$OBSOLETE_ALL_LINGUAS"; then
7720    test -n "$as_me" && echo "$as_me: setting ALL_LINGUAS in configure.in is obsolete" || echo "setting ALL_LINGUAS in configure.in is obsolete"
7721  fi
7722  if test -f "$ac_given_srcdir/$ac_dir/LINGUAS"; then
7723    # The LINGUAS file contains the set of available languages.
7724    ALL_LINGUAS_=`sed -e "/^#/d" -e "s/#.*//" "$ac_given_srcdir/$ac_dir/LINGUAS"`
7725    POMAKEFILEDEPS="$POMAKEFILEDEPS LINGUAS"
7726  else
7727    # Set ALL_LINGUAS to the value of the Makefile variable LINGUAS.
7728    sed_x_LINGUAS="`$gt_echo \"$sed_x_variable\" | sed -e '/^ *#/d' -e 's/VARIABLE/LINGUAS/g'`"
7729    ALL_LINGUAS_=`sed -n -e "$sed_x_LINGUAS" < "$ac_file"`
7730  fi
7731  # Hide the ALL_LINGUAS assigment from automake.
7732  eval 'ALL_LINGUAS''=$ALL_LINGUAS_'
7733  # Compute POFILES
7734  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).po)
7735  # Compute UPDATEPOFILES
7736  # as      $(foreach lang, $(ALL_LINGUAS), $(lang).po-update)
7737  # Compute DUMMYPOFILES
7738  # as      $(foreach lang, $(ALL_LINGUAS), $(lang).nop)
7739  # Compute GMOFILES
7740  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).gmo)
7741  # Compute PROPERTIESFILES
7742  # as      $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).properties)
7743  # Compute CLASSFILES
7744  # as      $(foreach lang, $(ALL_LINGUAS), $(top_srcdir)/$(DOMAIN)_$(lang).class)
7745  # Compute QMFILES
7746  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(lang).qm)
7747  # Compute MSGFILES
7748  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang)).msg)
7749  # Compute RESOURCESDLLFILES
7750  # as      $(foreach lang, $(ALL_LINGUAS), $(srcdir)/$(frob $(lang))/$(DOMAIN).resources.dll)
7751  case "$ac_given_srcdir" in
7752    .) srcdirpre= ;;
7753    *) srcdirpre='$(srcdir)/' ;;
7754  esac
7755  POFILES=
7756  UPDATEPOFILES=
7757  DUMMYPOFILES=
7758  GMOFILES=
7759  PROPERTIESFILES=
7760  CLASSFILES=
7761  QMFILES=
7762  MSGFILES=
7763  RESOURCESDLLFILES=
7764  for lang in $ALL_LINGUAS; do
7765    POFILES="$POFILES $srcdirpre$lang.po"
7766    UPDATEPOFILES="$UPDATEPOFILES $lang.po-update"
7767    DUMMYPOFILES="$DUMMYPOFILES $lang.nop"
7768    GMOFILES="$GMOFILES $srcdirpre$lang.gmo"
7769    PROPERTIESFILES="$PROPERTIESFILES \$(top_srcdir)/\$(DOMAIN)_$lang.properties"
7770    CLASSFILES="$CLASSFILES \$(top_srcdir)/\$(DOMAIN)_$lang.class"
7771    QMFILES="$QMFILES $srcdirpre$lang.qm"
7772    frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
7773    MSGFILES="$MSGFILES $srcdirpre$frobbedlang.msg"
7774    frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
7775    RESOURCESDLLFILES="$RESOURCESDLLFILES $srcdirpre$frobbedlang/\$(DOMAIN).resources.dll"
7776  done
7777  # CATALOGS depends on both $ac_dir and the user's LINGUAS
7778  # environment variable.
7779  INST_LINGUAS=
7780  if test -n "$ALL_LINGUAS"; then
7781    for presentlang in $ALL_LINGUAS; do
7782      useit=no
7783      if test "%UNSET%" != "$LINGUAS"; then
7784        desiredlanguages="$LINGUAS"
7785      else
7786        desiredlanguages="$ALL_LINGUAS"
7787      fi
7788      for desiredlang in $desiredlanguages; do
7789        # Use the presentlang catalog if desiredlang is
7790        #   a. equal to presentlang, or
7791        #   b. a variant of presentlang (because in this case,
7792        #      presentlang can be used as a fallback for messages
7793        #      which are not translated in the desiredlang catalog).
7794        case "$desiredlang" in
7795          "$presentlang"*) useit=yes;;
7796        esac
7797      done
7798      if test $useit = yes; then
7799        INST_LINGUAS="$INST_LINGUAS $presentlang"
7800      fi
7801    done
7802  fi
7803  CATALOGS=
7804  JAVACATALOGS=
7805  QTCATALOGS=
7806  TCLCATALOGS=
7807  CSHARPCATALOGS=
7808  if test -n "$INST_LINGUAS"; then
7809    for lang in $INST_LINGUAS; do
7810      CATALOGS="$CATALOGS $lang.gmo"
7811      JAVACATALOGS="$JAVACATALOGS \$(DOMAIN)_$lang.properties"
7812      QTCATALOGS="$QTCATALOGS $lang.qm"
7813      frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
7814      TCLCATALOGS="$TCLCATALOGS $frobbedlang.msg"
7815      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
7816      CSHARPCATALOGS="$CSHARPCATALOGS $frobbedlang/\$(DOMAIN).resources.dll"
7817    done
7818  fi
7819
7820  sed -e "s|@POTFILES_DEPS@|$POTFILES_DEPS|g" -e "s|@POFILES@|$POFILES|g" -e "s|@UPDATEPOFILES@|$UPDATEPOFILES|g" -e "s|@DUMMYPOFILES@|$DUMMYPOFILES|g" -e "s|@GMOFILES@|$GMOFILES|g" -e "s|@PROPERTIESFILES@|$PROPERTIESFILES|g" -e "s|@CLASSFILES@|$CLASSFILES|g" -e "s|@QMFILES@|$QMFILES|g" -e "s|@MSGFILES@|$MSGFILES|g" -e "s|@RESOURCESDLLFILES@|$RESOURCESDLLFILES|g" -e "s|@CATALOGS@|$CATALOGS|g" -e "s|@JAVACATALOGS@|$JAVACATALOGS|g" -e "s|@QTCATALOGS@|$QTCATALOGS|g" -e "s|@TCLCATALOGS@|$TCLCATALOGS|g" -e "s|@CSHARPCATALOGS@|$CSHARPCATALOGS|g" -e 's,^#distdir:,distdir:,' < "$ac_file" > "$ac_file.tmp"
7821  if grep -l '@TCLCATALOGS@' "$ac_file" > /dev/null; then
7822    # Add dependencies that cannot be formulated as a simple suffix rule.
7823    for lang in $ALL_LINGUAS; do
7824      frobbedlang=`echo $lang | sed -e 's/\..*$//' -e 'y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/'`
7825      cat >> "$ac_file.tmp" <<EOF
7826$frobbedlang.msg: $lang.po
7827	@echo "\$(MSGFMT) -c --tcl -d \$(srcdir) -l $lang $srcdirpre$lang.po"; \
7828	\$(MSGFMT) -c --tcl -d "\$(srcdir)" -l $lang $srcdirpre$lang.po || { rm -f "\$(srcdir)/$frobbedlang.msg"; exit 1; }
7829EOF
7830    done
7831  fi
7832  if grep -l '@CSHARPCATALOGS@' "$ac_file" > /dev/null; then
7833    # Add dependencies that cannot be formulated as a simple suffix rule.
7834    for lang in $ALL_LINGUAS; do
7835      frobbedlang=`echo $lang | sed -e 's/_/-/g' -e 's/^sr-CS/sr-SP/' -e 's/@latin$/-Latn/' -e 's/@cyrillic$/-Cyrl/' -e 's/^sr-SP$/sr-SP-Latn/' -e 's/^uz-UZ$/uz-UZ-Latn/'`
7836      cat >> "$ac_file.tmp" <<EOF
7837$frobbedlang/\$(DOMAIN).resources.dll: $lang.po
7838	@echo "\$(MSGFMT) -c --csharp -d \$(srcdir) -l $lang $srcdirpre$lang.po -r \$(DOMAIN)"; \
7839	\$(MSGFMT) -c --csharp -d "\$(srcdir)" -l $lang $srcdirpre$lang.po -r "\$(DOMAIN)" || { rm -f "\$(srcdir)/$frobbedlang.msg"; exit 1; }
7840EOF
7841    done
7842  fi
7843  if test -n "$POMAKEFILEDEPS"; then
7844    cat >> "$ac_file.tmp" <<EOF
7845Makefile: $POMAKEFILEDEPS
7846EOF
7847  fi
7848  mv "$ac_file.tmp" "$ac_file"
7849])
7850m4trace:/usr/share/aclocal/printf-posix.m4:44: -1- AC_DEFUN([gt_PRINTF_POSIX], [
7851  AC_REQUIRE([AC_PROG_CC])
7852  AC_CACHE_CHECK([whether printf() supports POSIX/XSI format strings],
7853    gt_cv_func_printf_posix,
7854    [
7855      AC_TRY_RUN([
7856#include <stdio.h>
7857#include <string.h>
7858/* The string "%2$d %1$d", with dollar characters protected from the shell's
7859   dollar expansion (possibly an autoconf bug).  */
7860static char format[] = { '%', '2', '$', 'd', ' ', '%', '1', '$', 'd', '\0' };
7861static char buf[100];
7862int main ()
7863{
7864  sprintf (buf, format, 33, 55);
7865  return (strcmp (buf, "55 33") != 0);
7866}], gt_cv_func_printf_posix=yes, gt_cv_func_printf_posix=no,
7867      [
7868        AC_EGREP_CPP(notposix, [
7869#if defined __NetBSD__ || defined _MSC_VER || defined __MINGW32__ || defined __CYGWIN__
7870  notposix
7871#endif
7872        ], gt_cv_func_printf_posix="guessing no",
7873           gt_cv_func_printf_posix="guessing yes")
7874      ])
7875    ])
7876  case $gt_cv_func_printf_posix in
7877    *yes)
7878      AC_DEFINE(HAVE_POSIX_PRINTF, 1,
7879        [Define if your printf() function supports format strings with positions.])
7880      ;;
7881  esac
7882])
7883m4trace:/usr/share/aclocal/progtest.m4:92: -1- AC_DEFUN([AM_PATH_PROG_WITH_TEST], [
7884# Prepare PATH_SEPARATOR.
7885# The user is always right.
7886if test "${PATH_SEPARATOR+set}" != set; then
7887  echo "#! /bin/sh" >conf$$.sh
7888  echo  "exit 0"   >>conf$$.sh
7889  chmod +x conf$$.sh
7890  if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
7891    PATH_SEPARATOR=';'
7892  else
7893    PATH_SEPARATOR=:
7894  fi
7895  rm -f conf$$.sh
7896fi
7897
7898# Find out how to test for executable files. Don't use a zero-byte file,
7899# as systems may use methods other than mode bits to determine executability.
7900cat >conf$$.file <<_ASEOF
7901#! /bin/sh
7902exit 0
7903_ASEOF
7904chmod +x conf$$.file
7905if test -x conf$$.file >/dev/null 2>&1; then
7906  ac_executable_p="test -x"
7907else
7908  ac_executable_p="test -f"
7909fi
7910rm -f conf$$.file
7911
7912# Extract the first word of "$2", so it can be a program name with args.
7913set dummy $2; ac_word=[$]2
7914AC_MSG_CHECKING([for $ac_word])
7915AC_CACHE_VAL(ac_cv_path_$1,
7916[case "[$]$1" in
7917  [[\\/]]* | ?:[[\\/]]*)
7918    ac_cv_path_$1="[$]$1" # Let the user override the test with a path.
7919    ;;
7920  *)
7921    ac_save_IFS="$IFS"; IFS=$PATH_SEPARATOR
7922    for ac_dir in ifelse([$5], , $PATH, [$5]); do
7923      IFS="$ac_save_IFS"
7924      test -z "$ac_dir" && ac_dir=.
7925      for ac_exec_ext in '' $ac_executable_extensions; do
7926        if $ac_executable_p "$ac_dir/$ac_word$ac_exec_ext"; then
7927          echo "$as_me: trying $ac_dir/$ac_word..." >&AS_MESSAGE_LOG_FD
7928          if [$3]; then
7929            ac_cv_path_$1="$ac_dir/$ac_word$ac_exec_ext"
7930            break 2
7931          fi
7932        fi
7933      done
7934    done
7935    IFS="$ac_save_IFS"
7936dnl If no 4th arg is given, leave the cache variable unset,
7937dnl so AC_PATH_PROGS will keep looking.
7938ifelse([$4], , , [  test -z "[$]ac_cv_path_$1" && ac_cv_path_$1="$4"
7939])dnl
7940    ;;
7941esac])dnl
7942$1="$ac_cv_path_$1"
7943if test ifelse([$4], , [-n "[$]$1"], ["[$]$1" != "$4"]); then
7944  AC_MSG_RESULT([$]$1)
7945else
7946  AC_MSG_RESULT(no)
7947fi
7948AC_SUBST($1)dnl
7949])
7950m4trace:/usr/share/aclocal/signed.m4:17: -1- AC_DEFUN([bh_C_SIGNED], [
7951  AC_CACHE_CHECK([for signed], bh_cv_c_signed,
7952   [AC_TRY_COMPILE(, [signed char x;], bh_cv_c_signed=yes, bh_cv_c_signed=no)])
7953  if test $bh_cv_c_signed = no; then
7954    AC_DEFINE(signed, ,
7955              [Define to empty if the C compiler doesn't support this keyword.])
7956  fi
7957])
7958m4trace:/usr/share/aclocal/size_max.m4:59: -1- AC_DEFUN([gl_SIZE_MAX], [
7959  AC_CHECK_HEADERS(stdint.h)
7960  dnl First test whether the system already has SIZE_MAX.
7961  AC_MSG_CHECKING([for SIZE_MAX])
7962  result=
7963  AC_EGREP_CPP([Found it], [
7964#include <limits.h>
7965#if HAVE_STDINT_H
7966#include <stdint.h>
7967#endif
7968#ifdef SIZE_MAX
7969Found it
7970#endif
7971], result=yes)
7972  if test -z "$result"; then
7973    dnl Define it ourselves. Here we assume that the type 'size_t' is not wider
7974    dnl than the type 'unsigned long'.
7975    dnl The _AC_COMPUTE_INT macro works up to LONG_MAX, since it uses 'expr',
7976    dnl which is guaranteed to work from LONG_MIN to LONG_MAX.
7977    _AC_COMPUTE_INT([~(size_t)0 / 10], res_hi,
7978      [#include <stddef.h>], result=?)
7979    _AC_COMPUTE_INT([~(size_t)0 % 10], res_lo,
7980      [#include <stddef.h>], result=?)
7981    _AC_COMPUTE_INT([sizeof (size_t) <= sizeof (unsigned int)], fits_in_uint,
7982      [#include <stddef.h>], result=?)
7983    if test "$fits_in_uint" = 1; then
7984      dnl Even though SIZE_MAX fits in an unsigned int, it must be of type
7985      dnl 'unsigned long' if the type 'size_t' is the same as 'unsigned long'.
7986      AC_TRY_COMPILE([#include <stddef.h>
7987        extern size_t foo;
7988        extern unsigned long foo;
7989        ], [], fits_in_uint=0)
7990    fi
7991    if test -z "$result"; then
7992      if test "$fits_in_uint" = 1; then
7993        result="$res_hi$res_lo"U
7994      else
7995        result="$res_hi$res_lo"UL
7996      fi
7997    else
7998      dnl Shouldn't happen, but who knows...
7999      result='~(size_t)0'
8000    fi
8001  fi
8002  AC_MSG_RESULT([$result])
8003  if test "$result" != yes; then
8004    AC_DEFINE_UNQUOTED([SIZE_MAX], [$result],
8005      [Define as the maximum value of type 'size_t', if the system doesn't define it.])
8006  fi
8007])
8008m4trace:/usr/share/aclocal/stdint_h.m4:26: -1- AC_DEFUN([gl_AC_HEADER_STDINT_H], [
8009  AC_CACHE_CHECK([for stdint.h], gl_cv_header_stdint_h,
8010  [AC_TRY_COMPILE(
8011    [#include <sys/types.h>
8012#include <stdint.h>],
8013    [uintmax_t i = (uintmax_t) -1;],
8014    gl_cv_header_stdint_h=yes,
8015    gl_cv_header_stdint_h=no)])
8016  if test $gl_cv_header_stdint_h = yes; then
8017    AC_DEFINE_UNQUOTED(HAVE_STDINT_H_WITH_UINTMAX, 1,
8018      [Define if <stdint.h> exists, doesn't clash with <sys/types.h>,
8019       and declares uintmax_t. ])
8020  fi
8021])
8022m4trace:/usr/share/aclocal/uintmax_t.m4:30: -1- AC_DEFUN([gl_AC_TYPE_UINTMAX_T], [
8023  AC_REQUIRE([gl_AC_HEADER_INTTYPES_H])
8024  AC_REQUIRE([gl_AC_HEADER_STDINT_H])
8025  if test $gl_cv_header_inttypes_h = no && test $gl_cv_header_stdint_h = no; then
8026    AC_REQUIRE([gl_AC_TYPE_UNSIGNED_LONG_LONG])
8027    test $ac_cv_type_unsigned_long_long = yes \
8028      && ac_type='unsigned long long' \
8029      || ac_type='unsigned long'
8030    AC_DEFINE_UNQUOTED(uintmax_t, $ac_type,
8031      [Define to unsigned long or unsigned long long
8032       if <stdint.h> and <inttypes.h> don't define.])
8033  else
8034    AC_DEFINE(HAVE_UINTMAX_T, 1,
8035      [Define if you have the 'uintmax_t' type in <stdint.h> or <inttypes.h>.])
8036  fi
8037])
8038m4trace:/usr/share/aclocal/ulonglong.m4:23: -1- AC_DEFUN([gl_AC_TYPE_UNSIGNED_LONG_LONG], [
8039  AC_CACHE_CHECK([for unsigned long long], ac_cv_type_unsigned_long_long,
8040  [AC_TRY_LINK([unsigned long long ull = 1ULL; int i = 63;],
8041    [unsigned long long ullmax = (unsigned long long) -1;
8042     return ull << i | ull >> i | ullmax / ull | ullmax % ull;],
8043    ac_cv_type_unsigned_long_long=yes,
8044    ac_cv_type_unsigned_long_long=no)])
8045  if test $ac_cv_type_unsigned_long_long = yes; then
8046    AC_DEFINE(HAVE_UNSIGNED_LONG_LONG, 1,
8047      [Define if you have the 'unsigned long long' type.])
8048  fi
8049])
8050m4trace:/usr/share/aclocal/wchar_t.m4:20: -1- AC_DEFUN([gt_TYPE_WCHAR_T], [
8051  AC_CACHE_CHECK([for wchar_t], gt_cv_c_wchar_t,
8052    [AC_TRY_COMPILE([#include <stddef.h>
8053       wchar_t foo = (wchar_t)'\0';], ,
8054       gt_cv_c_wchar_t=yes, gt_cv_c_wchar_t=no)])
8055  if test $gt_cv_c_wchar_t = yes; then
8056    AC_DEFINE(HAVE_WCHAR_T, 1, [Define if you have the 'wchar_t' type.])
8057  fi
8058])
8059m4trace:/usr/share/aclocal/wint_t.m4:20: -1- AC_DEFUN([gt_TYPE_WINT_T], [
8060  AC_CACHE_CHECK([for wint_t], gt_cv_c_wint_t,
8061    [AC_TRY_COMPILE([#include <wchar.h>
8062       wint_t foo = (wchar_t)'\0';], ,
8063       gt_cv_c_wint_t=yes, gt_cv_c_wint_t=no)])
8064  if test $gt_cv_c_wint_t = yes; then
8065    AC_DEFINE(HAVE_WINT_T, 1, [Define if you have the 'wint_t' type.])
8066  fi
8067])
8068m4trace:/usr/share/aclocal/xsize.m4:13: -1- AC_DEFUN([gl_XSIZE], [
8069  dnl Prerequisites of lib/xsize.h.
8070  AC_REQUIRE([gl_SIZE_MAX])
8071  AC_REQUIRE([AC_C_INLINE])
8072  AC_CHECK_HEADERS(stdint.h)
8073])
8074m4trace:/usr/share/aclocal-1.9/amversion.m4:13: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version="1.9"])
8075m4trace:/usr/share/aclocal-1.9/amversion.m4:20: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.9.6])])
8076m4trace:/usr/share/aclocal-1.9/auxdir.m4:52: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
8077AC_PREREQ([2.50])dnl
8078# expand $ac_aux_dir to an absolute path
8079am_aux_dir=`cd $ac_aux_dir && pwd`
8080])
8081m4trace:/usr/share/aclocal-1.9/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
8082 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
8083	[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
8084AC_SUBST([$1_TRUE])
8085AC_SUBST([$1_FALSE])
8086if $2; then
8087  $1_TRUE=
8088  $1_FALSE='#'
8089else
8090  $1_TRUE='#'
8091  $1_FALSE=
8092fi
8093AC_CONFIG_COMMANDS_PRE(
8094[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
8095  AC_MSG_ERROR([[conditional "$1" was never defined.
8096Usually this means the macro was only invoked conditionally.]])
8097fi])])
8098m4trace:/usr/share/aclocal-1.9/depend.m4:131: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
8099AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
8100AC_REQUIRE([AM_MAKE_INCLUDE])dnl
8101AC_REQUIRE([AM_DEP_TRACK])dnl
8102
8103ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
8104       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
8105       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
8106       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
8107                   [depcc="$$1"   am_compiler_list=])
8108
8109AC_CACHE_CHECK([dependency style of $depcc],
8110               [am_cv_$1_dependencies_compiler_type],
8111[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
8112  # We make a subdir and do the tests there.  Otherwise we can end up
8113  # making bogus files that we don't know about and never remove.  For
8114  # instance it was reported that on HP-UX the gcc test will end up
8115  # making a dummy file named `D' -- because `-MD' means `put the output
8116  # in D'.
8117  mkdir conftest.dir
8118  # Copy depcomp to subdir because otherwise we won't find it if we're
8119  # using a relative directory.
8120  cp "$am_depcomp" conftest.dir
8121  cd conftest.dir
8122  # We will build objects and dependencies in a subdirectory because
8123  # it helps to detect inapplicable dependency modes.  For instance
8124  # both Tru64's cc and ICC support -MD to output dependencies as a
8125  # side effect of compilation, but ICC will put the dependencies in
8126  # the current directory while Tru64 will put them in the object
8127  # directory.
8128  mkdir sub
8129
8130  am_cv_$1_dependencies_compiler_type=none
8131  if test "$am_compiler_list" = ""; then
8132     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
8133  fi
8134  for depmode in $am_compiler_list; do
8135    # Setup a source with many dependencies, because some compilers
8136    # like to wrap large dependency lists on column 80 (with \), and
8137    # we should not choose a depcomp mode which is confused by this.
8138    #
8139    # We need to recreate these files for each test, as the compiler may
8140    # overwrite some of them when testing with obscure command lines.
8141    # This happens at least with the AIX C compiler.
8142    : > sub/conftest.c
8143    for i in 1 2 3 4 5 6; do
8144      echo '#include "conftst'$i'.h"' >> sub/conftest.c
8145      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
8146      # Solaris 8's {/usr,}/bin/sh.
8147      touch sub/conftst$i.h
8148    done
8149    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
8150
8151    case $depmode in
8152    nosideeffect)
8153      # after this tag, mechanisms are not by side-effect, so they'll
8154      # only be used when explicitly requested
8155      if test "x$enable_dependency_tracking" = xyes; then
8156	continue
8157      else
8158	break
8159      fi
8160      ;;
8161    none) break ;;
8162    esac
8163    # We check with `-c' and `-o' for the sake of the "dashmstdout"
8164    # mode.  It turns out that the SunPro C++ compiler does not properly
8165    # handle `-M -o', and we need to detect this.
8166    if depmode=$depmode \
8167       source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \
8168       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
8169       $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \
8170         >/dev/null 2>conftest.err &&
8171       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
8172       grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 &&
8173       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
8174      # icc doesn't choke on unknown options, it will just issue warnings
8175      # or remarks (even with -Werror).  So we grep stderr for any message
8176      # that says an option was ignored or not supported.
8177      # When given -MP, icc 7.0 and 7.1 complain thusly:
8178      #   icc: Command line warning: ignoring option '-M'; no argument required
8179      # The diagnosis changed in icc 8.0:
8180      #   icc: Command line remark: option '-MP' not supported
8181      if (grep 'ignoring option' conftest.err ||
8182          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
8183        am_cv_$1_dependencies_compiler_type=$depmode
8184        break
8185      fi
8186    fi
8187  done
8188
8189  cd ..
8190  rm -rf conftest.dir
8191else
8192  am_cv_$1_dependencies_compiler_type=none
8193fi
8194])
8195AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
8196AM_CONDITIONAL([am__fastdep$1], [
8197  test "x$enable_dependency_tracking" != xno \
8198  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
8199])
8200m4trace:/usr/share/aclocal-1.9/depend.m4:141: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
8201AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
8202])
8203m4trace:/usr/share/aclocal-1.9/depend.m4:156: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
8204[  --disable-dependency-tracking  speeds up one-time build
8205  --enable-dependency-tracking   do not reject slow dependency extractors])
8206if test "x$enable_dependency_tracking" != xno; then
8207  am_depcomp="$ac_aux_dir/depcomp"
8208  AMDEPBACKSLASH='\'
8209fi
8210AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
8211AC_SUBST([AMDEPBACKSLASH])
8212])
8213m4trace:/usr/share/aclocal-1.9/depout.m4:53: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [for mf in $CONFIG_FILES; do
8214  # Strip MF so we end up with the name of the file.
8215  mf=`echo "$mf" | sed -e 's/:.*$//'`
8216  # Check whether this is an Automake generated Makefile or not.
8217  # We used to match only the files named `Makefile.in', but
8218  # some people rename them; so instead we look at the file content.
8219  # Grep'ing the first line is not enough: some people post-process
8220  # each Makefile.in and add a new line on top of each file to say so.
8221  # So let's grep whole file.
8222  if grep '^#.*generated by automake' $mf > /dev/null 2>&1; then
8223    dirpart=`AS_DIRNAME("$mf")`
8224  else
8225    continue
8226  fi
8227  # Extract the definition of DEPDIR, am__include, and am__quote
8228  # from the Makefile without running `make'.
8229  DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
8230  test -z "$DEPDIR" && continue
8231  am__include=`sed -n 's/^am__include = //p' < "$mf"`
8232  test -z "am__include" && continue
8233  am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
8234  # When using ansi2knr, U may be empty or an underscore; expand it
8235  U=`sed -n 's/^U = //p' < "$mf"`
8236  # Find all dependency output files, they are included files with
8237  # $(DEPDIR) in their names.  We invoke sed twice because it is the
8238  # simplest approach to changing $(DEPDIR) to its actual value in the
8239  # expansion.
8240  for file in `sed -n "
8241    s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
8242       sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
8243    # Make sure the directory exists.
8244    test -f "$dirpart/$file" && continue
8245    fdir=`AS_DIRNAME(["$file"])`
8246    AS_MKDIR_P([$dirpart/$fdir])
8247    # echo "creating $dirpart/$file"
8248    echo '# dummy' > "$dirpart/$file"
8249  done
8250done
8251])
8252m4trace:/usr/share/aclocal-1.9/depout.m4:67: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
8253     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
8254     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
8255])
8256m4trace:/usr/share/aclocal-1.9/header.m4:12: -1- AU_DEFUN([AM_CONFIG_HEADER], [AC_CONFIG_HEADERS($@)])
8257m4trace:/usr/share/aclocal-1.9/header.m4:12: -1- AC_DEFUN([AM_CONFIG_HEADER], [AC_DIAGNOSE([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete.
8258You should run autoupdate.])dnl
8259AC_CONFIG_HEADERS($@)])
8260m4trace:/usr/share/aclocal-1.9/init.m4:92: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.58])dnl
8261dnl Autoconf wants to disallow AM_ names.  We explicitly allow
8262dnl the ones we care about.
8263m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
8264AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
8265AC_REQUIRE([AC_PROG_INSTALL])dnl
8266# test to see if srcdir already configured
8267if test "`cd $srcdir && pwd`" != "`pwd`" &&
8268   test -f $srcdir/config.status; then
8269  AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
8270fi
8271
8272# test whether we have cygpath
8273if test -z "$CYGPATH_W"; then
8274  if (cygpath --version) >/dev/null 2>/dev/null; then
8275    CYGPATH_W='cygpath -w'
8276  else
8277    CYGPATH_W=echo
8278  fi
8279fi
8280AC_SUBST([CYGPATH_W])
8281
8282# Define the identity of the package.
8283dnl Distinguish between old-style and new-style calls.
8284m4_ifval([$2],
8285[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
8286 AC_SUBST([PACKAGE], [$1])dnl
8287 AC_SUBST([VERSION], [$2])],
8288[_AM_SET_OPTIONS([$1])dnl
8289 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
8290 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
8291
8292_AM_IF_OPTION([no-define],,
8293[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
8294 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
8295
8296# Some tools Automake needs.
8297AC_REQUIRE([AM_SANITY_CHECK])dnl
8298AC_REQUIRE([AC_ARG_PROGRAM])dnl
8299AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
8300AM_MISSING_PROG(AUTOCONF, autoconf)
8301AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
8302AM_MISSING_PROG(AUTOHEADER, autoheader)
8303AM_MISSING_PROG(MAKEINFO, makeinfo)
8304AM_PROG_INSTALL_SH
8305AM_PROG_INSTALL_STRIP
8306AC_REQUIRE([AM_PROG_MKDIR_P])dnl
8307# We need awk for the "check" target.  The system "awk" is bad on
8308# some platforms.
8309AC_REQUIRE([AC_PROG_AWK])dnl
8310AC_REQUIRE([AC_PROG_MAKE_SET])dnl
8311AC_REQUIRE([AM_SET_LEADING_DOT])dnl
8312_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
8313              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
8314	      		     [_AM_PROG_TAR([v7])])])
8315_AM_IF_OPTION([no-dependencies],,
8316[AC_PROVIDE_IFELSE([AC_PROG_CC],
8317                  [_AM_DEPENDENCIES(CC)],
8318                  [define([AC_PROG_CC],
8319                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
8320AC_PROVIDE_IFELSE([AC_PROG_CXX],
8321                  [_AM_DEPENDENCIES(CXX)],
8322                  [define([AC_PROG_CXX],
8323                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
8324])
8325])
8326m4trace:/usr/share/aclocal-1.9/init.m4:113: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
8327_am_stamp_count=1
8328for _am_header in $config_headers :; do
8329  case $_am_header in
8330    $1 | $1:* )
8331      break ;;
8332    * )
8333      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
8334  esac
8335done
8336echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count])
8337m4trace:/usr/share/aclocal-1.9/install-sh.m4:14: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
8338install_sh=${install_sh-"$am_aux_dir/install-sh"}
8339AC_SUBST(install_sh)])
8340m4trace:/usr/share/aclocal-1.9/lead-dot.m4:21: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
8341mkdir .tst 2>/dev/null
8342if test -d .tst; then
8343  am__leading_dot=.
8344else
8345  am__leading_dot=_
8346fi
8347rmdir .tst 2>/dev/null
8348AC_SUBST([am__leading_dot])])
8349m4trace:/usr/share/aclocal-1.9/maintainer.m4:26: -1- AC_DEFUN([AM_MAINTAINER_MODE], [AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
8350  dnl maintainer-mode is disabled by default
8351  AC_ARG_ENABLE(maintainer-mode,
8352[  --enable-maintainer-mode  enable make rules and dependencies not useful
8353			  (and sometimes confusing) to the casual installer],
8354      USE_MAINTAINER_MODE=$enableval,
8355      USE_MAINTAINER_MODE=no)
8356  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
8357  AM_CONDITIONAL(MAINTAINER_MODE, [test $USE_MAINTAINER_MODE = yes])
8358  MAINT=$MAINTAINER_MODE_TRUE
8359  AC_SUBST(MAINT)dnl
8360
8361])
8362m4trace:/usr/share/aclocal-1.9/maintainer.m4:28: -1- AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
8363m4trace:/usr/share/aclocal-1.9/maintainer.m4:28: -1- AC_DEFUN([jm_MAINTAINER_MODE], [AC_DIAGNOSE([obsolete], [The macro `jm_MAINTAINER_MODE' is obsolete.
8364You should run autoupdate.])dnl
8365AM_MAINTAINER_MODE])
8366m4trace:/usr/share/aclocal-1.9/make.m4:51: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
8367cat > confinc << 'END'
8368am__doit:
8369	@echo done
8370.PHONY: am__doit
8371END
8372# If we don't find an include directive, just comment out the code.
8373AC_MSG_CHECKING([for style of include used by $am_make])
8374am__include="#"
8375am__quote=
8376_am_result=none
8377# First try GNU make style include.
8378echo "include confinc" > confmf
8379# We grep out `Entering directory' and `Leaving directory'
8380# messages which can occur if `w' ends up in MAKEFLAGS.
8381# In particular we don't look at `^make:' because GNU make might
8382# be invoked under some other name (usually "gmake"), in which
8383# case it prints its new name instead of `make'.
8384if test "`$am_make -s -f confmf 2> /dev/null | grep -v 'ing directory'`" = "done"; then
8385   am__include=include
8386   am__quote=
8387   _am_result=GNU
8388fi
8389# Now try BSD make style include.
8390if test "$am__include" = "#"; then
8391   echo '.include "confinc"' > confmf
8392   if test "`$am_make -s -f confmf 2> /dev/null`" = "done"; then
8393      am__include=.include
8394      am__quote="\""
8395      _am_result=BSD
8396   fi
8397fi
8398AC_SUBST([am__include])
8399AC_SUBST([am__quote])
8400AC_MSG_RESULT([$_am_result])
8401rm -f confinc confmf
8402])
8403m4trace:/usr/share/aclocal-1.9/missing.m4:17: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
8404$1=${$1-"${am_missing_run}$2"}
8405AC_SUBST($1)])
8406m4trace:/usr/share/aclocal-1.9/missing.m4:34: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
8407test x"${MISSING+set}" = xset || MISSING="\${SHELL} $am_aux_dir/missing"
8408# Use eval to expand $SHELL
8409if eval "$MISSING --run true"; then
8410  am_missing_run="$MISSING --run "
8411else
8412  am_missing_run=
8413  AC_MSG_WARN([`missing' script is too old or missing])
8414fi
8415])
8416m4trace:/usr/share/aclocal-1.9/mkdirp.m4:63: -1- AC_DEFUN([AM_PROG_MKDIR_P], [if mkdir -p --version . >/dev/null 2>&1 && test ! -d ./--version; then
8417  # We used to keeping the `.' as first argument, in order to
8418  # allow $(mkdir_p) to be used without argument.  As in
8419  #   $(mkdir_p) $(somedir)
8420  # where $(somedir) is conditionally defined.  However this is wrong
8421  # for two reasons:
8422  #  1. if the package is installed by a user who cannot write `.'
8423  #     make install will fail,
8424  #  2. the above comment should most certainly read
8425  #     $(mkdir_p) $(DESTDIR)$(somedir)
8426  #     so it does not work when $(somedir) is undefined and
8427  #     $(DESTDIR) is not.
8428  #  To support the latter case, we have to write
8429  #     test -z "$(somedir)" || $(mkdir_p) $(DESTDIR)$(somedir),
8430  #  so the `.' trick is pointless.
8431  mkdir_p='mkdir -p --'
8432else
8433  # On NextStep and OpenStep, the `mkdir' command does not
8434  # recognize any option.  It will interpret all options as
8435  # directories to create, and then abort because `.' already
8436  # exists.
8437  for d in ./-p ./--version;
8438  do
8439    test -d $d && rmdir $d
8440  done
8441  # $(mkinstalldirs) is defined by Automake if mkinstalldirs exists.
8442  if test -f "$ac_aux_dir/mkinstalldirs"; then
8443    mkdir_p='$(mkinstalldirs)'
8444  else
8445    mkdir_p='$(install_sh) -d'
8446  fi
8447fi
8448AC_SUBST([mkdir_p])])
8449m4trace:/usr/share/aclocal-1.9/options.m4:14: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
8450m4trace:/usr/share/aclocal-1.9/options.m4:20: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
8451m4trace:/usr/share/aclocal-1.9/options.m4:26: -1- AC_DEFUN([_AM_SET_OPTIONS], [AC_FOREACH([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
8452m4trace:/usr/share/aclocal-1.9/options.m4:32: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
8453m4trace:/usr/share/aclocal-1.9/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
8454   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
8455   ac_status=$?
8456   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
8457   (exit $ac_status); }])
8458m4trace:/usr/share/aclocal-1.9/sanity.m4:51: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
8459# Just in case
8460sleep 1
8461echo timestamp > conftest.file
8462# Do `set' in a subshell so we don't clobber the current shell's
8463# arguments.  Must try -L first in case configure is actually a
8464# symlink; some systems play weird games with the mod time of symlinks
8465# (eg FreeBSD returns the mod time of the symlink's containing
8466# directory).
8467if (
8468   set X `ls -Lt $srcdir/configure conftest.file 2> /dev/null`
8469   if test "$[*]" = "X"; then
8470      # -L didn't work.
8471      set X `ls -t $srcdir/configure conftest.file`
8472   fi
8473   rm -f conftest.file
8474   if test "$[*]" != "X $srcdir/configure conftest.file" \
8475      && test "$[*]" != "X conftest.file $srcdir/configure"; then
8476
8477      # If neither matched, then we have a broken ls.  This can happen
8478      # if, for instance, CONFIG_SHELL is bash and it inherits a
8479      # broken ls alias from the environment.  This has actually
8480      # happened.  Such a system could not be considered "sane".
8481      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
8482alias in your environment])
8483   fi
8484
8485   test "$[2]" = conftest.file
8486   )
8487then
8488   # Ok.
8489   :
8490else
8491   AC_MSG_ERROR([newly created file is older than distributed files!
8492Check your system clock])
8493fi
8494AC_MSG_RESULT(yes)])
8495m4trace:/usr/share/aclocal-1.9/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
8496# Installed binaries are usually stripped using `strip' when the user
8497# run `make install-strip'.  However `strip' might not be the right
8498# tool to use in cross-compilation environments, therefore Automake
8499# will honor the `STRIP' environment variable to overrule this program.
8500dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
8501if test "$cross_compiling" != no; then
8502  AC_CHECK_TOOL([STRIP], [strip], :)
8503fi
8504INSTALL_STRIP_PROGRAM="\${SHELL} \$(install_sh) -c -s"
8505AC_SUBST([INSTALL_STRIP_PROGRAM])])
8506m4trace:/usr/share/aclocal-1.9/tar.m4:95: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
8507AM_MISSING_PROG([AMTAR], [tar])
8508m4_if([$1], [v7],
8509     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
8510     [m4_case([$1], [ustar],, [pax],,
8511              [m4_fatal([Unknown tar format])])
8512AC_MSG_CHECKING([how to create a $1 tar archive])
8513# Loop over all known methods to create a tar archive until one works.
8514_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
8515_am_tools=${am_cv_prog_tar_$1-$_am_tools}
8516# Do not fold the above two line into one, because Tru64 sh and
8517# Solaris sh will not grok spaces in the rhs of `-'.
8518for _am_tool in $_am_tools
8519do
8520  case $_am_tool in
8521  gnutar)
8522    for _am_tar in tar gnutar gtar;
8523    do
8524      AM_RUN_LOG([$_am_tar --version]) && break
8525    done
8526    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
8527    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
8528    am__untar="$_am_tar -xf -"
8529    ;;
8530  plaintar)
8531    # Must skip GNU tar: if it does not support --format= it doesn't create
8532    # ustar tarball either.
8533    (tar --version) >/dev/null 2>&1 && continue
8534    am__tar='tar chf - "$$tardir"'
8535    am__tar_='tar chf - "$tardir"'
8536    am__untar='tar xf -'
8537    ;;
8538  pax)
8539    am__tar='pax -L -x $1 -w "$$tardir"'
8540    am__tar_='pax -L -x $1 -w "$tardir"'
8541    am__untar='pax -r'
8542    ;;
8543  cpio)
8544    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
8545    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
8546    am__untar='cpio -i -H $1 -d'
8547    ;;
8548  none)
8549    am__tar=false
8550    am__tar_=false
8551    am__untar=false
8552    ;;
8553  esac
8554
8555  # If the value was cached, stop now.  We just wanted to have am__tar
8556  # and am__untar set.
8557  test -n "${am_cv_prog_tar_$1}" && break
8558
8559  # tar/untar a dummy directory, and stop if the command works
8560  rm -rf conftest.dir
8561  mkdir conftest.dir
8562  echo GrepMe > conftest.dir/file
8563  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
8564  rm -rf conftest.dir
8565  if test -s conftest.tar; then
8566    AM_RUN_LOG([$am__untar <conftest.tar])
8567    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
8568  fi
8569done
8570rm -rf conftest.dir
8571
8572AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
8573AC_MSG_RESULT([$am_cv_prog_tar_$1])])
8574AC_SUBST([am__tar])
8575AC_SUBST([am__untar])
8576])
8577m4trace:configure.in:2: -1- AC_INIT([libdbf], [0.0.1])
8578m4trace:configure.in:2: -1- m4_pattern_forbid([^_?A[CHUM]_])
8579m4trace:configure.in:2: -1- m4_pattern_forbid([_AC_])
8580m4trace:configure.in:2: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
8581m4trace:configure.in:2: -1- m4_pattern_allow([^AS_FLAGS$])
8582m4trace:configure.in:2: -1- m4_pattern_forbid([^_?m4_])
8583m4trace:configure.in:2: -1- m4_pattern_forbid([^dnl$])
8584m4trace:configure.in:2: -1- m4_pattern_forbid([^_?AS_])
8585m4trace:configure.in:2: -1- AC_SUBST([SHELL], [${CONFIG_SHELL-/bin/sh}])
8586m4trace:configure.in:2: -1- AC_SUBST([PATH_SEPARATOR])
8587m4trace:configure.in:2: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME],      ['AC_PACKAGE_NAME'])])
8588m4trace:configure.in:2: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME],   ['AC_PACKAGE_TARNAME'])])
8589m4trace:configure.in:2: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION],   ['AC_PACKAGE_VERSION'])])
8590m4trace:configure.in:2: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING],    ['AC_PACKAGE_STRING'])])
8591m4trace:configure.in:2: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
8592m4trace:configure.in:2: -1- AC_SUBST([exec_prefix], [NONE])
8593m4trace:configure.in:2: -1- AC_SUBST([prefix], [NONE])
8594m4trace:configure.in:2: -1- AC_SUBST([program_transform_name], [s,x,x,])
8595m4trace:configure.in:2: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
8596m4trace:configure.in:2: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
8597m4trace:configure.in:2: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
8598m4trace:configure.in:2: -1- AC_SUBST([datadir], ['${prefix}/share'])
8599m4trace:configure.in:2: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
8600m4trace:configure.in:2: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
8601m4trace:configure.in:2: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
8602m4trace:configure.in:2: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
8603m4trace:configure.in:2: -1- AC_SUBST([includedir], ['${prefix}/include'])
8604m4trace:configure.in:2: -1- AC_SUBST([oldincludedir], ['/usr/include'])
8605m4trace:configure.in:2: -1- AC_SUBST([infodir], ['${prefix}/info'])
8606m4trace:configure.in:2: -1- AC_SUBST([mandir], ['${prefix}/man'])
8607m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
8608m4trace:configure.in:2: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
8609#undef PACKAGE_NAME])
8610m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
8611m4trace:configure.in:2: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
8612#undef PACKAGE_TARNAME])
8613m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
8614m4trace:configure.in:2: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
8615#undef PACKAGE_VERSION])
8616m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
8617m4trace:configure.in:2: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
8618#undef PACKAGE_STRING])
8619m4trace:configure.in:2: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
8620m4trace:configure.in:2: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
8621#undef PACKAGE_BUGREPORT])
8622m4trace:configure.in:2: -1- AC_SUBST([build_alias])
8623m4trace:configure.in:2: -1- AC_SUBST([host_alias])
8624m4trace:configure.in:2: -1- AC_SUBST([target_alias])
8625m4trace:configure.in:2: -1- AC_SUBST([DEFS])
8626m4trace:configure.in:2: -1- AC_SUBST([ECHO_C])
8627m4trace:configure.in:2: -1- AC_SUBST([ECHO_N])
8628m4trace:configure.in:2: -1- AC_SUBST([ECHO_T])
8629m4trace:configure.in:2: -1- AC_SUBST([LIBS])
8630m4trace:configure.in:4: -1- AM_INIT_AUTOMAKE([libdbf], [0.0.1])
8631m4trace:configure.in:4: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
8632m4trace:configure.in:4: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
8633m4trace:configure.in:4: -1- AM_AUTOMAKE_VERSION([1.9.6])
8634m4trace:configure.in:4: -1- AC_PROG_INSTALL
8635m4trace:configure.in:4: -1- AC_SUBST([INSTALL_PROGRAM])
8636m4trace:configure.in:4: -1- AC_SUBST([INSTALL_SCRIPT])
8637m4trace:configure.in:4: -1- AC_SUBST([INSTALL_DATA])
8638m4trace:configure.in:4: -1- AC_SUBST([CYGPATH_W])
8639m4trace:configure.in:4: -1- AC_SUBST([PACKAGE], [libdbf])
8640m4trace:configure.in:4: -1- AC_SUBST([VERSION], [0.0.1])
8641m4trace:configure.in:4: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
8642 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
8643m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([no-define])
8644m4trace:configure.in:4: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
8645m4trace:configure.in:4: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
8646#undef PACKAGE])
8647m4trace:configure.in:4: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
8648m4trace:configure.in:4: -1- AH_OUTPUT([VERSION], [/* Version number of package */
8649#undef VERSION])
8650m4trace:configure.in:4: -1- AM_SANITY_CHECK
8651m4trace:configure.in:4: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
8652m4trace:configure.in:4: -1- AM_MISSING_HAS_RUN
8653m4trace:configure.in:4: -1- AM_AUX_DIR_EXPAND
8654m4trace:configure.in:4: -1- AC_SUBST([ACLOCAL])
8655m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
8656m4trace:configure.in:4: -1- AC_SUBST([AUTOCONF])
8657m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
8658m4trace:configure.in:4: -1- AC_SUBST([AUTOMAKE])
8659m4trace:configure.in:4: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
8660m4trace:configure.in:4: -1- AC_SUBST([AUTOHEADER])
8661m4trace:configure.in:4: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
8662m4trace:configure.in:4: -1- AC_SUBST([MAKEINFO])
8663m4trace:configure.in:4: -1- AM_PROG_INSTALL_SH
8664m4trace:configure.in:4: -1- AC_SUBST([install_sh])
8665m4trace:configure.in:4: -1- AM_PROG_INSTALL_STRIP
8666m4trace:configure.in:4: -1- AC_SUBST([STRIP])
8667m4trace:configure.in:4: -1- AC_SUBST([ac_ct_STRIP])
8668m4trace:configure.in:4: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
8669m4trace:configure.in:4: -1- AM_PROG_MKDIR_P
8670m4trace:configure.in:4: -1- AC_SUBST([mkdir_p])
8671m4trace:configure.in:4: -1- AC_PROG_AWK
8672m4trace:configure.in:4: -1- AC_SUBST([AWK])
8673m4trace:configure.in:4: -1- AC_PROG_MAKE_SET
8674m4trace:configure.in:4: -1- AC_SUBST([SET_MAKE])
8675m4trace:configure.in:4: -1- AM_SET_LEADING_DOT
8676m4trace:configure.in:4: -1- AC_SUBST([am__leading_dot])
8677m4trace:configure.in:4: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
8678	      		     [_AM_PROG_TAR([v7])])])
8679m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([tar-ustar])
8680m4trace:configure.in:4: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
8681m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([tar-pax])
8682m4trace:configure.in:4: -1- _AM_PROG_TAR([v7])
8683m4trace:configure.in:4: -1- AM_MISSING_PROG([AMTAR], [tar])
8684m4trace:configure.in:4: -1- AC_SUBST([AMTAR])
8685m4trace:configure.in:4: -1- AC_SUBST([am__tar])
8686m4trace:configure.in:4: -1- AC_SUBST([am__untar])
8687m4trace:configure.in:4: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
8688                  [_AM_DEPENDENCIES(CC)],
8689                  [define([AC_PROG_CC],
8690                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
8691AC_PROVIDE_IFELSE([AC_PROG_CXX],
8692                  [_AM_DEPENDENCIES(CXX)],
8693                  [define([AC_PROG_CXX],
8694                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
8695])
8696m4trace:configure.in:4: -2- _AM_MANGLE_OPTION([no-dependencies])
8697m4trace:configure.in:6: -1- AM_MAINTAINER_MODE
8698m4trace:configure.in:6: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
8699m4trace:configure.in:6: -1- AC_SUBST([MAINTAINER_MODE_TRUE])
8700m4trace:configure.in:6: -1- AC_SUBST([MAINTAINER_MODE_FALSE])
8701m4trace:configure.in:6: -1- AC_SUBST([MAINT])
8702m4trace:configure.in:7: -1- AM_CONFIG_HEADER([config.h])
8703m4trace:configure.in:7: -1- _m4_warn([obsolete], [The macro `AM_CONFIG_HEADER' is obsolete.
8704You should run autoupdate.], [/usr/share/aclocal-1.9/header.m4:12: AM_CONFIG_HEADER is expanded from...
8705configure.in:7: the top level])
8706m4trace:configure.in:7: -1- AC_CONFIG_HEADERS([config.h])
8707m4trace:configure.in:8: -1- AC_PROG_INTLTOOL
8708m4trace:configure.in:8: -1- IT_PROG_INTLTOOL([])
8709m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_DESKTOP_RULE])
8710m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_DIRECTORY_RULE])
8711m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_KEYS_RULE])
8712m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_PROP_RULE])
8713m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_OAF_RULE])
8714m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_PONG_RULE])
8715m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_SERVER_RULE])
8716m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_SHEET_RULE])
8717m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_SOUNDLIST_RULE])
8718m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_UI_RULE])
8719m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_XAM_RULE])
8720m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_KBD_RULE])
8721m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_XML_RULE])
8722m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_XML_NOMERGE_RULE])
8723m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_CAVES_RULE])
8724m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_SCHEMAS_RULE])
8725m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_THEME_RULE])
8726m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_EXTRACT])
8727m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_MERGE])
8728m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_UPDATE])
8729m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_PERL], [$ac_cv_path_INTLTOOL_PERL])
8730m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_ICONV], [$ac_cv_path_INTLTOOL_ICONV])
8731m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_MSGFMT], [$ac_cv_path_INTLTOOL_MSGFMT])
8732m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_MSGMERGE], [$ac_cv_path_INTLTOOL_MSGMERGE])
8733m4trace:configure.in:8: -1- AC_SUBST([INTLTOOL_XGETTEXT], [$ac_cv_path_INTLTOOL_XGETTEXT])
8734m4trace:configure.in:8: -1- AC_SUBST([mkdir_p])
8735m4trace:configure.in:10: -1- AC_CANONICAL_HOST
8736m4trace:configure.in:10: -1- AC_SUBST([build], [$ac_cv_build])
8737m4trace:configure.in:10: -1- AC_SUBST([build_cpu], [`echo $ac_cv_build | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\1/'`])
8738m4trace:configure.in:10: -1- AC_SUBST([build_vendor], [`echo $ac_cv_build | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\2/'`])
8739m4trace:configure.in:10: -1- AC_SUBST([build_os], [`echo $ac_cv_build | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\3/'`])
8740m4trace:configure.in:10: -1- AC_SUBST([host], [$ac_cv_host])
8741m4trace:configure.in:10: -1- AC_SUBST([host_cpu], [`echo $ac_cv_host | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\1/'`])
8742m4trace:configure.in:10: -1- AC_SUBST([host_vendor], [`echo $ac_cv_host | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\2/'`])
8743m4trace:configure.in:10: -1- AC_SUBST([host_os], [`echo $ac_cv_host | sed 's/^\([[^-]]*\)-\([[^-]]*\)-\(.*\)$/\3/'`])
8744m4trace:configure.in:18: -1- AC_SUBST([LIBDBF_MAJOR_VERSION])
8745m4trace:configure.in:19: -1- AC_SUBST([LIBDBF_MINOR_VERSION])
8746m4trace:configure.in:20: -1- AC_SUBST([LIBDBF_MICRO_VERSION])
8747m4trace:configure.in:21: -1- AC_SUBST([LIBDBF_VERSION])
8748m4trace:configure.in:22: -1- AC_SUBST([LIBDBF_VERSION_INFO])
8749m4trace:configure.in:27: -1- AC_PROG_CC
8750m4trace:configure.in:27: -1- AC_SUBST([CC])
8751m4trace:configure.in:27: -1- AC_SUBST([CFLAGS])
8752m4trace:configure.in:27: -1- AC_SUBST([LDFLAGS])
8753m4trace:configure.in:27: -1- AC_SUBST([CPPFLAGS])
8754m4trace:configure.in:27: -1- AC_SUBST([CC])
8755m4trace:configure.in:27: -1- AC_SUBST([ac_ct_CC])
8756m4trace:configure.in:27: -1- AC_SUBST([CC])
8757m4trace:configure.in:27: -1- AC_SUBST([ac_ct_CC])
8758m4trace:configure.in:27: -1- AC_SUBST([CC])
8759m4trace:configure.in:27: -1- AC_SUBST([CC])
8760m4trace:configure.in:27: -1- AC_SUBST([ac_ct_CC])
8761m4trace:configure.in:27: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
8762m4trace:configure.in:27: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
8763m4trace:configure.in:27: -1- _AM_DEPENDENCIES([CC])
8764m4trace:configure.in:27: -1- AM_SET_DEPDIR
8765m4trace:configure.in:27: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
8766m4trace:configure.in:27: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
8767m4trace:configure.in:27: -1- AM_MAKE_INCLUDE
8768m4trace:configure.in:27: -1- AC_SUBST([am__include])
8769m4trace:configure.in:27: -1- AC_SUBST([am__quote])
8770m4trace:configure.in:27: -1- AM_DEP_TRACK
8771m4trace:configure.in:27: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
8772m4trace:configure.in:27: -1- AC_SUBST([AMDEP_TRUE])
8773m4trace:configure.in:27: -1- AC_SUBST([AMDEP_FALSE])
8774m4trace:configure.in:27: -1- AC_SUBST([AMDEPBACKSLASH])
8775m4trace:configure.in:27: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
8776m4trace:configure.in:27: -1- AM_CONDITIONAL([am__fastdepCC], [
8777  test "x$enable_dependency_tracking" != xno \
8778  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
8779m4trace:configure.in:27: -1- AC_SUBST([am__fastdepCC_TRUE])
8780m4trace:configure.in:27: -1- AC_SUBST([am__fastdepCC_FALSE])
8781m4trace:configure.in:28: -1- AC_PROG_INSTALL
8782m4trace:configure.in:28: -1- AC_SUBST([INSTALL_PROGRAM])
8783m4trace:configure.in:28: -1- AC_SUBST([INSTALL_SCRIPT])
8784m4trace:configure.in:28: -1- AC_SUBST([INSTALL_DATA])
8785m4trace:configure.in:29: -1- AC_PROG_CPP
8786m4trace:configure.in:29: -1- AC_SUBST([CPP])
8787m4trace:configure.in:29: -1- AC_SUBST([CPPFLAGS])
8788m4trace:configure.in:29: -1- AC_SUBST([CPP])
8789m4trace:configure.in:30: -1- AC_SUBST([RM], [$ac_cv_path_RM])
8790m4trace:configure.in:31: -1- AC_SUBST([MV], [$ac_cv_path_MV])
8791m4trace:configure.in:32: -1- AC_SUBST([TAR], [$ac_cv_path_TAR])
8792m4trace:configure.in:36: -1- AC_SUBST([ALL_LINGUAS], ["de"])
8793m4trace:configure.in:37: -1- AM_GNU_GETTEXT_VERSION([0.14.1])
8794m4trace:configure.in:39: -1- AC_SUBST([GETTEXT_PACKAGE], [libdbf])
8795m4trace:configure.in:40: -1- AC_DEFINE_TRACE_LITERAL([GETTEXT_PACKAGE])
8796m4trace:configure.in:40: -1- AH_OUTPUT([GETTEXT_PACKAGE], [/* GETTEXT_PACKAGE */
8797#undef GETTEXT_PACKAGE])
8798m4trace:configure.in:41: -1- AM_GLIB_GNU_GETTEXT
8799m4trace:configure.in:41: -1- AC_HEADER_STDC
8800m4trace:configure.in:41: -1- AC_PROG_EGREP
8801m4trace:configure.in:41: -1- AC_SUBST([EGREP])
8802m4trace:configure.in:41: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
8803m4trace:configure.in:41: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
8804#undef STDC_HEADERS])
8805m4trace:configure.in:41: -1- AC_CHECK_HEADERS([locale.h])
8806m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_LOCALE_H], [/* Define to 1 if you have the <locale.h> header file. */
8807#undef HAVE_LOCALE_H])
8808m4trace:configure.in:41: -1- AC_CHECK_HEADERS([sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \
8809		  inttypes.h stdint.h unistd.h], [], [], [$ac_includes_default])
8810m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
8811#undef HAVE_SYS_TYPES_H])
8812m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
8813#undef HAVE_SYS_STAT_H])
8814m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
8815#undef HAVE_STDLIB_H])
8816m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
8817#undef HAVE_STRING_H])
8818m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
8819#undef HAVE_MEMORY_H])
8820m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
8821#undef HAVE_STRINGS_H])
8822m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
8823#undef HAVE_INTTYPES_H])
8824m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
8825#undef HAVE_STDINT_H])
8826m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
8827#undef HAVE_UNISTD_H])
8828m4trace:configure.in:41: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
8829You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
8830autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
8831autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
8832/usr/share/aclocal/glib-gettext.m4:58: GLIB_LC_MESSAGES is expanded from...
8833/usr/share/aclocal/glib-gettext.m4:369: GLIB_GNU_GETTEXT is expanded from...
8834/usr/share/aclocal/glib-gettext.m4:398: AM_GLIB_GNU_GETTEXT is expanded from...
8835configure.in:41: the top level])
8836m4trace:configure.in:41: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LC_MESSAGES])
8837m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_LC_MESSAGES], [/* Define if your <locale.h> file defines LC_MESSAGES. */
8838#undef HAVE_LC_MESSAGES])
8839m4trace:configure.in:41: -1- AC_SUBST([USE_NLS])
8840m4trace:configure.in:41: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
8841You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
8842autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
8843autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
8844autoconf/headers.m4:91: AC_CHECK_HEADER is expanded from...
8845/usr/share/aclocal/glib-gettext.m4:286: GLIB_WITH_NLS is expanded from...
8846/usr/share/aclocal/glib-gettext.m4:369: GLIB_GNU_GETTEXT is expanded from...
8847/usr/share/aclocal/glib-gettext.m4:398: AM_GLIB_GNU_GETTEXT is expanded from...
8848configure.in:41: the top level])
8849m4trace:configure.in:41: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
8850You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
8851autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
8852autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
8853autoconf/headers.m4:91: AC_CHECK_HEADER is expanded from...
8854/usr/share/aclocal/glib-gettext.m4:286: GLIB_WITH_NLS is expanded from...
8855/usr/share/aclocal/glib-gettext.m4:369: GLIB_GNU_GETTEXT is expanded from...
8856/usr/share/aclocal/glib-gettext.m4:398: AM_GLIB_GNU_GETTEXT is expanded from...
8857configure.in:41: the top level])
8858m4trace:configure.in:41: -1- AC_CHECK_FUNCS([bind_textdomain_codeset])
8859m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_BIND_TEXTDOMAIN_CODESET], [/* Define to 1 if you have the `bind_textdomain_codeset\' function. */
8860#undef HAVE_BIND_TEXTDOMAIN_CODESET])
8861m4trace:configure.in:41: -1- AC_CHECK_LIB([intl], [bindtextdomain], [AC_CHECK_LIB(intl, ngettext,
8862		    [AC_CHECK_LIB(intl, dgettext,
8863			          gt_cv_func_dgettext_libintl=yes)])])
8864m4trace:configure.in:41: -1- AC_CHECK_LIB([intl], [ngettext], [AC_CHECK_LIB(intl, dgettext,
8865			          gt_cv_func_dgettext_libintl=yes)])
8866m4trace:configure.in:41: -1- AC_CHECK_LIB([intl], [dgettext], [gt_cv_func_dgettext_libintl=yes])
8867m4trace:configure.in:41: -1- AC_CHECK_LIB([intl], [ngettext], [AC_CHECK_LIB(intl, dcgettext,
8868		       [gt_cv_func_dgettext_libintl=yes
8869			libintl_extra_libs=-liconv],
8870			:,-liconv)], [:], [-liconv])
8871m4trace:configure.in:41: -1- AC_CHECK_LIB([intl], [dcgettext], [gt_cv_func_dgettext_libintl=yes
8872			libintl_extra_libs=-liconv], [:], [-liconv])
8873m4trace:configure.in:41: -1- AC_CHECK_FUNCS([bind_textdomain_codeset])
8874m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_BIND_TEXTDOMAIN_CODESET], [/* Define to 1 if you have the `bind_textdomain_codeset\' function. */
8875#undef HAVE_BIND_TEXTDOMAIN_CODESET])
8876m4trace:configure.in:41: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETTEXT])
8877m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_GETTEXT], [/* Define if the GNU gettext() function is already present or preinstalled. */
8878#undef HAVE_GETTEXT])
8879m4trace:configure.in:41: -1- AC_SUBST([MSGFMT])
8880m4trace:configure.in:41: -1- AC_CHECK_FUNCS([dcgettext])
8881m4trace:configure.in:41: -1- AH_OUTPUT([HAVE_DCGETTEXT], [/* Define to 1 if you have the `dcgettext\' function. */
8882#undef HAVE_DCGETTEXT])
8883m4trace:configure.in:41: -1- AC_SUBST([GMSGFMT], [$ac_cv_path_GMSGFMT])
8884m4trace:configure.in:41: -1- AC_SUBST([XGETTEXT])
8885m4trace:configure.in:41: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
8886You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
8887autoconf/headers.m4:91: AC_CHECK_HEADER is expanded from...
8888/usr/share/aclocal/glib-gettext.m4:286: GLIB_WITH_NLS is expanded from...
8889/usr/share/aclocal/glib-gettext.m4:369: GLIB_GNU_GETTEXT is expanded from...
8890/usr/share/aclocal/glib-gettext.m4:398: AM_GLIB_GNU_GETTEXT is expanded from...
8891configure.in:41: the top level])
8892m4trace:configure.in:41: -1- AC_DEFINE_TRACE_LITERAL([ENABLE_NLS])
8893m4trace:configure.in:41: -1- AH_OUTPUT([ENABLE_NLS], [/* always defined to indicate that i18n is enabled */
8894#undef ENABLE_NLS])
8895m4trace:configure.in:41: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete.
8896You should run autoupdate.], [autoconf/status.m4:318: AC_OUTPUT_COMMANDS is expanded from...
8897/usr/share/aclocal/glib-gettext.m4:286: GLIB_WITH_NLS is expanded from...
8898/usr/share/aclocal/glib-gettext.m4:369: GLIB_GNU_GETTEXT is expanded from...
8899/usr/share/aclocal/glib-gettext.m4:398: AM_GLIB_GNU_GETTEXT is expanded from...
8900configure.in:41: the top level])
8901m4trace:configure.in:41: -3- _m4_warn([obsolete], [The macro `_AC_OUTPUT_COMMANDS_CNT' is obsolete.
8902You should run autoupdate.], [autoconf/status.m4:321: _AC_OUTPUT_COMMANDS_CNT is expanded from...
8903autoconf/status.m4:318: AC_OUTPUT_COMMANDS is expanded from...
8904/usr/share/aclocal/glib-gettext.m4:286: GLIB_WITH_NLS is expanded from...
8905/usr/share/aclocal/glib-gettext.m4:369: GLIB_GNU_GETTEXT is expanded from...
8906/usr/share/aclocal/glib-gettext.m4:398: AM_GLIB_GNU_GETTEXT is expanded from...
8907configure.in:41: the top level])
8908m4trace:configure.in:41: -1- AC_SUBST([CATALOGS])
8909m4trace:configure.in:41: -1- AC_SUBST([CATOBJEXT])
8910m4trace:configure.in:41: -1- AC_SUBST([DATADIRNAME])
8911m4trace:configure.in:41: -1- AC_SUBST([GMOFILES])
8912m4trace:configure.in:41: -1- AC_SUBST([INSTOBJEXT])
8913m4trace:configure.in:41: -1- AC_SUBST([INTLLIBS])
8914m4trace:configure.in:41: -1- AC_SUBST([PO_IN_DATADIR_TRUE])
8915m4trace:configure.in:41: -1- AC_SUBST([PO_IN_DATADIR_FALSE])
8916m4trace:configure.in:41: -1- AC_SUBST([POFILES])
8917m4trace:configure.in:41: -1- AC_SUBST([POSUB])
8918m4trace:configure.in:41: -1- AC_SUBST([MKINSTALLDIRS])
8919m4trace:configure.in:43: -1- AC_PROG_LIBTOOL
8920m4trace:configure.in:43: -1- _AC_PROG_LIBTOOL
8921m4trace:configure.in:43: -1- AC_LIBTOOL_SETUP
8922m4trace:configure.in:43: -1- AC_ENABLE_SHARED
8923m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
8924You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
8925autoconf/general.m4:1303: AC_ARG_ENABLE is expanded from...
8926/usr/share/aclocal/libtool.m4:1851: AC_ENABLE_SHARED is expanded from...
8927configure.in:43: AC_ENABLE_SHARED is required by...
8928/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
8929configure.in:43: AC_LIBTOOL_SETUP is required by...
8930/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
8931configure.in:43: _AC_PROG_LIBTOOL is required by...
8932/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
8933configure.in:43: the top level])
8934m4trace:configure.in:43: -1- AC_ENABLE_STATIC
8935m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
8936You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
8937autoconf/general.m4:1303: AC_ARG_ENABLE is expanded from...
8938/usr/share/aclocal/libtool.m4:1890: AC_ENABLE_STATIC is expanded from...
8939configure.in:43: AC_ENABLE_STATIC is required by...
8940/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
8941configure.in:43: AC_LIBTOOL_SETUP is required by...
8942/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
8943configure.in:43: _AC_PROG_LIBTOOL is required by...
8944/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
8945configure.in:43: the top level])
8946m4trace:configure.in:43: -1- AC_ENABLE_FAST_INSTALL
8947m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
8948You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
8949autoconf/general.m4:1303: AC_ARG_ENABLE is expanded from...
8950/usr/share/aclocal/libtool.m4:1929: AC_ENABLE_FAST_INSTALL is expanded from...
8951configure.in:43: AC_ENABLE_FAST_INSTALL is required by...
8952/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
8953configure.in:43: AC_LIBTOOL_SETUP is required by...
8954/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
8955configure.in:43: _AC_PROG_LIBTOOL is required by...
8956/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
8957configure.in:43: the top level])
8958m4trace:configure.in:43: -1- AC_PROG_LD
8959m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
8960You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
8961autoconf/general.m4:1331: AC_ARG_WITH is expanded from...
8962/usr/share/aclocal/libtool.m4:2126: AC_PROG_LD is expanded from...
8963configure.in:43: AC_PROG_LD is required by...
8964/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
8965configure.in:43: AC_LIBTOOL_SETUP is required by...
8966/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
8967configure.in:43: _AC_PROG_LIBTOOL is required by...
8968/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
8969configure.in:43: the top level])
8970m4trace:configure.in:43: -1- LT_AC_PROG_SED
8971m4trace:configure.in:43: -1- AC_PROG_LD_GNU
8972m4trace:configure.in:43: -1- AC_PROG_LD_RELOAD_FLAG
8973m4trace:configure.in:43: -1- AC_PROG_NM
8974m4trace:configure.in:43: -1- AC_PROG_LN_S
8975m4trace:configure.in:43: -1- AC_SUBST([LN_S], [$as_ln_s])
8976m4trace:configure.in:43: -1- AC_DEPLIBS_CHECK_METHOD
8977m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_MAX_CMD_LEN
8978m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE
8979m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
8980m4trace:configure.in:43: -1- AC_LIBTOOL_OBJDIR
8981m4trace:configure.in:43: -1- _LT_AC_SYS_COMPILER
8982m4trace:configure.in:43: -1- _LT_AC_PROG_ECHO_BACKSLASH
8983m4trace:configure.in:43: -1- _LT_AC_SHELL_INIT([
8984# Check that we are running under the correct shell.
8985SHELL=${CONFIG_SHELL-/bin/sh}
8986
8987case X$ECHO in
8988X*--fallback-echo)
8989  # Remove one level of quotation (which was required for Make).
8990  ECHO=`echo "$ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','`
8991  ;;
8992esac
8993
8994echo=${ECHO-echo}
8995if test "X[$]1" = X--no-reexec; then
8996  # Discard the --no-reexec flag, and continue.
8997  shift
8998elif test "X[$]1" = X--fallback-echo; then
8999  # Avoid inline document here, it may be left over
9000  :
9001elif test "X`($echo '\t') 2>/dev/null`" = 'X\t' ; then
9002  # Yippee, $echo works!
9003  :
9004else
9005  # Restart under the correct shell.
9006  exec $SHELL "[$]0" --no-reexec ${1+"[$]@"}
9007fi
9008
9009if test "X[$]1" = X--fallback-echo; then
9010  # used as fallback echo
9011  shift
9012  cat <<EOF
9013[$]*
9014EOF
9015  exit 0
9016fi
9017
9018# The HP-UX ksh and POSIX shell print the target directory to stdout
9019# if CDPATH is set.
9020(unset CDPATH) >/dev/null 2>&1 && unset CDPATH
9021
9022if test -z "$ECHO"; then
9023if test "X${echo_test_string+set}" != Xset; then
9024# find a string as large as possible, as long as the shell can cope with it
9025  for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do
9026    # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
9027    if (echo_test_string=`eval $cmd`) 2>/dev/null &&
9028       echo_test_string=`eval $cmd` &&
9029       (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
9030    then
9031      break
9032    fi
9033  done
9034fi
9035
9036if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
9037   echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
9038   test "X$echo_testing_string" = "X$echo_test_string"; then
9039  :
9040else
9041  # The Solaris, AIX, and Digital Unix default echo programs unquote
9042  # backslashes.  This makes it impossible to quote backslashes using
9043  #   echo "$something" | sed 's/\\/\\\\/g'
9044  #
9045  # So, first we look for a working echo in the user's PATH.
9046
9047  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
9048  for dir in $PATH /usr/ucb; do
9049    IFS="$lt_save_ifs"
9050    if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
9051       test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
9052       echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
9053       test "X$echo_testing_string" = "X$echo_test_string"; then
9054      echo="$dir/echo"
9055      break
9056    fi
9057  done
9058  IFS="$lt_save_ifs"
9059
9060  if test "X$echo" = Xecho; then
9061    # We didn't find a better echo, so look for alternatives.
9062    if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
9063       echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
9064       test "X$echo_testing_string" = "X$echo_test_string"; then
9065      # This shell has a builtin print -r that does the trick.
9066      echo='print -r'
9067    elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
9068	 test "X$CONFIG_SHELL" != X/bin/ksh; then
9069      # If we have ksh, try running configure again with it.
9070      ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
9071      export ORIGINAL_CONFIG_SHELL
9072      CONFIG_SHELL=/bin/ksh
9073      export CONFIG_SHELL
9074      exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"}
9075    else
9076      # Try using printf.
9077      echo='printf %s\n'
9078      if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
9079	 echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
9080	 test "X$echo_testing_string" = "X$echo_test_string"; then
9081	# Cool, printf works
9082	:
9083      elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
9084	   test "X$echo_testing_string" = 'X\t' &&
9085	   echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
9086	   test "X$echo_testing_string" = "X$echo_test_string"; then
9087	CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
9088	export CONFIG_SHELL
9089	SHELL="$CONFIG_SHELL"
9090	export SHELL
9091	echo="$CONFIG_SHELL [$]0 --fallback-echo"
9092      elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` &&
9093	   test "X$echo_testing_string" = 'X\t' &&
9094	   echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
9095	   test "X$echo_testing_string" = "X$echo_test_string"; then
9096	echo="$CONFIG_SHELL [$]0 --fallback-echo"
9097      else
9098	# maybe with a smaller string...
9099	prev=:
9100
9101	for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do
9102	  if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
9103	  then
9104	    break
9105	  fi
9106	  prev="$cmd"
9107	done
9108
9109	if test "$prev" != 'sed 50q "[$]0"'; then
9110	  echo_test_string=`eval $prev`
9111	  export echo_test_string
9112	  exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"}
9113	else
9114	  # Oops.  We lost completely, so just stick with echo.
9115	  echo=echo
9116	fi
9117      fi
9118    fi
9119  fi
9120fi
9121fi
9122
9123# Copy echo and quote the copy suitably for passing to libtool from
9124# the Makefile, instead of quoting the original, which is used later.
9125ECHO=$echo
9126if test "X$ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then
9127   ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo"
9128fi
9129
9130AC_SUBST(ECHO)
9131])
9132m4trace:configure.in:43: -1- AC_SUBST([ECHO])
9133m4trace:configure.in:43: -1- AC_SUBST([AR])
9134m4trace:configure.in:43: -1- AC_SUBST([ac_ct_AR])
9135m4trace:configure.in:43: -1- AC_SUBST([RANLIB])
9136m4trace:configure.in:43: -1- AC_SUBST([ac_ct_RANLIB])
9137m4trace:configure.in:43: -1- AC_SUBST([STRIP])
9138m4trace:configure.in:43: -1- AC_SUBST([ac_ct_STRIP])
9139m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
9140m4trace:configure.in:43: -1- AC_PATH_MAGIC
9141m4trace:configure.in:43: -1- AC_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
9142m4trace:configure.in:43: -1- AC_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
9143m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
9144You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
9145autoconf/general.m4:1303: AC_ARG_ENABLE is expanded from...
9146/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
9147configure.in:43: AC_LIBTOOL_SETUP is required by...
9148/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
9149configure.in:43: _AC_PROG_LIBTOOL is required by...
9150/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
9151configure.in:43: the top level])
9152m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
9153You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
9154autoconf/general.m4:1331: AC_ARG_WITH is expanded from...
9155/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
9156configure.in:43: AC_LIBTOOL_SETUP is required by...
9157/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
9158configure.in:43: _AC_PROG_LIBTOOL is required by...
9159/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
9160configure.in:43: the top level])
9161m4trace:configure.in:43: -1- AC_LIBTOOL_LANG_C_CONFIG
9162m4trace:configure.in:43: -1- _LT_AC_LANG_C_CONFIG
9163m4trace:configure.in:43: -1- _LT_AC_TAGVAR([objext], [])
9164m4trace:configure.in:43: -1- _LT_AC_SYS_COMPILER
9165m4trace:configure.in:43: -1- _LT_COMPILER_BOILERPLATE
9166m4trace:configure.in:43: -1- _LT_LINKER_BOILERPLATE
9167m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9168m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9169m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9170m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9171m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9172m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9173m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9174m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_cc_shlib], [])
9175m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_cc_can_build_shared], [])
9176m4trace:configure.in:43: -2- _LT_AC_TAGVAR([lt_prog_compiler_static_works], [])
9177m4trace:configure.in:43: -2- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9178m4trace:configure.in:43: -1- AC_LIBTOOL_LINKER_OPTION([if $compiler static flag $_LT_AC_TAGVAR(lt_prog_compiler_static, ) works], [lt_prog_compiler_static_works], [$lt_prog_compiler_static], [], [_LT_AC_TAGVAR(lt_prog_compiler_static, )=])
9179m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9180m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9181m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9182m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([])
9183m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
9184m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
9185m4trace:configure.in:43: -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"])
9186m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
9187m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
9188m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_COMPILER_PIC([])
9189m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9190m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9191m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9192m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9193m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9194m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9195m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9196m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9197m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9198m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
9199m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9200m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9201m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9202m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9203m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9204m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9205m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9206m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9207m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9208m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9209m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9210m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9211m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9212m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9213m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9214m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9215m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9216m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9217m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9218m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9219m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9220m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9221m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9222m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9223m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9224m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9225m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9226m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9227m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9228m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9229m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9230m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9231m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9232m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9233m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9234m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9235m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9236m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9237m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9238m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9239m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9240m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
9241m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9242m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9243m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
9244m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9245m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9246m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9247m4trace:configure.in:43: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [])
9248m4trace:configure.in:43: -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
9249     "" | " "*) ;;
9250     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, )=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, )" ;;
9251     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, )=
9252     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
9253m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9254m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9255m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9256m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9257m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9258m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9259m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9260m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [])
9261m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9262m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9263m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9264m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_CC_C_O([])
9265m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9266m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9267m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9268m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9269m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9270m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([])
9271m4trace:configure.in:43: -1- _LT_AC_LOCK
9272m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
9273You should run autoupdate.], [autoconf/general.m4:2223: AC_TRY_LINK is expanded from...
9274autoconf/general.m4:1799: AC_CACHE_VAL is expanded from...
9275autoconf/general.m4:1808: AC_CACHE_CHECK is expanded from...
9276/usr/share/aclocal/libtool.m4:588: _LT_AC_LOCK is expanded from...
9277configure.in:43: _LT_AC_LOCK is required by...
9278/usr/share/aclocal/libtool.m4:1055: AC_LIBTOOL_SYS_HARD_LINK_LOCKS is expanded from...
9279/usr/share/aclocal/libtool.m4:2662: _LT_AC_LANG_C_CONFIG is expanded from...
9280/usr/share/aclocal/libtool.m4:2558: AC_LIBTOOL_LANG_C_CONFIG is expanded from...
9281/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
9282configure.in:43: AC_LIBTOOL_SETUP is required by...
9283/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
9284configure.in:43: _AC_PROG_LIBTOOL is required by...
9285/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
9286configure.in:43: the top level])
9287m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9288m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_SHLIBS([])
9289m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9290m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
9291m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9292m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9293m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
9294m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
9295m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9296m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9297m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
9298m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9299m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
9300m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9301m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9302m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9303m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9304m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
9305m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
9306m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [])
9307m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
9308m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [])
9309m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9310m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [])
9311m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
9312m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
9313m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9314m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9315m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9316m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9317m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9318m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9319m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9320m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9321m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9322m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9323m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9324m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9325m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9326m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9327m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9328m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [])
9329m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
9330m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9331m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9332m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9333m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9334m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9335m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9336m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9337m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9338m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9339m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9340m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9341m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9342m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9343m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9344m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9345m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9346m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9347m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9348m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9349m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9350m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9351m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9352m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9353m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9354m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9355m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9356m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9357m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [])
9358m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9359m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9360m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9361m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9362m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9363m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9364m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9365m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9366m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
9367m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9368m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9369m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9370m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9371m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9372m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [])
9373m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9374m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
9375m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9376m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9377m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9378m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9379m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9380m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
9381m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9382m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
9383m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9384m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [])
9385m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9386m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9387m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9388m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9389m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9390m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9391m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9392m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9393m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9394m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9395m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9396m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
9397m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
9398m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [])
9399m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
9400m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9401m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9402m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9403m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9404m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9405m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9406m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
9407m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9408m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9409m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
9410m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9411m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [])
9412m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9413m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
9414m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9415m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [])
9416m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9417m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
9418m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9419m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9420m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9421m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9422m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9423m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9424m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9425m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9426m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9427m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9428m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9429m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9430m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9431m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9432m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9433m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9434m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9435m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9436m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9437m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9438m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9439m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9440m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9441m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9442m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9443m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9444m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9445m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9446m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9447m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
9448m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9449m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9450m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9451m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9452m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9453m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9454m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9455m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9456m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9457m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9458m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9459m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9460m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9461m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9462m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
9463m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9464m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9465m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
9466m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9467m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9468m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9469m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9470m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9471m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9472m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9473m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9474m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9475m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9476m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9477m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9478m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9479m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9480m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9481m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9482m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9483m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9484m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9485m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9486m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9487m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9488m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9489m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9490m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [])
9491m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9492m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9493m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9494m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9495m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9496m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9497m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9498m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9499m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9500m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9501m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9502m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9503m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9504m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9505m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9506m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9507m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9508m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
9509m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9510m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9511m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9512m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9513m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9514m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9515m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9516m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9517m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
9518m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9519m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9520m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9521m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9522m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9523m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9524m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9525m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9526m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9527m4trace:configure.in:43: -1- _LT_AC_TAGVAR([reload_cmds], [])
9528m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9529m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9530m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9531m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9532m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9533m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9534m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9535m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9536m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9537m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9538m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9539m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9540m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9541m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9542m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
9543m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9544m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9545m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9546m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
9547m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9548m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9549m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9550m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9551m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9552m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9553m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9554m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9555m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9556m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9557m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [])
9558m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9559m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9560m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9561m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9562m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9563m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9564m4trace:configure.in:43: -2- _LT_AC_TAGVAR([archive_cmds], [])
9565m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9566m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9567m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9568m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9569m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9570m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([])
9571m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([])
9572m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9573m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9574m4trace:configure.in:43: -1- _LT_AC_TAGVAR([runpath_var], [])
9575m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
9576m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9577m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9578m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9579m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9580m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9581m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9582m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9583m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9584m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_LIB_STRIP
9585m4trace:configure.in:43: -1- AC_LIBTOOL_DLOPEN_SELF([])
9586m4trace:configure.in:43: -1- _LT_AC_CHECK_DLFCN
9587m4trace:configure.in:43: -1- AC_CHECK_HEADERS([dlfcn.h])
9588m4trace:configure.in:43: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */
9589#undef HAVE_DLFCN_H])
9590m4trace:configure.in:43: -1- AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [
9591    lt_cv_dlopen="dyld"
9592    lt_cv_dlopen_libs=
9593    lt_cv_dlopen_self=yes
9594    ])
9595m4trace:configure.in:43: -1- AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen],
9596	      [lt_cv_dlopen="dlopen"],
9597	  [AC_CHECK_LIB([dl], [dlopen],
9598		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
9599	    [AC_CHECK_LIB([svld], [dlopen],
9600		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
9601	      [AC_CHECK_LIB([dld], [dld_link],
9602		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
9603	      ])
9604	    ])
9605	  ])
9606	])
9607m4trace:configure.in:43: -1- AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen],
9608		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
9609	      [AC_CHECK_LIB([dld], [dld_link],
9610		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
9611	      ])
9612	    ])
9613m4trace:configure.in:43: -1- AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link],
9614		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
9615	      ])
9616m4trace:configure.in:43: -1- AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
9617m4trace:configure.in:43: -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])
9618m4trace:configure.in:43: -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])
9619m4trace:configure.in:43: -1- AC_LIBTOOL_CONFIG([])
9620m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [])
9621m4trace:configure.in:43: -1- _LT_AC_TAGVAR([CC], [])
9622m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [])
9623m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9624m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9625m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9626m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
9627m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9628m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
9629m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9630m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
9631m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
9632m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
9633m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [])
9634m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [])
9635m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [])
9636m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [])
9637m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [])
9638m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9639m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9640m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postinstall_cmds], [])
9641m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postuninstall_cmds], [])
9642m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
9643m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9644m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
9645m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9646m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9647m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
9648m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9649m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
9650m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [])
9651m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
9652m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9653m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
9654m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [])
9655m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
9656m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
9657m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9658m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9659m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [])
9660m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
9661m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
9662m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9663m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [])
9664m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [])
9665m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [])
9666m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [])
9667m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [])
9668m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [])
9669m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [])
9670m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [])
9671m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [])
9672m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [])
9673m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [])
9674m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [])
9675m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [])
9676m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [])
9677m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [])
9678m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [])
9679m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [])
9680m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [])
9681m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [])
9682m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [])
9683m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [])
9684m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [])
9685m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [])
9686m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [])
9687m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [])
9688m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [])
9689m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [])
9690m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [])
9691m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [])
9692m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [])
9693m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [])
9694m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [])
9695m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [])
9696m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [])
9697m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [])
9698m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [])
9699m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [])
9700m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [])
9701m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [])
9702m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [])
9703m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [])
9704m4trace:configure.in:43: -1- _LT_AC_TAGCONFIG
9705m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
9706You should run autoupdate.], [autoconf/general.m4:219: AC_HELP_STRING is expanded from...
9707autoconf/general.m4:1331: AC_ARG_WITH is expanded from...
9708/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
9709/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
9710configure.in:43: AC_LIBTOOL_SETUP is required by...
9711/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
9712configure.in:43: _AC_PROG_LIBTOOL is required by...
9713/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
9714configure.in:43: the top level])
9715m4trace:configure.in:43: -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:1805: _LT_AC_TAGCONFIG is expanded from...
9716/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
9717configure.in:43: AC_LIBTOOL_SETUP is required by...
9718/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
9719configure.in:43: _AC_PROG_LIBTOOL is required by...
9720/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
9721configure.in:43: the top level])
9722m4trace:configure.in:43: -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:1805: _LT_AC_TAGCONFIG is expanded from...
9723/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
9724configure.in:43: AC_LIBTOOL_SETUP is required by...
9725/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
9726configure.in:43: _AC_PROG_LIBTOOL is required by...
9727/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
9728configure.in:43: the top level])
9729m4trace:configure.in:43: -1- AC_LIBTOOL_LANG_CXX_CONFIG
9730m4trace:configure.in:43: -1- _LT_AC_LANG_CXX_CONFIG([CXX])
9731m4trace:configure.in:43: -1- AC_PROG_CXX
9732m4trace:configure.in:43: -1- AC_SUBST([CXX])
9733m4trace:configure.in:43: -1- AC_SUBST([CXXFLAGS])
9734m4trace:configure.in:43: -1- AC_SUBST([LDFLAGS])
9735m4trace:configure.in:43: -1- AC_SUBST([CPPFLAGS])
9736m4trace:configure.in:43: -1- AC_SUBST([CXX])
9737m4trace:configure.in:43: -1- AC_SUBST([ac_ct_CXX])
9738m4trace:configure.in:43: -1- _AM_DEPENDENCIES([CXX])
9739m4trace:configure.in:43: -1- AC_SUBST([CXXDEPMODE], [depmode=$am_cv_CXX_dependencies_compiler_type])
9740m4trace:configure.in:43: -1- AM_CONDITIONAL([am__fastdepCXX], [
9741  test "x$enable_dependency_tracking" != xno \
9742  && test "$am_cv_CXX_dependencies_compiler_type" = gcc3])
9743m4trace:configure.in:43: -1- AC_SUBST([am__fastdepCXX_TRUE])
9744m4trace:configure.in:43: -1- AC_SUBST([am__fastdepCXX_FALSE])
9745m4trace:configure.in:43: -1- _LT_AC_PROG_CXXCPP
9746m4trace:configure.in:43: -1- AC_SUBST([CXXCPP])
9747m4trace:configure.in:43: -1- AC_SUBST([CPPFLAGS])
9748m4trace:configure.in:43: -1- AC_SUBST([CXXCPP])
9749m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9750m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9751m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
9752m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9753m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9754m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9755m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9756m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
9757m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9758m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
9759m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
9760m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
9761m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
9762m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
9763m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9764m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
9765m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9766m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
9767m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
9768m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
9769m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [CXX])
9770m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
9771m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
9772m4trace:configure.in:43: -1- _LT_AC_TAGVAR([objext], [CXX])
9773m4trace:configure.in:43: -1- _LT_AC_SYS_COMPILER
9774m4trace:configure.in:43: -1- _LT_COMPILER_BOILERPLATE
9775m4trace:configure.in:43: -1- _LT_LINKER_BOILERPLATE
9776m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [CXX])
9777m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
9778m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
9779m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
9780m4trace:configure.in:43: -1- AC_PROG_LD
9781m4trace:configure.in:43: -1- AC_PROG_LD_GNU
9782m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9783m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9784m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9785m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9786m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9787m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9788m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9789m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9790m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9791m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9792m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9793m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9794m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
9795m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9796m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9797m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
9798m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9799m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9800m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
9801m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9802m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
9803m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9804m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9805m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9806m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9807m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9808m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
9809m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9810m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
9811m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9812m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
9813m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9814m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9815m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9816m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9817m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9818m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9819m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
9820m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
9821m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9822m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9823m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9824m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9825m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9826m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9827m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9828m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9829m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9830m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
9831m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
9832m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9833m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
9834m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9835m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9836m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
9837m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9838m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9839m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
9840m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9841m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
9842m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9843m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
9844m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9845m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9846m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9847m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9848m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9849m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9850m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9851m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9852m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9853m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9854m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9855m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
9856m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9857m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9858m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9859m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9860m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9861m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
9862m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9863m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9864m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9865m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9866m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9867m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9868m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
9869m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9870m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
9871m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
9872m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9873m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
9874m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9875m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9876m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9877m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9878m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9879m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9880m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9881m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9882m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9883m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9884m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
9885m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9886m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9887m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9888m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9889m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9890m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9891m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9892m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9893m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9894m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9895m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9896m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9897m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9898m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9899m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9900m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9901m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9902m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9903m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9904m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9905m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9906m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9907m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9908m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9909m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9910m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9911m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9912m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9913m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9914m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9915m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9916m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
9917m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9918m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
9919m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
9920m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9921m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9922m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9923m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
9924m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9925m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9926m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9927m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9928m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9929m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9930m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9931m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9932m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9933m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9934m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9935m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9936m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9937m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9938m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9939m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9940m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9941m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9942m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9943m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9944m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9945m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9946m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9947m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9948m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9949m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
9950m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9951m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9952m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
9953m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9954m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9955m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9956m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9957m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9958m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9959m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9960m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9961m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9962m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
9963m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9964m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9965m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9966m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
9967m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
9968m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
9969m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9970m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9971m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
9972m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
9973m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9974m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9975m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
9976m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
9977m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
9978m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
9979m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9980m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9981m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9982m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9983m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9984m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9985m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
9986m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [CXX])
9987m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [CXX])
9988m4trace:configure.in:43: -1- AC_LIBTOOL_POSTDEP_PREDEP([CXX])
9989m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
9990m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
9991m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
9992m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
9993m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
9994m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
9995m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
9996m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
9997m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
9998m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
9999m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
10000m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
10001m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
10002m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
10003m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
10004m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
10005m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
10006m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
10007m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10008m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_COMPILER_PIC([CXX])
10009m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10010m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10011m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10012m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10013m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10014m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10015m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10016m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10017m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10018m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10019m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10020m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10021m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10022m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10023m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10024m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10025m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10026m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10027m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10028m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10029m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10030m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10031m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10032m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10033m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10034m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10035m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10036m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10037m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10038m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10039m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10040m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10041m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10042m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10043m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10044m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10045m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10046m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10047m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10048m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10049m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10050m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10051m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10052m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10053m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10054m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10055m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10056m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10057m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10058m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10059m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10060m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10061m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX])
10062m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10063m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10064m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10065m4trace:configure.in:43: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [CXX])
10066m4trace:configure.in:43: -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
10067     "" | " "*) ;;
10068     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)" ;;
10069     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, CXX)=
10070     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, CXX)=no])
10071m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10072m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10073m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10074m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10075m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10076m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10077m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10078m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [CXX])
10079m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10080m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10081m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10082m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_CC_C_O([CXX])
10083m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10084m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10085m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10086m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10087m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10088m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([CXX])
10089m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10090m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_SHLIBS([CXX])
10091m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10092m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10093m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10094m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10095m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10096m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10097m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
10098m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
10099m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [CXX])
10100m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10101m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10102m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
10103m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10104m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
10105m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
10106m4trace:configure.in:43: -2- _LT_AC_TAGVAR([archive_cmds], [CXX])
10107m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10108m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10109m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
10110m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10111m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10112m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([CXX])
10113m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([CXX])
10114m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10115m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
10116m4trace:configure.in:43: -1- _LT_AC_TAGVAR([runpath_var], [CXX])
10117m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
10118m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
10119m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
10120m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10121m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10122m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10123m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10124m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10125m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10126m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_LIB_STRIP
10127m4trace:configure.in:43: -1- AC_LIBTOOL_DLOPEN_SELF([CXX])
10128m4trace:configure.in:43: -1- AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [
10129    lt_cv_dlopen="dyld"
10130    lt_cv_dlopen_libs=
10131    lt_cv_dlopen_self=yes
10132    ])
10133m4trace:configure.in:43: -1- AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen],
10134	      [lt_cv_dlopen="dlopen"],
10135	  [AC_CHECK_LIB([dl], [dlopen],
10136		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
10137	    [AC_CHECK_LIB([svld], [dlopen],
10138		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
10139	      [AC_CHECK_LIB([dld], [dld_link],
10140		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
10141	      ])
10142	    ])
10143	  ])
10144	])
10145m4trace:configure.in:43: -1- AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen],
10146		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
10147	      [AC_CHECK_LIB([dld], [dld_link],
10148		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
10149	      ])
10150	    ])
10151m4trace:configure.in:43: -1- AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link],
10152		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
10153	      ])
10154m4trace:configure.in:43: -1- AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
10155m4trace:configure.in:43: -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])
10156m4trace:configure.in:43: -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])
10157m4trace:configure.in:43: -1- AC_LIBTOOL_CONFIG([CXX])
10158m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [CXX])
10159m4trace:configure.in:43: -1- _LT_AC_TAGVAR([CC], [CXX])
10160m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [CXX])
10161m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10162m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10163m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10164m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
10165m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
10166m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX])
10167m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
10168m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
10169m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
10170m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
10171m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
10172m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
10173m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [CXX])
10174m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
10175m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
10176m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
10177m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
10178m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postinstall_cmds], [CXX])
10179m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postuninstall_cmds], [CXX])
10180m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
10181m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
10182m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
10183m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10184m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
10185m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
10186m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
10187m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
10188m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
10189m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
10190m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10191m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
10192m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [CXX])
10193m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
10194m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
10195m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
10196m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
10197m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
10198m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
10199m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
10200m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10201m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [CXX])
10202m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [CXX])
10203m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [CXX])
10204m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [CXX])
10205m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [CXX])
10206m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [CXX])
10207m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [CXX])
10208m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [CXX])
10209m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [CXX])
10210m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [CXX])
10211m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [CXX])
10212m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [CXX])
10213m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [CXX])
10214m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [CXX])
10215m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [CXX])
10216m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [CXX])
10217m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [CXX])
10218m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [CXX])
10219m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [CXX])
10220m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [CXX])
10221m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [CXX])
10222m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [CXX])
10223m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [CXX])
10224m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [CXX])
10225m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [CXX])
10226m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [CXX])
10227m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [CXX])
10228m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [CXX])
10229m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [CXX])
10230m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [CXX])
10231m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [CXX])
10232m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [CXX])
10233m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [CXX])
10234m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [CXX])
10235m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [CXX])
10236m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [CXX])
10237m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [CXX])
10238m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [CXX])
10239m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [CXX])
10240m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [CXX])
10241m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [CXX])
10242m4trace:configure.in:43: -1- AC_LIBTOOL_LANG_F77_CONFIG
10243m4trace:configure.in:43: -1- _LT_AC_LANG_F77_CONFIG([F77])
10244m4trace:configure.in:43: -1- AC_SUBST([F77])
10245m4trace:configure.in:43: -1- AC_SUBST([FFLAGS])
10246m4trace:configure.in:43: -1- AC_SUBST([LDFLAGS])
10247m4trace:configure.in:43: -1- AC_SUBST([F77])
10248m4trace:configure.in:43: -1- AC_SUBST([ac_ct_F77])
10249m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10250m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10251m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10252m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10253m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10254m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10255m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10256m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
10257m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10258m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10259m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
10260m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10261m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10262m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10263m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
10264m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10265m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10266m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
10267m4trace:configure.in:43: -1- _LT_AC_TAGVAR([objext], [F77])
10268m4trace:configure.in:43: -1- _LT_AC_SYS_COMPILER
10269m4trace:configure.in:43: -1- _LT_COMPILER_BOILERPLATE
10270m4trace:configure.in:43: -1- _LT_LINKER_BOILERPLATE
10271m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [F77])
10272m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
10273m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10274m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [F77])
10275m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [F77])
10276m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_COMPILER_PIC([F77])
10277m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10278m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10279m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10280m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10281m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10282m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10283m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10284m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10285m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10286m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
10287m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10288m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10289m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10290m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10291m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10292m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10293m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10294m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10295m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10296m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10297m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10298m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10299m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10300m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10301m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10302m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10303m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10304m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10305m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10306m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10307m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10308m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10309m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10310m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10311m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10312m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10313m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10314m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10315m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10316m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10317m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10318m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10319m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10320m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10321m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10322m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10323m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10324m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10325m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10326m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10327m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10328m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
10329m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10330m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10331m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
10332m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10333m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10334m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10335m4trace:configure.in:43: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [F77])
10336m4trace:configure.in:43: -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
10337     "" | " "*) ;;
10338     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)" ;;
10339     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, F77)=
10340     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, F77)=no])
10341m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10342m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10343m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10344m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10345m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10346m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10347m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10348m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [F77])
10349m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10350m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10351m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10352m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_CC_C_O([F77])
10353m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10354m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10355m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10356m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10357m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10358m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([F77])
10359m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10360m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_SHLIBS([F77])
10361m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10362m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
10363m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10364m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10365m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
10366m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
10367m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10368m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10369m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
10370m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10371m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
10372m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10373m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10374m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10375m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10376m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10377m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
10378m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10379m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10380m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10381m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10382m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
10383m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
10384m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
10385m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10386m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10387m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10388m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10389m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10390m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10391m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10392m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10393m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10394m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10395m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10396m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10397m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10398m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10399m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10400m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10401m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
10402m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10403m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10404m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10405m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10406m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10407m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10408m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10409m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10410m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10411m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10412m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10413m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10414m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10415m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10416m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10417m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10418m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10419m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10420m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10421m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10422m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10423m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10424m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10425m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10426m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10427m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10428m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10429m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10430m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10431m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10432m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10433m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10434m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10435m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10436m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10437m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10438m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10439m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10440m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10441m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10442m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10443m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10444m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10445m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10446m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
10447m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10448m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10449m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10450m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10451m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10452m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
10453m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10454m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10455m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10456m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10457m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10458m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10459m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10460m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10461m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10462m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10463m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10464m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10465m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10466m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10467m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10468m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
10469m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
10470m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77])
10471m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
10472m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10473m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10474m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10475m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10476m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10477m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10478m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
10479m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10480m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10481m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10482m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10483m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10484m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10485m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10486m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10487m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10488m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10489m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10490m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10491m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10492m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10493m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10494m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10495m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10496m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10497m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10498m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10499m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10500m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10501m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10502m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10503m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10504m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10505m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10506m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10507m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10508m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10509m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10510m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10511m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10512m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10513m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10514m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10515m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10516m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10517m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10518m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10519m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
10520m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10521m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10522m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10523m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10524m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10525m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10526m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10527m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10528m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10529m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10530m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10531m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10532m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10533m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10534m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
10535m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10536m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10537m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10538m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10539m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10540m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10541m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10542m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10543m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10544m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10545m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10546m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10547m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10548m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10549m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10550m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10551m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10552m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10553m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10554m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10555m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10556m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10557m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10558m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10559m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10560m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10561m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10562m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [F77])
10563m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10564m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10565m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10566m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10567m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10568m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10569m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10570m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10571m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10572m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10573m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10574m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10575m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10576m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10577m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10578m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10579m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10580m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10581m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10582m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10583m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10584m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10585m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10586m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10587m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10588m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10589m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10590m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10591m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10592m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10593m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10594m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10595m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10596m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10597m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10598m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10599m4trace:configure.in:43: -1- _LT_AC_TAGVAR([reload_cmds], [F77])
10600m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10601m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10602m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10603m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10604m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10605m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10606m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10607m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10608m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10609m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10610m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10611m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10612m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10613m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10614m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10615m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10616m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10617m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10618m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10619m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10620m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10621m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10622m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10623m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10624m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10625m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10626m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10627m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10628m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10629m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [F77])
10630m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10631m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10632m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10633m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10634m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10635m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10636m4trace:configure.in:43: -2- _LT_AC_TAGVAR([archive_cmds], [F77])
10637m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10638m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10639m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10640m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10641m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10642m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([F77])
10643m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([F77])
10644m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10645m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10646m4trace:configure.in:43: -1- _LT_AC_TAGVAR([runpath_var], [F77])
10647m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
10648m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10649m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10650m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10651m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10652m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10653m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10654m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10655m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10656m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_LIB_STRIP
10657m4trace:configure.in:43: -1- AC_LIBTOOL_CONFIG([F77])
10658m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [F77])
10659m4trace:configure.in:43: -1- _LT_AC_TAGVAR([CC], [F77])
10660m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [F77])
10661m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10662m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10663m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10664m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77])
10665m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10666m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
10667m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10668m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
10669m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
10670m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
10671m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [F77])
10672m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [F77])
10673m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [F77])
10674m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [F77])
10675m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77])
10676m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10677m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10678m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postinstall_cmds], [F77])
10679m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postuninstall_cmds], [F77])
10680m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
10681m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10682m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10683m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10684m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10685m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
10686m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10687m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
10688m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10689m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10690m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10691m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
10692m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
10693m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
10694m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
10695m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10696m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10697m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10698m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10699m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
10700m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10701m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [F77])
10702m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [F77])
10703m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [F77])
10704m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [F77])
10705m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [F77])
10706m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [F77])
10707m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [F77])
10708m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [F77])
10709m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [F77])
10710m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [F77])
10711m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [F77])
10712m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [F77])
10713m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [F77])
10714m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [F77])
10715m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [F77])
10716m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [F77])
10717m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [F77])
10718m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [F77])
10719m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [F77])
10720m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [F77])
10721m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [F77])
10722m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [F77])
10723m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [F77])
10724m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [F77])
10725m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [F77])
10726m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [F77])
10727m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [F77])
10728m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [F77])
10729m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [F77])
10730m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [F77])
10731m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [F77])
10732m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [F77])
10733m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [F77])
10734m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [F77])
10735m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [F77])
10736m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [F77])
10737m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [F77])
10738m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [F77])
10739m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [F77])
10740m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [F77])
10741m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [F77])
10742m4trace:configure.in:43: -1- AC_LIBTOOL_LANG_GCJ_CONFIG
10743m4trace:configure.in:43: -1- _LT_AC_LANG_GCJ_CONFIG([GCJ])
10744m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
10745You should run autoupdate.], [autoconf/lang.m4:166: AC_LANG_SAVE is expanded from...
10746/usr/share/aclocal/libtool.m4:3931: _LT_AC_LANG_GCJ_CONFIG is expanded from...
10747/usr/share/aclocal/libtool.m4:3877: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
10748/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
10749/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
10750configure.in:43: AC_LIBTOOL_SETUP is required by...
10751/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
10752configure.in:43: _AC_PROG_LIBTOOL is required by...
10753/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
10754configure.in:43: the top level])
10755m4trace:configure.in:43: -1- _m4_warn([obsolete], [instead of using `AC_LANG', `AC_LANG_SAVE',
10756and `AC_LANG_RESTORE', you should use `AC_LANG_PUSH' and `AC_LANG_POP'.], [autoconf/lang.m4:166: AC_LANG_SAVE is expanded from...
10757/usr/share/aclocal/libtool.m4:3931: _LT_AC_LANG_GCJ_CONFIG is expanded from...
10758/usr/share/aclocal/libtool.m4:3877: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
10759/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
10760/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
10761configure.in:43: AC_LIBTOOL_SETUP is required by...
10762/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
10763configure.in:43: _AC_PROG_LIBTOOL is required by...
10764/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
10765configure.in:43: the top level])
10766m4trace:configure.in:43: -1- _LT_AC_TAGVAR([objext], [GCJ])
10767m4trace:configure.in:43: -1- _LT_AC_SYS_COMPILER
10768m4trace:configure.in:43: -1- _LT_COMPILER_BOILERPLATE
10769m4trace:configure.in:43: -1- _LT_LINKER_BOILERPLATE
10770m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [GCJ])
10771m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
10772m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
10773m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
10774m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_COMPILER_NO_RTTI([GCJ])
10775m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
10776m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
10777m4trace:configure.in:43: -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"])
10778m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
10779m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
10780m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_COMPILER_PIC([GCJ])
10781m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10782m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10783m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10784m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10785m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10786m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10787m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10788m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10789m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10790m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
10791m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10792m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10793m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10794m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10795m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10796m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10797m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10798m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10799m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10800m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10801m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10802m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10803m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10804m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10805m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10806m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10807m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10808m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10809m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10810m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10811m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10812m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10813m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10814m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10815m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10816m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10817m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10818m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10819m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10820m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10821m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10822m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10823m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10824m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10825m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10826m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10827m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10828m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10829m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10830m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10831m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
10832m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
10833m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10834m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
10835m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
10836m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10837m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10838m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10839m4trace:configure.in:43: -2- _LT_AC_TAGVAR([lt_prog_compiler_pic_works], [GCJ])
10840m4trace:configure.in:43: -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
10841     "" | " "*) ;;
10842     *) _LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=" $_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)" ;;
10843     esac], [_LT_AC_TAGVAR(lt_prog_compiler_pic, GCJ)=
10844     _LT_AC_TAGVAR(lt_prog_compiler_can_build_shared, GCJ)=no])
10845m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10846m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10847m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10848m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10849m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10850m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10851m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10852m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_can_build_shared], [GCJ])
10853m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10854m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10855m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
10856m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_CC_C_O([GCJ])
10857m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
10858m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
10859m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
10860m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
10861m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
10862m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_HARD_LINK_LOCKS([GCJ])
10863m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
10864m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_SHLIBS([GCJ])
10865m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10866m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
10867m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10868m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10869m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
10870m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
10871m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
10872m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10873m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
10874m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10875m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
10876m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
10877m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10878m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
10879m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
10880m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
10881m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
10882m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
10883m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
10884m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
10885m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
10886m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
10887m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
10888m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
10889m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10890m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10891m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
10892m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10893m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10894m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10895m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10896m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10897m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
10898m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10899m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10900m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10901m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10902m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10903m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10904m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
10905m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
10906m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
10907m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10908m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10909m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10910m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10911m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10912m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10913m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10914m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10915m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10916m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10917m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10918m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10919m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10920m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10921m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10922m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10923m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10924m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
10925m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10926m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10927m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10928m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10929m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10930m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
10931m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10932m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10933m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
10934m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10935m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
10936m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10937m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
10938m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
10939m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10940m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10941m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
10942m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
10943m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10944m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10945m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
10946m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10947m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
10948m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
10949m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10950m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
10951m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10952m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10953m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10954m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10955m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10956m4trace:configure.in:43: -1- _LT_AC_SYS_LIBPATH_AIX
10957m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10958m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
10959m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10960m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
10961m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10962m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
10963m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10964m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10965m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10966m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
10967m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10968m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
10969m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10970m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10971m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10972m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
10973m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
10974m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ])
10975m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
10976m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10977m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10978m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10979m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
10980m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
10981m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
10982m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
10983m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
10984m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
10985m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
10986m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10987m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
10988m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10989m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
10990m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10991m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
10992m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
10993m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
10994m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10995m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
10996m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
10997m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
10998m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
10999m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11000m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11001m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11002m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11003m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11004m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11005m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11006m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11007m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11008m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11009m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11010m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11011m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11012m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11013m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11014m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11015m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11016m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11017m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11018m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11019m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11020m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11021m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11022m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11023m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
11024m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11025m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11026m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11027m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11028m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11029m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11030m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11031m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11032m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11033m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11034m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11035m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11036m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11037m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11038m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
11039m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11040m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11041m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
11042m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11043m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11044m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11045m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11046m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11047m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11048m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11049m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11050m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11051m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11052m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11053m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11054m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11055m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11056m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11057m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11058m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11059m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11060m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11061m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11062m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11063m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11064m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11065m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11066m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_From_new_cmds], [GCJ])
11067m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11068m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11069m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11070m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11071m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11072m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11073m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11074m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11075m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11076m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11077m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11078m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11079m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11080m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11081m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11082m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11083m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11084m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
11085m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11086m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11087m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11088m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11089m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11090m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11091m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
11092m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
11093m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
11094m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11095m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11096m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11097m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11098m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11099m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11100m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11101m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11102m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11103m4trace:configure.in:43: -1- _LT_AC_TAGVAR([reload_cmds], [GCJ])
11104m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11105m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11106m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11107m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11108m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11109m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11110m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11111m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11112m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11113m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
11114m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11115m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11116m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11117m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11118m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
11119m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11120m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11121m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11122m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
11123m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11124m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11125m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11126m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11127m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11128m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11129m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11130m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
11131m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
11132m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
11133m4trace:configure.in:43: -1- _LT_AC_TAGVAR([ld_shlibs], [GCJ])
11134m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11135m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11136m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11137m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
11138m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11139m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11140m4trace:configure.in:43: -2- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11141m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11142m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11143m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11144m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11145m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11146m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_DYNAMIC_LINKER([GCJ])
11147m4trace:configure.in:43: -1- AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH([GCJ])
11148m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11149m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11150m4trace:configure.in:43: -1- _LT_AC_TAGVAR([runpath_var], [GCJ])
11151m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
11152m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11153m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11154m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11155m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11156m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11157m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11158m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11159m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11160m4trace:configure.in:43: -1- AC_LIBTOOL_SYS_LIB_STRIP
11161m4trace:configure.in:43: -1- AC_LIBTOOL_DLOPEN_SELF([GCJ])
11162m4trace:configure.in:43: -1- AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [
11163    lt_cv_dlopen="dyld"
11164    lt_cv_dlopen_libs=
11165    lt_cv_dlopen_self=yes
11166    ])
11167m4trace:configure.in:43: -1- AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-dld"], [AC_CHECK_FUNC([dlopen],
11168	      [lt_cv_dlopen="dlopen"],
11169	  [AC_CHECK_LIB([dl], [dlopen],
11170		[lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
11171	    [AC_CHECK_LIB([svld], [dlopen],
11172		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
11173	      [AC_CHECK_LIB([dld], [dld_link],
11174		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
11175	      ])
11176	    ])
11177	  ])
11178	])
11179m4trace:configure.in:43: -1- AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen],
11180		  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
11181	      [AC_CHECK_LIB([dld], [dld_link],
11182		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
11183	      ])
11184	    ])
11185m4trace:configure.in:43: -1- AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link],
11186		    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
11187	      ])
11188m4trace:configure.in:43: -1- AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-dld"])
11189m4trace:configure.in:43: -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])
11190m4trace:configure.in:43: -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])
11191m4trace:configure.in:43: -1- AC_LIBTOOL_CONFIG([GCJ])
11192m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [GCJ])
11193m4trace:configure.in:43: -1- _LT_AC_TAGVAR([CC], [GCJ])
11194m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [GCJ])
11195m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
11196m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
11197m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
11198m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
11199m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11200m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
11201m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
11202m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
11203m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
11204m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
11205m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [GCJ])
11206m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ])
11207m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [GCJ])
11208m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [GCJ])
11209m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ])
11210m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11211m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11212m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postinstall_cmds], [GCJ])
11213m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postuninstall_cmds], [GCJ])
11214m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
11215m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11216m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
11217m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
11218m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11219m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
11220m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11221m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
11222m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
11223m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
11224m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
11225m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
11226m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
11227m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
11228m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
11229m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11230m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11231m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
11232m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
11233m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
11234m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
11235m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [GCJ])
11236m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [GCJ])
11237m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [GCJ])
11238m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [GCJ])
11239m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [GCJ])
11240m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [GCJ])
11241m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [GCJ])
11242m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [GCJ])
11243m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [GCJ])
11244m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [GCJ])
11245m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [GCJ])
11246m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [GCJ])
11247m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [GCJ])
11248m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [GCJ])
11249m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [GCJ])
11250m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [GCJ])
11251m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [GCJ])
11252m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [GCJ])
11253m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [GCJ])
11254m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [GCJ])
11255m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [GCJ])
11256m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [GCJ])
11257m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [GCJ])
11258m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [GCJ])
11259m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [GCJ])
11260m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [GCJ])
11261m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [GCJ])
11262m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [GCJ])
11263m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [GCJ])
11264m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [GCJ])
11265m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [GCJ])
11266m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [GCJ])
11267m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [GCJ])
11268m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [GCJ])
11269m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [GCJ])
11270m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [GCJ])
11271m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [GCJ])
11272m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [GCJ])
11273m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [GCJ])
11274m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [GCJ])
11275m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [GCJ])
11276m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
11277You should run autoupdate.], [autoconf/lang.m4:172: AC_LANG_RESTORE is expanded from...
11278/usr/share/aclocal/libtool.m4:3931: _LT_AC_LANG_GCJ_CONFIG is expanded from...
11279/usr/share/aclocal/libtool.m4:3877: AC_LIBTOOL_LANG_GCJ_CONFIG is expanded from...
11280/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
11281/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
11282configure.in:43: AC_LIBTOOL_SETUP is required by...
11283/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
11284configure.in:43: _AC_PROG_LIBTOOL is required by...
11285/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
11286configure.in:43: the top level])
11287m4trace:configure.in:43: -1- AC_LIBTOOL_LANG_RC_CONFIG
11288m4trace:configure.in:43: -1- _LT_AC_LANG_RC_CONFIG([RC])
11289m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_LANG_SAVE' is obsolete.
11290You should run autoupdate.], [autoconf/lang.m4:166: AC_LANG_SAVE is expanded from...
11291/usr/share/aclocal/libtool.m4:3975: _LT_AC_LANG_RC_CONFIG is expanded from...
11292/usr/share/aclocal/libtool.m4:3939: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
11293/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
11294/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
11295configure.in:43: AC_LIBTOOL_SETUP is required by...
11296/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
11297configure.in:43: _AC_PROG_LIBTOOL is required by...
11298/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
11299configure.in:43: the top level])
11300m4trace:configure.in:43: -1- _m4_warn([obsolete], [instead of using `AC_LANG', `AC_LANG_SAVE',
11301and `AC_LANG_RESTORE', you should use `AC_LANG_PUSH' and `AC_LANG_POP'.], [autoconf/lang.m4:166: AC_LANG_SAVE is expanded from...
11302/usr/share/aclocal/libtool.m4:3975: _LT_AC_LANG_RC_CONFIG is expanded from...
11303/usr/share/aclocal/libtool.m4:3939: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
11304/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
11305/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
11306configure.in:43: AC_LIBTOOL_SETUP is required by...
11307/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
11308configure.in:43: _AC_PROG_LIBTOOL is required by...
11309/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
11310configure.in:43: the top level])
11311m4trace:configure.in:43: -1- _LT_AC_TAGVAR([objext], [RC])
11312m4trace:configure.in:43: -1- _LT_AC_SYS_COMPILER
11313m4trace:configure.in:43: -1- _LT_COMPILER_BOILERPLATE
11314m4trace:configure.in:43: -1- _LT_LINKER_BOILERPLATE
11315m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [RC])
11316m4trace:configure.in:43: -1- _LT_CC_BASENAME([$compiler])
11317m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
11318m4trace:configure.in:43: -1- AC_LIBTOOL_CONFIG([RC])
11319m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [RC])
11320m4trace:configure.in:43: -1- _LT_AC_TAGVAR([CC], [RC])
11321m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [RC])
11322m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC])
11323m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC])
11324m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC])
11325m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC])
11326m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC])
11327m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC])
11328m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC])
11329m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC])
11330m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
11331m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
11332m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [RC])
11333m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [RC])
11334m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [RC])
11335m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [RC])
11336m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC])
11337m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
11338m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
11339m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postinstall_cmds], [RC])
11340m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postuninstall_cmds], [RC])
11341m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
11342m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC])
11343m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC])
11344m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
11345m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC])
11346m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC])
11347m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC])
11348m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC])
11349m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [RC])
11350m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
11351m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
11352m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC])
11353m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [RC])
11354m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
11355m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
11356m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
11357m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
11358m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [RC])
11359m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
11360m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
11361m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
11362m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds_need_lc], [RC])
11363m4trace:configure.in:43: -1- _LT_AC_TAGVAR([enable_shared_with_static_runtimes], [RC])
11364m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler], [RC])
11365m4trace:configure.in:43: -1- _LT_AC_TAGVAR([GCC], [RC])
11366m4trace:configure.in:43: -1- _LT_AC_TAGVAR([LD], [RC])
11367m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_wl], [RC])
11368m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_pic], [RC])
11369m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_cv_prog_compiler_c_o], [RC])
11370m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_static], [RC])
11371m4trace:configure.in:43: -1- _LT_AC_TAGVAR([lt_prog_compiler_no_builtin_flag], [RC])
11372m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_dynamic_flag_spec], [RC])
11373m4trace:configure.in:43: -1- _LT_AC_TAGVAR([whole_archive_flag_spec], [RC])
11374m4trace:configure.in:43: -1- _LT_AC_TAGVAR([thread_safe_flag_spec], [RC])
11375m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_cmds], [RC])
11376m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_new_cmds], [RC])
11377m4trace:configure.in:43: -1- _LT_AC_TAGVAR([old_archive_from_expsyms_cmds], [RC])
11378m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_cmds], [RC])
11379m4trace:configure.in:43: -1- _LT_AC_TAGVAR([archive_expsym_cmds], [RC])
11380m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_cmds], [RC])
11381m4trace:configure.in:43: -1- _LT_AC_TAGVAR([module_expsym_cmds], [RC])
11382m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predep_objects], [RC])
11383m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdep_objects], [RC])
11384m4trace:configure.in:43: -1- _LT_AC_TAGVAR([predeps], [RC])
11385m4trace:configure.in:43: -1- _LT_AC_TAGVAR([postdeps], [RC])
11386m4trace:configure.in:43: -1- _LT_AC_TAGVAR([compiler_lib_search_path], [RC])
11387m4trace:configure.in:43: -1- _LT_AC_TAGVAR([allow_undefined_flag], [RC])
11388m4trace:configure.in:43: -1- _LT_AC_TAGVAR([no_undefined_flag], [RC])
11389m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_action], [RC])
11390m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec], [RC])
11391m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_flag_spec_ld], [RC])
11392m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_libdir_separator], [RC])
11393m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_direct], [RC])
11394m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_minus_L], [RC])
11395m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_shlibpath_var], [RC])
11396m4trace:configure.in:43: -1- _LT_AC_TAGVAR([hardcode_automatic], [RC])
11397m4trace:configure.in:43: -1- _LT_AC_TAGVAR([link_all_deplibs], [RC])
11398m4trace:configure.in:43: -1- _LT_AC_TAGVAR([fix_srcfile_path], [RC])
11399m4trace:configure.in:43: -1- _LT_AC_TAGVAR([always_export_symbols], [RC])
11400m4trace:configure.in:43: -1- _LT_AC_TAGVAR([export_symbols_cmds], [RC])
11401m4trace:configure.in:43: -1- _LT_AC_TAGVAR([exclude_expsyms], [RC])
11402m4trace:configure.in:43: -1- _LT_AC_TAGVAR([include_expsyms], [RC])
11403m4trace:configure.in:43: -1- _m4_warn([obsolete], [The macro `AC_LANG_RESTORE' is obsolete.
11404You should run autoupdate.], [autoconf/lang.m4:172: AC_LANG_RESTORE is expanded from...
11405/usr/share/aclocal/libtool.m4:3975: _LT_AC_LANG_RC_CONFIG is expanded from...
11406/usr/share/aclocal/libtool.m4:3939: AC_LIBTOOL_LANG_RC_CONFIG is expanded from...
11407/usr/share/aclocal/libtool.m4:1805: _LT_AC_TAGCONFIG is expanded from...
11408/usr/share/aclocal/libtool.m4:219: AC_LIBTOOL_SETUP is expanded from...
11409configure.in:43: AC_LIBTOOL_SETUP is required by...
11410/usr/share/aclocal/libtool.m4:75: _AC_PROG_LIBTOOL is expanded from...
11411configure.in:43: _AC_PROG_LIBTOOL is required by...
11412/usr/share/aclocal/libtool.m4:55: AC_PROG_LIBTOOL is expanded from...
11413configure.in:43: the top level])
11414m4trace:configure.in:43: -1- AC_SUBST([LIBTOOL])
11415m4trace:configure.in:43: -1- AC_LIBTOOL_CXX
11416m4trace:configure.in:43: -1- _LT_AC_LANG_CXX
11417m4trace:configure.in:43: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}CXX])
11418m4trace:configure.in:43: -1- AC_LIBTOOL_F77
11419m4trace:configure.in:43: -1- _LT_AC_LANG_F77
11420m4trace:configure.in:43: -1- _LT_AC_SHELL_INIT([tagnames=${tagnames+${tagnames},}F77])
11421m4trace:configure.in:46: -1- AC_HEADER_DIRENT
11422m4trace:configure.in:46: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR\'.
11423   */
11424#undef HAVE_DIRENT_H])
11425m4trace:configure.in:46: -1- AH_OUTPUT([HAVE_SYS_NDIR_H], [/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR\'.
11426   */
11427#undef HAVE_SYS_NDIR_H])
11428m4trace:configure.in:46: -1- AH_OUTPUT([HAVE_SYS_DIR_H], [/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR\'.
11429   */
11430#undef HAVE_SYS_DIR_H])
11431m4trace:configure.in:46: -1- AH_OUTPUT([HAVE_NDIR_H], [/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR\'. */
11432#undef HAVE_NDIR_H])
11433m4trace:configure.in:47: -1- AC_HEADER_STDC
11434m4trace:configure.in:47: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
11435m4trace:configure.in:47: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
11436#undef STDC_HEADERS])
11437m4trace:configure.in:48: -1- AC_CHECK_HEADERS([fcntl.h unistd.h ctype.h dirent.h errno.h malloc.h])
11438m4trace:configure.in:48: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
11439#undef HAVE_FCNTL_H])
11440m4trace:configure.in:48: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
11441#undef HAVE_UNISTD_H])
11442m4trace:configure.in:48: -1- AH_OUTPUT([HAVE_CTYPE_H], [/* Define to 1 if you have the <ctype.h> header file. */
11443#undef HAVE_CTYPE_H])
11444m4trace:configure.in:48: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file. */
11445#undef HAVE_DIRENT_H])
11446m4trace:configure.in:48: -1- AH_OUTPUT([HAVE_ERRNO_H], [/* Define to 1 if you have the <errno.h> header file. */
11447#undef HAVE_ERRNO_H])
11448m4trace:configure.in:48: -1- AH_OUTPUT([HAVE_MALLOC_H], [/* Define to 1 if you have the <malloc.h> header file. */
11449#undef HAVE_MALLOC_H])
11450m4trace:configure.in:49: -1- AC_CHECK_HEADERS([stdarg.h sys/stat.h sys/types.h time.h])
11451m4trace:configure.in:49: -1- AH_OUTPUT([HAVE_STDARG_H], [/* Define to 1 if you have the <stdarg.h> header file. */
11452#undef HAVE_STDARG_H])
11453m4trace:configure.in:49: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
11454#undef HAVE_SYS_STAT_H])
11455m4trace:configure.in:49: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
11456#undef HAVE_SYS_TYPES_H])
11457m4trace:configure.in:49: -1- AH_OUTPUT([HAVE_TIME_H], [/* Define to 1 if you have the <time.h> header file. */
11458#undef HAVE_TIME_H])
11459m4trace:configure.in:50: -1- AC_CHECK_HEADERS([ieeefp.h nan.h math.h fp_class.h float.h])
11460m4trace:configure.in:50: -1- AH_OUTPUT([HAVE_IEEEFP_H], [/* Define to 1 if you have the <ieeefp.h> header file. */
11461#undef HAVE_IEEEFP_H])
11462m4trace:configure.in:50: -1- AH_OUTPUT([HAVE_NAN_H], [/* Define to 1 if you have the <nan.h> header file. */
11463#undef HAVE_NAN_H])
11464m4trace:configure.in:50: -1- AH_OUTPUT([HAVE_MATH_H], [/* Define to 1 if you have the <math.h> header file. */
11465#undef HAVE_MATH_H])
11466m4trace:configure.in:50: -1- AH_OUTPUT([HAVE_FP_CLASS_H], [/* Define to 1 if you have the <fp_class.h> header file. */
11467#undef HAVE_FP_CLASS_H])
11468m4trace:configure.in:50: -1- AH_OUTPUT([HAVE_FLOAT_H], [/* Define to 1 if you have the <float.h> header file. */
11469#undef HAVE_FLOAT_H])
11470m4trace:configure.in:51: -1- AC_CHECK_HEADERS([stdlib.h sys/socket.h netinet/in.h arpa/inet.h])
11471m4trace:configure.in:51: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
11472#undef HAVE_STDLIB_H])
11473m4trace:configure.in:51: -1- AH_OUTPUT([HAVE_SYS_SOCKET_H], [/* Define to 1 if you have the <sys/socket.h> header file. */
11474#undef HAVE_SYS_SOCKET_H])
11475m4trace:configure.in:51: -1- AH_OUTPUT([HAVE_NETINET_IN_H], [/* Define to 1 if you have the <netinet/in.h> header file. */
11476#undef HAVE_NETINET_IN_H])
11477m4trace:configure.in:51: -1- AH_OUTPUT([HAVE_ARPA_INET_H], [/* Define to 1 if you have the <arpa/inet.h> header file. */
11478#undef HAVE_ARPA_INET_H])
11479m4trace:configure.in:52: -1- AC_CHECK_HEADERS([netdb.h sys/time.h sys/select.h sys/mman.h])
11480m4trace:configure.in:52: -1- AH_OUTPUT([HAVE_NETDB_H], [/* Define to 1 if you have the <netdb.h> header file. */
11481#undef HAVE_NETDB_H])
11482m4trace:configure.in:52: -1- AH_OUTPUT([HAVE_SYS_TIME_H], [/* Define to 1 if you have the <sys/time.h> header file. */
11483#undef HAVE_SYS_TIME_H])
11484m4trace:configure.in:52: -1- AH_OUTPUT([HAVE_SYS_SELECT_H], [/* Define to 1 if you have the <sys/select.h> header file. */
11485#undef HAVE_SYS_SELECT_H])
11486m4trace:configure.in:52: -1- AH_OUTPUT([HAVE_SYS_MMAN_H], [/* Define to 1 if you have the <sys/mman.h> header file. */
11487#undef HAVE_SYS_MMAN_H])
11488m4trace:configure.in:55: -1- AC_FUNC_STRFTIME
11489m4trace:configure.in:55: -1- AC_CHECK_FUNCS([strftime], [], [# strftime is in -lintl on SCO UNIX.
11490AC_CHECK_LIB(intl, strftime,
11491	     [AC_DEFINE(HAVE_STRFTIME)
11492LIBS="-lintl $LIBS"])])
11493m4trace:configure.in:55: -1- AH_OUTPUT([HAVE_STRFTIME], [/* Define to 1 if you have the `strftime\' function. */
11494#undef HAVE_STRFTIME])
11495m4trace:configure.in:55: -1- AC_CHECK_LIB([intl], [strftime], [AC_DEFINE(HAVE_STRFTIME)
11496LIBS="-lintl $LIBS"])
11497m4trace:configure.in:55: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STRFTIME])
11498m4trace:configure.in:56: -1- AC_CHECK_FUNCS([strdup strndup strerror snprintf])
11499m4trace:configure.in:56: -1- AH_OUTPUT([HAVE_STRDUP], [/* Define to 1 if you have the `strdup\' function. */
11500#undef HAVE_STRDUP])
11501m4trace:configure.in:56: -1- AH_OUTPUT([HAVE_STRNDUP], [/* Define to 1 if you have the `strndup\' function. */
11502#undef HAVE_STRNDUP])
11503m4trace:configure.in:56: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */
11504#undef HAVE_STRERROR])
11505m4trace:configure.in:56: -1- AH_OUTPUT([HAVE_SNPRINTF], [/* Define to 1 if you have the `snprintf\' function. */
11506#undef HAVE_SNPRINTF])
11507m4trace:configure.in:57: -1- AC_CHECK_FUNCS([finite isnand fp_class class fpclass])
11508m4trace:configure.in:57: -1- AH_OUTPUT([HAVE_FINITE], [/* Define to 1 if you have the `finite\' function. */
11509#undef HAVE_FINITE])
11510m4trace:configure.in:57: -1- AH_OUTPUT([HAVE_ISNAND], [/* Define to 1 if you have the `isnand\' function. */
11511#undef HAVE_ISNAND])
11512m4trace:configure.in:57: -1- AH_OUTPUT([HAVE_FP_CLASS], [/* Define to 1 if you have the `fp_class\' function. */
11513#undef HAVE_FP_CLASS])
11514m4trace:configure.in:57: -1- AH_OUTPUT([HAVE_CLASS], [/* Define to 1 if you have the `class\' function. */
11515#undef HAVE_CLASS])
11516m4trace:configure.in:57: -1- AH_OUTPUT([HAVE_FPCLASS], [/* Define to 1 if you have the `fpclass\' function. */
11517#undef HAVE_FPCLASS])
11518m4trace:configure.in:58: -1- AC_CHECK_FUNCS([strftime localtime])
11519m4trace:configure.in:58: -1- AH_OUTPUT([HAVE_STRFTIME], [/* Define to 1 if you have the `strftime\' function. */
11520#undef HAVE_STRFTIME])
11521m4trace:configure.in:58: -1- AH_OUTPUT([HAVE_LOCALTIME], [/* Define to 1 if you have the `localtime\' function. */
11522#undef HAVE_LOCALTIME])
11523m4trace:configure.in:61: -2- AC_CHECK_LIB([nsl], [gethostent])
11524m4trace:configure.in:61: -2- AH_OUTPUT([HAVE_LIBNSL], [/* Define to 1 if you have the `nsl\' library (-lnsl). */
11525#undef HAVE_LIBNSL])
11526m4trace:configure.in:61: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBNSL])
11527m4trace:configure.in:62: -2- AC_CHECK_LIB([socket], [setsockopt])
11528m4trace:configure.in:62: -2- AH_OUTPUT([HAVE_LIBSOCKET], [/* Define to 1 if you have the `socket\' library (-lsocket). */
11529#undef HAVE_LIBSOCKET])
11530m4trace:configure.in:62: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBSOCKET])
11531m4trace:configure.in:63: -2- AC_CHECK_LIB([inet], [connect])
11532m4trace:configure.in:63: -2- AH_OUTPUT([HAVE_LIBINET], [/* Define to 1 if you have the `inet\' library (-linet). */
11533#undef HAVE_LIBINET])
11534m4trace:configure.in:63: -2- AC_DEFINE_TRACE_LITERAL([HAVE_LIBINET])
11535m4trace:configure.in:75: -1- AC_SUBST([DOC_TO_MAN])
11536m4trace:configure.in:98: -1- AC_SUBST([WITH_DEBUG])
11537m4trace:configure.in:100: -1- AC_SUBST([CFLAGS])
11538m4trace:configure.in:101: -1- AC_SUBST([DBF_CFLAGS])
11539m4trace:configure.in:103: -1- AC_SUBST([DOCDIR])
11540m4trace:configure.in:104: -1- AC_SUBST([DOC_TO_MAN])
11541m4trace:configure.in:114: -1- AC_CONFIG_FILES([
11542Makefile
11543libdbf.spec
11544libdbf.pc
11545doc/Makefile
11546include/Makefile
11547src/Makefile
11548po/Makefile.in
11549])
11550m4trace:configure.in:114: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
11551You should run autoupdate.], [])
11552m4trace:configure.in:114: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
11553m4trace:configure.in:114: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
11554m4trace:configure.in:114: -1- _AC_AM_CONFIG_HEADER_HOOK([$ac_file])
11555m4trace:configure.in:114: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
11556