~pdf-converter-dev/pdfconverter/pdf_converter

« back to all changes in this revision

Viewing changes to autom4te.cache/traces.0

  • Committer: Paolo Rotolo
  • Date: 2011-08-27 19:55:51 UTC
  • Revision ID: paolorotolo@ubuntu-it.org-20110827195551-igc3drum7fu074z7
Traduzione in PyGI

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
m4trace:/usr/share/aclocal/argz.m4:12: -1- AC_DEFUN([gl_FUNC_ARGZ], [gl_PREREQ_ARGZ
2
 
 
3
 
AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
4
 
 
5
 
AC_CHECK_TYPES([error_t],
6
 
  [],
7
 
  [AC_DEFINE([error_t], [int],
8
 
   [Define to a type to use for `error_t' if it is not otherwise available.])
9
 
   AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
10
 
    does not typedef error_t.])],
11
 
  [#if defined(HAVE_ARGZ_H)
12
 
#  include <argz.h>
13
 
#endif])
14
 
 
15
 
ARGZ_H=
16
 
AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
17
 
        argz_next argz_stringify], [], [ARGZ_H=argz.h; AC_LIBOBJ([argz])])
18
 
 
19
 
dnl if have system argz functions, allow forced use of
20
 
dnl libltdl-supplied implementation (and default to do so
21
 
dnl on "known bad" systems). Could use a runtime check, but
22
 
dnl (a) detecting malloc issues is notoriously unreliable
23
 
dnl (b) only known system that declares argz functions,
24
 
dnl     provides them, yet they are broken, is cygwin
25
 
dnl     releases prior to 16-Mar-2007 (1.5.24 and earlier)
26
 
dnl So, it's more straightforward simply to special case
27
 
dnl this for known bad systems.
28
 
AS_IF([test -z "$ARGZ_H"],
29
 
    [AC_CACHE_CHECK(
30
 
        [if argz actually works],
31
 
        [lt_cv_sys_argz_works],
32
 
        [[case $host_os in #(
33
 
         *cygwin*)
34
 
           lt_cv_sys_argz_works=no
35
 
           if test "$cross_compiling" != no; then
36
 
             lt_cv_sys_argz_works="guessing no"
37
 
           else
38
 
             lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
39
 
             save_IFS=$IFS
40
 
             IFS=-.
41
 
             set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
42
 
             IFS=$save_IFS
43
 
             lt_os_major=${2-0}
44
 
             lt_os_minor=${3-0}
45
 
             lt_os_micro=${4-0}
46
 
             if test "$lt_os_major" -gt 1 \
47
 
                || { test "$lt_os_major" -eq 1 \
48
 
                  && { test "$lt_os_minor" -gt 5 \
49
 
                    || { test "$lt_os_minor" -eq 5 \
50
 
                      && test "$lt_os_micro" -gt 24; }; }; }; then
51
 
               lt_cv_sys_argz_works=yes
52
 
             fi
53
 
           fi
54
 
           ;; #(
55
 
         *) lt_cv_sys_argz_works=yes ;;
56
 
         esac]])
57
 
     AS_IF([test "$lt_cv_sys_argz_works" = yes],
58
 
        [AC_DEFINE([HAVE_WORKING_ARGZ], 1,
59
 
                   [This value is set to 1 to indicate that the system argz facility works])],
60
 
        [ARGZ_H=argz.h
61
 
        AC_LIBOBJ([argz])])])
62
 
 
63
 
AC_SUBST([ARGZ_H])
64
 
])
65
 
m4trace:/usr/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:])
66
 
m4trace:/usr/share/aclocal/glib-gettext.m4:412: -1- AC_DEFUN([AM_GLIB_GNU_GETTEXT], [GLIB_GNU_GETTEXT($@)])
67
 
m4trace:/usr/share/aclocal/glib-gettext.m4:412: -1- AC_DEFUN([AM_GLIB_DEFINE_LOCALEDIR], [GLIB_DEFINE_LOCALEDIR($@)])
68
 
m4trace:/usr/share/aclocal/glib-gettext.m4:422: -1- AC_DEFUN([GLIB_RUN_PROG], [cat >conftest.foo <<_ACEOF
69
 
$2
70
 
_ACEOF
71
 
if AC_RUN_LOG([$1 conftest.foo]); then
72
 
  m4_ifval([$3], [$3], [:])
73
 
m4_ifvaln([$4], [else $4])dnl
74
 
echo "$as_me: failed input was:" >&AS_MESSAGE_LOG_FD
75
 
sed 's/^/| /' conftest.foo >&AS_MESSAGE_LOG_FD
76
 
fi])
77
 
m4trace:/usr/share/aclocal/intltool.m4:27: -1- AC_DEFUN([IT_PROG_INTLTOOL], [
78
 
AC_PREREQ([2.50])dnl
79
 
AC_REQUIRE([AM_NLS])dnl
80
 
 
81
 
case "$am__api_version" in
82
 
    1.[01234])
83
 
        AC_MSG_ERROR([Automake 1.5 or newer is required to use intltool])
84
 
    ;;
85
 
    *)
86
 
    ;;
87
 
esac
88
 
 
89
 
if test -n "$1"; then
90
 
    AC_MSG_CHECKING([for intltool >= $1])
91
 
 
92
 
    INTLTOOL_REQUIRED_VERSION_AS_INT=`echo $1 | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
93
 
    INTLTOOL_APPLIED_VERSION=`intltool-update --version | head -1 | cut -d" " -f3`
94
 
    [INTLTOOL_APPLIED_VERSION_AS_INT=`echo $INTLTOOL_APPLIED_VERSION | awk -F. '{ print $ 1 * 1000 + $ 2 * 100 + $ 3; }'`
95
 
    ]
96
 
    AC_MSG_RESULT([$INTLTOOL_APPLIED_VERSION found])
97
 
    test "$INTLTOOL_APPLIED_VERSION_AS_INT" -ge "$INTLTOOL_REQUIRED_VERSION_AS_INT" ||
98
 
        AC_MSG_ERROR([Your intltool is too old.  You need intltool $1 or later.])
99
 
fi
100
 
 
101
 
AC_PATH_PROG(INTLTOOL_UPDATE, [intltool-update])
102
 
AC_PATH_PROG(INTLTOOL_MERGE, [intltool-merge])
103
 
AC_PATH_PROG(INTLTOOL_EXTRACT, [intltool-extract])
104
 
if test -z "$INTLTOOL_UPDATE" -o -z "$INTLTOOL_MERGE" -o -z "$INTLTOOL_EXTRACT"; then
105
 
    AC_MSG_ERROR([The intltool scripts were not found. Please install intltool.])
106
 
fi
107
 
 
108
 
  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 $< [$]@' 
109
 
INTLTOOL_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 $< [$]@' 
110
 
     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 $< [$]@' 
111
 
     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 $< [$]@' 
112
 
      INTLTOOL_OAF_RULE='%.oaf:       %.oaf.in       $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< [$]@'
113
 
     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 $< [$]@' 
114
 
   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 $< [$]@' 
115
 
    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 $< [$]@' 
116
 
INTLTOOL_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 $< [$]@' 
117
 
       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 $< [$]@' 
118
 
      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 $< [$]@' 
119
 
      INTLTOOL_XML_NOMERGE_RULE='%.xml:       %.xml.in       $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< [$]@' 
120
 
      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 $< [$]@' 
121
 
      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 $< [$]@' 
122
 
    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 $< [$]@' 
123
 
  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 $< [$]@' 
124
 
    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 $< [$]@' 
125
 
    INTLTOOL_SERVICE_RULE='%.service: %.service.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 $< [$]@'
126
 
   INTLTOOL_POLICY_RULE='%.policy:    %.policy.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 $< [$]@'
127
 
 
128
 
_IT_SUBST(INTLTOOL_DESKTOP_RULE)
129
 
_IT_SUBST(INTLTOOL_DIRECTORY_RULE)
130
 
_IT_SUBST(INTLTOOL_KEYS_RULE)
131
 
_IT_SUBST(INTLTOOL_PROP_RULE)
132
 
_IT_SUBST(INTLTOOL_OAF_RULE)
133
 
_IT_SUBST(INTLTOOL_PONG_RULE)
134
 
_IT_SUBST(INTLTOOL_SERVER_RULE)
135
 
_IT_SUBST(INTLTOOL_SHEET_RULE)
136
 
_IT_SUBST(INTLTOOL_SOUNDLIST_RULE)
137
 
_IT_SUBST(INTLTOOL_UI_RULE)
138
 
_IT_SUBST(INTLTOOL_XAM_RULE)
139
 
_IT_SUBST(INTLTOOL_KBD_RULE)
140
 
_IT_SUBST(INTLTOOL_XML_RULE)
141
 
_IT_SUBST(INTLTOOL_XML_NOMERGE_RULE)
142
 
_IT_SUBST(INTLTOOL_CAVES_RULE)
143
 
_IT_SUBST(INTLTOOL_SCHEMAS_RULE)
144
 
_IT_SUBST(INTLTOOL_THEME_RULE)
145
 
_IT_SUBST(INTLTOOL_SERVICE_RULE)
146
 
_IT_SUBST(INTLTOOL_POLICY_RULE)
147
 
 
148
 
# Check the gettext tools to make sure they are GNU
149
 
AC_PATH_PROG(XGETTEXT, xgettext)
150
 
AC_PATH_PROG(MSGMERGE, msgmerge)
151
 
AC_PATH_PROG(MSGFMT, msgfmt)
152
 
AC_PATH_PROG(GMSGFMT, gmsgfmt, $MSGFMT)
153
 
if test -z "$XGETTEXT" -o -z "$MSGMERGE" -o -z "$MSGFMT"; then
154
 
    AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
155
 
fi
156
 
xgversion="`$XGETTEXT --version|grep '(GNU ' 2> /dev/null`"
157
 
mmversion="`$MSGMERGE --version|grep '(GNU ' 2> /dev/null`"
158
 
mfversion="`$MSGFMT --version|grep '(GNU ' 2> /dev/null`"
159
 
if test -z "$xgversion" -o -z "$mmversion" -o -z "$mfversion"; then
160
 
    AC_MSG_ERROR([GNU gettext tools not found; required for intltool])
161
 
fi
162
 
 
163
 
AC_PATH_PROG(INTLTOOL_PERL, perl)
164
 
if test -z "$INTLTOOL_PERL"; then
165
 
   AC_MSG_ERROR([perl not found])
166
 
fi
167
 
AC_MSG_CHECKING([for perl >= 5.8.1])
168
 
$INTLTOOL_PERL -e "use 5.8.1;" > /dev/null 2>&1
169
 
if test $? -ne 0; then
170
 
   AC_MSG_ERROR([perl 5.8.1 is required for intltool])
171
 
else
172
 
   IT_PERL_VERSION="`$INTLTOOL_PERL -e \"printf '%vd', $^V\"`"
173
 
   AC_MSG_RESULT([$IT_PERL_VERSION])
174
 
fi
175
 
if test "x$2" != "xno-xml"; then
176
 
   AC_MSG_CHECKING([for XML::Parser])
177
 
   if `$INTLTOOL_PERL -e "require XML::Parser" 2>/dev/null`; then
178
 
       AC_MSG_RESULT([ok])
179
 
   else
180
 
       AC_MSG_ERROR([XML::Parser perl module is required for intltool])
181
 
   fi
182
 
fi
183
 
 
184
 
# Substitute ALL_LINGUAS so we can use it in po/Makefile
185
 
AC_SUBST(ALL_LINGUAS)
186
 
 
187
 
# Set DATADIRNAME correctly if it is not set yet
188
 
# (copied from glib-gettext.m4)
189
 
if test -z "$DATADIRNAME"; then
190
 
  AC_LINK_IFELSE(
191
 
    [AC_LANG_PROGRAM([[]],
192
 
                     [[extern int _nl_msg_cat_cntr;
193
 
                       return _nl_msg_cat_cntr]])],
194
 
    [DATADIRNAME=share],
195
 
    [case $host in
196
 
    *-*-solaris*)
197
 
    dnl On Solaris, if bind_textdomain_codeset is in libc,
198
 
    dnl GNU format message catalog is always supported,
199
 
    dnl since both are added to the libc all together.
200
 
    dnl Hence, we'd like to go with DATADIRNAME=share
201
 
    dnl in this case.
202
 
    AC_CHECK_FUNC(bind_textdomain_codeset,
203
 
      [DATADIRNAME=share], [DATADIRNAME=lib])
204
 
    ;;
205
 
    *)
206
 
    [DATADIRNAME=lib]
207
 
    ;;
208
 
    esac])
209
 
fi
210
 
AC_SUBST(DATADIRNAME)
211
 
 
212
 
IT_PO_SUBDIR([po])
213
 
 
214
 
])
215
 
m4trace:/usr/share/aclocal/intltool.m4:172: -1- AC_DEFUN([IT_PO_SUBDIR], [AC_PREREQ([2.53])dnl We use ac_top_srcdir inside AC_CONFIG_COMMANDS.
216
 
dnl
217
 
dnl The following CONFIG_COMMANDS should be executed at the very end
218
 
dnl of config.status.
219
 
AC_CONFIG_COMMANDS_PRE([
220
 
  AC_CONFIG_COMMANDS([$1/stamp-it], [
221
 
    if [ ! grep "^# INTLTOOL_MAKEFILE$" "$1/Makefile.in" > /dev/null ]; then
222
 
       AC_MSG_ERROR([$1/Makefile.in.in was not created by intltoolize.])
223
 
    fi
224
 
    rm -f "$1/stamp-it" "$1/stamp-it.tmp" "$1/POTFILES" "$1/Makefile.tmp"
225
 
    >"$1/stamp-it.tmp"
226
 
    [sed '/^#/d
227
 
         s/^[[].*] *//
228
 
         /^[    ]*$/d
229
 
        '"s|^|  $ac_top_srcdir/|" \
230
 
      "$srcdir/$1/POTFILES.in" | sed '$!s/$/ \\/' >"$1/POTFILES"
231
 
    ]
232
 
    [sed '/^POTFILES =/,/[^\\]$/ {
233
 
                /^POTFILES =/!d
234
 
                r $1/POTFILES
235
 
          }
236
 
         ' "$1/Makefile.in" >"$1/Makefile"]
237
 
    rm -f "$1/Makefile.tmp"
238
 
    mv "$1/stamp-it.tmp" "$1/stamp-it"
239
 
  ])
240
 
])dnl
241
 
])
242
 
m4trace:/usr/share/aclocal/intltool.m4:205: -1- AC_DEFUN([_IT_SUBST], [
243
 
AC_SUBST([$1])
244
 
m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([$1])])
245
 
 
246
 
])
247
 
m4trace:/usr/share/aclocal/intltool.m4:213: -1- AU_DEFUN([AC_PROG_INTLTOOL], [m4_if($#, 0, [IT_PROG_INTLTOOL], [IT_PROG_INTLTOOL($@)])])
248
 
m4trace:/usr/share/aclocal/intltool.m4:213: -1- AC_DEFUN([AC_PROG_INTLTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_INTLTOOL' is obsolete.
249
 
You should run autoupdate.])dnl
250
 
m4_if($#, 0, [IT_PROG_INTLTOOL], [IT_PROG_INTLTOOL($@)])])
251
 
m4trace:/usr/share/aclocal/libtool.m4:69: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
252
 
AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
253
 
AC_BEFORE([$0], [LT_LANG])dnl
254
 
AC_BEFORE([$0], [LT_OUTPUT])dnl
255
 
AC_BEFORE([$0], [LTDL_INIT])dnl
256
 
m4_require([_LT_CHECK_BUILDDIR])dnl
257
 
 
258
 
dnl Autoconf doesn't catch unexpanded LT_ macros by default:
259
 
m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
260
 
m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
261
 
dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
262
 
dnl unless we require an AC_DEFUNed macro:
263
 
AC_REQUIRE([LTOPTIONS_VERSION])dnl
264
 
AC_REQUIRE([LTSUGAR_VERSION])dnl
265
 
AC_REQUIRE([LTVERSION_VERSION])dnl
266
 
AC_REQUIRE([LTOBSOLETE_VERSION])dnl
267
 
m4_require([_LT_PROG_LTMAIN])dnl
268
 
 
269
 
_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
270
 
 
271
 
dnl Parse OPTIONS
272
 
_LT_SET_OPTIONS([$0], [$1])
273
 
 
274
 
# This can be used to rebuild libtool when needed
275
 
LIBTOOL_DEPS="$ltmain"
276
 
 
277
 
# Always use our own libtool.
278
 
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
279
 
AC_SUBST(LIBTOOL)dnl
280
 
 
281
 
_LT_SETUP
282
 
 
283
 
# Only expand once:
284
 
m4_define([LT_INIT])
285
 
])
286
 
m4trace:/usr/share/aclocal/libtool.m4:107: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
287
 
m4trace:/usr/share/aclocal/libtool.m4:107: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
288
 
You should run autoupdate.])dnl
289
 
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
290
 
m4trace:/usr/share/aclocal/libtool.m4:108: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
291
 
m4trace:/usr/share/aclocal/libtool.m4:108: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
292
 
You should run autoupdate.])dnl
293
 
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
294
 
m4trace:/usr/share/aclocal/libtool.m4:607: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
295
 
AC_MSG_NOTICE([creating $CONFIG_LT])
296
 
_LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
297
 
[# Run this file to recreate a libtool stub with the current configuration.])
298
 
 
299
 
cat >>"$CONFIG_LT" <<\_LTEOF
300
 
lt_cl_silent=false
301
 
exec AS_MESSAGE_LOG_FD>>config.log
302
 
{
303
 
  echo
304
 
  AS_BOX([Running $as_me.])
305
 
} >&AS_MESSAGE_LOG_FD
306
 
 
307
 
lt_cl_help="\
308
 
\`$as_me' creates a local libtool stub from the current configuration,
309
 
for use in further configure time tests before the real libtool is
310
 
generated.
311
 
 
312
 
Usage: $[0] [[OPTIONS]]
313
 
 
314
 
  -h, --help      print this help, then exit
315
 
  -V, --version   print version number, then exit
316
 
  -q, --quiet     do not print progress messages
317
 
  -d, --debug     don't remove temporary files
318
 
 
319
 
Report bugs to <bug-libtool@gnu.org>."
320
 
 
321
 
lt_cl_version="\
322
 
m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
323
 
m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
324
 
configured by $[0], generated by m4_PACKAGE_STRING.
325
 
 
326
 
Copyright (C) 2010 Free Software Foundation, Inc.
327
 
This config.lt script is free software; the Free Software Foundation
328
 
gives unlimited permision to copy, distribute and modify it."
329
 
 
330
 
while test $[#] != 0
331
 
do
332
 
  case $[1] in
333
 
    --version | --v* | -V )
334
 
      echo "$lt_cl_version"; exit 0 ;;
335
 
    --help | --h* | -h )
336
 
      echo "$lt_cl_help"; exit 0 ;;
337
 
    --debug | --d* | -d )
338
 
      debug=: ;;
339
 
    --quiet | --q* | --silent | --s* | -q )
340
 
      lt_cl_silent=: ;;
341
 
 
342
 
    -*) AC_MSG_ERROR([unrecognized option: $[1]
343
 
Try \`$[0] --help' for more information.]) ;;
344
 
 
345
 
    *) AC_MSG_ERROR([unrecognized argument: $[1]
346
 
Try \`$[0] --help' for more information.]) ;;
347
 
  esac
348
 
  shift
349
 
done
350
 
 
351
 
if $lt_cl_silent; then
352
 
  exec AS_MESSAGE_FD>/dev/null
353
 
fi
354
 
_LTEOF
355
 
 
356
 
cat >>"$CONFIG_LT" <<_LTEOF
357
 
_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
358
 
_LTEOF
359
 
 
360
 
cat >>"$CONFIG_LT" <<\_LTEOF
361
 
AC_MSG_NOTICE([creating $ofile])
362
 
_LT_OUTPUT_LIBTOOL_COMMANDS
363
 
AS_EXIT(0)
364
 
_LTEOF
365
 
chmod +x "$CONFIG_LT"
366
 
 
367
 
# configure is writing to config.log, but config.lt does its own redirection,
368
 
# appending to config.log, which fails on DOS, as config.log is still kept
369
 
# open by configure.  Here we exec the FD to /dev/null, effectively closing
370
 
# config.log, so it can be properly (re)opened and appended to by config.lt.
371
 
lt_cl_success=:
372
 
test "$silent" = yes &&
373
 
  lt_config_lt_args="$lt_config_lt_args --quiet"
374
 
exec AS_MESSAGE_LOG_FD>/dev/null
375
 
$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
376
 
exec AS_MESSAGE_LOG_FD>>config.log
377
 
$lt_cl_success || AS_EXIT(1)
378
 
])
379
 
m4trace:/usr/share/aclocal/libtool.m4:788: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
380
 
m4trace:/usr/share/aclocal/libtool.m4:799: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
381
 
m4_case([$1],
382
 
  [C],                  [_LT_LANG(C)],
383
 
  [C++],                [_LT_LANG(CXX)],
384
 
  [Java],               [_LT_LANG(GCJ)],
385
 
  [Fortran 77],         [_LT_LANG(F77)],
386
 
  [Fortran],            [_LT_LANG(FC)],
387
 
  [Windows Resource],   [_LT_LANG(RC)],
388
 
  [m4_ifdef([_LT_LANG_]$1[_CONFIG],
389
 
    [_LT_LANG($1)],
390
 
    [m4_fatal([$0: unsupported language: "$1"])])])dnl
391
 
])
392
 
m4trace:/usr/share/aclocal/libtool.m4:861: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
393
 
m4trace:/usr/share/aclocal/libtool.m4:861: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
394
 
You should run autoupdate.])dnl
395
 
LT_LANG(C++)])
396
 
m4trace:/usr/share/aclocal/libtool.m4:862: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
397
 
m4trace:/usr/share/aclocal/libtool.m4:862: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
398
 
You should run autoupdate.])dnl
399
 
LT_LANG(Fortran 77)])
400
 
m4trace:/usr/share/aclocal/libtool.m4:863: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
401
 
m4trace:/usr/share/aclocal/libtool.m4:863: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
402
 
You should run autoupdate.])dnl
403
 
LT_LANG(Fortran)])
404
 
m4trace:/usr/share/aclocal/libtool.m4:864: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
405
 
m4trace:/usr/share/aclocal/libtool.m4:864: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
406
 
You should run autoupdate.])dnl
407
 
LT_LANG(Java)])
408
 
m4trace:/usr/share/aclocal/libtool.m4:865: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
409
 
m4trace:/usr/share/aclocal/libtool.m4:865: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
410
 
You should run autoupdate.])dnl
411
 
LT_LANG(Windows Resource)])
412
 
m4trace:/usr/share/aclocal/libtool.m4:1181: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
413
 
AC_ARG_WITH([sysroot],
414
 
[  --with-sysroot[=DIR] Search for dependent libraries within DIR
415
 
                        (or the compiler's sysroot if not specified).],
416
 
[], [with_sysroot=no])
417
 
 
418
 
dnl lt_sysroot will always be passed unquoted.  We quote it here
419
 
dnl in case the user passed a directory name.
420
 
lt_sysroot=
421
 
case ${with_sysroot} in #(
422
 
 yes)
423
 
   if test "$GCC" = yes; then
424
 
     lt_sysroot=`$CC --print-sysroot 2>/dev/null`
425
 
   fi
426
 
   ;; #(
427
 
 /*)
428
 
   lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
429
 
   ;; #(
430
 
 no|'')
431
 
   ;; #(
432
 
 *)
433
 
   AC_MSG_RESULT([${with_sysroot}])
434
 
   AC_MSG_ERROR([The sysroot must be an absolute path.])
435
 
   ;;
436
 
esac
437
 
 
438
 
 AC_MSG_RESULT([${lt_sysroot:-no}])
439
 
_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
440
 
[dependent libraries, and in which our libraries should be installed.])])
441
 
m4trace:/usr/share/aclocal/libtool.m4:1445: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
442
 
m4_require([_LT_DECL_SED])dnl
443
 
AC_CACHE_CHECK([$1], [$2],
444
 
  [$2=no
445
 
   m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
446
 
   echo "$lt_simple_compile_test_code" > conftest.$ac_ext
447
 
   lt_compiler_flag="$3"
448
 
   # Insert the option either (1) after the last *FLAGS variable, or
449
 
   # (2) before a word containing "conftest.", or (3) at the end.
450
 
   # Note that $ac_compile itself does not contain backslashes and begins
451
 
   # with a dollar sign (not a hyphen), so the echo should work correctly.
452
 
   # The option is referenced via a variable to avoid confusing sed.
453
 
   lt_compile=`echo "$ac_compile" | $SED \
454
 
   -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
455
 
   -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
456
 
   -e 's:$: $lt_compiler_flag:'`
457
 
   (eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
458
 
   (eval "$lt_compile" 2>conftest.err)
459
 
   ac_status=$?
460
 
   cat conftest.err >&AS_MESSAGE_LOG_FD
461
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
462
 
   if (exit $ac_status) && test -s "$ac_outfile"; then
463
 
     # The compiler can only warn and ignore the option if not recognized
464
 
     # So say no if there are warnings other than the usual output.
465
 
     $ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
466
 
     $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
467
 
     if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
468
 
       $2=yes
469
 
     fi
470
 
   fi
471
 
   $RM conftest*
472
 
])
473
 
 
474
 
if test x"[$]$2" = xyes; then
475
 
    m4_if([$5], , :, [$5])
476
 
else
477
 
    m4_if([$6], , :, [$6])
478
 
fi
479
 
])
480
 
m4trace:/usr/share/aclocal/libtool.m4:1487: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
481
 
m4trace:/usr/share/aclocal/libtool.m4:1487: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
482
 
You should run autoupdate.])dnl
483
 
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
484
 
m4trace:/usr/share/aclocal/libtool.m4:1496: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
485
 
m4_require([_LT_DECL_SED])dnl
486
 
AC_CACHE_CHECK([$1], [$2],
487
 
  [$2=no
488
 
   save_LDFLAGS="$LDFLAGS"
489
 
   LDFLAGS="$LDFLAGS $3"
490
 
   echo "$lt_simple_link_test_code" > conftest.$ac_ext
491
 
   if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
492
 
     # The linker can only warn and ignore the option if not recognized
493
 
     # So say no if there are warnings
494
 
     if test -s conftest.err; then
495
 
       # Append any errors to the config.log.
496
 
       cat conftest.err 1>&AS_MESSAGE_LOG_FD
497
 
       $ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
498
 
       $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
499
 
       if diff conftest.exp conftest.er2 >/dev/null; then
500
 
         $2=yes
501
 
       fi
502
 
     else
503
 
       $2=yes
504
 
     fi
505
 
   fi
506
 
   $RM -r conftest*
507
 
   LDFLAGS="$save_LDFLAGS"
508
 
])
509
 
 
510
 
if test x"[$]$2" = xyes; then
511
 
    m4_if([$4], , :, [$4])
512
 
else
513
 
    m4_if([$5], , :, [$5])
514
 
fi
515
 
])
516
 
m4trace:/usr/share/aclocal/libtool.m4:1531: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
517
 
m4trace:/usr/share/aclocal/libtool.m4:1531: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
518
 
You should run autoupdate.])dnl
519
 
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
520
 
m4trace:/usr/share/aclocal/libtool.m4:1538: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
521
 
# find the maximum length of command line arguments
522
 
AC_MSG_CHECKING([the maximum length of command line arguments])
523
 
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
524
 
  i=0
525
 
  teststring="ABCD"
526
 
 
527
 
  case $build_os in
528
 
  msdosdjgpp*)
529
 
    # On DJGPP, this test can blow up pretty badly due to problems in libc
530
 
    # (any single argument exceeding 2000 bytes causes a buffer overrun
531
 
    # during glob expansion).  Even if it were fixed, the result of this
532
 
    # check would be larger than it should be.
533
 
    lt_cv_sys_max_cmd_len=12288;    # 12K is about right
534
 
    ;;
535
 
 
536
 
  gnu*)
537
 
    # Under GNU Hurd, this test is not required because there is
538
 
    # no limit to the length of command line arguments.
539
 
    # Libtool will interpret -1 as no limit whatsoever
540
 
    lt_cv_sys_max_cmd_len=-1;
541
 
    ;;
542
 
 
543
 
  cygwin* | mingw* | cegcc*)
544
 
    # On Win9x/ME, this test blows up -- it succeeds, but takes
545
 
    # about 5 minutes as the teststring grows exponentially.
546
 
    # Worse, since 9x/ME are not pre-emptively multitasking,
547
 
    # you end up with a "frozen" computer, even though with patience
548
 
    # the test eventually succeeds (with a max line length of 256k).
549
 
    # Instead, let's just punt: use the minimum linelength reported by
550
 
    # all of the supported platforms: 8192 (on NT/2K/XP).
551
 
    lt_cv_sys_max_cmd_len=8192;
552
 
    ;;
553
 
 
554
 
  mint*)
555
 
    # On MiNT this can take a long time and run out of memory.
556
 
    lt_cv_sys_max_cmd_len=8192;
557
 
    ;;
558
 
 
559
 
  amigaos*)
560
 
    # On AmigaOS with pdksh, this test takes hours, literally.
561
 
    # So we just punt and use a minimum line length of 8192.
562
 
    lt_cv_sys_max_cmd_len=8192;
563
 
    ;;
564
 
 
565
 
  netbsd* | freebsd* | openbsd* | darwin* | dragonfly*)
566
 
    # This has been around since 386BSD, at least.  Likely further.
567
 
    if test -x /sbin/sysctl; then
568
 
      lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
569
 
    elif test -x /usr/sbin/sysctl; then
570
 
      lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
571
 
    else
572
 
      lt_cv_sys_max_cmd_len=65536       # usable default for all BSDs
573
 
    fi
574
 
    # And add a safety zone
575
 
    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
576
 
    lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
577
 
    ;;
578
 
 
579
 
  interix*)
580
 
    # We know the value 262144 and hardcode it with a safety zone (like BSD)
581
 
    lt_cv_sys_max_cmd_len=196608
582
 
    ;;
583
 
 
584
 
  osf*)
585
 
    # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
586
 
    # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
587
 
    # nice to cause kernel panics so lets avoid the loop below.
588
 
    # First set a reasonable default.
589
 
    lt_cv_sys_max_cmd_len=16384
590
 
    #
591
 
    if test -x /sbin/sysconfig; then
592
 
      case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
593
 
        *1*) lt_cv_sys_max_cmd_len=-1 ;;
594
 
      esac
595
 
    fi
596
 
    ;;
597
 
  sco3.2v5*)
598
 
    lt_cv_sys_max_cmd_len=102400
599
 
    ;;
600
 
  sysv5* | sco5v6* | sysv4.2uw2*)
601
 
    kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
602
 
    if test -n "$kargmax"; then
603
 
      lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[         ]]//'`
604
 
    else
605
 
      lt_cv_sys_max_cmd_len=32768
606
 
    fi
607
 
    ;;
608
 
  *)
609
 
    lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
610
 
    if test -n "$lt_cv_sys_max_cmd_len"; then
611
 
      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
612
 
      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
613
 
    else
614
 
      # Make teststring a little bigger before we do anything with it.
615
 
      # a 1K string should be a reasonable start.
616
 
      for i in 1 2 3 4 5 6 7 8 ; do
617
 
        teststring=$teststring$teststring
618
 
      done
619
 
      SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
620
 
      # If test is not a shell built-in, we'll probably end up computing a
621
 
      # maximum length that is only half of the actual maximum length, but
622
 
      # we can't tell.
623
 
      while { test "X"`func_fallback_echo "$teststring$teststring" 2>/dev/null` \
624
 
                 = "X$teststring$teststring"; } >/dev/null 2>&1 &&
625
 
              test $i != 17 # 1/2 MB should be enough
626
 
      do
627
 
        i=`expr $i + 1`
628
 
        teststring=$teststring$teststring
629
 
      done
630
 
      # Only check the string length outside the loop.
631
 
      lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
632
 
      teststring=
633
 
      # Add a significant safety factor because C++ compilers can tack on
634
 
      # massive amounts of additional arguments before passing them to the
635
 
      # linker.  It appears as though 1/2 is a usable value.
636
 
      lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
637
 
    fi
638
 
    ;;
639
 
  esac
640
 
])
641
 
if test -n $lt_cv_sys_max_cmd_len ; then
642
 
  AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
643
 
else
644
 
  AC_MSG_RESULT(none)
645
 
fi
646
 
max_cmd_len=$lt_cv_sys_max_cmd_len
647
 
_LT_DECL([], [max_cmd_len], [0],
648
 
    [What is the maximum length of a command?])
649
 
])
650
 
m4trace:/usr/share/aclocal/libtool.m4:1671: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
651
 
m4trace:/usr/share/aclocal/libtool.m4:1671: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
652
 
You should run autoupdate.])dnl
653
 
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
654
 
m4trace:/usr/share/aclocal/libtool.m4:1782: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
655
 
if test "x$enable_dlopen" != xyes; then
656
 
  enable_dlopen=unknown
657
 
  enable_dlopen_self=unknown
658
 
  enable_dlopen_self_static=unknown
659
 
else
660
 
  lt_cv_dlopen=no
661
 
  lt_cv_dlopen_libs=
662
 
 
663
 
  case $host_os in
664
 
  beos*)
665
 
    lt_cv_dlopen="load_add_on"
666
 
    lt_cv_dlopen_libs=
667
 
    lt_cv_dlopen_self=yes
668
 
    ;;
669
 
 
670
 
  mingw* | pw32* | cegcc*)
671
 
    lt_cv_dlopen="LoadLibrary"
672
 
    lt_cv_dlopen_libs=
673
 
    ;;
674
 
 
675
 
  cygwin*)
676
 
    lt_cv_dlopen="dlopen"
677
 
    lt_cv_dlopen_libs=
678
 
    ;;
679
 
 
680
 
  darwin*)
681
 
  # if libdl is installed we need to link against it
682
 
    AC_CHECK_LIB([dl], [dlopen],
683
 
                [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[
684
 
    lt_cv_dlopen="dyld"
685
 
    lt_cv_dlopen_libs=
686
 
    lt_cv_dlopen_self=yes
687
 
    ])
688
 
    ;;
689
 
 
690
 
  *)
691
 
    AC_CHECK_FUNC([shl_load],
692
 
          [lt_cv_dlopen="shl_load"],
693
 
      [AC_CHECK_LIB([dld], [shl_load],
694
 
            [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"],
695
 
        [AC_CHECK_FUNC([dlopen],
696
 
              [lt_cv_dlopen="dlopen"],
697
 
          [AC_CHECK_LIB([dl], [dlopen],
698
 
                [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],
699
 
            [AC_CHECK_LIB([svld], [dlopen],
700
 
                  [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"],
701
 
              [AC_CHECK_LIB([dld], [dld_link],
702
 
                    [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"])
703
 
              ])
704
 
            ])
705
 
          ])
706
 
        ])
707
 
      ])
708
 
    ;;
709
 
  esac
710
 
 
711
 
  if test "x$lt_cv_dlopen" != xno; then
712
 
    enable_dlopen=yes
713
 
  else
714
 
    enable_dlopen=no
715
 
  fi
716
 
 
717
 
  case $lt_cv_dlopen in
718
 
  dlopen)
719
 
    save_CPPFLAGS="$CPPFLAGS"
720
 
    test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
721
 
 
722
 
    save_LDFLAGS="$LDFLAGS"
723
 
    wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
724
 
 
725
 
    save_LIBS="$LIBS"
726
 
    LIBS="$lt_cv_dlopen_libs $LIBS"
727
 
 
728
 
    AC_CACHE_CHECK([whether a program can dlopen itself],
729
 
          lt_cv_dlopen_self, [dnl
730
 
          _LT_TRY_DLOPEN_SELF(
731
 
            lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
732
 
            lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
733
 
    ])
734
 
 
735
 
    if test "x$lt_cv_dlopen_self" = xyes; then
736
 
      wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
737
 
      AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
738
 
          lt_cv_dlopen_self_static, [dnl
739
 
          _LT_TRY_DLOPEN_SELF(
740
 
            lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
741
 
            lt_cv_dlopen_self_static=no,  lt_cv_dlopen_self_static=cross)
742
 
      ])
743
 
    fi
744
 
 
745
 
    CPPFLAGS="$save_CPPFLAGS"
746
 
    LDFLAGS="$save_LDFLAGS"
747
 
    LIBS="$save_LIBS"
748
 
    ;;
749
 
  esac
750
 
 
751
 
  case $lt_cv_dlopen_self in
752
 
  yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
753
 
  *) enable_dlopen_self=unknown ;;
754
 
  esac
755
 
 
756
 
  case $lt_cv_dlopen_self_static in
757
 
  yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
758
 
  *) enable_dlopen_self_static=unknown ;;
759
 
  esac
760
 
fi
761
 
_LT_DECL([dlopen_support], [enable_dlopen], [0],
762
 
         [Whether dlopen is supported])
763
 
_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
764
 
         [Whether dlopen of programs is supported])
765
 
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
766
 
         [Whether dlopen of statically linked programs is supported])
767
 
])
768
 
m4trace:/usr/share/aclocal/libtool.m4:1899: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
769
 
m4trace:/usr/share/aclocal/libtool.m4:1899: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
770
 
You should run autoupdate.])dnl
771
 
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
772
 
m4trace:/usr/share/aclocal/libtool.m4:2884: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
773
 
AC_MSG_CHECKING([for $1])
774
 
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
775
 
[case $MAGIC_CMD in
776
 
[[\\/*] |  ?:[\\/]*])
777
 
  lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path.
778
 
  ;;
779
 
*)
780
 
  lt_save_MAGIC_CMD="$MAGIC_CMD"
781
 
  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
782
 
dnl $ac_dummy forces splitting on constant user-supplied paths.
783
 
dnl POSIX.2 word splitting is done only on the output of word expansions,
784
 
dnl not every word.  This closes a longstanding sh security hole.
785
 
  ac_dummy="m4_if([$2], , $PATH, [$2])"
786
 
  for ac_dir in $ac_dummy; do
787
 
    IFS="$lt_save_ifs"
788
 
    test -z "$ac_dir" && ac_dir=.
789
 
    if test -f $ac_dir/$1; then
790
 
      lt_cv_path_MAGIC_CMD="$ac_dir/$1"
791
 
      if test -n "$file_magic_test_file"; then
792
 
        case $deplibs_check_method in
793
 
        "file_magic "*)
794
 
          file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
795
 
          MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
796
 
          if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
797
 
            $EGREP "$file_magic_regex" > /dev/null; then
798
 
            :
799
 
          else
800
 
            cat <<_LT_EOF 1>&2
801
 
 
802
 
*** Warning: the command libtool uses to detect shared libraries,
803
 
*** $file_magic_cmd, produces output that libtool cannot recognize.
804
 
*** The result is that libtool may fail to recognize shared libraries
805
 
*** as such.  This will affect the creation of libtool libraries that
806
 
*** depend on shared libraries, but programs linked with such libtool
807
 
*** libraries will work regardless of this problem.  Nevertheless, you
808
 
*** may want to report the problem to your system manager and/or to
809
 
*** bug-libtool@gnu.org
810
 
 
811
 
_LT_EOF
812
 
          fi ;;
813
 
        esac
814
 
      fi
815
 
      break
816
 
    fi
817
 
  done
818
 
  IFS="$lt_save_ifs"
819
 
  MAGIC_CMD="$lt_save_MAGIC_CMD"
820
 
  ;;
821
 
esac])
822
 
MAGIC_CMD="$lt_cv_path_MAGIC_CMD"
823
 
if test -n "$MAGIC_CMD"; then
824
 
  AC_MSG_RESULT($MAGIC_CMD)
825
 
else
826
 
  AC_MSG_RESULT(no)
827
 
fi
828
 
_LT_DECL([], [MAGIC_CMD], [0],
829
 
         [Used to examine libraries when file_magic_cmd begins with "file"])dnl
830
 
])
831
 
m4trace:/usr/share/aclocal/libtool.m4:2946: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
832
 
m4trace:/usr/share/aclocal/libtool.m4:2946: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
833
 
You should run autoupdate.])dnl
834
 
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
835
 
m4trace:/usr/share/aclocal/libtool.m4:2969: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
836
 
AC_REQUIRE([AC_CANONICAL_HOST])dnl
837
 
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
838
 
m4_require([_LT_DECL_SED])dnl
839
 
m4_require([_LT_DECL_EGREP])dnl
840
 
m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
841
 
 
842
 
AC_ARG_WITH([gnu-ld],
843
 
    [AS_HELP_STRING([--with-gnu-ld],
844
 
        [assume the C compiler uses GNU ld @<:@default=no@:>@])],
845
 
    [test "$withval" = no || with_gnu_ld=yes],
846
 
    [with_gnu_ld=no])dnl
847
 
 
848
 
ac_prog=ld
849
 
if test "$GCC" = yes; then
850
 
  # Check if gcc -print-prog-name=ld gives a path.
851
 
  AC_MSG_CHECKING([for ld used by $CC])
852
 
  case $host in
853
 
  *-*-mingw*)
854
 
    # gcc leaves a trailing carriage return which upsets mingw
855
 
    ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
856
 
  *)
857
 
    ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
858
 
  esac
859
 
  case $ac_prog in
860
 
    # Accept absolute paths.
861
 
    [[\\/]]* | ?:[[\\/]]*)
862
 
      re_direlt='/[[^/]][[^/]]*/\.\./'
863
 
      # Canonicalize the pathname of ld
864
 
      ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
865
 
      while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
866
 
        ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
867
 
      done
868
 
      test -z "$LD" && LD="$ac_prog"
869
 
      ;;
870
 
  "")
871
 
    # If it fails, then pretend we aren't using GCC.
872
 
    ac_prog=ld
873
 
    ;;
874
 
  *)
875
 
    # If it is relative, then search for the first ld in PATH.
876
 
    with_gnu_ld=unknown
877
 
    ;;
878
 
  esac
879
 
elif test "$with_gnu_ld" = yes; then
880
 
  AC_MSG_CHECKING([for GNU ld])
881
 
else
882
 
  AC_MSG_CHECKING([for non-GNU ld])
883
 
fi
884
 
AC_CACHE_VAL(lt_cv_path_LD,
885
 
[if test -z "$LD"; then
886
 
  lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
887
 
  for ac_dir in $PATH; do
888
 
    IFS="$lt_save_ifs"
889
 
    test -z "$ac_dir" && ac_dir=.
890
 
    if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
891
 
      lt_cv_path_LD="$ac_dir/$ac_prog"
892
 
      # Check to see if the program is GNU ld.  I'd rather use --version,
893
 
      # but apparently some variants of GNU ld only accept -v.
894
 
      # Break only if it was the GNU/non-GNU ld that we prefer.
895
 
      case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
896
 
      *GNU* | *'with BFD'*)
897
 
        test "$with_gnu_ld" != no && break
898
 
        ;;
899
 
      *)
900
 
        test "$with_gnu_ld" != yes && break
901
 
        ;;
902
 
      esac
903
 
    fi
904
 
  done
905
 
  IFS="$lt_save_ifs"
906
 
else
907
 
  lt_cv_path_LD="$LD" # Let the user override the test with a path.
908
 
fi])
909
 
LD="$lt_cv_path_LD"
910
 
if test -n "$LD"; then
911
 
  AC_MSG_RESULT($LD)
912
 
else
913
 
  AC_MSG_RESULT(no)
914
 
fi
915
 
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
916
 
_LT_PATH_LD_GNU
917
 
AC_SUBST([LD])
918
 
 
919
 
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
920
 
])
921
 
m4trace:/usr/share/aclocal/libtool.m4:3058: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
922
 
m4trace:/usr/share/aclocal/libtool.m4:3058: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
923
 
You should run autoupdate.])dnl
924
 
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
925
 
m4trace:/usr/share/aclocal/libtool.m4:3059: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
926
 
m4trace:/usr/share/aclocal/libtool.m4:3059: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
927
 
You should run autoupdate.])dnl
928
 
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
929
 
m4trace:/usr/share/aclocal/libtool.m4:3353: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
930
 
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
931
 
[if test -n "$NM"; then
932
 
  # Let the user override the test.
933
 
  lt_cv_path_NM="$NM"
934
 
else
935
 
  lt_nm_to_check="${ac_tool_prefix}nm"
936
 
  if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
937
 
    lt_nm_to_check="$lt_nm_to_check nm"
938
 
  fi
939
 
  for lt_tmp_nm in $lt_nm_to_check; do
940
 
    lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR
941
 
    for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
942
 
      IFS="$lt_save_ifs"
943
 
      test -z "$ac_dir" && ac_dir=.
944
 
      tmp_nm="$ac_dir/$lt_tmp_nm"
945
 
      if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then
946
 
        # Check to see if the nm accepts a BSD-compat flag.
947
 
        # Adding the `sed 1q' prevents false positives on HP-UX, which says:
948
 
        #   nm: unknown option "B" ignored
949
 
        # Tru64's nm complains that /dev/null is an invalid object file
950
 
        case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in
951
 
        */dev/null* | *'Invalid file or object type'*)
952
 
          lt_cv_path_NM="$tmp_nm -B"
953
 
          break
954
 
          ;;
955
 
        *)
956
 
          case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
957
 
          */dev/null*)
958
 
            lt_cv_path_NM="$tmp_nm -p"
959
 
            break
960
 
            ;;
961
 
          *)
962
 
            lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
963
 
            continue # so that we can try to find one that supports BSD flags
964
 
            ;;
965
 
          esac
966
 
          ;;
967
 
        esac
968
 
      fi
969
 
    done
970
 
    IFS="$lt_save_ifs"
971
 
  done
972
 
  : ${lt_cv_path_NM=no}
973
 
fi])
974
 
if test "$lt_cv_path_NM" != "no"; then
975
 
  NM="$lt_cv_path_NM"
976
 
else
977
 
  # Didn't find any BSD compatible name lister, look for dumpbin.
978
 
  if test -n "$DUMPBIN"; then :
979
 
    # Let the user override the test.
980
 
  else
981
 
    AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
982
 
    case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
983
 
    *COFF*)
984
 
      DUMPBIN="$DUMPBIN -symbols"
985
 
      ;;
986
 
    *)
987
 
      DUMPBIN=:
988
 
      ;;
989
 
    esac
990
 
  fi
991
 
  AC_SUBST([DUMPBIN])
992
 
  if test "$DUMPBIN" != ":"; then
993
 
    NM="$DUMPBIN"
994
 
  fi
995
 
fi
996
 
test -z "$NM" && NM=nm
997
 
AC_SUBST([NM])
998
 
_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
999
 
 
1000
 
AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
1001
 
  [lt_cv_nm_interface="BSD nm"
1002
 
  echo "int some_variable = 0;" > conftest.$ac_ext
1003
 
  (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
1004
 
  (eval "$ac_compile" 2>conftest.err)
1005
 
  cat conftest.err >&AS_MESSAGE_LOG_FD
1006
 
  (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
1007
 
  (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
1008
 
  cat conftest.err >&AS_MESSAGE_LOG_FD
1009
 
  (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
1010
 
  cat conftest.out >&AS_MESSAGE_LOG_FD
1011
 
  if $GREP 'External.*some_variable' conftest.out > /dev/null; then
1012
 
    lt_cv_nm_interface="MS dumpbin"
1013
 
  fi
1014
 
  rm -f conftest*])
1015
 
])
1016
 
m4trace:/usr/share/aclocal/libtool.m4:3443: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1017
 
m4trace:/usr/share/aclocal/libtool.m4:3443: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
1018
 
You should run autoupdate.])dnl
1019
 
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1020
 
m4trace:/usr/share/aclocal/libtool.m4:3444: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1021
 
m4trace:/usr/share/aclocal/libtool.m4:3444: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
1022
 
You should run autoupdate.])dnl
1023
 
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
1024
 
m4trace:/usr/share/aclocal/libtool.m4:3514: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1025
 
LIBM=
1026
 
case $host in
1027
 
*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
1028
 
  # These system don't have libm, or don't need it
1029
 
  ;;
1030
 
*-ncr-sysv4.3*)
1031
 
  AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw")
1032
 
  AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
1033
 
  ;;
1034
 
*)
1035
 
  AC_CHECK_LIB(m, cos, LIBM="-lm")
1036
 
  ;;
1037
 
esac
1038
 
AC_SUBST([LIBM])
1039
 
])
1040
 
m4trace:/usr/share/aclocal/libtool.m4:3533: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
1041
 
m4trace:/usr/share/aclocal/libtool.m4:3533: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
1042
 
You should run autoupdate.])dnl
1043
 
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
1044
 
m4trace:/usr/share/aclocal/libtool.m4:7498: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
1045
 
  [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
1046
 
    [AC_CHECK_TOOL(GCJ, gcj,)
1047
 
      test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
1048
 
      AC_SUBST(GCJFLAGS)])])[]dnl
1049
 
])
1050
 
m4trace:/usr/share/aclocal/libtool.m4:7507: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
1051
 
m4trace:/usr/share/aclocal/libtool.m4:7507: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
1052
 
You should run autoupdate.])dnl
1053
 
m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
1054
 
m4trace:/usr/share/aclocal/libtool.m4:7514: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
1055
 
])
1056
 
m4trace:/usr/share/aclocal/libtool.m4:7519: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
1057
 
m4trace:/usr/share/aclocal/libtool.m4:7519: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
1058
 
You should run autoupdate.])dnl
1059
 
m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
1060
 
m4trace:/usr/share/aclocal/libtool.m4:7639: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
1061
 
m4trace:/usr/share/aclocal/libtool.m4:7639: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
1062
 
You should run autoupdate.])dnl
1063
 
m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
1064
 
m4trace:/usr/share/aclocal/ltdl.m4:16: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
1065
 
_$0($*)
1066
 
])
1067
 
m4trace:/usr/share/aclocal/ltdl.m4:68: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
1068
 
dnl Although the argument is deprecated and no longer documented,
1069
 
dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
1070
 
dnl here make sure it is the same as any other declaration of libltdl's
1071
 
dnl location!  This also ensures lt_ltdl_dir is set when configure.ac is
1072
 
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
1073
 
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
1074
 
_$0()
1075
 
])
1076
 
m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1077
 
_LTDL_CONVENIENCE])
1078
 
m4trace:/usr/share/aclocal/ltdl.m4:81: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
1079
 
You should run autoupdate.])dnl
1080
 
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1081
 
_LTDL_CONVENIENCE])
1082
 
m4trace:/usr/share/aclocal/ltdl.m4:124: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
1083
 
dnl Although the argument is deprecated and no longer documented,
1084
 
dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
1085
 
dnl here make sure it is the same as any other declaration of libltdl's
1086
 
dnl location!  This also ensures lt_ltdl_dir is set when configure.ac is
1087
 
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
1088
 
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
1089
 
_$0()
1090
 
])
1091
 
m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1092
 
_LTDL_INSTALLABLE])
1093
 
m4trace:/usr/share/aclocal/ltdl.m4:137: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
1094
 
You should run autoupdate.])dnl
1095
 
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
1096
 
_LTDL_INSTALLABLE])
1097
 
m4trace:/usr/share/aclocal/ltdl.m4:213: -1- AC_DEFUN([_LT_LIBOBJ], [
1098
 
  m4_pattern_allow([^_LT_LIBOBJS$])
1099
 
  _LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
1100
 
])
1101
 
m4trace:/usr/share/aclocal/ltdl.m4:226: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
1102
 
_LT_SET_OPTIONS([$0], [$1])
1103
 
 
1104
 
dnl We need to keep our own list of libobjs separate from our parent project,
1105
 
dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
1106
 
dnl we look for our own LIBOBJs.
1107
 
m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
1108
 
m4_pushdef([AC_LIBSOURCES])
1109
 
 
1110
 
dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
1111
 
m4_if(_LTDL_MODE, [],
1112
 
        [m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
1113
 
        m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
1114
 
                [m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
1115
 
 
1116
 
AC_ARG_WITH([included_ltdl],
1117
 
    [AS_HELP_STRING([--with-included-ltdl],
1118
 
                    [use the GNU ltdl sources included here])])
1119
 
 
1120
 
if test "x$with_included_ltdl" != xyes; then
1121
 
  # We are not being forced to use the included libltdl sources, so
1122
 
  # decide whether there is a useful installed version we can use.
1123
 
  AC_CHECK_HEADER([ltdl.h],
1124
 
      [AC_CHECK_DECL([lt_dlinterface_register],
1125
 
           [AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
1126
 
               [with_included_ltdl=no],
1127
 
               [with_included_ltdl=yes])],
1128
 
           [with_included_ltdl=yes],
1129
 
           [AC_INCLUDES_DEFAULT
1130
 
            #include <ltdl.h>])],
1131
 
      [with_included_ltdl=yes],
1132
 
      [AC_INCLUDES_DEFAULT]
1133
 
  )
1134
 
fi
1135
 
 
1136
 
dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
1137
 
dnl was called yet, then for old times' sake, we assume libltdl is in an
1138
 
dnl eponymous directory:
1139
 
AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
1140
 
 
1141
 
AC_ARG_WITH([ltdl_include],
1142
 
    [AS_HELP_STRING([--with-ltdl-include=DIR],
1143
 
                    [use the ltdl headers installed in DIR])])
1144
 
 
1145
 
if test -n "$with_ltdl_include"; then
1146
 
  if test -f "$with_ltdl_include/ltdl.h"; then :
1147
 
  else
1148
 
    AC_MSG_ERROR([invalid ltdl include directory: `$with_ltdl_include'])
1149
 
  fi
1150
 
else
1151
 
  with_ltdl_include=no
1152
 
fi
1153
 
 
1154
 
AC_ARG_WITH([ltdl_lib],
1155
 
    [AS_HELP_STRING([--with-ltdl-lib=DIR],
1156
 
                    [use the libltdl.la installed in DIR])])
1157
 
 
1158
 
if test -n "$with_ltdl_lib"; then
1159
 
  if test -f "$with_ltdl_lib/libltdl.la"; then :
1160
 
  else
1161
 
    AC_MSG_ERROR([invalid ltdl library directory: `$with_ltdl_lib'])
1162
 
  fi
1163
 
else
1164
 
  with_ltdl_lib=no
1165
 
fi
1166
 
 
1167
 
case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
1168
 
  ,yes,no,no,)
1169
 
        m4_case(m4_default(_LTDL_TYPE, [convenience]),
1170
 
            [convenience], [_LTDL_CONVENIENCE],
1171
 
            [installable], [_LTDL_INSTALLABLE],
1172
 
          [m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
1173
 
        ;;
1174
 
  ,no,no,no,)
1175
 
        # If the included ltdl is not to be used, then use the
1176
 
        # preinstalled libltdl we found.
1177
 
        AC_DEFINE([HAVE_LTDL], [1],
1178
 
          [Define this if a modern libltdl is already installed])
1179
 
        LIBLTDL=-lltdl
1180
 
        LTDLDEPS=
1181
 
        LTDLINCL=
1182
 
        ;;
1183
 
  ,no*,no,*)
1184
 
        AC_MSG_ERROR([`--with-ltdl-include' and `--with-ltdl-lib' options must be used together])
1185
 
        ;;
1186
 
  *)    with_included_ltdl=no
1187
 
        LIBLTDL="-L$with_ltdl_lib -lltdl"
1188
 
        LTDLDEPS=
1189
 
        LTDLINCL="-I$with_ltdl_include"
1190
 
        ;;
1191
 
esac
1192
 
INCLTDL="$LTDLINCL"
1193
 
 
1194
 
# Report our decision...
1195
 
AC_MSG_CHECKING([where to find libltdl headers])
1196
 
AC_MSG_RESULT([$LTDLINCL])
1197
 
AC_MSG_CHECKING([where to find libltdl library])
1198
 
AC_MSG_RESULT([$LIBLTDL])
1199
 
 
1200
 
_LTDL_SETUP
1201
 
 
1202
 
dnl restore autoconf definition.
1203
 
m4_popdef([AC_LIBOBJ])
1204
 
m4_popdef([AC_LIBSOURCES])
1205
 
 
1206
 
AC_CONFIG_COMMANDS_PRE([
1207
 
    _ltdl_libobjs=
1208
 
    _ltdl_ltlibobjs=
1209
 
    if test -n "$_LT_LIBOBJS"; then
1210
 
      # Remove the extension.
1211
 
      _lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
1212
 
      for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
1213
 
        _ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
1214
 
        _ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
1215
 
      done
1216
 
    fi
1217
 
    AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
1218
 
    AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
1219
 
])
1220
 
 
1221
 
# Only expand once:
1222
 
m4_define([LTDL_INIT])
1223
 
])
1224
 
m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
1225
 
m4trace:/usr/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
1226
 
You should run autoupdate.])dnl
1227
 
LTDL_INIT($@)])
1228
 
m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
1229
 
m4trace:/usr/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
1230
 
You should run autoupdate.])dnl
1231
 
LTDL_INIT($@)])
1232
 
m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
1233
 
m4trace:/usr/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
1234
 
You should run autoupdate.])dnl
1235
 
LTDL_INIT($@)])
1236
 
m4trace:/usr/share/aclocal/ltdl.m4:367: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
1237
 
AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
1238
 
AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
1239
 
AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
1240
 
AC_REQUIRE([LT_LIB_DLLOAD])dnl
1241
 
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1242
 
AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
1243
 
AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
1244
 
AC_REQUIRE([gl_FUNC_ARGZ])dnl
1245
 
 
1246
 
m4_require([_LT_CHECK_OBJDIR])dnl
1247
 
m4_require([_LT_HEADER_DLFCN])dnl
1248
 
m4_require([_LT_CHECK_DLPREOPEN])dnl
1249
 
m4_require([_LT_DECL_SED])dnl
1250
 
 
1251
 
dnl Don't require this, or it will be expanded earlier than the code
1252
 
dnl that sets the variables it relies on:
1253
 
_LT_ENABLE_INSTALL
1254
 
 
1255
 
dnl _LTDL_MODE specific code must be called at least once:
1256
 
_LTDL_MODE_DISPATCH
1257
 
 
1258
 
# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
1259
 
# the user used.  This is so that ltdl.h can pick up the parent projects
1260
 
# config.h file, The first file in AC_CONFIG_HEADERS must contain the
1261
 
# definitions required by ltdl.c.
1262
 
# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
1263
 
AC_CONFIG_COMMANDS_PRE([dnl
1264
 
m4_pattern_allow([^LT_CONFIG_H$])dnl
1265
 
m4_ifset([AH_HEADER],
1266
 
    [LT_CONFIG_H=AH_HEADER],
1267
 
    [m4_ifset([AC_LIST_HEADERS],
1268
 
            [LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's,^[[      ]]*,,;s,[[ :]].*$,,'`],
1269
 
        [])])])
1270
 
AC_SUBST([LT_CONFIG_H])
1271
 
 
1272
 
AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
1273
 
        [], [], [AC_INCLUDES_DEFAULT])
1274
 
 
1275
 
AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
1276
 
AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
1277
 
 
1278
 
m4_pattern_allow([LT_LIBEXT])dnl
1279
 
AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
1280
 
 
1281
 
name=
1282
 
eval "lt_libprefix=\"$libname_spec\""
1283
 
m4_pattern_allow([LT_LIBPREFIX])dnl
1284
 
AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
1285
 
 
1286
 
name=ltdl
1287
 
eval "LTDLOPEN=\"$libname_spec\""
1288
 
AC_SUBST([LTDLOPEN])
1289
 
])
1290
 
m4trace:/usr/share/aclocal/ltdl.m4:443: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1291
 
AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
1292
 
  [lt_cv_sys_dlopen_deplibs],
1293
 
  [# PORTME does your system automatically load deplibs for dlopen?
1294
 
  # or its logical equivalent (e.g. shl_load for HP-UX < 11)
1295
 
  # For now, we just catch OSes we know something about -- in the
1296
 
  # future, we'll try test this programmatically.
1297
 
  lt_cv_sys_dlopen_deplibs=unknown
1298
 
  case $host_os in
1299
 
  aix3*|aix4.1.*|aix4.2.*)
1300
 
    # Unknown whether this is true for these versions of AIX, but
1301
 
    # we want this `case' here to explicitly catch those versions.
1302
 
    lt_cv_sys_dlopen_deplibs=unknown
1303
 
    ;;
1304
 
  aix[[4-9]]*)
1305
 
    lt_cv_sys_dlopen_deplibs=yes
1306
 
    ;;
1307
 
  amigaos*)
1308
 
    case $host_cpu in
1309
 
    powerpc)
1310
 
      lt_cv_sys_dlopen_deplibs=no
1311
 
      ;;
1312
 
    esac
1313
 
    ;;
1314
 
  darwin*)
1315
 
    # Assuming the user has installed a libdl from somewhere, this is true
1316
 
    # If you are looking for one http://www.opendarwin.org/projects/dlcompat
1317
 
    lt_cv_sys_dlopen_deplibs=yes
1318
 
    ;;
1319
 
  freebsd* | dragonfly*)
1320
 
    lt_cv_sys_dlopen_deplibs=yes
1321
 
    ;;
1322
 
  gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
1323
 
    # GNU and its variants, using gnu ld.so (Glibc)
1324
 
    lt_cv_sys_dlopen_deplibs=yes
1325
 
    ;;
1326
 
  hpux10*|hpux11*)
1327
 
    lt_cv_sys_dlopen_deplibs=yes
1328
 
    ;;
1329
 
  interix*)
1330
 
    lt_cv_sys_dlopen_deplibs=yes
1331
 
    ;;
1332
 
  irix[[12345]]*|irix6.[[01]]*)
1333
 
    # Catch all versions of IRIX before 6.2, and indicate that we don't
1334
 
    # know how it worked for any of those versions.
1335
 
    lt_cv_sys_dlopen_deplibs=unknown
1336
 
    ;;
1337
 
  irix*)
1338
 
    # The case above catches anything before 6.2, and it's known that
1339
 
    # at 6.2 and later dlopen does load deplibs.
1340
 
    lt_cv_sys_dlopen_deplibs=yes
1341
 
    ;;
1342
 
  netbsd* | netbsdelf*-gnu)
1343
 
    lt_cv_sys_dlopen_deplibs=yes
1344
 
    ;;
1345
 
  openbsd*)
1346
 
    lt_cv_sys_dlopen_deplibs=yes
1347
 
    ;;
1348
 
  osf[[1234]]*)
1349
 
    # dlopen did load deplibs (at least at 4.x), but until the 5.x series,
1350
 
    # it did *not* use an RPATH in a shared library to find objects the
1351
 
    # library depends on, so we explicitly say `no'.
1352
 
    lt_cv_sys_dlopen_deplibs=no
1353
 
    ;;
1354
 
  osf5.0|osf5.0a|osf5.1)
1355
 
    # dlopen *does* load deplibs and with the right loader patch applied
1356
 
    # it even uses RPATH in a shared library to search for shared objects
1357
 
    # that the library depends on, but there's no easy way to know if that
1358
 
    # patch is installed.  Since this is the case, all we can really
1359
 
    # say is unknown -- it depends on the patch being installed.  If
1360
 
    # it is, this changes to `yes'.  Without it, it would be `no'.
1361
 
    lt_cv_sys_dlopen_deplibs=unknown
1362
 
    ;;
1363
 
  osf*)
1364
 
    # the two cases above should catch all versions of osf <= 5.1.  Read
1365
 
    # the comments above for what we know about them.
1366
 
    # At > 5.1, deplibs are loaded *and* any RPATH in a shared library
1367
 
    # is used to find them so we can finally say `yes'.
1368
 
    lt_cv_sys_dlopen_deplibs=yes
1369
 
    ;;
1370
 
  qnx*)
1371
 
    lt_cv_sys_dlopen_deplibs=yes
1372
 
    ;;
1373
 
  solaris*)
1374
 
    lt_cv_sys_dlopen_deplibs=yes
1375
 
    ;;
1376
 
  sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
1377
 
    libltdl_cv_sys_dlopen_deplibs=yes
1378
 
    ;;
1379
 
  esac
1380
 
  ])
1381
 
if test "$lt_cv_sys_dlopen_deplibs" != yes; then
1382
 
 AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
1383
 
    [Define if the OS needs help to load dependent libraries for dlopen().])
1384
 
fi
1385
 
])
1386
 
m4trace:/usr/share/aclocal/ltdl.m4:542: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1387
 
m4trace:/usr/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
1388
 
You should run autoupdate.])dnl
1389
 
m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
1390
 
m4trace:/usr/share/aclocal/ltdl.m4:549: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1391
 
AC_CACHE_CHECK([which extension is used for runtime loadable modules],
1392
 
  [libltdl_cv_shlibext],
1393
 
[
1394
 
module=yes
1395
 
eval libltdl_cv_shlibext=$shrext_cmds
1396
 
  ])
1397
 
if test -n "$libltdl_cv_shlibext"; then
1398
 
  m4_pattern_allow([LT_MODULE_EXT])dnl
1399
 
  AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
1400
 
    [Define to the extension used for runtime loadable modules, say, ".so".])
1401
 
fi
1402
 
])
1403
 
m4trace:/usr/share/aclocal/ltdl.m4:565: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1404
 
m4trace:/usr/share/aclocal/ltdl.m4:565: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
1405
 
You should run autoupdate.])dnl
1406
 
m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
1407
 
m4trace:/usr/share/aclocal/ltdl.m4:572: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1408
 
AC_CACHE_CHECK([which variable specifies run-time module search path],
1409
 
  [lt_cv_module_path_var], [lt_cv_module_path_var="$shlibpath_var"])
1410
 
if test -n "$lt_cv_module_path_var"; then
1411
 
  m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
1412
 
  AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
1413
 
    [Define to the name of the environment variable that determines the run-time module search path.])
1414
 
fi
1415
 
])
1416
 
m4trace:/usr/share/aclocal/ltdl.m4:584: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1417
 
m4trace:/usr/share/aclocal/ltdl.m4:584: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
1418
 
You should run autoupdate.])dnl
1419
 
m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
1420
 
m4trace:/usr/share/aclocal/ltdl.m4:591: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
1421
 
AC_CACHE_CHECK([for the default library search path],
1422
 
  [lt_cv_sys_dlsearch_path],
1423
 
  [lt_cv_sys_dlsearch_path="$sys_lib_dlsearch_path_spec"])
1424
 
if test -n "$lt_cv_sys_dlsearch_path"; then
1425
 
  sys_dlsearch_path=
1426
 
  for dir in $lt_cv_sys_dlsearch_path; do
1427
 
    if test -z "$sys_dlsearch_path"; then
1428
 
      sys_dlsearch_path="$dir"
1429
 
    else
1430
 
      sys_dlsearch_path="$sys_dlsearch_path$PATH_SEPARATOR$dir"
1431
 
    fi
1432
 
  done
1433
 
  m4_pattern_allow([LT_DLSEARCH_PATH])dnl
1434
 
  AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
1435
 
    [Define to the system default library search path.])
1436
 
fi
1437
 
])
1438
 
m4trace:/usr/share/aclocal/ltdl.m4:612: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1439
 
m4trace:/usr/share/aclocal/ltdl.m4:612: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
1440
 
You should run autoupdate.])dnl
1441
 
m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
1442
 
m4trace:/usr/share/aclocal/ltdl.m4:638: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
1443
 
LT_DLLOADERS=
1444
 
AC_SUBST([LT_DLLOADERS])
1445
 
 
1446
 
AC_LANG_PUSH([C])
1447
 
 
1448
 
LIBADD_DLOPEN=
1449
 
AC_SEARCH_LIBS([dlopen], [dl],
1450
 
        [AC_DEFINE([HAVE_LIBDL], [1],
1451
 
                   [Define if you have the libdl library or equivalent.])
1452
 
        if test "$ac_cv_search_dlopen" != "none required" ; then
1453
 
          LIBADD_DLOPEN="-ldl"
1454
 
        fi
1455
 
        libltdl_cv_lib_dl_dlopen="yes"
1456
 
        LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1457
 
    [AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
1458
 
#  include <dlfcn.h>
1459
 
#endif
1460
 
    ]], [[dlopen(0, 0);]])],
1461
 
            [AC_DEFINE([HAVE_LIBDL], [1],
1462
 
                       [Define if you have the libdl library or equivalent.])
1463
 
            libltdl_cv_func_dlopen="yes"
1464
 
            LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
1465
 
        [AC_CHECK_LIB([svld], [dlopen],
1466
 
                [AC_DEFINE([HAVE_LIBDL], [1],
1467
 
                         [Define if you have the libdl library or equivalent.])
1468
 
                LIBADD_DLOPEN="-lsvld" libltdl_cv_func_dlopen="yes"
1469
 
                LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
1470
 
if test x"$libltdl_cv_func_dlopen" = xyes || test x"$libltdl_cv_lib_dl_dlopen" = xyes
1471
 
then
1472
 
  lt_save_LIBS="$LIBS"
1473
 
  LIBS="$LIBS $LIBADD_DLOPEN"
1474
 
  AC_CHECK_FUNCS([dlerror])
1475
 
  LIBS="$lt_save_LIBS"
1476
 
fi
1477
 
AC_SUBST([LIBADD_DLOPEN])
1478
 
 
1479
 
LIBADD_SHL_LOAD=
1480
 
AC_CHECK_FUNC([shl_load],
1481
 
        [AC_DEFINE([HAVE_SHL_LOAD], [1],
1482
 
                   [Define if you have the shl_load function.])
1483
 
        LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
1484
 
    [AC_CHECK_LIB([dld], [shl_load],
1485
 
            [AC_DEFINE([HAVE_SHL_LOAD], [1],
1486
 
                       [Define if you have the shl_load function.])
1487
 
            LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
1488
 
            LIBADD_SHL_LOAD="-ldld"])])
1489
 
AC_SUBST([LIBADD_SHL_LOAD])
1490
 
 
1491
 
case $host_os in
1492
 
darwin[[1567]].*)
1493
 
# We only want this for pre-Mac OS X 10.4.
1494
 
  AC_CHECK_FUNC([_dyld_func_lookup],
1495
 
        [AC_DEFINE([HAVE_DYLD], [1],
1496
 
                   [Define if you have the _dyld_func_lookup function.])
1497
 
        LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
1498
 
  ;;
1499
 
beos*)
1500
 
  LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
1501
 
  ;;
1502
 
cygwin* | mingw* | os2* | pw32*)
1503
 
  AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
1504
 
  LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
1505
 
  ;;
1506
 
esac
1507
 
 
1508
 
AC_CHECK_LIB([dld], [dld_link],
1509
 
        [AC_DEFINE([HAVE_DLD], [1],
1510
 
                   [Define if you have the GNU dld library.])
1511
 
                LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
1512
 
AC_SUBST([LIBADD_DLD_LINK])
1513
 
 
1514
 
m4_pattern_allow([^LT_DLPREOPEN$])
1515
 
LT_DLPREOPEN=
1516
 
if test -n "$LT_DLLOADERS"
1517
 
then
1518
 
  for lt_loader in $LT_DLLOADERS; do
1519
 
    LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
1520
 
  done
1521
 
  AC_DEFINE([HAVE_LIBDLLOADER], [1],
1522
 
            [Define if libdlloader will be built on this platform])
1523
 
fi
1524
 
AC_SUBST([LT_DLPREOPEN])
1525
 
 
1526
 
dnl This isn't used anymore, but set it for backwards compatibility
1527
 
LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
1528
 
AC_SUBST([LIBADD_DL])
1529
 
 
1530
 
AC_LANG_POP
1531
 
])
1532
 
m4trace:/usr/share/aclocal/ltdl.m4:731: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1533
 
m4trace:/usr/share/aclocal/ltdl.m4:731: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
1534
 
You should run autoupdate.])dnl
1535
 
m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
1536
 
m4trace:/usr/share/aclocal/ltdl.m4:739: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
1537
 
AC_CACHE_CHECK([for _ prefix in compiled symbols],
1538
 
  [lt_cv_sys_symbol_underscore],
1539
 
  [lt_cv_sys_symbol_underscore=no
1540
 
  cat > conftest.$ac_ext <<_LT_EOF
1541
 
void nm_test_func(){}
1542
 
int main(){nm_test_func;return 0;}
1543
 
_LT_EOF
1544
 
  if AC_TRY_EVAL(ac_compile); then
1545
 
    # Now try to grab the symbols.
1546
 
    ac_nlist=conftest.nm
1547
 
    if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
1548
 
      # See whether the symbols have a leading underscore.
1549
 
      if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
1550
 
        lt_cv_sys_symbol_underscore=yes
1551
 
      else
1552
 
        if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
1553
 
          :
1554
 
        else
1555
 
          echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
1556
 
        fi
1557
 
      fi
1558
 
    else
1559
 
      echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
1560
 
    fi
1561
 
  else
1562
 
    echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
1563
 
    cat conftest.c >&AS_MESSAGE_LOG_FD
1564
 
  fi
1565
 
  rm -rf conftest*
1566
 
  ])
1567
 
  sys_symbol_underscore=$lt_cv_sys_symbol_underscore
1568
 
  AC_SUBST([sys_symbol_underscore])
1569
 
])
1570
 
m4trace:/usr/share/aclocal/ltdl.m4:776: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1571
 
m4trace:/usr/share/aclocal/ltdl.m4:776: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
1572
 
You should run autoupdate.])dnl
1573
 
m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
1574
 
m4trace:/usr/share/aclocal/ltdl.m4:783: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
1575
 
if test x"$lt_cv_sys_symbol_underscore" = xyes; then
1576
 
  if test x"$libltdl_cv_func_dlopen" = xyes ||
1577
 
     test x"$libltdl_cv_lib_dl_dlopen" = xyes ; then
1578
 
        AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
1579
 
          [libltdl_cv_need_uscore],
1580
 
          [libltdl_cv_need_uscore=unknown
1581
 
          save_LIBS="$LIBS"
1582
 
          LIBS="$LIBS $LIBADD_DLOPEN"
1583
 
          _LT_TRY_DLOPEN_SELF(
1584
 
            [libltdl_cv_need_uscore=no], [libltdl_cv_need_uscore=yes],
1585
 
            [],                          [libltdl_cv_need_uscore=cross])
1586
 
          LIBS="$save_LIBS"
1587
 
        ])
1588
 
  fi
1589
 
fi
1590
 
 
1591
 
if test x"$libltdl_cv_need_uscore" = xyes; then
1592
 
  AC_DEFINE([NEED_USCORE], [1],
1593
 
    [Define if dlsym() requires a leading underscore in symbol names.])
1594
 
fi
1595
 
])
1596
 
m4trace:/usr/share/aclocal/ltdl.m4:808: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1597
 
m4trace:/usr/share/aclocal/ltdl.m4:808: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
1598
 
You should run autoupdate.])dnl
1599
 
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
1600
 
m4trace:/usr/share/aclocal/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
1601
 
m4trace:/usr/share/aclocal/ltoptions.m4:111: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
1602
 
AC_DIAGNOSE([obsolete],
1603
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you
1604
 
put the `dlopen' option into LT_INIT's first parameter.])
1605
 
])
1606
 
m4trace:/usr/share/aclocal/ltoptions.m4:111: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
1607
 
You should run autoupdate.])dnl
1608
 
_LT_SET_OPTION([LT_INIT], [dlopen])
1609
 
AC_DIAGNOSE([obsolete],
1610
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you
1611
 
put the `dlopen' option into LT_INIT's first parameter.])
1612
 
])
1613
 
m4trace:/usr/share/aclocal/ltoptions.m4:146: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
1614
 
_LT_SET_OPTION([LT_INIT], [win32-dll])
1615
 
AC_DIAGNOSE([obsolete],
1616
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you
1617
 
put the `win32-dll' option into LT_INIT's first parameter.])
1618
 
])
1619
 
m4trace:/usr/share/aclocal/ltoptions.m4:146: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
1620
 
You should run autoupdate.])dnl
1621
 
AC_REQUIRE([AC_CANONICAL_HOST])dnl
1622
 
_LT_SET_OPTION([LT_INIT], [win32-dll])
1623
 
AC_DIAGNOSE([obsolete],
1624
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you
1625
 
put the `win32-dll' option into LT_INIT's first parameter.])
1626
 
])
1627
 
m4trace:/usr/share/aclocal/ltoptions.m4:195: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
1628
 
])
1629
 
m4trace:/usr/share/aclocal/ltoptions.m4:199: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
1630
 
])
1631
 
m4trace:/usr/share/aclocal/ltoptions.m4:203: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
1632
 
m4trace:/usr/share/aclocal/ltoptions.m4:203: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
1633
 
You should run autoupdate.])dnl
1634
 
AC_ENABLE_SHARED($@)])
1635
 
m4trace:/usr/share/aclocal/ltoptions.m4:204: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
1636
 
m4trace:/usr/share/aclocal/ltoptions.m4:204: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
1637
 
You should run autoupdate.])dnl
1638
 
AC_DISABLE_SHARED($@)])
1639
 
m4trace:/usr/share/aclocal/ltoptions.m4:249: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
1640
 
])
1641
 
m4trace:/usr/share/aclocal/ltoptions.m4:253: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
1642
 
])
1643
 
m4trace:/usr/share/aclocal/ltoptions.m4:257: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
1644
 
m4trace:/usr/share/aclocal/ltoptions.m4:257: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
1645
 
You should run autoupdate.])dnl
1646
 
AC_ENABLE_STATIC($@)])
1647
 
m4trace:/usr/share/aclocal/ltoptions.m4:258: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
1648
 
m4trace:/usr/share/aclocal/ltoptions.m4:258: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
1649
 
You should run autoupdate.])dnl
1650
 
AC_DISABLE_STATIC($@)])
1651
 
m4trace:/usr/share/aclocal/ltoptions.m4:303: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1652
 
AC_DIAGNOSE([obsolete],
1653
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
1654
 
the `fast-install' option into LT_INIT's first parameter.])
1655
 
])
1656
 
m4trace:/usr/share/aclocal/ltoptions.m4:303: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
1657
 
You should run autoupdate.])dnl
1658
 
_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
1659
 
AC_DIAGNOSE([obsolete],
1660
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
1661
 
the `fast-install' option into LT_INIT's first parameter.])
1662
 
])
1663
 
m4trace:/usr/share/aclocal/ltoptions.m4:310: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1664
 
AC_DIAGNOSE([obsolete],
1665
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
1666
 
the `disable-fast-install' option into LT_INIT's first parameter.])
1667
 
])
1668
 
m4trace:/usr/share/aclocal/ltoptions.m4:310: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
1669
 
You should run autoupdate.])dnl
1670
 
_LT_SET_OPTION([LT_INIT], [disable-fast-install])
1671
 
AC_DIAGNOSE([obsolete],
1672
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
1673
 
the `disable-fast-install' option into LT_INIT's first parameter.])
1674
 
])
1675
 
m4trace:/usr/share/aclocal/ltoptions.m4:343: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
1676
 
AC_DIAGNOSE([obsolete],
1677
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you
1678
 
put the `pic-only' option into LT_INIT's first parameter.])
1679
 
])
1680
 
m4trace:/usr/share/aclocal/ltoptions.m4:343: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
1681
 
You should run autoupdate.])dnl
1682
 
_LT_SET_OPTION([LT_INIT], [pic-only])
1683
 
AC_DIAGNOSE([obsolete],
1684
 
[$0: Remove this warning and the call to _LT_SET_OPTION when you
1685
 
put the `pic-only' option into LT_INIT's first parameter.])
1686
 
])
1687
 
m4trace:/usr/share/aclocal/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
1688
 
m4trace:/usr/share/aclocal/ltversion.m4:18: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4'
1689
 
macro_revision='1.3293'
1690
 
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
1691
 
_LT_DECL(, macro_revision, 0)
1692
 
])
1693
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
1694
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:40: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
1695
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
1696
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
1697
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_AC_TAGVAR])
1698
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
1699
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_PREOPEN])
1700
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
1701
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_LOCK])
1702
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
1703
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
1704
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
1705
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
1706
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
1707
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LTDL_OBJDIR])
1708
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
1709
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
1710
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_PATH_MAGIC])
1711
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PROG_LD_GNU])
1712
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
1713
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
1714
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
1715
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
1716
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
1717
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
1718
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
1719
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([LT_AC_PROG_EGREP])
1720
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:71: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
1721
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
1722
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
1723
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
1724
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
1725
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:77: -1- AC_DEFUN([_LT_AC_LANG_CXX])
1726
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_F77])
1727
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
1728
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
1729
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
1730
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
1731
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
1732
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
1733
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
1734
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
1735
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
1736
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
1737
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
1738
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
1739
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
1740
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:93: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
1741
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:96: -1- AC_DEFUN([_LT_PROG_F77])
1742
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_FC])
1743
 
m4trace:/usr/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_CXX])
1744
 
m4trace:/usr/share/aclocal/nls.m4:23: -1- AC_DEFUN([AM_NLS], [
1745
 
  AC_MSG_CHECKING([whether NLS is requested])
1746
 
  dnl Default is enabled NLS
1747
 
  AC_ARG_ENABLE([nls],
1748
 
    [  --disable-nls           do not use Native Language Support],
1749
 
    USE_NLS=$enableval, USE_NLS=yes)
1750
 
  AC_MSG_RESULT([$USE_NLS])
1751
 
  AC_SUBST([USE_NLS])
1752
 
])
1753
 
m4trace:/usr/share/aclocal/pkg.m4:27: -1- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$])
1754
 
m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
1755
 
m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
1756
 
AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])
1757
 
AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path])
1758
 
AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path])
1759
 
 
1760
 
if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
1761
 
        AC_PATH_TOOL([PKG_CONFIG], [pkg-config])
1762
 
fi
1763
 
if test -n "$PKG_CONFIG"; then
1764
 
        _pkg_min_version=m4_default([$1], [0.9.0])
1765
 
        AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version])
1766
 
        if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
1767
 
                AC_MSG_RESULT([yes])
1768
 
        else
1769
 
                AC_MSG_RESULT([no])
1770
 
                PKG_CONFIG=""
1771
 
        fi
1772
 
fi[]dnl
1773
 
])
1774
 
m4trace:/usr/share/aclocal/pkg.m4:60: -1- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1775
 
if test -n "$PKG_CONFIG" && \
1776
 
    AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then
1777
 
  m4_default([$2], [:])
1778
 
m4_ifvaln([$3], [else
1779
 
  $3])dnl
1780
 
fi])
1781
 
m4trace:/usr/share/aclocal/pkg.m4:86: -1- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])
1782
 
if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
1783
 
        _pkg_short_errors_supported=yes
1784
 
else
1785
 
        _pkg_short_errors_supported=no
1786
 
fi[]dnl
1787
 
])
1788
 
m4trace:/usr/share/aclocal/pkg.m4:106: -1- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl
1789
 
AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl
1790
 
AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl
1791
 
 
1792
 
pkg_failed=no
1793
 
AC_MSG_CHECKING([for $1])
1794
 
 
1795
 
_PKG_CONFIG([$1][_CFLAGS], [cflags], [$2])
1796
 
_PKG_CONFIG([$1][_LIBS], [libs], [$2])
1797
 
 
1798
 
m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS
1799
 
and $1[]_LIBS to avoid the need to call pkg-config.
1800
 
See the pkg-config man page for more details.])
1801
 
 
1802
 
if test $pkg_failed = yes; then
1803
 
        AC_MSG_RESULT([no])
1804
 
        _PKG_SHORT_ERRORS_SUPPORTED
1805
 
        if test $_pkg_short_errors_supported = yes; then
1806
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "$2" 2>&1`
1807
 
        else 
1808
 
                $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "$2" 2>&1`
1809
 
        fi
1810
 
        # Put the nasty error message in config.log where it belongs
1811
 
        echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD
1812
 
 
1813
 
        m4_default([$4], [AC_MSG_ERROR(
1814
 
[Package requirements ($2) were not met:
1815
 
 
1816
 
$$1_PKG_ERRORS
1817
 
 
1818
 
Consider adjusting the PKG_CONFIG_PATH environment variable if you
1819
 
installed software in a non-standard prefix.
1820
 
 
1821
 
_PKG_TEXT])[]dnl
1822
 
        ])
1823
 
elif test $pkg_failed = untried; then
1824
 
        AC_MSG_RESULT([no])
1825
 
        m4_default([$4], [AC_MSG_FAILURE(
1826
 
[The pkg-config script could not be found or is too old.  Make sure it
1827
 
is in your PATH or set the PKG_CONFIG environment variable to the full
1828
 
path to pkg-config.
1829
 
 
1830
 
_PKG_TEXT
1831
 
 
1832
 
To get pkg-config, see <http://pkg-config.freedesktop.org/>.])[]dnl
1833
 
        ])
1834
 
else
1835
 
        $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS
1836
 
        $1[]_LIBS=$pkg_cv_[]$1[]_LIBS
1837
 
        AC_MSG_RESULT([yes])
1838
 
        $3
1839
 
fi[]dnl
1840
 
])
1841
 
m4trace:/usr/share/aclocal-1.11/amversion.m4:14: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11'
1842
 
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
1843
 
dnl require some minimum version.  Point them to the right macro.
1844
 
m4_if([$1], [1.11.1], [],
1845
 
      [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
1846
 
])
1847
 
m4trace:/usr/share/aclocal-1.11/amversion.m4:33: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl
1848
 
m4_ifndef([AC_AUTOCONF_VERSION],
1849
 
  [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
1850
 
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
1851
 
m4trace:/usr/share/aclocal-1.11/auxdir.m4:47: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly.
1852
 
AC_PREREQ([2.50])dnl
1853
 
# expand $ac_aux_dir to an absolute path
1854
 
am_aux_dir=`cd $ac_aux_dir && pwd`
1855
 
])
1856
 
m4trace:/usr/share/aclocal-1.11/cond.m4:15: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl
1857
 
 ifelse([$1], [TRUE],  [AC_FATAL([$0: invalid condition: $1])],
1858
 
        [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
1859
 
AC_SUBST([$1_TRUE])dnl
1860
 
AC_SUBST([$1_FALSE])dnl
1861
 
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
1862
 
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
1863
 
m4_define([_AM_COND_VALUE_$1], [$2])dnl
1864
 
if $2; then
1865
 
  $1_TRUE=
1866
 
  $1_FALSE='#'
1867
 
else
1868
 
  $1_TRUE='#'
1869
 
  $1_FALSE=
1870
 
fi
1871
 
AC_CONFIG_COMMANDS_PRE(
1872
 
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
1873
 
  AC_MSG_ERROR([[conditional "$1" was never defined.
1874
 
Usually this means the macro was only invoked conditionally.]])
1875
 
fi])])
1876
 
m4trace:/usr/share/aclocal-1.11/depend.m4:28: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
1877
 
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
1878
 
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
1879
 
AC_REQUIRE([AM_DEP_TRACK])dnl
1880
 
 
1881
 
ifelse([$1], CC,   [depcc="$CC"   am_compiler_list=],
1882
 
       [$1], CXX,  [depcc="$CXX"  am_compiler_list=],
1883
 
       [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
1884
 
       [$1], UPC,  [depcc="$UPC"  am_compiler_list=],
1885
 
       [$1], GCJ,  [depcc="$GCJ"  am_compiler_list='gcc3 gcc'],
1886
 
                   [depcc="$$1"   am_compiler_list=])
1887
 
 
1888
 
AC_CACHE_CHECK([dependency style of $depcc],
1889
 
               [am_cv_$1_dependencies_compiler_type],
1890
 
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
1891
 
  # We make a subdir and do the tests there.  Otherwise we can end up
1892
 
  # making bogus files that we don't know about and never remove.  For
1893
 
  # instance it was reported that on HP-UX the gcc test will end up
1894
 
  # making a dummy file named `D' -- because `-MD' means `put the output
1895
 
  # in D'.
1896
 
  mkdir conftest.dir
1897
 
  # Copy depcomp to subdir because otherwise we won't find it if we're
1898
 
  # using a relative directory.
1899
 
  cp "$am_depcomp" conftest.dir
1900
 
  cd conftest.dir
1901
 
  # We will build objects and dependencies in a subdirectory because
1902
 
  # it helps to detect inapplicable dependency modes.  For instance
1903
 
  # both Tru64's cc and ICC support -MD to output dependencies as a
1904
 
  # side effect of compilation, but ICC will put the dependencies in
1905
 
  # the current directory while Tru64 will put them in the object
1906
 
  # directory.
1907
 
  mkdir sub
1908
 
 
1909
 
  am_cv_$1_dependencies_compiler_type=none
1910
 
  if test "$am_compiler_list" = ""; then
1911
 
     am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
1912
 
  fi
1913
 
  am__universal=false
1914
 
  m4_case([$1], [CC],
1915
 
    [case " $depcc " in #(
1916
 
     *\ -arch\ *\ -arch\ *) am__universal=true ;;
1917
 
     esac],
1918
 
    [CXX],
1919
 
    [case " $depcc " in #(
1920
 
     *\ -arch\ *\ -arch\ *) am__universal=true ;;
1921
 
     esac])
1922
 
 
1923
 
  for depmode in $am_compiler_list; do
1924
 
    # Setup a source with many dependencies, because some compilers
1925
 
    # like to wrap large dependency lists on column 80 (with \), and
1926
 
    # we should not choose a depcomp mode which is confused by this.
1927
 
    #
1928
 
    # We need to recreate these files for each test, as the compiler may
1929
 
    # overwrite some of them when testing with obscure command lines.
1930
 
    # This happens at least with the AIX C compiler.
1931
 
    : > sub/conftest.c
1932
 
    for i in 1 2 3 4 5 6; do
1933
 
      echo '#include "conftst'$i'.h"' >> sub/conftest.c
1934
 
      # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with
1935
 
      # Solaris 8's {/usr,}/bin/sh.
1936
 
      touch sub/conftst$i.h
1937
 
    done
1938
 
    echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
1939
 
 
1940
 
    # We check with `-c' and `-o' for the sake of the "dashmstdout"
1941
 
    # mode.  It turns out that the SunPro C++ compiler does not properly
1942
 
    # handle `-M -o', and we need to detect this.  Also, some Intel
1943
 
    # versions had trouble with output in subdirs
1944
 
    am__obj=sub/conftest.${OBJEXT-o}
1945
 
    am__minus_obj="-o $am__obj"
1946
 
    case $depmode in
1947
 
    gcc)
1948
 
      # This depmode causes a compiler race in universal mode.
1949
 
      test "$am__universal" = false || continue
1950
 
      ;;
1951
 
    nosideeffect)
1952
 
      # after this tag, mechanisms are not by side-effect, so they'll
1953
 
      # only be used when explicitly requested
1954
 
      if test "x$enable_dependency_tracking" = xyes; then
1955
 
        continue
1956
 
      else
1957
 
        break
1958
 
      fi
1959
 
      ;;
1960
 
    msvisualcpp | msvcmsys)
1961
 
      # This compiler won't grok `-c -o', but also, the minuso test has
1962
 
      # not run yet.  These depmodes are late enough in the game, and
1963
 
      # so weak that their functioning should not be impacted.
1964
 
      am__obj=conftest.${OBJEXT-o}
1965
 
      am__minus_obj=
1966
 
      ;;
1967
 
    none) break ;;
1968
 
    esac
1969
 
    if depmode=$depmode \
1970
 
       source=sub/conftest.c object=$am__obj \
1971
 
       depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
1972
 
       $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
1973
 
         >/dev/null 2>conftest.err &&
1974
 
       grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
1975
 
       grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
1976
 
       grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
1977
 
       ${MAKE-make} -s -f confmf > /dev/null 2>&1; then
1978
 
      # icc doesn't choke on unknown options, it will just issue warnings
1979
 
      # or remarks (even with -Werror).  So we grep stderr for any message
1980
 
      # that says an option was ignored or not supported.
1981
 
      # When given -MP, icc 7.0 and 7.1 complain thusly:
1982
 
      #   icc: Command line warning: ignoring option '-M'; no argument required
1983
 
      # The diagnosis changed in icc 8.0:
1984
 
      #   icc: Command line remark: option '-MP' not supported
1985
 
      if (grep 'ignoring option' conftest.err ||
1986
 
          grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
1987
 
        am_cv_$1_dependencies_compiler_type=$depmode
1988
 
        break
1989
 
      fi
1990
 
    fi
1991
 
  done
1992
 
 
1993
 
  cd ..
1994
 
  rm -rf conftest.dir
1995
 
else
1996
 
  am_cv_$1_dependencies_compiler_type=none
1997
 
fi
1998
 
])
1999
 
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
2000
 
AM_CONDITIONAL([am__fastdep$1], [
2001
 
  test "x$enable_dependency_tracking" != xno \
2002
 
  && test "$am_cv_$1_dependencies_compiler_type" = gcc3])
2003
 
])
2004
 
m4trace:/usr/share/aclocal-1.11/depend.m4:163: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2005
 
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
2006
 
])
2007
 
m4trace:/usr/share/aclocal-1.11/depend.m4:171: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking,
2008
 
[  --disable-dependency-tracking  speeds up one-time build
2009
 
  --enable-dependency-tracking   do not reject slow dependency extractors])
2010
 
if test "x$enable_dependency_tracking" != xno; then
2011
 
  am_depcomp="$ac_aux_dir/depcomp"
2012
 
  AMDEPBACKSLASH='\'
2013
 
fi
2014
 
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2015
 
AC_SUBST([AMDEPBACKSLASH])dnl
2016
 
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
2017
 
])
2018
 
m4trace:/usr/share/aclocal-1.11/depout.m4:14: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
2019
 
  # Autoconf 2.62 quotes --file arguments for eval, but not when files
2020
 
  # are listed without --file.  Let's play safe and only enable the eval
2021
 
  # if we detect the quoting.
2022
 
  case $CONFIG_FILES in
2023
 
  *\'*) eval set x "$CONFIG_FILES" ;;
2024
 
  *)   set x $CONFIG_FILES ;;
2025
 
  esac
2026
 
  shift
2027
 
  for mf
2028
 
  do
2029
 
    # Strip MF so we end up with the name of the file.
2030
 
    mf=`echo "$mf" | sed -e 's/:.*$//'`
2031
 
    # Check whether this is an Automake generated Makefile or not.
2032
 
    # We used to match only the files named `Makefile.in', but
2033
 
    # some people rename them; so instead we look at the file content.
2034
 
    # Grep'ing the first line is not enough: some people post-process
2035
 
    # each Makefile.in and add a new line on top of each file to say so.
2036
 
    # Grep'ing the whole file is not good either: AIX grep has a line
2037
 
    # limit of 2048, but all sed's we know have understand at least 4000.
2038
 
    if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
2039
 
      dirpart=`AS_DIRNAME("$mf")`
2040
 
    else
2041
 
      continue
2042
 
    fi
2043
 
    # Extract the definition of DEPDIR, am__include, and am__quote
2044
 
    # from the Makefile without running `make'.
2045
 
    DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
2046
 
    test -z "$DEPDIR" && continue
2047
 
    am__include=`sed -n 's/^am__include = //p' < "$mf"`
2048
 
    test -z "am__include" && continue
2049
 
    am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
2050
 
    # When using ansi2knr, U may be empty or an underscore; expand it
2051
 
    U=`sed -n 's/^U = //p' < "$mf"`
2052
 
    # Find all dependency output files, they are included files with
2053
 
    # $(DEPDIR) in their names.  We invoke sed twice because it is the
2054
 
    # simplest approach to changing $(DEPDIR) to its actual value in the
2055
 
    # expansion.
2056
 
    for file in `sed -n "
2057
 
      s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
2058
 
         sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do
2059
 
      # Make sure the directory exists.
2060
 
      test -f "$dirpart/$file" && continue
2061
 
      fdir=`AS_DIRNAME(["$file"])`
2062
 
      AS_MKDIR_P([$dirpart/$fdir])
2063
 
      # echo "creating $dirpart/$file"
2064
 
      echo '# dummy' > "$dirpart/$file"
2065
 
    done
2066
 
  done
2067
 
}
2068
 
])
2069
 
m4trace:/usr/share/aclocal-1.11/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
2070
 
     [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
2071
 
     [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
2072
 
])
2073
 
m4trace:/usr/share/aclocal-1.11/init.m4:26: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl
2074
 
dnl Autoconf wants to disallow AM_ names.  We explicitly allow
2075
 
dnl the ones we care about.
2076
 
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
2077
 
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
2078
 
AC_REQUIRE([AC_PROG_INSTALL])dnl
2079
 
if test "`cd $srcdir && pwd`" != "`pwd`"; then
2080
 
  # Use -I$(srcdir) only when $(srcdir) != ., so that make's output
2081
 
  # is not polluted with repeated "-I."
2082
 
  AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
2083
 
  # test to see if srcdir already configured
2084
 
  if test -f $srcdir/config.status; then
2085
 
    AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
2086
 
  fi
2087
 
fi
2088
 
 
2089
 
# test whether we have cygpath
2090
 
if test -z "$CYGPATH_W"; then
2091
 
  if (cygpath --version) >/dev/null 2>/dev/null; then
2092
 
    CYGPATH_W='cygpath -w'
2093
 
  else
2094
 
    CYGPATH_W=echo
2095
 
  fi
2096
 
fi
2097
 
AC_SUBST([CYGPATH_W])
2098
 
 
2099
 
# Define the identity of the package.
2100
 
dnl Distinguish between old-style and new-style calls.
2101
 
m4_ifval([$2],
2102
 
[m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
2103
 
 AC_SUBST([PACKAGE], [$1])dnl
2104
 
 AC_SUBST([VERSION], [$2])],
2105
 
[_AM_SET_OPTIONS([$1])dnl
2106
 
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
2107
 
m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,,
2108
 
  [m4_fatal([AC_INIT should be called with package and version arguments])])dnl
2109
 
 AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
2110
 
 AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
2111
 
 
2112
 
_AM_IF_OPTION([no-define],,
2113
 
[AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
2114
 
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl
2115
 
 
2116
 
# Some tools Automake needs.
2117
 
AC_REQUIRE([AM_SANITY_CHECK])dnl
2118
 
AC_REQUIRE([AC_ARG_PROGRAM])dnl
2119
 
AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version})
2120
 
AM_MISSING_PROG(AUTOCONF, autoconf)
2121
 
AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version})
2122
 
AM_MISSING_PROG(AUTOHEADER, autoheader)
2123
 
AM_MISSING_PROG(MAKEINFO, makeinfo)
2124
 
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2125
 
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
2126
 
AC_REQUIRE([AM_PROG_MKDIR_P])dnl
2127
 
# We need awk for the "check" target.  The system "awk" is bad on
2128
 
# some platforms.
2129
 
AC_REQUIRE([AC_PROG_AWK])dnl
2130
 
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
2131
 
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
2132
 
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
2133
 
              [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2134
 
                             [_AM_PROG_TAR([v7])])])
2135
 
_AM_IF_OPTION([no-dependencies],,
2136
 
[AC_PROVIDE_IFELSE([AC_PROG_CC],
2137
 
                  [_AM_DEPENDENCIES(CC)],
2138
 
                  [define([AC_PROG_CC],
2139
 
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
2140
 
AC_PROVIDE_IFELSE([AC_PROG_CXX],
2141
 
                  [_AM_DEPENDENCIES(CXX)],
2142
 
                  [define([AC_PROG_CXX],
2143
 
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
2144
 
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2145
 
                  [_AM_DEPENDENCIES(OBJC)],
2146
 
                  [define([AC_PROG_OBJC],
2147
 
                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
2148
 
])
2149
 
_AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl
2150
 
dnl The `parallel-tests' driver may need to know about EXEEXT, so add the
2151
 
dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen.  This macro
2152
 
dnl is hooked onto _AC_COMPILER_EXEEXT early, see below.
2153
 
AC_CONFIG_COMMANDS_PRE(dnl
2154
 
[m4_provide_if([_AM_COMPILER_EXEEXT],
2155
 
  [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
2156
 
])
2157
 
m4trace:/usr/share/aclocal-1.11/init.m4:126: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
2158
 
_am_arg=$1
2159
 
_am_stamp_count=1
2160
 
for _am_header in $config_headers :; do
2161
 
  case $_am_header in
2162
 
    $_am_arg | $_am_arg:* )
2163
 
      break ;;
2164
 
    * )
2165
 
      _am_stamp_count=`expr $_am_stamp_count + 1` ;;
2166
 
  esac
2167
 
done
2168
 
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
2169
 
m4trace:/usr/share/aclocal-1.11/install-sh.m4:11: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2170
 
if test x"${install_sh}" != xset; then
2171
 
  case $am_aux_dir in
2172
 
  *\ * | *\     *)
2173
 
    install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
2174
 
  *)
2175
 
    install_sh="\${SHELL} $am_aux_dir/install-sh"
2176
 
  esac
2177
 
fi
2178
 
AC_SUBST(install_sh)])
2179
 
m4trace:/usr/share/aclocal-1.11/lead-dot.m4:12: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
2180
 
mkdir .tst 2>/dev/null
2181
 
if test -d .tst; then
2182
 
  am__leading_dot=.
2183
 
else
2184
 
  am__leading_dot=_
2185
 
fi
2186
 
rmdir .tst 2>/dev/null
2187
 
AC_SUBST([am__leading_dot])])
2188
 
m4trace:/usr/share/aclocal-1.11/maintainer.m4:19: -1- AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]),
2189
 
       [enable], [m4_define([am_maintainer_other], [disable])],
2190
 
       [disable], [m4_define([am_maintainer_other], [enable])],
2191
 
       [m4_define([am_maintainer_other], [enable])
2192
 
        m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
2193
 
AC_MSG_CHECKING([whether to am_maintainer_other maintainer-specific portions of Makefiles])
2194
 
  dnl maintainer-mode's default is 'disable' unless 'enable' is passed
2195
 
  AC_ARG_ENABLE([maintainer-mode],
2196
 
[  --][am_maintainer_other][-maintainer-mode  am_maintainer_other make rules and dependencies not useful
2197
 
                          (and sometimes confusing) to the casual installer],
2198
 
      [USE_MAINTAINER_MODE=$enableval],
2199
 
      [USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
2200
 
  AC_MSG_RESULT([$USE_MAINTAINER_MODE])
2201
 
  AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
2202
 
  MAINT=$MAINTAINER_MODE_TRUE
2203
 
  AC_SUBST([MAINT])dnl
2204
 
 
2205
 
])
2206
 
m4trace:/usr/share/aclocal-1.11/maintainer.m4:39: -1- AU_DEFUN([jm_MAINTAINER_MODE], [AM_MAINTAINER_MODE])
2207
 
m4trace:/usr/share/aclocal-1.11/maintainer.m4:39: -1- AC_DEFUN([jm_MAINTAINER_MODE], [AC_DIAGNOSE([obsolete], [The macro `jm_MAINTAINER_MODE' is obsolete.
2208
 
You should run autoupdate.])dnl
2209
 
AM_MAINTAINER_MODE])
2210
 
m4trace:/usr/share/aclocal-1.11/make.m4:14: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
2211
 
cat > confinc << 'END'
2212
 
am__doit:
2213
 
        @echo this is the am__doit target
2214
 
.PHONY: am__doit
2215
 
END
2216
 
# If we don't find an include directive, just comment out the code.
2217
 
AC_MSG_CHECKING([for style of include used by $am_make])
2218
 
am__include="#"
2219
 
am__quote=
2220
 
_am_result=none
2221
 
# First try GNU make style include.
2222
 
echo "include confinc" > confmf
2223
 
# Ignore all kinds of additional output from `make'.
2224
 
case `$am_make -s -f confmf 2> /dev/null` in #(
2225
 
*the\ am__doit\ target*)
2226
 
  am__include=include
2227
 
  am__quote=
2228
 
  _am_result=GNU
2229
 
  ;;
2230
 
esac
2231
 
# Now try BSD make style include.
2232
 
if test "$am__include" = "#"; then
2233
 
   echo '.include "confinc"' > confmf
2234
 
   case `$am_make -s -f confmf 2> /dev/null` in #(
2235
 
   *the\ am__doit\ target*)
2236
 
     am__include=.include
2237
 
     am__quote="\""
2238
 
     _am_result=BSD
2239
 
     ;;
2240
 
   esac
2241
 
fi
2242
 
AC_SUBST([am__include])
2243
 
AC_SUBST([am__quote])
2244
 
AC_MSG_RESULT([$_am_result])
2245
 
rm -f confinc confmf
2246
 
])
2247
 
m4trace:/usr/share/aclocal-1.11/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
2248
 
$1=${$1-"${am_missing_run}$2"}
2249
 
AC_SUBST($1)])
2250
 
m4trace:/usr/share/aclocal-1.11/missing.m4:24: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
2251
 
AC_REQUIRE_AUX_FILE([missing])dnl
2252
 
if test x"${MISSING+set}" != xset; then
2253
 
  case $am_aux_dir in
2254
 
  *\ * | *\     *)
2255
 
    MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
2256
 
  *)
2257
 
    MISSING="\${SHELL} $am_aux_dir/missing" ;;
2258
 
  esac
2259
 
fi
2260
 
# Use eval to expand $SHELL
2261
 
if eval "$MISSING --run true"; then
2262
 
  am_missing_run="$MISSING --run "
2263
 
else
2264
 
  am_missing_run=
2265
 
  AC_MSG_WARN([`missing' script is too old or missing])
2266
 
fi
2267
 
])
2268
 
m4trace:/usr/share/aclocal-1.11/mkdirp.m4:11: -1- AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl
2269
 
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
2270
 
dnl Automake 1.8 to 1.9.6 used to define mkdir_p.  We now use MKDIR_P,
2271
 
dnl while keeping a definition of mkdir_p for backward compatibility.
2272
 
dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile.
2273
 
dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of
2274
 
dnl Makefile.ins that do not define MKDIR_P, so we do our own
2275
 
dnl adjustment using top_builddir (which is defined more often than
2276
 
dnl MKDIR_P).
2277
 
AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl
2278
 
case $mkdir_p in
2279
 
  [[\\/$]]* | ?:[[\\/]]*) ;;
2280
 
  */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;;
2281
 
esac
2282
 
])
2283
 
m4trace:/usr/share/aclocal-1.11/options.m4:13: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
2284
 
m4trace:/usr/share/aclocal-1.11/options.m4:19: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)])
2285
 
m4trace:/usr/share/aclocal-1.11/options.m4:25: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
2286
 
m4trace:/usr/share/aclocal-1.11/options.m4:31: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
2287
 
m4trace:/usr/share/aclocal-1.11/runlog.m4:12: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
2288
 
   ($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
2289
 
   ac_status=$?
2290
 
   echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
2291
 
   (exit $ac_status); }])
2292
 
m4trace:/usr/share/aclocal-1.11/sanity.m4:14: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
2293
 
# Just in case
2294
 
sleep 1
2295
 
echo timestamp > conftest.file
2296
 
# Reject unsafe characters in $srcdir or the absolute working directory
2297
 
# name.  Accept space and tab only in the latter.
2298
 
am_lf='
2299
 
'
2300
 
case `pwd` in
2301
 
  *[[\\\"\#\$\&\'\`$am_lf]]*)
2302
 
    AC_MSG_ERROR([unsafe absolute working directory name]);;
2303
 
esac
2304
 
case $srcdir in
2305
 
  *[[\\\"\#\$\&\'\`$am_lf\ \    ]]*)
2306
 
    AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);;
2307
 
esac
2308
 
 
2309
 
# Do `set' in a subshell so we don't clobber the current shell's
2310
 
# arguments.  Must try -L first in case configure is actually a
2311
 
# symlink; some systems play weird games with the mod time of symlinks
2312
 
# (eg FreeBSD returns the mod time of the symlink's containing
2313
 
# directory).
2314
 
if (
2315
 
   set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
2316
 
   if test "$[*]" = "X"; then
2317
 
      # -L didn't work.
2318
 
      set X `ls -t "$srcdir/configure" conftest.file`
2319
 
   fi
2320
 
   rm -f conftest.file
2321
 
   if test "$[*]" != "X $srcdir/configure conftest.file" \
2322
 
      && test "$[*]" != "X conftest.file $srcdir/configure"; then
2323
 
 
2324
 
      # If neither matched, then we have a broken ls.  This can happen
2325
 
      # if, for instance, CONFIG_SHELL is bash and it inherits a
2326
 
      # broken ls alias from the environment.  This has actually
2327
 
      # happened.  Such a system could not be considered "sane".
2328
 
      AC_MSG_ERROR([ls -t appears to fail.  Make sure there is not a broken
2329
 
alias in your environment])
2330
 
   fi
2331
 
 
2332
 
   test "$[2]" = conftest.file
2333
 
   )
2334
 
then
2335
 
   # Ok.
2336
 
   :
2337
 
else
2338
 
   AC_MSG_ERROR([newly created file is older than distributed files!
2339
 
Check your system clock])
2340
 
fi
2341
 
AC_MSG_RESULT(yes)])
2342
 
m4trace:/usr/share/aclocal-1.11/silent.m4:14: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules],
2343
 
[  --enable-silent-rules          less verbose build output (undo: `make V=1')
2344
 
  --disable-silent-rules         verbose build output (undo: `make V=0')])
2345
 
case $enable_silent_rules in
2346
 
yes) AM_DEFAULT_VERBOSITY=0;;
2347
 
no)  AM_DEFAULT_VERBOSITY=1;;
2348
 
*)   AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
2349
 
esac
2350
 
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
2351
 
AM_BACKSLASH='\'
2352
 
AC_SUBST([AM_BACKSLASH])dnl
2353
 
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
2354
 
])
2355
 
m4trace:/usr/share/aclocal-1.11/strip.m4:17: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
2356
 
# Installed binaries are usually stripped using `strip' when the user
2357
 
# run `make install-strip'.  However `strip' might not be the right
2358
 
# tool to use in cross-compilation environments, therefore Automake
2359
 
# will honor the `STRIP' environment variable to overrule this program.
2360
 
dnl Don't test for $cross_compiling = yes, because it might be `maybe'.
2361
 
if test "$cross_compiling" != no; then
2362
 
  AC_CHECK_TOOL([STRIP], [strip], :)
2363
 
fi
2364
 
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
2365
 
AC_SUBST([INSTALL_STRIP_PROGRAM])])
2366
 
m4trace:/usr/share/aclocal-1.11/substnot.m4:14: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
2367
 
m4trace:/usr/share/aclocal-1.11/substnot.m4:19: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
2368
 
m4trace:/usr/share/aclocal-1.11/tar.m4:24: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility.
2369
 
AM_MISSING_PROG([AMTAR], [tar])
2370
 
m4_if([$1], [v7],
2371
 
     [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'],
2372
 
     [m4_case([$1], [ustar],, [pax],,
2373
 
              [m4_fatal([Unknown tar format])])
2374
 
AC_MSG_CHECKING([how to create a $1 tar archive])
2375
 
# Loop over all known methods to create a tar archive until one works.
2376
 
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
2377
 
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
2378
 
# Do not fold the above two line into one, because Tru64 sh and
2379
 
# Solaris sh will not grok spaces in the rhs of `-'.
2380
 
for _am_tool in $_am_tools
2381
 
do
2382
 
  case $_am_tool in
2383
 
  gnutar)
2384
 
    for _am_tar in tar gnutar gtar;
2385
 
    do
2386
 
      AM_RUN_LOG([$_am_tar --version]) && break
2387
 
    done
2388
 
    am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
2389
 
    am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
2390
 
    am__untar="$_am_tar -xf -"
2391
 
    ;;
2392
 
  plaintar)
2393
 
    # Must skip GNU tar: if it does not support --format= it doesn't create
2394
 
    # ustar tarball either.
2395
 
    (tar --version) >/dev/null 2>&1 && continue
2396
 
    am__tar='tar chf - "$$tardir"'
2397
 
    am__tar_='tar chf - "$tardir"'
2398
 
    am__untar='tar xf -'
2399
 
    ;;
2400
 
  pax)
2401
 
    am__tar='pax -L -x $1 -w "$$tardir"'
2402
 
    am__tar_='pax -L -x $1 -w "$tardir"'
2403
 
    am__untar='pax -r'
2404
 
    ;;
2405
 
  cpio)
2406
 
    am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
2407
 
    am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
2408
 
    am__untar='cpio -i -H $1 -d'
2409
 
    ;;
2410
 
  none)
2411
 
    am__tar=false
2412
 
    am__tar_=false
2413
 
    am__untar=false
2414
 
    ;;
2415
 
  esac
2416
 
 
2417
 
  # If the value was cached, stop now.  We just wanted to have am__tar
2418
 
  # and am__untar set.
2419
 
  test -n "${am_cv_prog_tar_$1}" && break
2420
 
 
2421
 
  # tar/untar a dummy directory, and stop if the command works
2422
 
  rm -rf conftest.dir
2423
 
  mkdir conftest.dir
2424
 
  echo GrepMe > conftest.dir/file
2425
 
  AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
2426
 
  rm -rf conftest.dir
2427
 
  if test -s conftest.tar; then
2428
 
    AM_RUN_LOG([$am__untar <conftest.tar])
2429
 
    grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
2430
 
  fi
2431
 
done
2432
 
rm -rf conftest.dir
2433
 
 
2434
 
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
2435
 
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
2436
 
AC_SUBST([am__tar])
2437
 
AC_SUBST([am__untar])
2438
 
])
2439
 
m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?A[CHUM]_])
2440
 
m4trace:configure.ac:4: -1- m4_pattern_forbid([_AC_])
2441
 
m4trace:configure.ac:4: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
2442
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^AS_FLAGS$])
2443
 
m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?m4_])
2444
 
m4trace:configure.ac:4: -1- m4_pattern_forbid([^dnl$])
2445
 
m4trace:configure.ac:4: -1- m4_pattern_forbid([^_?AS_])
2446
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^SHELL$])
2447
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PATH_SEPARATOR$])
2448
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_NAME$])
2449
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2450
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2451
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_STRING$])
2452
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2453
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_URL$])
2454
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^exec_prefix$])
2455
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^prefix$])
2456
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^program_transform_name$])
2457
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^bindir$])
2458
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^sbindir$])
2459
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^libexecdir$])
2460
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^datarootdir$])
2461
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^datadir$])
2462
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^sysconfdir$])
2463
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^sharedstatedir$])
2464
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^localstatedir$])
2465
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^includedir$])
2466
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^oldincludedir$])
2467
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^docdir$])
2468
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^infodir$])
2469
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^htmldir$])
2470
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^dvidir$])
2471
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^pdfdir$])
2472
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^psdir$])
2473
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^libdir$])
2474
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^localedir$])
2475
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^mandir$])
2476
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_NAME$])
2477
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
2478
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_VERSION$])
2479
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_STRING$])
2480
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
2481
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^PACKAGE_URL$])
2482
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^DEFS$])
2483
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_C$])
2484
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_N$])
2485
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^ECHO_T$])
2486
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^LIBS$])
2487
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^build_alias$])
2488
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^host_alias$])
2489
 
m4trace:configure.ac:4: -1- m4_pattern_allow([^target_alias$])
2490
 
m4trace:configure.ac:5: -1- AM_SILENT_RULES([yes])
2491
 
m4trace:configure.ac:5: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
2492
 
m4trace:configure.ac:5: -1- m4_pattern_allow([^AM_BACKSLASH$])
2493
 
m4trace:configure.ac:5: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
2494
 
m4trace:configure.ac:7: -1- AM_INIT_AUTOMAKE([pdf_converter], [0.1])
2495
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
2496
 
m4trace:configure.ac:7: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
2497
 
m4trace:configure.ac:7: -1- AM_AUTOMAKE_VERSION([1.11.1])
2498
 
m4trace:configure.ac:7: -1- _AM_AUTOCONF_VERSION([2.68])
2499
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
2500
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
2501
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^INSTALL_DATA$])
2502
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^am__isrc$])
2503
 
m4trace:configure.ac:7: -1- _AM_SUBST_NOTMAKE([am__isrc])
2504
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^CYGPATH_W$])
2505
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^PACKAGE$])
2506
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^VERSION$])
2507
 
m4trace:configure.ac:7: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package])
2508
 
 AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])
2509
 
m4trace:configure.ac:7: -2- _AM_MANGLE_OPTION([no-define])
2510
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^PACKAGE$])
2511
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^VERSION$])
2512
 
m4trace:configure.ac:7: -1- AM_SANITY_CHECK
2513
 
m4trace:configure.ac:7: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
2514
 
m4trace:configure.ac:7: -1- AM_MISSING_HAS_RUN
2515
 
m4trace:configure.ac:7: -1- AM_AUX_DIR_EXPAND
2516
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^ACLOCAL$])
2517
 
m4trace:configure.ac:7: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
2518
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^AUTOCONF$])
2519
 
m4trace:configure.ac:7: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
2520
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^AUTOMAKE$])
2521
 
m4trace:configure.ac:7: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
2522
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^AUTOHEADER$])
2523
 
m4trace:configure.ac:7: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
2524
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^MAKEINFO$])
2525
 
m4trace:configure.ac:7: -1- AM_PROG_INSTALL_SH
2526
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^install_sh$])
2527
 
m4trace:configure.ac:7: -1- AM_PROG_INSTALL_STRIP
2528
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^STRIP$])
2529
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
2530
 
m4trace:configure.ac:7: -1- AM_PROG_MKDIR_P
2531
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^MKDIR_P$])
2532
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^mkdir_p$])
2533
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^AWK$])
2534
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^SET_MAKE$])
2535
 
m4trace:configure.ac:7: -1- AM_SET_LEADING_DOT
2536
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^am__leading_dot$])
2537
 
m4trace:configure.ac:7: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
2538
 
                             [_AM_PROG_TAR([v7])])])
2539
 
m4trace:configure.ac:7: -2- _AM_MANGLE_OPTION([tar-ustar])
2540
 
m4trace:configure.ac:7: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
2541
 
m4trace:configure.ac:7: -2- _AM_MANGLE_OPTION([tar-pax])
2542
 
m4trace:configure.ac:7: -1- _AM_PROG_TAR([v7])
2543
 
m4trace:configure.ac:7: -1- AM_MISSING_PROG([AMTAR], [tar])
2544
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^AMTAR$])
2545
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^am__tar$])
2546
 
m4trace:configure.ac:7: -1- m4_pattern_allow([^am__untar$])
2547
 
m4trace:configure.ac:7: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
2548
 
                  [_AM_DEPENDENCIES(CC)],
2549
 
                  [define([AC_PROG_CC],
2550
 
                          defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl
2551
 
AC_PROVIDE_IFELSE([AC_PROG_CXX],
2552
 
                  [_AM_DEPENDENCIES(CXX)],
2553
 
                  [define([AC_PROG_CXX],
2554
 
                          defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl
2555
 
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
2556
 
                  [_AM_DEPENDENCIES(OBJC)],
2557
 
                  [define([AC_PROG_OBJC],
2558
 
                          defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl
2559
 
])
2560
 
m4trace:configure.ac:7: -2- _AM_MANGLE_OPTION([no-dependencies])
2561
 
m4trace:configure.ac:7: -1- _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])
2562
 
m4trace:configure.ac:7: -2- _AM_MANGLE_OPTION([silent-rules])
2563
 
m4trace:configure.ac:9: -1- AM_MAINTAINER_MODE
2564
 
m4trace:configure.ac:9: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
2565
 
m4trace:configure.ac:9: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
2566
 
m4trace:configure.ac:9: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
2567
 
m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
2568
 
m4trace:configure.ac:9: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
2569
 
m4trace:configure.ac:9: -1- m4_pattern_allow([^MAINT$])
2570
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
2571
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CFLAGS$])
2572
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^LDFLAGS$])
2573
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^LIBS$])
2574
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CPPFLAGS$])
2575
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
2576
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
2577
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
2578
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CC$])
2579
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^ac_ct_CC$])
2580
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^EXEEXT$])
2581
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^OBJEXT$])
2582
 
m4trace:configure.ac:11: -1- _AM_DEPENDENCIES([CC])
2583
 
m4trace:configure.ac:11: -1- AM_SET_DEPDIR
2584
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^DEPDIR$])
2585
 
m4trace:configure.ac:11: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
2586
 
m4trace:configure.ac:11: -1- AM_MAKE_INCLUDE
2587
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^am__include$])
2588
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^am__quote$])
2589
 
m4trace:configure.ac:11: -1- AM_DEP_TRACK
2590
 
m4trace:configure.ac:11: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
2591
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^AMDEP_TRUE$])
2592
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^AMDEP_FALSE$])
2593
 
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
2594
 
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
2595
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
2596
 
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
2597
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^CCDEPMODE$])
2598
 
m4trace:configure.ac:11: -1- AM_CONDITIONAL([am__fastdepCC], [
2599
 
  test "x$enable_dependency_tracking" != xno \
2600
 
  && test "$am_cv_CC_dependencies_compiler_type" = gcc3])
2601
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
2602
 
m4trace:configure.ac:11: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
2603
 
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
2604
 
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
2605
 
m4trace:configure.ac:20: -1- m4_pattern_allow([^GETTEXT_PACKAGE$])
2606
 
m4trace:configure.ac:21: -1- m4_pattern_allow([^GETTEXT_PACKAGE$])
2607
 
m4trace:configure.ac:22: -1- AM_GLIB_GNU_GETTEXT
2608
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^CPP$])
2609
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^CPPFLAGS$])
2610
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^CPP$])
2611
 
m4trace:configure.ac:22: -1- AC_PROG_EGREP
2612
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^GREP$])
2613
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^EGREP$])
2614
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^STDC_HEADERS$])
2615
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^HAVE_LOCALE_H$])
2616
 
m4trace:configure.ac:22: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
2617
 
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
2618
 
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
2619
 
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
2620
 
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
2621
 
/usr/share/aclocal/glib-gettext.m4:48: GLIB_LC_MESSAGES is expanded from...
2622
 
/usr/share/aclocal/glib-gettext.m4:312: GLIB_GNU_GETTEXT is expanded from...
2623
 
/usr/share/aclocal/glib-gettext.m4:412: AM_GLIB_GNU_GETTEXT is expanded from...
2624
 
configure.ac:22: the top level])
2625
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^HAVE_LC_MESSAGES$])
2626
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^USE_NLS$])
2627
 
m4trace:configure.ac:22: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
2628
 
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
2629
 
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
2630
 
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
2631
 
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
2632
 
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
2633
 
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
2634
 
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
2635
 
/usr/share/aclocal/glib-gettext.m4:102: GLIB_WITH_NLS is expanded from...
2636
 
/usr/share/aclocal/glib-gettext.m4:312: GLIB_GNU_GETTEXT is expanded from...
2637
 
/usr/share/aclocal/glib-gettext.m4:412: AM_GLIB_GNU_GETTEXT is expanded from...
2638
 
configure.ac:22: the top level])
2639
 
m4trace:configure.ac:22: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
2640
 
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
2641
 
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
2642
 
../../lib/autoconf/general.m4:2032: AC_CACHE_VAL is expanded from...
2643
 
../../lib/autoconf/general.m4:2053: AC_CACHE_CHECK is expanded from...
2644
 
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
2645
 
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
2646
 
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
2647
 
/usr/share/aclocal/glib-gettext.m4:102: GLIB_WITH_NLS is expanded from...
2648
 
/usr/share/aclocal/glib-gettext.m4:312: GLIB_GNU_GETTEXT is expanded from...
2649
 
/usr/share/aclocal/glib-gettext.m4:412: AM_GLIB_GNU_GETTEXT is expanded from...
2650
 
configure.ac:22: the top level])
2651
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^HAVE_BIND_TEXTDOMAIN_CODESET$])
2652
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^HAVE_BIND_TEXTDOMAIN_CODESET$])
2653
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^HAVE_GETTEXT$])
2654
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^MSGFMT$])
2655
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^HAVE_DCGETTEXT$])
2656
 
m4trace:configure.ac:22: -1- GLIB_RUN_PROG([$MSGFMT -c -o /dev/null], [
2657
 
msgid ""
2658
 
msgstr ""
2659
 
"Content-Type: text/plain; charset=UTF-8\n"
2660
 
"Project-Id-Version: test 1.0\n"
2661
 
"PO-Revision-Date: 2007-02-15 12:01+0100\n"
2662
 
"Last-Translator: test <foo@bar.xx>\n"
2663
 
"Language-Team: C <LL@li.org>\n"
2664
 
"MIME-Version: 1.0\n"
2665
 
"Content-Transfer-Encoding: 8bit\n"
2666
 
], [MSGFMT_OPTS=-c; AC_MSG_RESULT([yes])], [AC_MSG_RESULT([no])])
2667
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^MSGFMT_OPTS$])
2668
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^GMSGFMT$])
2669
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^XGETTEXT$])
2670
 
m4trace:configure.ac:22: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
2671
 
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
2672
 
../../lib/m4sugar/m4sh.m4:606: AS_IF is expanded from...
2673
 
../../lib/autoconf/headers.m4:129: _AC_CHECK_HEADER_MONGREL is expanded from...
2674
 
../../lib/autoconf/headers.m4:67: AC_CHECK_HEADER is expanded from...
2675
 
/usr/share/aclocal/glib-gettext.m4:102: GLIB_WITH_NLS is expanded from...
2676
 
/usr/share/aclocal/glib-gettext.m4:312: GLIB_GNU_GETTEXT is expanded from...
2677
 
/usr/share/aclocal/glib-gettext.m4:412: AM_GLIB_GNU_GETTEXT is expanded from...
2678
 
configure.ac:22: the top level])
2679
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^ENABLE_NLS$])
2680
 
m4trace:configure.ac:22: -1- _m4_warn([obsolete], [The macro `AC_OUTPUT_COMMANDS' is obsolete.
2681
 
You should run autoupdate.], [../../lib/autoconf/status.m4:1028: AC_OUTPUT_COMMANDS is expanded from...
2682
 
/usr/share/aclocal/glib-gettext.m4:102: GLIB_WITH_NLS is expanded from...
2683
 
/usr/share/aclocal/glib-gettext.m4:312: GLIB_GNU_GETTEXT is expanded from...
2684
 
/usr/share/aclocal/glib-gettext.m4:412: AM_GLIB_GNU_GETTEXT is expanded from...
2685
 
configure.ac:22: the top level])
2686
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^CATALOGS$])
2687
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^CATOBJEXT$])
2688
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^DATADIRNAME$])
2689
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^GMOFILES$])
2690
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^INSTOBJEXT$])
2691
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^INTLLIBS$])
2692
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^PO_IN_DATADIR_TRUE$])
2693
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^PO_IN_DATADIR_FALSE$])
2694
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^POFILES$])
2695
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^POSUB$])
2696
 
m4trace:configure.ac:22: -1- m4_pattern_allow([^MKINSTALLDIRS$])
2697
 
m4trace:configure.ac:23: -1- IT_PROG_INTLTOOL([0.35.0])
2698
 
m4trace:configure.ac:23: -1- AM_NLS
2699
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^USE_NLS$])
2700
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_UPDATE$])
2701
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_MERGE$])
2702
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_EXTRACT$])
2703
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_DESKTOP_RULE])
2704
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_DESKTOP_RULE$])
2705
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_DESKTOP_RULE])
2706
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_DIRECTORY_RULE])
2707
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_DIRECTORY_RULE$])
2708
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_DIRECTORY_RULE])
2709
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_KEYS_RULE])
2710
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_KEYS_RULE$])
2711
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_KEYS_RULE])
2712
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_PROP_RULE])
2713
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_PROP_RULE$])
2714
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_PROP_RULE])
2715
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_OAF_RULE])
2716
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_OAF_RULE$])
2717
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_OAF_RULE])
2718
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_PONG_RULE])
2719
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_PONG_RULE$])
2720
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_PONG_RULE])
2721
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_SERVER_RULE])
2722
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_SERVER_RULE$])
2723
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_SERVER_RULE])
2724
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_SHEET_RULE])
2725
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_SHEET_RULE$])
2726
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_SHEET_RULE])
2727
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_SOUNDLIST_RULE])
2728
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_SOUNDLIST_RULE$])
2729
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_SOUNDLIST_RULE])
2730
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_UI_RULE])
2731
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_UI_RULE$])
2732
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_UI_RULE])
2733
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_XAM_RULE])
2734
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_XAM_RULE$])
2735
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_XAM_RULE])
2736
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_KBD_RULE])
2737
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_KBD_RULE$])
2738
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_KBD_RULE])
2739
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_XML_RULE])
2740
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_XML_RULE$])
2741
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_XML_RULE])
2742
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_XML_NOMERGE_RULE])
2743
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_XML_NOMERGE_RULE$])
2744
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_XML_NOMERGE_RULE])
2745
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_CAVES_RULE])
2746
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_CAVES_RULE$])
2747
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_CAVES_RULE])
2748
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_SCHEMAS_RULE])
2749
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_SCHEMAS_RULE$])
2750
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_SCHEMAS_RULE])
2751
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_THEME_RULE])
2752
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_THEME_RULE$])
2753
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_THEME_RULE])
2754
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_SERVICE_RULE])
2755
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_SERVICE_RULE$])
2756
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_SERVICE_RULE])
2757
 
m4trace:configure.ac:23: -1- _IT_SUBST([INTLTOOL_POLICY_RULE])
2758
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_POLICY_RULE$])
2759
 
m4trace:configure.ac:23: -1- _AM_SUBST_NOTMAKE([INTLTOOL_POLICY_RULE])
2760
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^XGETTEXT$])
2761
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^MSGMERGE$])
2762
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^MSGFMT$])
2763
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^GMSGFMT$])
2764
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^INTLTOOL_PERL$])
2765
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^ALL_LINGUAS$])
2766
 
m4trace:configure.ac:23: -1- m4_pattern_allow([^DATADIRNAME$])
2767
 
m4trace:configure.ac:23: -1- IT_PO_SUBDIR([po])
2768
 
m4trace:configure.ac:27: -1- AM_PROG_LIBTOOL
2769
 
m4trace:configure.ac:27: -1- _m4_warn([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
2770
 
You should run autoupdate.], [/usr/share/aclocal/libtool.m4:108: AM_PROG_LIBTOOL is expanded from...
2771
 
configure.ac:27: the top level])
2772
 
m4trace:configure.ac:27: -1- LT_INIT
2773
 
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
2774
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
2775
 
m4trace:configure.ac:27: -1- LTOPTIONS_VERSION
2776
 
m4trace:configure.ac:27: -1- LTSUGAR_VERSION
2777
 
m4trace:configure.ac:27: -1- LTVERSION_VERSION
2778
 
m4trace:configure.ac:27: -1- LTOBSOLETE_VERSION
2779
 
m4trace:configure.ac:27: -1- _LT_PROG_LTMAIN
2780
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^LIBTOOL$])
2781
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^build$])
2782
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^build_cpu$])
2783
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^build_vendor$])
2784
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^build_os$])
2785
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^host$])
2786
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^host_cpu$])
2787
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^host_vendor$])
2788
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^host_os$])
2789
 
m4trace:configure.ac:27: -1- _LT_PREPARE_SED_QUOTE_VARS
2790
 
m4trace:configure.ac:27: -1- _LT_PROG_ECHO_BACKSLASH
2791
 
m4trace:configure.ac:27: -1- LT_PATH_LD
2792
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^SED$])
2793
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^FGREP$])
2794
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^GREP$])
2795
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^LD$])
2796
 
m4trace:configure.ac:27: -1- LT_PATH_NM
2797
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^DUMPBIN$])
2798
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
2799
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^DUMPBIN$])
2800
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^NM$])
2801
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^LN_S$])
2802
 
m4trace:configure.ac:27: -1- LT_CMD_MAX_LEN
2803
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^OBJDUMP$])
2804
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^OBJDUMP$])
2805
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^DLLTOOL$])
2806
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^DLLTOOL$])
2807
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^AR$])
2808
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^ac_ct_AR$])
2809
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^STRIP$])
2810
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^RANLIB$])
2811
 
m4trace:configure.ac:27: -1- _LT_WITH_SYSROOT
2812
 
m4trace:configure.ac:27: -1- m4_pattern_allow([LT_OBJDIR])
2813
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^LT_OBJDIR$])
2814
 
m4trace:configure.ac:27: -1- _LT_CC_BASENAME([$compiler])
2815
 
m4trace:configure.ac:27: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
2816
 
m4trace:configure.ac:27: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
2817
 
m4trace:configure.ac:27: -1- LT_SUPPORTED_TAG([CC])
2818
 
m4trace:configure.ac:27: -1- _LT_COMPILER_BOILERPLATE
2819
 
m4trace:configure.ac:27: -1- _LT_LINKER_BOILERPLATE
2820
 
m4trace:configure.ac:27: -1- _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], [lt_cv_prog_compiler_rtti_exceptions], [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, )="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, ) -fno-rtti -fno-exceptions"])
2821
 
m4trace:configure.ac:27: -1- _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, ) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, )], [$_LT_TAGVAR(lt_prog_compiler_pic, )@&t@m4_if([],[],[ -DPIC],[m4_if([],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, ) in
2822
 
     "" | " "*) ;;
2823
 
     *) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
2824
 
     esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
2825
 
     _LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
2826
 
m4trace:configure.ac:27: -1- _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], [lt_cv_prog_compiler_static_works], [$lt_tmp_static_flag], [], [_LT_TAGVAR(lt_prog_compiler_static, )=])
2827
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^MANIFEST_TOOL$])
2828
 
m4trace:configure.ac:27: -1- _LT_REQUIRED_DARWIN_CHECKS
2829
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^DSYMUTIL$])
2830
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^NMEDIT$])
2831
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^LIPO$])
2832
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^OTOOL$])
2833
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^OTOOL64$])
2834
 
m4trace:configure.ac:27: -1- _LT_LINKER_OPTION([if $CC understands -b], [lt_cv_prog_compiler__b], [-b], [_LT_TAGVAR(archive_cmds, )='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, )='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])
2835
 
m4trace:configure.ac:27: -1- LT_SYS_DLOPEN_SELF
2836
 
m4trace:configure.ac:27: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
2837
 
m4trace:configure.ac:31: -1- PKG_CHECK_MODULES([PDF_CONVERTER], [gtk+-3.0 >= 2.90.3 ])
2838
 
m4trace:configure.ac:31: -1- PKG_PROG_PKG_CONFIG
2839
 
m4trace:configure.ac:31: -1- m4_pattern_forbid([^_?PKG_[A-Z_]+$])
2840
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PKG_CONFIG(_(PATH|LIBDIR|SYSROOT_DIR|ALLOW_SYSTEM_(CFLAGS|LIBS)))?$])
2841
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PKG_CONFIG_(DISABLE_UNINSTALLED|TOP_BUILD_DIR|DEBUG_SPEW)$])
2842
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PKG_CONFIG$])
2843
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PKG_CONFIG_PATH$])
2844
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PKG_CONFIG_LIBDIR$])
2845
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PKG_CONFIG$])
2846
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PDF_CONVERTER_CFLAGS$])
2847
 
m4trace:configure.ac:31: -1- m4_pattern_allow([^PDF_CONVERTER_LIBS$])
2848
 
m4trace:configure.ac:31: -1- PKG_CHECK_EXISTS([gtk+-3.0 >= 2.90.3 ], [pkg_cv_[]PDF_CONVERTER_CFLAGS=`$PKG_CONFIG --[]cflags "gtk+-3.0 >= 2.90.3 " 2>/dev/null`
2849
 
                      test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
2850
 
m4trace:configure.ac:31: -1- PKG_CHECK_EXISTS([gtk+-3.0 >= 2.90.3 ], [pkg_cv_[]PDF_CONVERTER_LIBS=`$PKG_CONFIG --[]libs "gtk+-3.0 >= 2.90.3 " 2>/dev/null`
2851
 
                      test "x$?" != "x0" && pkg_failed=yes ], [pkg_failed=yes])
2852
 
m4trace:configure.ac:31: -1- _PKG_SHORT_ERRORS_SUPPORTED
2853
 
m4trace:configure.ac:36: -1- _m4_warn([obsolete], [AC_OUTPUT should be used without arguments.
2854
 
You should run autoupdate.], [])
2855
 
m4trace:configure.ac:36: -1- m4_pattern_allow([^LIB@&t@OBJS$])
2856
 
m4trace:configure.ac:36: -1- m4_pattern_allow([^LTLIBOBJS$])
2857
 
m4trace:configure.ac:36: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
2858
 
m4trace:configure.ac:36: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
2859
 
m4trace:configure.ac:36: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
2860
 
m4trace:configure.ac:36: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
2861
 
m4trace:configure.ac:36: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
2862
 
m4trace:configure.ac:36: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
2863
 
m4trace:configure.ac:36: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
2864
 
m4trace:configure.ac:36: -1- _LT_PROG_LTMAIN