nutcracker 0.4.0.16 → 0.4.1.18
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Rakefile +3 -3
- data/ext/nutcracker/ChangeLog +33 -8
- data/ext/nutcracker/Makefile.in +34 -21
- data/ext/nutcracker/README.md +61 -26
- data/ext/nutcracker/aclocal.m4 +34 -31
- data/ext/nutcracker/autom4te.cache/output.0 +1875 -1330
- data/ext/nutcracker/autom4te.cache/output.1 +1875 -1330
- data/ext/nutcracker/autom4te.cache/requests +232 -451
- data/ext/nutcracker/autom4te.cache/traces.0 +2256 -2129
- data/ext/nutcracker/autom4te.cache/traces.1 +73 -59
- data/ext/nutcracker/config.h.in +1 -2
- data/ext/nutcracker/config.h.in~ +333 -0
- data/ext/nutcracker/config/compile +1 -1
- data/ext/nutcracker/config/config.guess +13 -160
- data/ext/nutcracker/config/config.sub +25 -11
- data/ext/nutcracker/config/depcomp +1 -1
- data/ext/nutcracker/config/install-sh +170 -196
- data/ext/nutcracker/config/ltmain.sh +3509 -2018
- data/ext/nutcracker/config/missing +1 -1
- data/ext/nutcracker/configure +1874 -1329
- data/ext/nutcracker/configure.ac +3 -2
- data/ext/nutcracker/contrib/Makefile.in +18 -5
- data/ext/nutcracker/contrib/yaml-0.1.4/LICENSE +19 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.am +20 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/Makefile.in +832 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/README +27 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/aclocal.m4 +1157 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.0 +13342 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/output.1 +14611 -0
- data/ext/nutcracker/{autom4te.cache → contrib/yaml-0.1.4/autom4te.cache}/output.2 +3465 -8761
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/requests +516 -0
- data/ext/nutcracker/{autom4te.cache/traces.2 → contrib/yaml-0.1.4/autom4te.cache/traces.0} +662 -698
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.1 +577 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/autom4te.cache/traces.2 +2721 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in +79 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config.h.in~ +80 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/compile +347 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/config.guess +1421 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/config.sub +1807 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/depcomp +791 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/install-sh +501 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/ltmain.sh +11147 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/missing +215 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/config/test-driver +148 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/configure +14611 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/configure.ac +75 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/doc/doxygen.cfg +222 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/include/yaml.h +1971 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/libtool.m4 +8369 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltoptions.m4 +437 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltsugar.m4 +124 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/ltversion.m4 +23 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/m4/lt~obsolete.m4 +99 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.am +4 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/Makefile.in +600 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/api.c +1392 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/dumper.c +394 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/emitter.c +2329 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/loader.c +432 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/parser.c +1374 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/reader.c +465 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/scanner.c +3570 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/writer.c +141 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/src/yaml_private.h +640 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.am +8 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/Makefile.in +1083 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor-alt.c +800 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-deconstructor.c +1130 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter-alt.c +217 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/example-reformatter.c +202 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-dumper.c +311 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-emitter.c +327 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-loader.c +63 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-parser.c +63 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/run-scanner.c +63 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-reader.c +354 -0
- data/ext/nutcracker/contrib/yaml-0.1.4/tests/test-version.c +29 -0
- data/ext/nutcracker/m4/libtool.m4 +1474 -1087
- data/ext/nutcracker/m4/ltoptions.m4 +90 -37
- data/ext/nutcracker/m4/ltsugar.m4 +4 -3
- data/ext/nutcracker/m4/ltversion.m4 +6 -6
- data/ext/nutcracker/m4/lt~obsolete.m4 +4 -3
- data/ext/nutcracker/man/nutcracker.8 +1 -1
- data/ext/nutcracker/notes/memcache.md +162 -0
- data/ext/nutcracker/notes/recommendation.md +10 -5
- data/ext/nutcracker/notes/redis.md +23 -9
- data/ext/nutcracker/scripts/nutcracker.init +10 -0
- data/ext/nutcracker/scripts/nutcracker.init.debian +83 -0
- data/ext/nutcracker/scripts/nutcracker.spec +36 -2
- data/ext/nutcracker/scripts/redis-check.sh +4 -0
- data/ext/nutcracker/src/Makefile.am +6 -1
- data/ext/nutcracker/src/Makefile.in +26 -12
- data/ext/nutcracker/src/event/Makefile.in +19 -6
- data/ext/nutcracker/src/hashkit/Makefile.in +19 -6
- data/ext/nutcracker/src/hashkit/nc_jenkins.c +1 -1
- data/ext/nutcracker/src/hashkit/nc_ketama.c +3 -3
- data/ext/nutcracker/src/nc.c +1 -1
- data/ext/nutcracker/src/nc_conf.c +67 -19
- data/ext/nutcracker/src/nc_conf.h +9 -4
- data/ext/nutcracker/src/nc_connection.c +35 -2
- data/ext/nutcracker/src/nc_connection.h +53 -47
- data/ext/nutcracker/src/nc_core.c +8 -1
- data/ext/nutcracker/src/nc_message.c +23 -7
- data/ext/nutcracker/src/nc_message.h +24 -1
- data/ext/nutcracker/src/nc_proxy.c +14 -3
- data/ext/nutcracker/src/nc_rbtree.c +1 -5
- data/ext/nutcracker/src/nc_request.c +58 -10
- data/ext/nutcracker/src/nc_response.c +27 -4
- data/ext/nutcracker/src/nc_server.c +33 -5
- data/ext/nutcracker/src/nc_server.h +10 -9
- data/ext/nutcracker/src/nc_string.h +17 -0
- data/ext/nutcracker/src/nc_util.c +5 -1
- data/ext/nutcracker/src/proto/Makefile.in +19 -6
- data/ext/nutcracker/src/proto/nc_memcache.c +76 -12
- data/ext/nutcracker/src/proto/nc_proto.h +9 -0
- data/ext/nutcracker/src/proto/nc_redis.c +400 -18
- data/lib/nutcracker.rb +1 -1
- data/lib/nutcracker/version.rb +1 -1
- metadata +61 -6
- data/ext/nutcracker/notes/memcache.txt +0 -123
|
@@ -1,20 +1,19 @@
|
|
|
1
|
-
m4trace:/usr/local/share/aclocal/
|
|
2
|
-
|
|
1
|
+
m4trace:/usr/local/share/aclocal/ltargz.m4:74: -1- AC_DEFUN([LT_FUNC_ARGZ], [
|
|
3
2
|
AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
|
|
4
3
|
|
|
5
4
|
AC_CHECK_TYPES([error_t],
|
|
6
5
|
[],
|
|
7
6
|
[AC_DEFINE([error_t], [int],
|
|
8
|
-
[Define to a type to use for
|
|
7
|
+
[Define to a type to use for 'error_t' if it is not otherwise available.])
|
|
9
8
|
AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
|
|
10
9
|
does not typedef error_t.])],
|
|
11
10
|
[#if defined(HAVE_ARGZ_H)
|
|
12
11
|
# include <argz.h>
|
|
13
12
|
#endif])
|
|
14
13
|
|
|
15
|
-
|
|
14
|
+
LT_ARGZ_H=
|
|
16
15
|
AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
|
|
17
|
-
argz_next argz_stringify], [], [
|
|
16
|
+
argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
|
|
18
17
|
|
|
19
18
|
dnl if have system argz functions, allow forced use of
|
|
20
19
|
dnl libltdl-supplied implementation (and default to do so
|
|
@@ -25,14 +24,14 @@ dnl provides them, yet they are broken, is cygwin
|
|
|
25
24
|
dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
|
|
26
25
|
dnl So, it's more straightforward simply to special case
|
|
27
26
|
dnl this for known bad systems.
|
|
28
|
-
AS_IF([test -z "$
|
|
27
|
+
AS_IF([test -z "$LT_ARGZ_H"],
|
|
29
28
|
[AC_CACHE_CHECK(
|
|
30
29
|
[if argz actually works],
|
|
31
30
|
[lt_cv_sys_argz_works],
|
|
32
31
|
[[case $host_os in #(
|
|
33
32
|
*cygwin*)
|
|
34
33
|
lt_cv_sys_argz_works=no
|
|
35
|
-
if test "$cross_compiling"
|
|
34
|
+
if test no != "$cross_compiling"; then
|
|
36
35
|
lt_cv_sys_argz_works="guessing no"
|
|
37
36
|
else
|
|
38
37
|
lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
|
|
@@ -43,26 +42,25 @@ AS_IF([test -z "$ARGZ_H"],
|
|
|
43
42
|
lt_os_major=${2-0}
|
|
44
43
|
lt_os_minor=${3-0}
|
|
45
44
|
lt_os_micro=${4-0}
|
|
46
|
-
if test "$lt_os_major"
|
|
47
|
-
|| { test "$lt_os_major"
|
|
48
|
-
&& { test "$lt_os_minor"
|
|
49
|
-
|| { test "$lt_os_minor"
|
|
50
|
-
&& test "$lt_os_micro"
|
|
45
|
+
if test 1 -lt "$lt_os_major" \
|
|
46
|
+
|| { test 1 -eq "$lt_os_major" \
|
|
47
|
+
&& { test 5 -lt "$lt_os_minor" \
|
|
48
|
+
|| { test 5 -eq "$lt_os_minor" \
|
|
49
|
+
&& test 24 -lt "$lt_os_micro"; }; }; }; then
|
|
51
50
|
lt_cv_sys_argz_works=yes
|
|
52
51
|
fi
|
|
53
52
|
fi
|
|
54
53
|
;; #(
|
|
55
54
|
*) lt_cv_sys_argz_works=yes ;;
|
|
56
55
|
esac]])
|
|
57
|
-
AS_IF([test "$lt_cv_sys_argz_works"
|
|
56
|
+
AS_IF([test yes = "$lt_cv_sys_argz_works"],
|
|
58
57
|
[AC_DEFINE([HAVE_WORKING_ARGZ], 1,
|
|
59
58
|
[This value is set to 1 to indicate that the system argz facility works])],
|
|
60
|
-
[
|
|
61
|
-
AC_LIBOBJ([
|
|
59
|
+
[LT_ARGZ_H=lt__argz.h
|
|
60
|
+
AC_LIBOBJ([lt__argz])])])
|
|
62
61
|
|
|
63
|
-
AC_SUBST([
|
|
62
|
+
AC_SUBST([LT_ARGZ_H])
|
|
64
63
|
])
|
|
65
|
-
m4trace:/usr/local/share/aclocal/argz.m4:79: -1- AC_DEFUN([gl_PREREQ_ARGZ], [:])
|
|
66
64
|
m4trace:/usr/local/share/aclocal/ltdl.m4:19: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
|
|
67
65
|
_$0($*)
|
|
68
66
|
])
|
|
@@ -119,7 +117,7 @@ AC_ARG_WITH([included_ltdl],
|
|
|
119
117
|
[AS_HELP_STRING([--with-included-ltdl],
|
|
120
118
|
[use the GNU ltdl sources included here])])
|
|
121
119
|
|
|
122
|
-
if test "
|
|
120
|
+
if test yes != "$with_included_ltdl"; then
|
|
123
121
|
# We are not being forced to use the included libltdl sources, so
|
|
124
122
|
# decide whether there is a useful installed version we can use.
|
|
125
123
|
AC_CHECK_HEADER([ltdl.h],
|
|
@@ -147,7 +145,7 @@ AC_ARG_WITH([ltdl_include],
|
|
|
147
145
|
if test -n "$with_ltdl_include"; then
|
|
148
146
|
if test -f "$with_ltdl_include/ltdl.h"; then :
|
|
149
147
|
else
|
|
150
|
-
AC_MSG_ERROR([invalid ltdl include directory:
|
|
148
|
+
AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
|
|
151
149
|
fi
|
|
152
150
|
else
|
|
153
151
|
with_ltdl_include=no
|
|
@@ -160,7 +158,7 @@ AC_ARG_WITH([ltdl_lib],
|
|
|
160
158
|
if test -n "$with_ltdl_lib"; then
|
|
161
159
|
if test -f "$with_ltdl_lib/libltdl.la"; then :
|
|
162
160
|
else
|
|
163
|
-
AC_MSG_ERROR([invalid ltdl library directory:
|
|
161
|
+
AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
|
|
164
162
|
fi
|
|
165
163
|
else
|
|
166
164
|
with_ltdl_lib=no
|
|
@@ -183,15 +181,15 @@ case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
|
|
|
183
181
|
LTDLINCL=
|
|
184
182
|
;;
|
|
185
183
|
,no*,no,*)
|
|
186
|
-
AC_MSG_ERROR([
|
|
184
|
+
AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
|
|
187
185
|
;;
|
|
188
186
|
*) with_included_ltdl=no
|
|
189
187
|
LIBLTDL="-L$with_ltdl_lib -lltdl"
|
|
190
188
|
LTDLDEPS=
|
|
191
|
-
LTDLINCL
|
|
189
|
+
LTDLINCL=-I$with_ltdl_include
|
|
192
190
|
;;
|
|
193
191
|
esac
|
|
194
|
-
INCLTDL
|
|
192
|
+
INCLTDL=$LTDLINCL
|
|
195
193
|
|
|
196
194
|
# Report our decision...
|
|
197
195
|
AC_MSG_CHECKING([where to find libltdl headers])
|
|
@@ -243,7 +241,7 @@ AC_REQUIRE([LT_LIB_DLLOAD])dnl
|
|
|
243
241
|
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
|
|
244
242
|
AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
|
|
245
243
|
AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
|
|
246
|
-
AC_REQUIRE([
|
|
244
|
+
AC_REQUIRE([LT_FUNC_ARGZ])dnl
|
|
247
245
|
|
|
248
246
|
m4_require([_LT_CHECK_OBJDIR])dnl
|
|
249
247
|
m4_require([_LT_HEADER_DLFCN])dnl
|
|
@@ -267,7 +265,7 @@ m4_pattern_allow([^LT_CONFIG_H$])dnl
|
|
|
267
265
|
m4_ifset([AH_HEADER],
|
|
268
266
|
[LT_CONFIG_H=AH_HEADER],
|
|
269
267
|
[m4_ifset([AC_LIST_HEADERS],
|
|
270
|
-
[LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's
|
|
268
|
+
[LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
|
|
271
269
|
[])])])
|
|
272
270
|
AC_SUBST([LT_CONFIG_H])
|
|
273
271
|
|
|
@@ -289,7 +287,7 @@ name=ltdl
|
|
|
289
287
|
eval "LTDLOPEN=\"$libname_spec\""
|
|
290
288
|
AC_SUBST([LTDLOPEN])
|
|
291
289
|
])
|
|
292
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
290
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
|
293
291
|
AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
|
294
292
|
[lt_cv_sys_dlopen_deplibs],
|
|
295
293
|
[# PORTME does your system automatically load deplibs for dlopen?
|
|
@@ -300,7 +298,7 @@ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
|
|
300
298
|
case $host_os in
|
|
301
299
|
aix3*|aix4.1.*|aix4.2.*)
|
|
302
300
|
# Unknown whether this is true for these versions of AIX, but
|
|
303
|
-
# we want this
|
|
301
|
+
# we want this 'case' here to explicitly catch those versions.
|
|
304
302
|
lt_cv_sys_dlopen_deplibs=unknown
|
|
305
303
|
;;
|
|
306
304
|
aix[[4-9]]*)
|
|
@@ -313,6 +311,9 @@ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
|
|
313
311
|
;;
|
|
314
312
|
esac
|
|
315
313
|
;;
|
|
314
|
+
bitrig*)
|
|
315
|
+
lt_cv_sys_dlopen_deplibs=yes
|
|
316
|
+
;;
|
|
316
317
|
darwin*)
|
|
317
318
|
# Assuming the user has installed a libdl from somewhere, this is true
|
|
318
319
|
# If you are looking for one http://www.opendarwin.org/projects/dlcompat
|
|
@@ -350,7 +351,7 @@ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
|
|
350
351
|
osf[[1234]]*)
|
|
351
352
|
# dlopen did load deplibs (at least at 4.x), but until the 5.x series,
|
|
352
353
|
# it did *not* use an RPATH in a shared library to find objects the
|
|
353
|
-
# library depends on, so we explicitly say
|
|
354
|
+
# library depends on, so we explicitly say 'no'.
|
|
354
355
|
lt_cv_sys_dlopen_deplibs=no
|
|
355
356
|
;;
|
|
356
357
|
osf5.0|osf5.0a|osf5.1)
|
|
@@ -359,14 +360,14 @@ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
|
|
359
360
|
# that the library depends on, but there's no easy way to know if that
|
|
360
361
|
# patch is installed. Since this is the case, all we can really
|
|
361
362
|
# say is unknown -- it depends on the patch being installed. If
|
|
362
|
-
# it is, this changes to
|
|
363
|
+
# it is, this changes to 'yes'. Without it, it would be 'no'.
|
|
363
364
|
lt_cv_sys_dlopen_deplibs=unknown
|
|
364
365
|
;;
|
|
365
366
|
osf*)
|
|
366
367
|
# the two cases above should catch all versions of osf <= 5.1. Read
|
|
367
368
|
# the comments above for what we know about them.
|
|
368
369
|
# At > 5.1, deplibs are loaded *and* any RPATH in a shared library
|
|
369
|
-
# is used to find them so we can finally say
|
|
370
|
+
# is used to find them so we can finally say 'yes'.
|
|
370
371
|
lt_cv_sys_dlopen_deplibs=yes
|
|
371
372
|
;;
|
|
372
373
|
qnx*)
|
|
@@ -380,17 +381,17 @@ AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
|
|
380
381
|
;;
|
|
381
382
|
esac
|
|
382
383
|
])
|
|
383
|
-
if test "$lt_cv_sys_dlopen_deplibs"
|
|
384
|
+
if test yes != "$lt_cv_sys_dlopen_deplibs"; then
|
|
384
385
|
AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
|
|
385
386
|
[Define if the OS needs help to load dependent libraries for dlopen().])
|
|
386
387
|
fi
|
|
387
388
|
])
|
|
388
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
389
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
389
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:545: -1- AU_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
|
390
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:545: -1- AC_DEFUN([AC_LTDL_SYS_DLOPEN_DEPLIBS], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYS_DLOPEN_DEPLIBS' is obsolete.
|
|
390
391
|
You should run autoupdate.])dnl
|
|
391
392
|
m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
|
392
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
393
|
-
AC_CACHE_CHECK([
|
|
393
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:577: -1- AC_DEFUN([LT_SYS_MODULE_EXT], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
|
394
|
+
AC_CACHE_CHECK([what extension is used for runtime loadable modules],
|
|
394
395
|
[libltdl_cv_shlibext],
|
|
395
396
|
[
|
|
396
397
|
module=yes
|
|
@@ -408,35 +409,40 @@ if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
|
|
|
408
409
|
AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
|
|
409
410
|
[Define to the shared library suffix, say, ".dylib".])
|
|
410
411
|
fi
|
|
412
|
+
if test -n "$shared_archive_member_spec"; then
|
|
413
|
+
m4_pattern_allow([LT_SHARED_LIB_MEMBER])dnl
|
|
414
|
+
AC_DEFINE_UNQUOTED([LT_SHARED_LIB_MEMBER], ["($shared_archive_member_spec.o)"],
|
|
415
|
+
[Define to the shared archive member specification, say "(shr.o)".])
|
|
416
|
+
fi
|
|
411
417
|
])
|
|
412
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
413
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
418
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:580: -1- AU_DEFUN([AC_LTDL_SHLIBEXT], [m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
|
419
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:580: -1- AC_DEFUN([AC_LTDL_SHLIBEXT], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBEXT' is obsolete.
|
|
414
420
|
You should run autoupdate.])dnl
|
|
415
421
|
m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
|
416
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
417
|
-
AC_CACHE_CHECK([
|
|
418
|
-
[lt_cv_module_path_var], [lt_cv_module_path_var
|
|
422
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:596: -1- AC_DEFUN([LT_SYS_MODULE_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
|
423
|
+
AC_CACHE_CHECK([what variable specifies run-time module search path],
|
|
424
|
+
[lt_cv_module_path_var], [lt_cv_module_path_var=$shlibpath_var])
|
|
419
425
|
if test -n "$lt_cv_module_path_var"; then
|
|
420
426
|
m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
|
|
421
427
|
AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
|
|
422
428
|
[Define to the name of the environment variable that determines the run-time module search path.])
|
|
423
429
|
fi
|
|
424
430
|
])
|
|
425
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
426
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
431
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:599: -1- AU_DEFUN([AC_LTDL_SHLIBPATH], [m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
|
432
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:599: -1- AC_DEFUN([AC_LTDL_SHLIBPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SHLIBPATH' is obsolete.
|
|
427
433
|
You should run autoupdate.])dnl
|
|
428
434
|
m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
|
429
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
435
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:624: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
|
430
436
|
AC_CACHE_CHECK([for the default library search path],
|
|
431
437
|
[lt_cv_sys_dlsearch_path],
|
|
432
|
-
[lt_cv_sys_dlsearch_path
|
|
438
|
+
[lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
|
|
433
439
|
if test -n "$lt_cv_sys_dlsearch_path"; then
|
|
434
440
|
sys_dlsearch_path=
|
|
435
441
|
for dir in $lt_cv_sys_dlsearch_path; do
|
|
436
442
|
if test -z "$sys_dlsearch_path"; then
|
|
437
|
-
sys_dlsearch_path
|
|
443
|
+
sys_dlsearch_path=$dir
|
|
438
444
|
else
|
|
439
|
-
sys_dlsearch_path
|
|
445
|
+
sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
|
|
440
446
|
fi
|
|
441
447
|
done
|
|
442
448
|
m4_pattern_allow([LT_DLSEARCH_PATH])dnl
|
|
@@ -444,24 +450,25 @@ if test -n "$lt_cv_sys_dlsearch_path"; then
|
|
|
444
450
|
[Define to the system default library search path.])
|
|
445
451
|
fi
|
|
446
452
|
])
|
|
447
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
448
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
453
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:627: -1- AU_DEFUN([AC_LTDL_SYSSEARCHPATH], [m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
|
454
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:627: -1- AC_DEFUN([AC_LTDL_SYSSEARCHPATH], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYSSEARCHPATH' is obsolete.
|
|
449
455
|
You should run autoupdate.])dnl
|
|
450
456
|
m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
|
451
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
457
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:745: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
|
|
452
458
|
LT_DLLOADERS=
|
|
453
459
|
AC_SUBST([LT_DLLOADERS])
|
|
454
460
|
|
|
455
461
|
AC_LANG_PUSH([C])
|
|
462
|
+
lt_dlload_save_LIBS=$LIBS
|
|
456
463
|
|
|
457
464
|
LIBADD_DLOPEN=
|
|
458
465
|
AC_SEARCH_LIBS([dlopen], [dl],
|
|
459
466
|
[AC_DEFINE([HAVE_LIBDL], [1],
|
|
460
467
|
[Define if you have the libdl library or equivalent.])
|
|
461
|
-
if test "$ac_cv_search_dlopen" != "none required"
|
|
462
|
-
LIBADD_DLOPEN
|
|
468
|
+
if test "$ac_cv_search_dlopen" != "none required"; then
|
|
469
|
+
LIBADD_DLOPEN=-ldl
|
|
463
470
|
fi
|
|
464
|
-
libltdl_cv_lib_dl_dlopen=
|
|
471
|
+
libltdl_cv_lib_dl_dlopen=yes
|
|
465
472
|
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
|
466
473
|
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
|
|
467
474
|
# include <dlfcn.h>
|
|
@@ -469,19 +476,19 @@ AC_SEARCH_LIBS([dlopen], [dl],
|
|
|
469
476
|
]], [[dlopen(0, 0);]])],
|
|
470
477
|
[AC_DEFINE([HAVE_LIBDL], [1],
|
|
471
478
|
[Define if you have the libdl library or equivalent.])
|
|
472
|
-
libltdl_cv_func_dlopen=
|
|
479
|
+
libltdl_cv_func_dlopen=yes
|
|
473
480
|
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
|
474
481
|
[AC_CHECK_LIB([svld], [dlopen],
|
|
475
482
|
[AC_DEFINE([HAVE_LIBDL], [1],
|
|
476
483
|
[Define if you have the libdl library or equivalent.])
|
|
477
|
-
LIBADD_DLOPEN
|
|
484
|
+
LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
|
|
478
485
|
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
|
|
479
|
-
if test
|
|
486
|
+
if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
|
|
480
487
|
then
|
|
481
|
-
lt_save_LIBS
|
|
488
|
+
lt_save_LIBS=$LIBS
|
|
482
489
|
LIBS="$LIBS $LIBADD_DLOPEN"
|
|
483
490
|
AC_CHECK_FUNCS([dlerror])
|
|
484
|
-
LIBS
|
|
491
|
+
LIBS=$lt_save_LIBS
|
|
485
492
|
fi
|
|
486
493
|
AC_SUBST([LIBADD_DLOPEN])
|
|
487
494
|
|
|
@@ -494,7 +501,7 @@ AC_CHECK_FUNC([shl_load],
|
|
|
494
501
|
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
|
495
502
|
[Define if you have the shl_load function.])
|
|
496
503
|
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
|
|
497
|
-
LIBADD_SHL_LOAD
|
|
504
|
+
LIBADD_SHL_LOAD=-ldld])])
|
|
498
505
|
AC_SUBST([LIBADD_SHL_LOAD])
|
|
499
506
|
|
|
500
507
|
case $host_os in
|
|
@@ -508,7 +515,7 @@ darwin[[1567]].*)
|
|
|
508
515
|
beos*)
|
|
509
516
|
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
|
|
510
517
|
;;
|
|
511
|
-
cygwin* | mingw* |
|
|
518
|
+
cygwin* | mingw* | pw32*)
|
|
512
519
|
AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
|
|
513
520
|
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
|
|
514
521
|
;;
|
|
@@ -536,13 +543,14 @@ dnl This isn't used anymore, but set it for backwards compatibility
|
|
|
536
543
|
LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
|
|
537
544
|
AC_SUBST([LIBADD_DL])
|
|
538
545
|
|
|
546
|
+
LIBS=$lt_dlload_save_LIBS
|
|
539
547
|
AC_LANG_POP
|
|
540
548
|
])
|
|
541
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
542
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
549
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:748: -1- AU_DEFUN([AC_LTDL_DLLIB], [m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
|
550
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:748: -1- AC_DEFUN([AC_LTDL_DLLIB], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLLIB' is obsolete.
|
|
543
551
|
You should run autoupdate.])dnl
|
|
544
552
|
m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
|
545
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
553
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:790: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
|
|
546
554
|
AC_CACHE_CHECK([for _ prefix in compiled symbols],
|
|
547
555
|
[lt_cv_sys_symbol_underscore],
|
|
548
556
|
[lt_cv_sys_symbol_underscore=no
|
|
@@ -576,52 +584,194 @@ _LT_EOF
|
|
|
576
584
|
sys_symbol_underscore=$lt_cv_sys_symbol_underscore
|
|
577
585
|
AC_SUBST([sys_symbol_underscore])
|
|
578
586
|
])
|
|
579
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
580
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
587
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:793: -1- AU_DEFUN([AC_LTDL_SYMBOL_USCORE], [m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
|
588
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:793: -1- AC_DEFUN([AC_LTDL_SYMBOL_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_SYMBOL_USCORE' is obsolete.
|
|
581
589
|
You should run autoupdate.])dnl
|
|
582
590
|
m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
|
583
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
591
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:904: -1- AC_DEFUN([LT_FUNC_DLSYM_USCORE], [AC_REQUIRE([_LT_COMPILER_PIC])dnl for lt_prog_compiler_wl
|
|
592
|
+
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl for lt_cv_sys_symbol_underscore
|
|
593
|
+
AC_REQUIRE([LT_SYS_MODULE_EXT])dnl for libltdl_cv_shlibext
|
|
594
|
+
if test yes = "$lt_cv_sys_symbol_underscore"; then
|
|
595
|
+
if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"; then
|
|
596
|
+
AC_CACHE_CHECK([whether we have to add an underscore for dlsym],
|
|
597
|
+
[libltdl_cv_need_uscore],
|
|
598
|
+
[libltdl_cv_need_uscore=unknown
|
|
599
|
+
dlsym_uscore_save_LIBS=$LIBS
|
|
600
|
+
LIBS="$LIBS $LIBADD_DLOPEN"
|
|
601
|
+
libname=conftmod # stay within 8.3 filename limits!
|
|
602
|
+
cat >$libname.$ac_ext <<_LT_EOF
|
|
603
|
+
[#line $LINENO "configure"
|
|
604
|
+
#include "confdefs.h"
|
|
605
|
+
/* When -fvisibility=hidden is used, assume the code has been annotated
|
|
606
|
+
correspondingly for the symbols needed. */
|
|
607
|
+
#if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3))
|
|
608
|
+
int fnord () __attribute__((visibility("default")));
|
|
609
|
+
#endif
|
|
610
|
+
int fnord () { return 42; }]
|
|
611
|
+
_LT_EOF
|
|
612
|
+
|
|
613
|
+
# ltfn_module_cmds module_cmds
|
|
614
|
+
# Execute tilde-delimited MODULE_CMDS with environment primed for
|
|
615
|
+
# $module_cmds or $archive_cmds type content.
|
|
616
|
+
ltfn_module_cmds ()
|
|
617
|
+
{( # subshell avoids polluting parent global environment
|
|
618
|
+
module_cmds_save_ifs=$IFS; IFS='~'
|
|
619
|
+
for cmd in @S|@1; do
|
|
620
|
+
IFS=$module_cmds_save_ifs
|
|
621
|
+
libobjs=$libname.$ac_objext; lib=$libname$libltdl_cv_shlibext
|
|
622
|
+
rpath=/not-exists; soname=$libname$libltdl_cv_shlibext; output_objdir=.
|
|
623
|
+
major=; versuffix=; verstring=; deplibs=
|
|
624
|
+
ECHO=echo; wl=$lt_prog_compiler_wl; allow_undefined_flag=
|
|
625
|
+
eval $cmd
|
|
626
|
+
done
|
|
627
|
+
IFS=$module_cmds_save_ifs
|
|
628
|
+
)}
|
|
629
|
+
|
|
630
|
+
# Compile a loadable module using libtool macro expansion results.
|
|
631
|
+
$CC $pic_flag -c $libname.$ac_ext
|
|
632
|
+
ltfn_module_cmds "${module_cmds:-$archive_cmds}"
|
|
633
|
+
|
|
634
|
+
# Try to fetch fnord with dlsym().
|
|
635
|
+
libltdl_dlunknown=0; libltdl_dlnouscore=1; libltdl_dluscore=2
|
|
636
|
+
cat >conftest.$ac_ext <<_LT_EOF
|
|
637
|
+
[#line $LINENO "configure"
|
|
638
|
+
#include "confdefs.h"
|
|
639
|
+
#if HAVE_DLFCN_H
|
|
640
|
+
#include <dlfcn.h>
|
|
641
|
+
#endif
|
|
642
|
+
#include <stdio.h>
|
|
643
|
+
#ifndef RTLD_GLOBAL
|
|
644
|
+
# ifdef DL_GLOBAL
|
|
645
|
+
# define RTLD_GLOBAL DL_GLOBAL
|
|
646
|
+
# else
|
|
647
|
+
# define RTLD_GLOBAL 0
|
|
648
|
+
# endif
|
|
649
|
+
#endif
|
|
650
|
+
#ifndef RTLD_NOW
|
|
651
|
+
# ifdef DL_NOW
|
|
652
|
+
# define RTLD_NOW DL_NOW
|
|
653
|
+
# else
|
|
654
|
+
# define RTLD_NOW 0
|
|
655
|
+
# endif
|
|
656
|
+
#endif
|
|
657
|
+
int main () {
|
|
658
|
+
void *handle = dlopen ("`pwd`/$libname$libltdl_cv_shlibext", RTLD_GLOBAL|RTLD_NOW);
|
|
659
|
+
int status = $libltdl_dlunknown;
|
|
660
|
+
if (handle) {
|
|
661
|
+
if (dlsym (handle, "fnord"))
|
|
662
|
+
status = $libltdl_dlnouscore;
|
|
663
|
+
else {
|
|
664
|
+
if (dlsym (handle, "_fnord"))
|
|
665
|
+
status = $libltdl_dluscore;
|
|
666
|
+
else
|
|
667
|
+
puts (dlerror ());
|
|
668
|
+
}
|
|
669
|
+
dlclose (handle);
|
|
670
|
+
} else
|
|
671
|
+
puts (dlerror ());
|
|
672
|
+
return status;
|
|
673
|
+
}]
|
|
674
|
+
_LT_EOF
|
|
675
|
+
if AC_TRY_EVAL(ac_link) && test -s "conftest$ac_exeext" 2>/dev/null; then
|
|
676
|
+
(./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null
|
|
677
|
+
libltdl_status=$?
|
|
678
|
+
case x$libltdl_status in
|
|
679
|
+
x$libltdl_dlnouscore) libltdl_cv_need_uscore=no ;;
|
|
680
|
+
x$libltdl_dluscore) libltdl_cv_need_uscore=yes ;;
|
|
681
|
+
x*) libltdl_cv_need_uscore=unknown ;;
|
|
682
|
+
esac
|
|
683
|
+
fi
|
|
684
|
+
rm -rf conftest* $libname*
|
|
685
|
+
LIBS=$dlsym_uscore_save_LIBS
|
|
686
|
+
])
|
|
597
687
|
fi
|
|
598
688
|
fi
|
|
599
689
|
|
|
600
|
-
if test
|
|
690
|
+
if test yes = "$libltdl_cv_need_uscore"; then
|
|
601
691
|
AC_DEFINE([NEED_USCORE], [1],
|
|
602
692
|
[Define if dlsym() requires a leading underscore in symbol names.])
|
|
603
693
|
fi
|
|
604
694
|
])
|
|
605
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
606
|
-
m4trace:/usr/local/share/aclocal/ltdl.m4:
|
|
695
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:907: -1- AU_DEFUN([AC_LTDL_DLSYM_USCORE], [m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
|
696
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:907: -1- AC_DEFUN([AC_LTDL_DLSYM_USCORE], [AC_DIAGNOSE([obsolete], [The macro `AC_LTDL_DLSYM_USCORE' is obsolete.
|
|
607
697
|
You should run autoupdate.])dnl
|
|
608
698
|
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
|
609
|
-
m4trace:/usr/local/
|
|
699
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
|
700
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:39: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])
|
|
701
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
|
|
702
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
|
|
703
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
|
|
704
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:44: -1- AC_DEFUN([_LT_PROG_LTMAIN])
|
|
705
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
|
|
706
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
|
|
707
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
|
|
708
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
|
|
709
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
|
|
710
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
|
|
711
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
|
|
712
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
|
|
713
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
|
|
714
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
|
|
715
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
|
|
716
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
|
|
717
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
|
|
718
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
|
|
719
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
|
|
720
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
|
|
721
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
|
|
722
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
|
|
723
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
|
|
724
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
|
|
725
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
|
|
726
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
|
|
727
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
|
|
728
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:68: -1- AC_DEFUN([LT_AC_PROG_SED])
|
|
729
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:69: -1- AC_DEFUN([_LT_CC_BASENAME])
|
|
730
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:70: -1- AC_DEFUN([_LT_COMPILER_BOILERPLATE])
|
|
731
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:71: -1- AC_DEFUN([_LT_LINKER_BOILERPLATE])
|
|
732
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
|
|
733
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
|
|
734
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
|
|
735
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
|
|
736
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
|
|
737
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:77: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL])
|
|
738
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
|
|
739
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
|
|
740
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
|
|
741
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
|
|
742
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
|
|
743
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
|
|
744
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
|
|
745
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
|
|
746
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
|
|
747
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
|
|
748
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
|
|
749
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
|
|
750
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
|
|
751
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
|
|
752
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
|
|
753
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:93: -1- AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])
|
|
754
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
|
|
755
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:95: -1- AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])
|
|
756
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:96: -1- AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])
|
|
757
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
|
|
758
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
|
|
759
|
+
m4trace:/usr/local/share/aclocal/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
|
|
760
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/amversion.m4:20: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
|
|
610
761
|
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
|
611
762
|
dnl require some minimum version. Point them to the right macro.
|
|
612
|
-
m4_if([$1], [1.
|
|
763
|
+
m4_if([$1], [1.15], [],
|
|
613
764
|
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
|
614
765
|
])
|
|
615
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
766
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/amversion.m4:37: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15])dnl
|
|
616
767
|
m4_ifndef([AC_AUTOCONF_VERSION],
|
|
617
768
|
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
|
618
769
|
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
|
619
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
am_aux_dir=`cd $ac_aux_dir && pwd`
|
|
770
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/auxdir.m4:51: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
|
|
771
|
+
# Expand $ac_aux_dir to an absolute path.
|
|
772
|
+
am_aux_dir=`cd "$ac_aux_dir" && pwd`
|
|
623
773
|
])
|
|
624
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
774
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
|
|
625
775
|
m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
|
|
626
776
|
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
|
|
627
777
|
AC_SUBST([$1_TRUE])dnl
|
|
@@ -641,7 +791,7 @@ AC_CONFIG_COMMANDS_PRE(
|
|
|
641
791
|
AC_MSG_ERROR([[conditional "$1" was never defined.
|
|
642
792
|
Usually this means the macro was only invoked conditionally.]])
|
|
643
793
|
fi])])
|
|
644
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
794
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:156: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
|
|
645
795
|
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
|
646
796
|
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
|
|
647
797
|
AC_REQUIRE([AM_DEP_TRACK])dnl
|
|
@@ -771,10 +921,10 @@ AM_CONDITIONAL([am__fastdep$1], [
|
|
|
771
921
|
test "x$enable_dependency_tracking" != xno \
|
|
772
922
|
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
|
|
773
923
|
])
|
|
774
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
924
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:166: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
|
775
925
|
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
|
|
776
926
|
])
|
|
777
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
927
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depend.m4:189: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
|
|
778
928
|
AS_HELP_STRING(
|
|
779
929
|
[--enable-dependency-tracking],
|
|
780
930
|
[do not reject slow dependency extractors])
|
|
@@ -792,7 +942,7 @@ _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
|
|
792
942
|
AC_SUBST([am__nodep])dnl
|
|
793
943
|
_AM_SUBST_NOTMAKE([am__nodep])dnl
|
|
794
944
|
])
|
|
795
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
945
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depout.m4:61: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
|
|
796
946
|
# Older Autoconf quotes --file arguments for eval, but not when files
|
|
797
947
|
# are listed without --file. Let's play safe and only enable the eval
|
|
798
948
|
# if we detect the quoting.
|
|
@@ -841,11 +991,11 @@ m4trace:/usr/local/Cellar/automake/1.14.1/share/aclocal-1.14/depout.m4:61: -1- A
|
|
|
841
991
|
done
|
|
842
992
|
}
|
|
843
993
|
])
|
|
844
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
994
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
|
|
845
995
|
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
|
846
996
|
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
|
|
847
997
|
])
|
|
848
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
998
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/init.m4:171: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
|
|
849
999
|
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
|
850
1000
|
dnl the ones we care about.
|
|
851
1001
|
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
|
@@ -908,8 +1058,8 @@ AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
|
|
908
1058
|
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
|
909
1059
|
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
|
910
1060
|
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
|
|
911
|
-
# We need awk for the "check" target
|
|
912
|
-
# some platforms.
|
|
1061
|
+
# We need awk for the "check" target (and possibly the TAP driver). The
|
|
1062
|
+
# system "awk" is bad on some platforms.
|
|
913
1063
|
AC_REQUIRE([AC_PROG_AWK])dnl
|
|
914
1064
|
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
|
915
1065
|
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
|
@@ -982,8 +1132,12 @@ to "yes", and re-run configure.
|
|
|
982
1132
|
END
|
|
983
1133
|
AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
|
|
984
1134
|
fi
|
|
985
|
-
fi
|
|
986
|
-
|
|
1135
|
+
fi
|
|
1136
|
+
dnl The trailing newline in this macro's definition is deliberate, for
|
|
1137
|
+
dnl backward compatibility and to allow trailing 'dnl'-style comments
|
|
1138
|
+
dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
|
|
1139
|
+
])
|
|
1140
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/init.m4:198: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
|
|
987
1141
|
_am_arg=$1
|
|
988
1142
|
_am_stamp_count=1
|
|
989
1143
|
for _am_header in $config_headers :; do
|
|
@@ -995,8 +1149,8 @@ for _am_header in $config_headers :; do
|
|
|
995
1149
|
esac
|
|
996
1150
|
done
|
|
997
1151
|
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
|
998
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
999
|
-
if test x"${install_sh}" != xset; then
|
|
1152
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/install-sh.m4:21: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
|
1153
|
+
if test x"${install_sh+set}" != xset; then
|
|
1000
1154
|
case $am_aux_dir in
|
|
1001
1155
|
*\ * | *\ *)
|
|
1002
1156
|
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
|
@@ -1005,7 +1159,7 @@ if test x"${install_sh}" != xset; then
|
|
|
1005
1159
|
esac
|
|
1006
1160
|
fi
|
|
1007
1161
|
AC_SUBST([install_sh])])
|
|
1008
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1162
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/lead-dot.m4:19: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
|
|
1009
1163
|
mkdir .tst 2>/dev/null
|
|
1010
1164
|
if test -d .tst; then
|
|
1011
1165
|
am__leading_dot=.
|
|
@@ -1014,7 +1168,7 @@ else
|
|
|
1014
1168
|
fi
|
|
1015
1169
|
rmdir .tst 2>/dev/null
|
|
1016
1170
|
AC_SUBST([am__leading_dot])])
|
|
1017
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1171
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/make.m4:49: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
|
|
1018
1172
|
cat > confinc << 'END'
|
|
1019
1173
|
am__doit:
|
|
1020
1174
|
@echo this is the am__doit target
|
|
@@ -1051,10 +1205,10 @@ AC_SUBST([am__quote])
|
|
|
1051
1205
|
AC_MSG_RESULT([$_am_result])
|
|
1052
1206
|
rm -f confinc confmf
|
|
1053
1207
|
])
|
|
1054
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1208
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
|
|
1055
1209
|
$1=${$1-"${am_missing_run}$2"}
|
|
1056
1210
|
AC_SUBST($1)])
|
|
1057
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1211
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/missing.m4:38: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
|
1058
1212
|
AC_REQUIRE_AUX_FILE([missing])dnl
|
|
1059
1213
|
if test x"${MISSING+set}" != xset; then
|
|
1060
1214
|
case $am_aux_dir in
|
|
@@ -1072,11 +1226,11 @@ else
|
|
|
1072
1226
|
AC_MSG_WARN(['missing' script is too old or missing])
|
|
1073
1227
|
fi
|
|
1074
1228
|
])
|
|
1075
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1076
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1077
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1078
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1079
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1229
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:12: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
|
|
1230
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:18: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
|
|
1231
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:24: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
|
1232
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/options.m4:30: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
|
1233
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/prog-cc-c-o.m4:44: -1- AC_DEFUN([_AM_PROG_CC_C_O], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
|
1080
1234
|
AC_REQUIRE_AUX_FILE([compile])dnl
|
|
1081
1235
|
AC_LANG_PUSH([C])dnl
|
|
1082
1236
|
AC_CACHE_CHECK(
|
|
@@ -1108,13 +1262,13 @@ if test "$am_cv_prog_cc_c_o" != yes; then
|
|
|
1108
1262
|
CC="$am_aux_dir/compile $CC"
|
|
1109
1263
|
fi
|
|
1110
1264
|
AC_LANG_POP([C])])
|
|
1111
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1112
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1265
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
|
|
1266
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
|
|
1113
1267
|
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
|
|
1114
1268
|
ac_status=$?
|
|
1115
1269
|
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
|
1116
1270
|
(exit $ac_status); }])
|
|
1117
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1271
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/sanity.m4:82: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
|
|
1118
1272
|
# Reject unsafe characters in $srcdir or the absolute working directory
|
|
1119
1273
|
# name. Accept space and tab only in the latter.
|
|
1120
1274
|
am_lf='
|
|
@@ -1185,7 +1339,7 @@ AC_CONFIG_COMMANDS_PRE(
|
|
|
1185
1339
|
AC_MSG_RESULT([done])])
|
|
1186
1340
|
rm -f conftest.file
|
|
1187
1341
|
])
|
|
1188
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1342
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/silent.m4:60: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
|
|
1189
1343
|
AS_HELP_STRING(
|
|
1190
1344
|
[--enable-silent-rules],
|
|
1191
1345
|
[less verbose build output (undo: "make V=1")])
|
|
@@ -1233,7 +1387,7 @@ AM_BACKSLASH='\'
|
|
|
1233
1387
|
AC_SUBST([AM_BACKSLASH])dnl
|
|
1234
1388
|
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
|
|
1235
1389
|
])
|
|
1236
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1390
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
|
1237
1391
|
# Installed binaries are usually stripped using 'strip' when the user
|
|
1238
1392
|
# run "make install-strip". However 'strip' might not be the right
|
|
1239
1393
|
# tool to use in cross-compilation environments, therefore Automake
|
|
@@ -1244,9 +1398,9 @@ if test "$cross_compiling" != no; then
|
|
|
1244
1398
|
fi
|
|
1245
1399
|
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
|
1246
1400
|
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
|
1247
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1248
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1249
|
-
m4trace:/usr/local/Cellar/automake/1.
|
|
1401
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
|
|
1402
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
|
1403
|
+
m4trace:/usr/local/Cellar/automake/1.15/share/aclocal-1.15/tar.m4:132: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
|
|
1250
1404
|
# in the wild :-( We should find a proper way to deprecate it ...
|
|
1251
1405
|
AC_SUBST([AMTAR], ['$${TAR-tar}'])
|
|
1252
1406
|
|
|
@@ -1355,8 +1509,7 @@ m4_if([$1], [v7],
|
|
|
1355
1509
|
AC_SUBST([am__tar])
|
|
1356
1510
|
AC_SUBST([am__untar])
|
|
1357
1511
|
])
|
|
1358
|
-
m4trace:m4/libtool.m4:
|
|
1359
|
-
AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
|
|
1512
|
+
m4trace:m4/libtool.m4:99: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT
|
|
1360
1513
|
AC_BEFORE([$0], [LT_LANG])dnl
|
|
1361
1514
|
AC_BEFORE([$0], [LT_OUTPUT])dnl
|
|
1362
1515
|
AC_BEFORE([$0], [LTDL_INIT])dnl
|
|
@@ -1373,8 +1526,6 @@ AC_REQUIRE([LTVERSION_VERSION])dnl
|
|
|
1373
1526
|
AC_REQUIRE([LTOBSOLETE_VERSION])dnl
|
|
1374
1527
|
m4_require([_LT_PROG_LTMAIN])dnl
|
|
1375
1528
|
|
|
1376
|
-
_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
|
|
1377
|
-
|
|
1378
1529
|
dnl Parse OPTIONS
|
|
1379
1530
|
_LT_SET_OPTIONS([$0], [$1])
|
|
1380
1531
|
|
|
@@ -1390,21 +1541,30 @@ _LT_SETUP
|
|
|
1390
1541
|
# Only expand once:
|
|
1391
1542
|
m4_define([LT_INIT])
|
|
1392
1543
|
])
|
|
1393
|
-
m4trace:m4/libtool.m4:
|
|
1394
|
-
m4trace:m4/libtool.m4:
|
|
1544
|
+
m4trace:m4/libtool.m4:102: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
|
1545
|
+
m4trace:m4/libtool.m4:102: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
|
1395
1546
|
You should run autoupdate.])dnl
|
|
1396
1547
|
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
|
1397
|
-
m4trace:m4/libtool.m4:
|
|
1398
|
-
m4trace:m4/libtool.m4:
|
|
1548
|
+
m4trace:m4/libtool.m4:103: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
|
1549
|
+
m4trace:m4/libtool.m4:103: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
|
|
1399
1550
|
You should run autoupdate.])dnl
|
|
1400
1551
|
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
|
1401
|
-
m4trace:m4/libtool.m4:
|
|
1552
|
+
m4trace:m4/libtool.m4:658: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
|
|
1402
1553
|
AC_MSG_NOTICE([creating $CONFIG_LT])
|
|
1403
|
-
|
|
1404
|
-
|
|
1554
|
+
cat >"$CONFIG_LT" <<_LTEOF
|
|
1555
|
+
#! $SHELL
|
|
1556
|
+
# Generated by $as_me.
|
|
1557
|
+
# Run this file to recreate a libtool stub with the current configuration.
|
|
1405
1558
|
|
|
1406
|
-
cat >>"$CONFIG_LT" <<\_LTEOF
|
|
1407
1559
|
lt_cl_silent=false
|
|
1560
|
+
SHELL=\${CONFIG_SHELL-$SHELL}
|
|
1561
|
+
_LTEOF
|
|
1562
|
+
|
|
1563
|
+
cat >>"$CONFIG_LT" <<\_LTEOF
|
|
1564
|
+
AS_SHELL_SANITIZE
|
|
1565
|
+
_AS_PREPARE
|
|
1566
|
+
|
|
1567
|
+
exec AS_MESSAGE_FD>&1
|
|
1408
1568
|
exec AS_MESSAGE_LOG_FD>>config.log
|
|
1409
1569
|
{
|
|
1410
1570
|
echo
|
|
@@ -1430,7 +1590,7 @@ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
|
|
|
1430
1590
|
m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
|
|
1431
1591
|
configured by $[0], generated by m4_PACKAGE_STRING.
|
|
1432
1592
|
|
|
1433
|
-
Copyright (C)
|
|
1593
|
+
Copyright (C) 2008 Free Software Foundation, Inc.
|
|
1434
1594
|
This config.lt script is free software; the Free Software Foundation
|
|
1435
1595
|
gives unlimited permision to copy, distribute and modify it."
|
|
1436
1596
|
|
|
@@ -1475,20 +1635,21 @@ chmod +x "$CONFIG_LT"
|
|
|
1475
1635
|
# appending to config.log, which fails on DOS, as config.log is still kept
|
|
1476
1636
|
# open by configure. Here we exec the FD to /dev/null, effectively closing
|
|
1477
1637
|
# config.log, so it can be properly (re)opened and appended to by config.lt.
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1638
|
+
if test "$no_create" != yes; then
|
|
1639
|
+
lt_cl_success=:
|
|
1640
|
+
test "$silent" = yes &&
|
|
1641
|
+
lt_config_lt_args="$lt_config_lt_args --quiet"
|
|
1642
|
+
exec AS_MESSAGE_LOG_FD>/dev/null
|
|
1643
|
+
$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
|
|
1644
|
+
exec AS_MESSAGE_LOG_FD>>config.log
|
|
1645
|
+
$lt_cl_success || AS_EXIT(1)
|
|
1646
|
+
fi
|
|
1485
1647
|
])
|
|
1486
|
-
m4trace:m4/libtool.m4:
|
|
1487
|
-
m4trace:m4/libtool.m4:
|
|
1648
|
+
m4trace:m4/libtool.m4:757: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
|
|
1649
|
+
m4trace:m4/libtool.m4:780: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
|
|
1488
1650
|
m4_case([$1],
|
|
1489
1651
|
[C], [_LT_LANG(C)],
|
|
1490
1652
|
[C++], [_LT_LANG(CXX)],
|
|
1491
|
-
[Go], [_LT_LANG(GO)],
|
|
1492
1653
|
[Java], [_LT_LANG(GCJ)],
|
|
1493
1654
|
[Fortran 77], [_LT_LANG(F77)],
|
|
1494
1655
|
[Fortran], [_LT_LANG(FC)],
|
|
@@ -1497,56 +1658,23 @@ m4_case([$1],
|
|
|
1497
1658
|
[_LT_LANG($1)],
|
|
1498
1659
|
[m4_fatal([$0: unsupported language: "$1"])])])dnl
|
|
1499
1660
|
])
|
|
1500
|
-
m4trace:m4/libtool.m4:
|
|
1501
|
-
m4trace:m4/libtool.m4:
|
|
1661
|
+
m4trace:m4/libtool.m4:830: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
|
|
1662
|
+
m4trace:m4/libtool.m4:830: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
|
|
1502
1663
|
You should run autoupdate.])dnl
|
|
1503
1664
|
LT_LANG(C++)])
|
|
1504
|
-
m4trace:m4/libtool.m4:
|
|
1505
|
-
m4trace:m4/libtool.m4:
|
|
1665
|
+
m4trace:m4/libtool.m4:831: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
|
|
1666
|
+
m4trace:m4/libtool.m4:831: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
|
|
1506
1667
|
You should run autoupdate.])dnl
|
|
1507
1668
|
LT_LANG(Fortran 77)])
|
|
1508
|
-
m4trace:m4/libtool.m4:
|
|
1509
|
-
m4trace:m4/libtool.m4:
|
|
1669
|
+
m4trace:m4/libtool.m4:832: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
|
|
1670
|
+
m4trace:m4/libtool.m4:832: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
|
|
1510
1671
|
You should run autoupdate.])dnl
|
|
1511
1672
|
LT_LANG(Fortran)])
|
|
1512
|
-
m4trace:m4/libtool.m4:
|
|
1513
|
-
m4trace:m4/libtool.m4:
|
|
1673
|
+
m4trace:m4/libtool.m4:833: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
|
|
1674
|
+
m4trace:m4/libtool.m4:833: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
|
|
1514
1675
|
You should run autoupdate.])dnl
|
|
1515
1676
|
LT_LANG(Java)])
|
|
1516
|
-
m4trace:m4/libtool.m4:
|
|
1517
|
-
m4trace:m4/libtool.m4:897: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
|
|
1518
|
-
You should run autoupdate.])dnl
|
|
1519
|
-
LT_LANG(Windows Resource)])
|
|
1520
|
-
m4trace:m4/libtool.m4:1254: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
|
|
1521
|
-
AC_ARG_WITH([sysroot],
|
|
1522
|
-
[ --with-sysroot[=DIR] Search for dependent libraries within DIR
|
|
1523
|
-
(or the compiler's sysroot if not specified).],
|
|
1524
|
-
[], [with_sysroot=no])
|
|
1525
|
-
|
|
1526
|
-
dnl lt_sysroot will always be passed unquoted. We quote it here
|
|
1527
|
-
dnl in case the user passed a directory name.
|
|
1528
|
-
lt_sysroot=
|
|
1529
|
-
case ${with_sysroot} in #(
|
|
1530
|
-
yes)
|
|
1531
|
-
if test "$GCC" = yes; then
|
|
1532
|
-
lt_sysroot=`$CC --print-sysroot 2>/dev/null`
|
|
1533
|
-
fi
|
|
1534
|
-
;; #(
|
|
1535
|
-
/*)
|
|
1536
|
-
lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
|
|
1537
|
-
;; #(
|
|
1538
|
-
no|'')
|
|
1539
|
-
;; #(
|
|
1540
|
-
*)
|
|
1541
|
-
AC_MSG_RESULT([${with_sysroot}])
|
|
1542
|
-
AC_MSG_ERROR([The sysroot must be an absolute path.])
|
|
1543
|
-
;;
|
|
1544
|
-
esac
|
|
1545
|
-
|
|
1546
|
-
AC_MSG_RESULT([${lt_sysroot:-no}])
|
|
1547
|
-
_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
|
|
1548
|
-
[dependent libraries, and in which our libraries should be installed.])])
|
|
1549
|
-
m4trace:m4/libtool.m4:1541: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
|
1677
|
+
m4trace:m4/libtool.m4:1441: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
|
1550
1678
|
m4_require([_LT_DECL_SED])dnl
|
|
1551
1679
|
AC_CACHE_CHECK([$1], [$2],
|
|
1552
1680
|
[$2=no
|
|
@@ -1562,15 +1690,15 @@ AC_CACHE_CHECK([$1], [$2],
|
|
|
1562
1690
|
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
|
1563
1691
|
-e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
|
|
1564
1692
|
-e 's:$: $lt_compiler_flag:'`
|
|
1565
|
-
(eval echo "\"\$as_me
|
|
1693
|
+
(eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
|
|
1566
1694
|
(eval "$lt_compile" 2>conftest.err)
|
|
1567
1695
|
ac_status=$?
|
|
1568
1696
|
cat conftest.err >&AS_MESSAGE_LOG_FD
|
|
1569
|
-
echo "$as_me
|
|
1697
|
+
echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
|
1570
1698
|
if (exit $ac_status) && test -s "$ac_outfile"; then
|
|
1571
1699
|
# The compiler can only warn and ignore the option if not recognized
|
|
1572
1700
|
# So say no if there are warnings other than the usual output.
|
|
1573
|
-
$ECHO "$_lt_compiler_boilerplate" | $
|
|
1701
|
+
$ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp
|
|
1574
1702
|
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
|
1575
1703
|
if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
|
|
1576
1704
|
$2=yes
|
|
@@ -1585,11 +1713,11 @@ else
|
|
|
1585
1713
|
m4_if([$6], , :, [$6])
|
|
1586
1714
|
fi
|
|
1587
1715
|
])
|
|
1588
|
-
m4trace:m4/libtool.m4:
|
|
1589
|
-
m4trace:m4/libtool.m4:
|
|
1716
|
+
m4trace:m4/libtool.m4:1444: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
|
1717
|
+
m4trace:m4/libtool.m4:1444: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
|
|
1590
1718
|
You should run autoupdate.])dnl
|
|
1591
1719
|
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
|
1592
|
-
m4trace:m4/libtool.m4:
|
|
1720
|
+
m4trace:m4/libtool.m4:1485: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
|
1593
1721
|
m4_require([_LT_DECL_SED])dnl
|
|
1594
1722
|
AC_CACHE_CHECK([$1], [$2],
|
|
1595
1723
|
[$2=no
|
|
@@ -1602,7 +1730,7 @@ AC_CACHE_CHECK([$1], [$2],
|
|
|
1602
1730
|
if test -s conftest.err; then
|
|
1603
1731
|
# Append any errors to the config.log.
|
|
1604
1732
|
cat conftest.err 1>&AS_MESSAGE_LOG_FD
|
|
1605
|
-
$ECHO "$_lt_linker_boilerplate" | $
|
|
1733
|
+
$ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp
|
|
1606
1734
|
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
|
1607
1735
|
if diff conftest.exp conftest.er2 >/dev/null; then
|
|
1608
1736
|
$2=yes
|
|
@@ -1621,11 +1749,11 @@ else
|
|
|
1621
1749
|
m4_if([$5], , :, [$5])
|
|
1622
1750
|
fi
|
|
1623
1751
|
])
|
|
1624
|
-
m4trace:m4/libtool.m4:
|
|
1625
|
-
m4trace:m4/libtool.m4:
|
|
1752
|
+
m4trace:m4/libtool.m4:1488: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
|
1753
|
+
m4trace:m4/libtool.m4:1488: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
|
|
1626
1754
|
You should run autoupdate.])dnl
|
|
1627
1755
|
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
|
1628
|
-
m4trace:m4/libtool.m4:
|
|
1756
|
+
m4trace:m4/libtool.m4:1620: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
|
1629
1757
|
# find the maximum length of command line arguments
|
|
1630
1758
|
AC_MSG_CHECKING([the maximum length of command line arguments])
|
|
1631
1759
|
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
|
@@ -1659,11 +1787,6 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
|
|
1659
1787
|
lt_cv_sys_max_cmd_len=8192;
|
|
1660
1788
|
;;
|
|
1661
1789
|
|
|
1662
|
-
mint*)
|
|
1663
|
-
# On MiNT this can take a long time and run out of memory.
|
|
1664
|
-
lt_cv_sys_max_cmd_len=8192;
|
|
1665
|
-
;;
|
|
1666
|
-
|
|
1667
1790
|
amigaos*)
|
|
1668
1791
|
# On AmigaOS with pdksh, this test takes hours, literally.
|
|
1669
1792
|
# So we just punt and use a minimum line length of 8192.
|
|
@@ -1689,11 +1812,6 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
|
|
1689
1812
|
lt_cv_sys_max_cmd_len=196608
|
|
1690
1813
|
;;
|
|
1691
1814
|
|
|
1692
|
-
os2*)
|
|
1693
|
-
# The test takes a long time on OS/2.
|
|
1694
|
-
lt_cv_sys_max_cmd_len=8192
|
|
1695
|
-
;;
|
|
1696
|
-
|
|
1697
1815
|
osf*)
|
|
1698
1816
|
# Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
|
|
1699
1817
|
# due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
|
|
@@ -1733,8 +1851,8 @@ AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
|
|
1733
1851
|
# If test is not a shell built-in, we'll probably end up computing a
|
|
1734
1852
|
# maximum length that is only half of the actual maximum length, but
|
|
1735
1853
|
# we can't tell.
|
|
1736
|
-
while { test "X"
|
|
1737
|
-
= "
|
|
1854
|
+
while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \
|
|
1855
|
+
= "XX$teststring$teststring"; } >/dev/null 2>&1 &&
|
|
1738
1856
|
test $i != 17 # 1/2 MB should be enough
|
|
1739
1857
|
do
|
|
1740
1858
|
i=`expr $i + 1`
|
|
@@ -1760,11 +1878,11 @@ max_cmd_len=$lt_cv_sys_max_cmd_len
|
|
|
1760
1878
|
_LT_DECL([], [max_cmd_len], [0],
|
|
1761
1879
|
[What is the maximum length of a command?])
|
|
1762
1880
|
])
|
|
1763
|
-
m4trace:m4/libtool.m4:
|
|
1764
|
-
m4trace:m4/libtool.m4:
|
|
1881
|
+
m4trace:m4/libtool.m4:1623: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
|
1882
|
+
m4trace:m4/libtool.m4:1623: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
|
|
1765
1883
|
You should run autoupdate.])dnl
|
|
1766
1884
|
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
|
1767
|
-
m4trace:m4/libtool.m4:
|
|
1885
|
+
m4trace:m4/libtool.m4:1838: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
|
|
1768
1886
|
if test "x$enable_dlopen" != xyes; then
|
|
1769
1887
|
enable_dlopen=unknown
|
|
1770
1888
|
enable_dlopen_self=unknown
|
|
@@ -1878,11 +1996,11 @@ _LT_DECL([dlopen_self], [enable_dlopen_self], [0],
|
|
|
1878
1996
|
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
|
|
1879
1997
|
[Whether dlopen of statically linked programs is supported])
|
|
1880
1998
|
])
|
|
1881
|
-
m4trace:m4/libtool.m4:
|
|
1882
|
-
m4trace:m4/libtool.m4:
|
|
1999
|
+
m4trace:m4/libtool.m4:1841: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
|
2000
|
+
m4trace:m4/libtool.m4:1841: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
|
|
1883
2001
|
You should run autoupdate.])dnl
|
|
1884
2002
|
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
|
1885
|
-
m4trace:m4/libtool.m4:
|
|
2003
|
+
m4trace:m4/libtool.m4:2788: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
|
|
1886
2004
|
AC_MSG_CHECKING([for $1])
|
|
1887
2005
|
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
|
|
1888
2006
|
[case $MAGIC_CMD in
|
|
@@ -1941,16 +2059,15 @@ fi
|
|
|
1941
2059
|
_LT_DECL([], [MAGIC_CMD], [0],
|
|
1942
2060
|
[Used to examine libraries when file_magic_cmd begins with "file"])dnl
|
|
1943
2061
|
])
|
|
1944
|
-
m4trace:m4/libtool.m4:
|
|
1945
|
-
m4trace:m4/libtool.m4:
|
|
2062
|
+
m4trace:m4/libtool.m4:2791: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
|
2063
|
+
m4trace:m4/libtool.m4:2791: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
|
|
1946
2064
|
You should run autoupdate.])dnl
|
|
1947
2065
|
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
|
1948
|
-
m4trace:m4/libtool.m4:
|
|
2066
|
+
m4trace:m4/libtool.m4:2899: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
|
|
1949
2067
|
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
|
1950
2068
|
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
|
1951
2069
|
m4_require([_LT_DECL_SED])dnl
|
|
1952
2070
|
m4_require([_LT_DECL_EGREP])dnl
|
|
1953
|
-
m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
|
|
1954
2071
|
|
|
1955
2072
|
AC_ARG_WITH([gnu-ld],
|
|
1956
2073
|
[AS_HELP_STRING([--with-gnu-ld],
|
|
@@ -2031,15 +2148,15 @@ AC_SUBST([LD])
|
|
|
2031
2148
|
|
|
2032
2149
|
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
|
|
2033
2150
|
])
|
|
2034
|
-
m4trace:m4/libtool.m4:
|
|
2035
|
-
m4trace:m4/libtool.m4:
|
|
2151
|
+
m4trace:m4/libtool.m4:2902: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
|
2152
|
+
m4trace:m4/libtool.m4:2902: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
|
|
2036
2153
|
You should run autoupdate.])dnl
|
|
2037
2154
|
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
|
2038
|
-
m4trace:m4/libtool.m4:
|
|
2039
|
-
m4trace:m4/libtool.m4:
|
|
2155
|
+
m4trace:m4/libtool.m4:2903: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
|
2156
|
+
m4trace:m4/libtool.m4:2903: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
|
|
2040
2157
|
You should run autoupdate.])dnl
|
|
2041
2158
|
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
|
2042
|
-
m4trace:m4/libtool.m4:
|
|
2159
|
+
m4trace:m4/libtool.m4:3242: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
|
|
2043
2160
|
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
|
|
2044
2161
|
[if test -n "$NM"; then
|
|
2045
2162
|
# Let the user override the test.
|
|
@@ -2088,19 +2205,7 @@ if test "$lt_cv_path_NM" != "no"; then
|
|
|
2088
2205
|
NM="$lt_cv_path_NM"
|
|
2089
2206
|
else
|
|
2090
2207
|
# Didn't find any BSD compatible name lister, look for dumpbin.
|
|
2091
|
-
|
|
2092
|
-
# Let the user override the test.
|
|
2093
|
-
else
|
|
2094
|
-
AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
|
|
2095
|
-
case `$DUMPBIN -symbols /dev/null 2>&1 | sed '1q'` in
|
|
2096
|
-
*COFF*)
|
|
2097
|
-
DUMPBIN="$DUMPBIN -symbols"
|
|
2098
|
-
;;
|
|
2099
|
-
*)
|
|
2100
|
-
DUMPBIN=:
|
|
2101
|
-
;;
|
|
2102
|
-
esac
|
|
2103
|
-
fi
|
|
2208
|
+
AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :)
|
|
2104
2209
|
AC_SUBST([DUMPBIN])
|
|
2105
2210
|
if test "$DUMPBIN" != ":"; then
|
|
2106
2211
|
NM="$DUMPBIN"
|
|
@@ -2113,31 +2218,31 @@ _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
|
|
|
2113
2218
|
AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
|
|
2114
2219
|
[lt_cv_nm_interface="BSD nm"
|
|
2115
2220
|
echo "int some_variable = 0;" > conftest.$ac_ext
|
|
2116
|
-
(eval echo "\"\$as_me
|
|
2221
|
+
(eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
|
|
2117
2222
|
(eval "$ac_compile" 2>conftest.err)
|
|
2118
2223
|
cat conftest.err >&AS_MESSAGE_LOG_FD
|
|
2119
|
-
(eval echo "\"\$as_me
|
|
2224
|
+
(eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
|
|
2120
2225
|
(eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
|
|
2121
2226
|
cat conftest.err >&AS_MESSAGE_LOG_FD
|
|
2122
|
-
(eval echo "\"\$as_me
|
|
2227
|
+
(eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD)
|
|
2123
2228
|
cat conftest.out >&AS_MESSAGE_LOG_FD
|
|
2124
2229
|
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
|
|
2125
2230
|
lt_cv_nm_interface="MS dumpbin"
|
|
2126
2231
|
fi
|
|
2127
2232
|
rm -f conftest*])
|
|
2128
2233
|
])
|
|
2129
|
-
m4trace:m4/libtool.m4:
|
|
2130
|
-
m4trace:m4/libtool.m4:
|
|
2234
|
+
m4trace:m4/libtool.m4:3245: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
|
2235
|
+
m4trace:m4/libtool.m4:3245: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
|
|
2131
2236
|
You should run autoupdate.])dnl
|
|
2132
2237
|
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
|
2133
|
-
m4trace:m4/libtool.m4:
|
|
2134
|
-
m4trace:m4/libtool.m4:
|
|
2238
|
+
m4trace:m4/libtool.m4:3246: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
|
2239
|
+
m4trace:m4/libtool.m4:3246: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
|
|
2135
2240
|
You should run autoupdate.])dnl
|
|
2136
2241
|
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
|
2137
|
-
m4trace:m4/libtool.m4:
|
|
2242
|
+
m4trace:m4/libtool.m4:3271: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
|
2138
2243
|
LIBM=
|
|
2139
2244
|
case $host in
|
|
2140
|
-
*-*-beos* | *-*-
|
|
2245
|
+
*-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*)
|
|
2141
2246
|
# These system don't have libm, or don't need it
|
|
2142
2247
|
;;
|
|
2143
2248
|
*-ncr-sysv4.3*)
|
|
@@ -2150,52 +2255,50 @@ case $host in
|
|
|
2150
2255
|
esac
|
|
2151
2256
|
AC_SUBST([LIBM])
|
|
2152
2257
|
])
|
|
2153
|
-
m4trace:m4/libtool.m4:
|
|
2154
|
-
m4trace:m4/libtool.m4:
|
|
2258
|
+
m4trace:m4/libtool.m4:3274: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
|
2259
|
+
m4trace:m4/libtool.m4:3274: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
|
|
2155
2260
|
You should run autoupdate.])dnl
|
|
2156
2261
|
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
|
2157
|
-
m4trace:m4/libtool.m4:
|
|
2262
|
+
m4trace:m4/libtool.m4:6973: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
|
|
2158
2263
|
[m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
|
|
2159
2264
|
[AC_CHECK_TOOL(GCJ, gcj,)
|
|
2160
2265
|
test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2"
|
|
2161
2266
|
AC_SUBST(GCJFLAGS)])])[]dnl
|
|
2162
2267
|
])
|
|
2163
|
-
m4trace:m4/libtool.m4:
|
|
2164
|
-
m4trace:m4/libtool.m4:
|
|
2268
|
+
m4trace:m4/libtool.m4:6976: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
|
2269
|
+
m4trace:m4/libtool.m4:6976: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
|
|
2165
2270
|
You should run autoupdate.])dnl
|
|
2166
2271
|
m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
|
2167
|
-
m4trace:m4/libtool.m4:
|
|
2168
|
-
])
|
|
2169
|
-
m4trace:m4/libtool.m4:7647: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
|
|
2272
|
+
m4trace:m4/libtool.m4:6985: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
|
|
2170
2273
|
])
|
|
2171
|
-
m4trace:m4/libtool.m4:
|
|
2172
|
-
m4trace:m4/libtool.m4:
|
|
2274
|
+
m4trace:m4/libtool.m4:6988: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
|
2275
|
+
m4trace:m4/libtool.m4:6988: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
|
|
2173
2276
|
You should run autoupdate.])dnl
|
|
2174
2277
|
m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
|
2175
|
-
m4trace:m4/libtool.m4:
|
|
2176
|
-
m4trace:m4/libtool.m4:
|
|
2278
|
+
m4trace:m4/libtool.m4:7099: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
|
2279
|
+
m4trace:m4/libtool.m4:7099: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
|
|
2177
2280
|
You should run autoupdate.])dnl
|
|
2178
2281
|
m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
|
2179
|
-
m4trace:m4/ltoptions.m4:
|
|
2180
|
-
m4trace:m4/ltoptions.m4:
|
|
2282
|
+
m4trace:m4/ltoptions.m4:13: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
|
2283
|
+
m4trace:m4/ltoptions.m4:115: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
|
|
2181
2284
|
AC_DIAGNOSE([obsolete],
|
|
2182
2285
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
|
2183
2286
|
put the `dlopen' option into LT_INIT's first parameter.])
|
|
2184
2287
|
])
|
|
2185
|
-
m4trace:m4/ltoptions.m4:
|
|
2288
|
+
m4trace:m4/ltoptions.m4:115: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
|
|
2186
2289
|
You should run autoupdate.])dnl
|
|
2187
2290
|
_LT_SET_OPTION([LT_INIT], [dlopen])
|
|
2188
2291
|
AC_DIAGNOSE([obsolete],
|
|
2189
2292
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
|
2190
2293
|
put the `dlopen' option into LT_INIT's first parameter.])
|
|
2191
2294
|
])
|
|
2192
|
-
m4trace:m4/ltoptions.m4:
|
|
2295
|
+
m4trace:m4/ltoptions.m4:151: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
|
2193
2296
|
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
|
2194
2297
|
AC_DIAGNOSE([obsolete],
|
|
2195
2298
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
|
2196
2299
|
put the `win32-dll' option into LT_INIT's first parameter.])
|
|
2197
2300
|
])
|
|
2198
|
-
m4trace:m4/ltoptions.m4:
|
|
2301
|
+
m4trace:m4/ltoptions.m4:151: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
|
|
2199
2302
|
You should run autoupdate.])dnl
|
|
2200
2303
|
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
|
2201
2304
|
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
|
@@ -2203,60 +2306,60 @@ AC_DIAGNOSE([obsolete],
|
|
|
2203
2306
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
|
2204
2307
|
put the `win32-dll' option into LT_INIT's first parameter.])
|
|
2205
2308
|
])
|
|
2206
|
-
m4trace:m4/ltoptions.m4:
|
|
2309
|
+
m4trace:m4/ltoptions.m4:196: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
|
|
2207
2310
|
])
|
|
2208
|
-
m4trace:m4/ltoptions.m4:
|
|
2311
|
+
m4trace:m4/ltoptions.m4:200: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
|
|
2209
2312
|
])
|
|
2210
|
-
m4trace:m4/ltoptions.m4:
|
|
2211
|
-
m4trace:m4/ltoptions.m4:
|
|
2313
|
+
m4trace:m4/ltoptions.m4:202: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
|
|
2314
|
+
m4trace:m4/ltoptions.m4:202: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
|
|
2212
2315
|
You should run autoupdate.])dnl
|
|
2213
2316
|
AC_ENABLE_SHARED($@)])
|
|
2214
|
-
m4trace:m4/ltoptions.m4:
|
|
2215
|
-
m4trace:m4/ltoptions.m4:
|
|
2317
|
+
m4trace:m4/ltoptions.m4:203: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
|
|
2318
|
+
m4trace:m4/ltoptions.m4:203: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
|
|
2216
2319
|
You should run autoupdate.])dnl
|
|
2217
2320
|
AC_DISABLE_SHARED($@)])
|
|
2218
|
-
m4trace:m4/ltoptions.m4:
|
|
2321
|
+
m4trace:m4/ltoptions.m4:250: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
|
|
2219
2322
|
])
|
|
2220
|
-
m4trace:m4/ltoptions.m4:
|
|
2323
|
+
m4trace:m4/ltoptions.m4:254: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
|
|
2221
2324
|
])
|
|
2222
|
-
m4trace:m4/ltoptions.m4:
|
|
2223
|
-
m4trace:m4/ltoptions.m4:
|
|
2325
|
+
m4trace:m4/ltoptions.m4:256: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
|
|
2326
|
+
m4trace:m4/ltoptions.m4:256: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
|
|
2224
2327
|
You should run autoupdate.])dnl
|
|
2225
2328
|
AC_ENABLE_STATIC($@)])
|
|
2226
|
-
m4trace:m4/ltoptions.m4:
|
|
2227
|
-
m4trace:m4/ltoptions.m4:
|
|
2329
|
+
m4trace:m4/ltoptions.m4:257: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
|
|
2330
|
+
m4trace:m4/ltoptions.m4:257: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
|
|
2228
2331
|
You should run autoupdate.])dnl
|
|
2229
2332
|
AC_DISABLE_STATIC($@)])
|
|
2230
|
-
m4trace:m4/ltoptions.m4:
|
|
2333
|
+
m4trace:m4/ltoptions.m4:307: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
|
2231
2334
|
AC_DIAGNOSE([obsolete],
|
|
2232
2335
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
|
2233
2336
|
the `fast-install' option into LT_INIT's first parameter.])
|
|
2234
2337
|
])
|
|
2235
|
-
m4trace:m4/ltoptions.m4:
|
|
2338
|
+
m4trace:m4/ltoptions.m4:307: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
|
|
2236
2339
|
You should run autoupdate.])dnl
|
|
2237
2340
|
_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
|
2238
2341
|
AC_DIAGNOSE([obsolete],
|
|
2239
2342
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
|
2240
2343
|
the `fast-install' option into LT_INIT's first parameter.])
|
|
2241
2344
|
])
|
|
2242
|
-
m4trace:m4/ltoptions.m4:
|
|
2345
|
+
m4trace:m4/ltoptions.m4:314: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
|
2243
2346
|
AC_DIAGNOSE([obsolete],
|
|
2244
2347
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
|
2245
2348
|
the `disable-fast-install' option into LT_INIT's first parameter.])
|
|
2246
2349
|
])
|
|
2247
|
-
m4trace:m4/ltoptions.m4:
|
|
2350
|
+
m4trace:m4/ltoptions.m4:314: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
|
|
2248
2351
|
You should run autoupdate.])dnl
|
|
2249
2352
|
_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
|
2250
2353
|
AC_DIAGNOSE([obsolete],
|
|
2251
2354
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
|
2252
2355
|
the `disable-fast-install' option into LT_INIT's first parameter.])
|
|
2253
2356
|
])
|
|
2254
|
-
m4trace:m4/ltoptions.m4:
|
|
2357
|
+
m4trace:m4/ltoptions.m4:347: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
|
|
2255
2358
|
AC_DIAGNOSE([obsolete],
|
|
2256
2359
|
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
|
2257
2360
|
put the `pic-only' option into LT_INIT's first parameter.])
|
|
2258
2361
|
])
|
|
2259
|
-
m4trace:m4/ltoptions.m4:
|
|
2362
|
+
m4trace:m4/ltoptions.m4:347: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
|
|
2260
2363
|
You should run autoupdate.])dnl
|
|
2261
2364
|
_LT_SET_OPTION([LT_INIT], [pic-only])
|
|
2262
2365
|
AC_DIAGNOSE([obsolete],
|
|
@@ -2264,171 +2367,122 @@ AC_DIAGNOSE([obsolete],
|
|
|
2264
2367
|
put the `pic-only' option into LT_INIT's first parameter.])
|
|
2265
2368
|
])
|
|
2266
2369
|
m4trace:m4/ltsugar.m4:13: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
|
|
2267
|
-
m4trace:m4/ltversion.m4:23: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.
|
|
2268
|
-
macro_revision='1.
|
|
2370
|
+
m4trace:m4/ltversion.m4:23: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.2.6'
|
|
2371
|
+
macro_revision='1.3012'
|
|
2269
2372
|
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
|
2270
2373
|
_LT_DECL(, macro_revision, 0)
|
|
2271
2374
|
])
|
|
2272
2375
|
m4trace:m4/lt~obsolete.m4:36: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
|
2273
|
-
m4trace:m4/lt~obsolete.m4:
|
|
2274
|
-
m4trace:
|
|
2275
|
-
m4trace:
|
|
2276
|
-
m4trace:
|
|
2277
|
-
m4trace:
|
|
2278
|
-
m4trace:
|
|
2279
|
-
m4trace:
|
|
2280
|
-
m4trace:
|
|
2281
|
-
m4trace:
|
|
2282
|
-
m4trace:
|
|
2283
|
-
m4trace:
|
|
2284
|
-
m4trace:
|
|
2285
|
-
m4trace:
|
|
2286
|
-
m4trace:
|
|
2287
|
-
m4trace:
|
|
2288
|
-
m4trace:
|
|
2289
|
-
m4trace:
|
|
2290
|
-
m4trace:
|
|
2291
|
-
m4trace:
|
|
2292
|
-
m4trace:
|
|
2293
|
-
m4trace:
|
|
2294
|
-
m4trace:
|
|
2295
|
-
m4trace:
|
|
2296
|
-
m4trace:
|
|
2297
|
-
m4trace:
|
|
2298
|
-
m4trace:
|
|
2299
|
-
m4trace:
|
|
2300
|
-
m4trace:
|
|
2301
|
-
m4trace:
|
|
2302
|
-
m4trace:
|
|
2303
|
-
m4trace:
|
|
2304
|
-
m4trace:
|
|
2305
|
-
m4trace:
|
|
2306
|
-
m4trace:
|
|
2307
|
-
m4trace:
|
|
2308
|
-
m4trace:
|
|
2309
|
-
m4trace:
|
|
2310
|
-
m4trace:
|
|
2311
|
-
m4trace:
|
|
2312
|
-
m4trace:
|
|
2313
|
-
m4trace:
|
|
2314
|
-
m4trace:
|
|
2315
|
-
m4trace:
|
|
2316
|
-
m4trace:
|
|
2317
|
-
m4trace:
|
|
2318
|
-
m4trace:
|
|
2319
|
-
m4trace:
|
|
2320
|
-
m4trace:
|
|
2321
|
-
m4trace:
|
|
2322
|
-
m4trace:
|
|
2323
|
-
m4trace:configure.ac:
|
|
2324
|
-
m4trace:configure.ac:
|
|
2325
|
-
m4trace:configure.ac:
|
|
2326
|
-
m4trace:configure.ac:
|
|
2327
|
-
m4trace:configure.ac:
|
|
2328
|
-
m4trace:configure.ac:
|
|
2329
|
-
m4trace:configure.ac:
|
|
2330
|
-
m4trace:configure.ac:
|
|
2331
|
-
m4trace:configure.ac:
|
|
2332
|
-
m4trace:configure.ac:
|
|
2333
|
-
m4trace:configure.ac:
|
|
2334
|
-
m4trace:configure.ac:
|
|
2335
|
-
m4trace:configure.ac:
|
|
2336
|
-
m4trace:configure.ac:
|
|
2337
|
-
m4trace:configure.ac:
|
|
2338
|
-
m4trace:configure.ac:
|
|
2339
|
-
m4trace:configure.ac:
|
|
2340
|
-
m4trace:configure.ac:
|
|
2341
|
-
m4trace:configure.ac:
|
|
2342
|
-
m4trace:configure.ac:
|
|
2343
|
-
m4trace:configure.ac:
|
|
2344
|
-
m4trace:configure.ac:
|
|
2345
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^datadir$])
|
|
2346
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^sysconfdir$])
|
|
2347
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^sharedstatedir$])
|
|
2348
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^localstatedir$])
|
|
2349
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^includedir$])
|
|
2350
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^oldincludedir$])
|
|
2351
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^docdir$])
|
|
2352
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^infodir$])
|
|
2353
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^htmldir$])
|
|
2354
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^dvidir$])
|
|
2355
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^pdfdir$])
|
|
2356
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^psdir$])
|
|
2357
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^libdir$])
|
|
2358
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^localedir$])
|
|
2359
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^mandir$])
|
|
2360
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
|
2361
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
|
2362
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
|
2363
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
|
2364
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
|
2365
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^PACKAGE_URL$])
|
|
2366
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^DEFS$])
|
|
2367
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_C$])
|
|
2368
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_N$])
|
|
2369
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^ECHO_T$])
|
|
2370
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^LIBS$])
|
|
2371
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^build_alias$])
|
|
2372
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^host_alias$])
|
|
2373
|
-
m4trace:configure.ac:9: -1- m4_pattern_allow([^target_alias$])
|
|
2374
|
-
m4trace:configure.ac:13: -1- AC_CONFIG_MACRO_DIR([m4])
|
|
2375
|
-
m4trace:configure.ac:16: -1- AM_INIT_AUTOMAKE([1.9 foreign])
|
|
2376
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
|
2377
|
-
m4trace:configure.ac:16: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
|
|
2378
|
-
m4trace:configure.ac:16: -1- AM_AUTOMAKE_VERSION([1.14.1])
|
|
2379
|
-
m4trace:configure.ac:16: -1- _AM_AUTOCONF_VERSION([2.69])
|
|
2380
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
|
2381
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
|
2382
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^INSTALL_DATA$])
|
|
2383
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^am__isrc$])
|
|
2384
|
-
m4trace:configure.ac:16: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
|
2385
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^CYGPATH_W$])
|
|
2386
|
-
m4trace:configure.ac:16: -1- _AM_SET_OPTIONS([1.9 foreign])
|
|
2387
|
-
m4trace:configure.ac:16: -1- _AM_SET_OPTION([1.9])
|
|
2388
|
-
m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([1.9])
|
|
2389
|
-
m4trace:configure.ac:16: -1- _AM_SET_OPTION([foreign])
|
|
2390
|
-
m4trace:configure.ac:16: -2- _AM_MANGLE_OPTION([foreign])
|
|
2391
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^PACKAGE$])
|
|
2392
|
-
m4trace:configure.ac:16: -1- m4_pattern_allow([^VERSION$])
|
|
2393
|
-
m4trace:configure.ac:16: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
|
|
2376
|
+
m4trace:m4/lt~obsolete.m4:80: -1- AC_DEFUN([AC_LIBTOOL_RC])
|
|
2377
|
+
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
|
2378
|
+
m4trace:configure.ac:27: -1- m4_pattern_forbid([_AC_])
|
|
2379
|
+
m4trace:configure.ac:27: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
|
2380
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^AS_FLAGS$])
|
|
2381
|
+
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?m4_])
|
|
2382
|
+
m4trace:configure.ac:27: -1- m4_pattern_forbid([^dnl$])
|
|
2383
|
+
m4trace:configure.ac:27: -1- m4_pattern_forbid([^_?AS_])
|
|
2384
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^SHELL$])
|
|
2385
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
|
2386
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
|
2387
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
|
2388
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
|
2389
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
|
2390
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
|
2391
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_URL$])
|
|
2392
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^exec_prefix$])
|
|
2393
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^prefix$])
|
|
2394
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^program_transform_name$])
|
|
2395
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^bindir$])
|
|
2396
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^sbindir$])
|
|
2397
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^libexecdir$])
|
|
2398
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^datarootdir$])
|
|
2399
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^datadir$])
|
|
2400
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^sysconfdir$])
|
|
2401
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^sharedstatedir$])
|
|
2402
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^localstatedir$])
|
|
2403
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^includedir$])
|
|
2404
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^oldincludedir$])
|
|
2405
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^docdir$])
|
|
2406
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^infodir$])
|
|
2407
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^htmldir$])
|
|
2408
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^dvidir$])
|
|
2409
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^pdfdir$])
|
|
2410
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^psdir$])
|
|
2411
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^libdir$])
|
|
2412
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^localedir$])
|
|
2413
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^mandir$])
|
|
2414
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
|
2415
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
|
2416
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
|
2417
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
|
2418
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
|
2419
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^PACKAGE_URL$])
|
|
2420
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^DEFS$])
|
|
2421
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_C$])
|
|
2422
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_N$])
|
|
2423
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^ECHO_T$])
|
|
2424
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^LIBS$])
|
|
2425
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^build_alias$])
|
|
2426
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^host_alias$])
|
|
2427
|
+
m4trace:configure.ac:27: -1- m4_pattern_allow([^target_alias$])
|
|
2428
|
+
m4trace:configure.ac:30: -1- AC_CONFIG_MACRO_DIR([m4])
|
|
2429
|
+
m4trace:configure.ac:32: -1- AM_INIT_AUTOMAKE([1.9 foreign])
|
|
2430
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
|
2431
|
+
m4trace:configure.ac:32: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
|
|
2432
|
+
m4trace:configure.ac:32: -1- AM_AUTOMAKE_VERSION([1.15])
|
|
2433
|
+
m4trace:configure.ac:32: -1- _AM_AUTOCONF_VERSION([2.69])
|
|
2434
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
|
2435
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
|
2436
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_DATA$])
|
|
2437
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__isrc$])
|
|
2438
|
+
m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
|
2439
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^CYGPATH_W$])
|
|
2440
|
+
m4trace:configure.ac:32: -1- _AM_SET_OPTIONS([1.9 foreign])
|
|
2441
|
+
m4trace:configure.ac:32: -1- _AM_SET_OPTION([1.9])
|
|
2442
|
+
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([1.9])
|
|
2443
|
+
m4trace:configure.ac:32: -1- _AM_SET_OPTION([foreign])
|
|
2444
|
+
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([foreign])
|
|
2445
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^PACKAGE$])
|
|
2446
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSION$])
|
|
2447
|
+
m4trace:configure.ac:32: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
|
|
2394
2448
|
AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
|
|
2395
|
-
m4trace:configure.ac:
|
|
2396
|
-
m4trace:configure.ac:
|
|
2397
|
-
m4trace:configure.ac:
|
|
2398
|
-
m4trace:configure.ac:
|
|
2399
|
-
m4trace:configure.ac:
|
|
2400
|
-
m4trace:configure.ac:
|
|
2401
|
-
m4trace:configure.ac:
|
|
2402
|
-
m4trace:configure.ac:
|
|
2403
|
-
m4trace:configure.ac:
|
|
2404
|
-
m4trace:configure.ac:
|
|
2405
|
-
m4trace:configure.ac:
|
|
2406
|
-
m4trace:configure.ac:
|
|
2407
|
-
m4trace:configure.ac:
|
|
2408
|
-
m4trace:configure.ac:
|
|
2409
|
-
m4trace:configure.ac:
|
|
2410
|
-
m4trace:configure.ac:
|
|
2411
|
-
m4trace:configure.ac:
|
|
2412
|
-
m4trace:configure.ac:
|
|
2413
|
-
m4trace:configure.ac:
|
|
2414
|
-
m4trace:configure.ac:
|
|
2415
|
-
m4trace:configure.ac:
|
|
2416
|
-
m4trace:configure.ac:
|
|
2417
|
-
m4trace:configure.ac:
|
|
2418
|
-
m4trace:configure.ac:
|
|
2419
|
-
m4trace:configure.ac:
|
|
2420
|
-
m4trace:configure.ac:
|
|
2421
|
-
m4trace:configure.ac:
|
|
2422
|
-
m4trace:configure.ac:
|
|
2449
|
+
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([no-define])
|
|
2450
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^PACKAGE$])
|
|
2451
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^VERSION$])
|
|
2452
|
+
m4trace:configure.ac:32: -1- AM_SANITY_CHECK
|
|
2453
|
+
m4trace:configure.ac:32: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
|
|
2454
|
+
m4trace:configure.ac:32: -1- AM_MISSING_HAS_RUN
|
|
2455
|
+
m4trace:configure.ac:32: -1- AM_AUX_DIR_EXPAND
|
|
2456
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^ACLOCAL$])
|
|
2457
|
+
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
|
|
2458
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOCONF$])
|
|
2459
|
+
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
|
|
2460
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOMAKE$])
|
|
2461
|
+
m4trace:configure.ac:32: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
|
|
2462
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AUTOHEADER$])
|
|
2463
|
+
m4trace:configure.ac:32: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
|
|
2464
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^MAKEINFO$])
|
|
2465
|
+
m4trace:configure.ac:32: -1- AM_PROG_INSTALL_SH
|
|
2466
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^install_sh$])
|
|
2467
|
+
m4trace:configure.ac:32: -1- AM_PROG_INSTALL_STRIP
|
|
2468
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^STRIP$])
|
|
2469
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
|
|
2470
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^MKDIR_P$])
|
|
2471
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^mkdir_p$])
|
|
2472
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AWK$])
|
|
2473
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^SET_MAKE$])
|
|
2474
|
+
m4trace:configure.ac:32: -1- AM_SET_LEADING_DOT
|
|
2475
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__leading_dot$])
|
|
2476
|
+
m4trace:configure.ac:32: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
|
2423
2477
|
[_AM_PROG_TAR([v7])])])
|
|
2424
|
-
m4trace:configure.ac:
|
|
2425
|
-
m4trace:configure.ac:
|
|
2426
|
-
m4trace:configure.ac:
|
|
2427
|
-
m4trace:configure.ac:
|
|
2428
|
-
m4trace:configure.ac:
|
|
2429
|
-
m4trace:configure.ac:
|
|
2430
|
-
m4trace:configure.ac:
|
|
2431
|
-
m4trace:configure.ac:
|
|
2478
|
+
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([tar-ustar])
|
|
2479
|
+
m4trace:configure.ac:32: -1- _AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])
|
|
2480
|
+
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([tar-pax])
|
|
2481
|
+
m4trace:configure.ac:32: -1- _AM_PROG_TAR([v7])
|
|
2482
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AMTAR$])
|
|
2483
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__tar$])
|
|
2484
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^am__untar$])
|
|
2485
|
+
m4trace:configure.ac:32: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
|
|
2432
2486
|
[_AM_DEPENDENCIES([CC])],
|
|
2433
2487
|
[m4_define([AC_PROG_CC],
|
|
2434
2488
|
m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
|
|
@@ -2445,271 +2499,181 @@ AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
|
|
|
2445
2499
|
[m4_define([AC_PROG_OBJCXX],
|
|
2446
2500
|
m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
|
|
2447
2501
|
])
|
|
2448
|
-
m4trace:configure.ac:
|
|
2449
|
-
m4trace:configure.ac:
|
|
2450
|
-
m4trace:configure.ac:
|
|
2451
|
-
m4trace:configure.ac:
|
|
2452
|
-
m4trace:configure.ac:
|
|
2453
|
-
m4trace:configure.ac:
|
|
2454
|
-
m4trace:configure.ac:
|
|
2455
|
-
m4trace:configure.ac:
|
|
2456
|
-
m4trace:configure.ac:
|
|
2457
|
-
m4trace:configure.ac:
|
|
2458
|
-
m4trace:configure.ac:
|
|
2459
|
-
m4trace:configure.ac:
|
|
2460
|
-
m4trace:configure.ac:
|
|
2461
|
-
m4trace:configure.ac:
|
|
2462
|
-
m4trace:configure.ac:
|
|
2463
|
-
m4trace:configure.ac:
|
|
2464
|
-
m4trace:configure.ac:
|
|
2465
|
-
m4trace:configure.ac:
|
|
2466
|
-
m4trace:configure.ac:
|
|
2467
|
-
m4trace:configure.ac:
|
|
2468
|
-
m4trace:configure.ac:
|
|
2469
|
-
m4trace:configure.ac:
|
|
2470
|
-
m4trace:configure.ac:
|
|
2471
|
-
m4trace:configure.ac:
|
|
2472
|
-
m4trace:configure.ac:
|
|
2473
|
-
m4trace:configure.ac:
|
|
2474
|
-
m4trace:configure.ac:
|
|
2475
|
-
m4trace:configure.ac:
|
|
2476
|
-
m4trace:configure.ac:
|
|
2477
|
-
m4trace:configure.ac:
|
|
2478
|
-
m4trace:configure.ac:
|
|
2479
|
-
m4trace:configure.ac:
|
|
2480
|
-
m4trace:configure.ac:
|
|
2481
|
-
m4trace:configure.ac:
|
|
2482
|
-
m4trace:configure.ac:
|
|
2483
|
-
m4trace:configure.ac:
|
|
2484
|
-
m4trace:configure.ac:
|
|
2485
|
-
m4trace:configure.ac:
|
|
2486
|
-
m4trace:configure.ac:
|
|
2487
|
-
m4trace:configure.ac:
|
|
2488
|
-
m4trace:configure.ac:
|
|
2489
|
-
m4trace:configure.ac:
|
|
2490
|
-
m4trace:configure.ac:
|
|
2491
|
-
m4trace:configure.ac:
|
|
2492
|
-
m4trace:configure.ac:
|
|
2493
|
-
m4trace:configure.ac:
|
|
2494
|
-
m4trace:configure.ac:
|
|
2495
|
-
m4trace:configure.ac:
|
|
2496
|
-
m4trace:configure.ac:
|
|
2502
|
+
m4trace:configure.ac:32: -2- _AM_MANGLE_OPTION([no-dependencies])
|
|
2503
|
+
m4trace:configure.ac:32: -1- AM_SILENT_RULES
|
|
2504
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_V$])
|
|
2505
|
+
m4trace:configure.ac:32: -1- AM_SUBST_NOTMAKE([AM_V])
|
|
2506
|
+
m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([AM_V])
|
|
2507
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
|
2508
|
+
m4trace:configure.ac:32: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
|
2509
|
+
m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
|
2510
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
|
2511
|
+
m4trace:configure.ac:32: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
|
2512
|
+
m4trace:configure.ac:32: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
|
2513
|
+
m4trace:configure.ac:35: -1- m4_pattern_allow([^YAML_VERSION_MAJOR$])
|
|
2514
|
+
m4trace:configure.ac:36: -1- m4_pattern_allow([^YAML_VERSION_MINOR$])
|
|
2515
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^YAML_VERSION_PATCH$])
|
|
2516
|
+
m4trace:configure.ac:38: -1- m4_pattern_allow([^YAML_VERSION_STRING$])
|
|
2517
|
+
m4trace:configure.ac:45: -1- m4_pattern_allow([^YAML_LT_RELEASE$])
|
|
2518
|
+
m4trace:configure.ac:46: -1- m4_pattern_allow([^YAML_LT_CURRENT$])
|
|
2519
|
+
m4trace:configure.ac:47: -1- m4_pattern_allow([^YAML_LT_REVISION$])
|
|
2520
|
+
m4trace:configure.ac:48: -1- m4_pattern_allow([^YAML_LT_AGE$])
|
|
2521
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
|
2522
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CFLAGS$])
|
|
2523
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^LDFLAGS$])
|
|
2524
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^LIBS$])
|
|
2525
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CPPFLAGS$])
|
|
2526
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
|
2527
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
|
2528
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
|
2529
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CC$])
|
|
2530
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^ac_ct_CC$])
|
|
2531
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^EXEEXT$])
|
|
2532
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^OBJEXT$])
|
|
2533
|
+
m4trace:configure.ac:53: -1- _AM_PROG_CC_C_O
|
|
2534
|
+
m4trace:configure.ac:53: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
|
|
2535
|
+
m4trace:configure.ac:53: -1- _AM_DEPENDENCIES([CC])
|
|
2536
|
+
m4trace:configure.ac:53: -1- AM_SET_DEPDIR
|
|
2537
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^DEPDIR$])
|
|
2538
|
+
m4trace:configure.ac:53: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
|
|
2539
|
+
m4trace:configure.ac:53: -1- AM_MAKE_INCLUDE
|
|
2540
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__include$])
|
|
2541
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__quote$])
|
|
2542
|
+
m4trace:configure.ac:53: -1- AM_DEP_TRACK
|
|
2543
|
+
m4trace:configure.ac:53: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
|
2544
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEP_TRUE$])
|
|
2545
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEP_FALSE$])
|
|
2546
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
|
|
2547
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
|
|
2548
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
|
|
2549
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
|
|
2550
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__nodep$])
|
|
2551
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__nodep])
|
|
2552
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^CCDEPMODE$])
|
|
2553
|
+
m4trace:configure.ac:53: -1- AM_CONDITIONAL([am__fastdepCC], [
|
|
2497
2554
|
test "x$enable_dependency_tracking" != xno \
|
|
2498
2555
|
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
|
|
2499
|
-
m4trace:configure.ac:
|
|
2500
|
-
m4trace:configure.ac:
|
|
2501
|
-
m4trace:configure.ac:
|
|
2502
|
-
m4trace:configure.ac:
|
|
2503
|
-
m4trace:configure.ac:
|
|
2504
|
-
m4trace:configure.ac:
|
|
2505
|
-
m4trace:configure.ac:
|
|
2506
|
-
m4trace:configure.ac:
|
|
2507
|
-
m4trace:configure.ac:
|
|
2508
|
-
m4trace:configure.ac:
|
|
2509
|
-
m4trace:configure.ac:
|
|
2510
|
-
|
|
2511
|
-
|
|
2512
|
-
m4trace:configure.ac:
|
|
2513
|
-
m4trace:configure.ac:
|
|
2514
|
-
m4trace:configure.ac:
|
|
2515
|
-
m4trace:configure.ac:
|
|
2516
|
-
|
|
2517
|
-
|
|
2518
|
-
m4trace:configure.ac:
|
|
2519
|
-
m4trace:configure.ac:
|
|
2520
|
-
m4trace:configure.ac:
|
|
2521
|
-
m4trace:configure.ac:
|
|
2522
|
-
m4trace:configure.ac:
|
|
2523
|
-
m4trace:configure.ac:
|
|
2524
|
-
m4trace:configure.ac:
|
|
2525
|
-
m4trace:configure.ac:
|
|
2526
|
-
m4trace:configure.ac:
|
|
2527
|
-
|
|
2528
|
-
configure.ac:
|
|
2529
|
-
m4trace:configure.ac:
|
|
2530
|
-
m4trace:configure.ac:
|
|
2531
|
-
m4trace:configure.ac:
|
|
2532
|
-
m4trace:configure.ac:
|
|
2533
|
-
m4trace:configure.ac:
|
|
2534
|
-
m4trace:configure.ac:
|
|
2535
|
-
m4trace:configure.ac:
|
|
2536
|
-
m4trace:configure.ac:
|
|
2537
|
-
m4trace:configure.ac:
|
|
2538
|
-
m4trace:configure.ac:
|
|
2539
|
-
m4trace:configure.ac:
|
|
2540
|
-
m4trace:configure.ac:
|
|
2541
|
-
m4trace:configure.ac:
|
|
2542
|
-
m4trace:configure.ac:
|
|
2543
|
-
m4trace:configure.ac:
|
|
2544
|
-
m4trace:configure.ac:
|
|
2545
|
-
m4trace:configure.ac:
|
|
2546
|
-
m4trace:configure.ac:
|
|
2547
|
-
m4trace:configure.ac:
|
|
2548
|
-
m4trace:configure.ac:
|
|
2549
|
-
m4trace:configure.ac:
|
|
2550
|
-
m4trace:configure.ac:
|
|
2551
|
-
m4trace:configure.ac:
|
|
2552
|
-
m4trace:configure.ac:
|
|
2553
|
-
m4trace:configure.ac:
|
|
2554
|
-
m4trace:configure.ac:
|
|
2555
|
-
m4trace:configure.ac:
|
|
2556
|
-
m4trace:configure.ac:
|
|
2557
|
-
m4trace:configure.ac:
|
|
2558
|
-
m4trace:configure.ac:
|
|
2559
|
-
m4trace:configure.ac:
|
|
2560
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^NM$])
|
|
2561
|
-
m4trace:configure.ac:36: -1- LT_CMD_MAX_LEN
|
|
2562
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^OBJDUMP$])
|
|
2563
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^OBJDUMP$])
|
|
2564
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^DLLTOOL$])
|
|
2565
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^DLLTOOL$])
|
|
2566
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^AR$])
|
|
2567
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^ac_ct_AR$])
|
|
2568
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^STRIP$])
|
|
2569
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^RANLIB$])
|
|
2570
|
-
m4trace:configure.ac:36: -1- _LT_WITH_SYSROOT
|
|
2571
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([LT_OBJDIR])
|
|
2572
|
-
m4trace:configure.ac:36: -1- m4_pattern_allow([^LT_OBJDIR$])
|
|
2573
|
-
m4trace:configure.ac:36: -1- _LT_CC_BASENAME([$compiler])
|
|
2574
|
-
m4trace:configure.ac:36: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
|
|
2575
|
-
m4trace:configure.ac:36: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
|
|
2576
|
-
m4trace:configure.ac:36: -1- LT_SUPPORTED_TAG([CC])
|
|
2577
|
-
m4trace:configure.ac:36: -1- _LT_COMPILER_BOILERPLATE
|
|
2578
|
-
m4trace:configure.ac:36: -1- _LT_LINKER_BOILERPLATE
|
|
2579
|
-
m4trace:configure.ac:36: -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"])
|
|
2580
|
-
m4trace:configure.ac:36: -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
|
|
2556
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
|
|
2557
|
+
m4trace:configure.ac:53: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
|
|
2558
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
|
|
2559
|
+
m4trace:configure.ac:53: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
|
|
2560
|
+
m4trace:configure.ac:54: -1- m4_pattern_allow([^CPP$])
|
|
2561
|
+
m4trace:configure.ac:54: -1- m4_pattern_allow([^CPPFLAGS$])
|
|
2562
|
+
m4trace:configure.ac:54: -1- m4_pattern_allow([^CPP$])
|
|
2563
|
+
m4trace:configure.ac:56: -1- m4_pattern_allow([^LN_S$])
|
|
2564
|
+
m4trace:configure.ac:57: -1- m4_pattern_allow([^SET_MAKE$])
|
|
2565
|
+
m4trace:configure.ac:58: -1- AC_PROG_LIBTOOL
|
|
2566
|
+
m4trace:configure.ac:58: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
|
2567
|
+
You should run autoupdate.], [m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
|
|
2568
|
+
configure.ac:58: the top level])
|
|
2569
|
+
m4trace:configure.ac:58: -1- LT_INIT
|
|
2570
|
+
m4trace:configure.ac:58: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
|
|
2571
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
|
|
2572
|
+
m4trace:configure.ac:58: -1- LTOPTIONS_VERSION
|
|
2573
|
+
m4trace:configure.ac:58: -1- LTSUGAR_VERSION
|
|
2574
|
+
m4trace:configure.ac:58: -1- LTVERSION_VERSION
|
|
2575
|
+
m4trace:configure.ac:58: -1- LTOBSOLETE_VERSION
|
|
2576
|
+
m4trace:configure.ac:58: -1- _LT_PROG_LTMAIN
|
|
2577
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^LIBTOOL$])
|
|
2578
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^build$])
|
|
2579
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^build_cpu$])
|
|
2580
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^build_vendor$])
|
|
2581
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^build_os$])
|
|
2582
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^host$])
|
|
2583
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^host_cpu$])
|
|
2584
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^host_vendor$])
|
|
2585
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^host_os$])
|
|
2586
|
+
m4trace:configure.ac:58: -1- LT_PATH_LD
|
|
2587
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^SED$])
|
|
2588
|
+
m4trace:configure.ac:58: -1- AC_PROG_EGREP
|
|
2589
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^GREP$])
|
|
2590
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^EGREP$])
|
|
2591
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^FGREP$])
|
|
2592
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^GREP$])
|
|
2593
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^LD$])
|
|
2594
|
+
m4trace:configure.ac:58: -1- LT_PATH_NM
|
|
2595
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^DUMPBIN$])
|
|
2596
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
|
|
2597
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^DUMPBIN$])
|
|
2598
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^NM$])
|
|
2599
|
+
m4trace:configure.ac:58: -1- LT_CMD_MAX_LEN
|
|
2600
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^OBJDUMP$])
|
|
2601
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^OBJDUMP$])
|
|
2602
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^AR$])
|
|
2603
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^STRIP$])
|
|
2604
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^RANLIB$])
|
|
2605
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([LT_OBJDIR])
|
|
2606
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^LT_OBJDIR$])
|
|
2607
|
+
m4trace:configure.ac:58: -1- _LT_PROG_ECHO_BACKSLASH
|
|
2608
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^lt_ECHO$])
|
|
2609
|
+
m4trace:configure.ac:58: -1- _LT_CC_BASENAME([$compiler])
|
|
2610
|
+
m4trace:configure.ac:58: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
|
|
2611
|
+
m4trace:configure.ac:58: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
|
|
2612
|
+
m4trace:configure.ac:58: -1- LT_SUPPORTED_TAG([CC])
|
|
2613
|
+
m4trace:configure.ac:58: -1- _LT_COMPILER_BOILERPLATE
|
|
2614
|
+
m4trace:configure.ac:58: -1- _LT_LINKER_BOILERPLATE
|
|
2615
|
+
m4trace:configure.ac:58: -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"])
|
|
2616
|
+
m4trace:configure.ac:58: -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
|
|
2581
2617
|
"" | " "*) ;;
|
|
2582
2618
|
*) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
|
|
2583
2619
|
esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
|
|
2584
2620
|
_LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
|
|
2585
|
-
m4trace:configure.ac:
|
|
2586
|
-
m4trace:configure.ac:
|
|
2587
|
-
|
|
2588
|
-
|
|
2589
|
-
|
|
2590
|
-
|
|
2591
|
-
|
|
2592
|
-
|
|
2593
|
-
|
|
2594
|
-
|
|
2595
|
-
|
|
2596
|
-
m4trace:configure.ac:
|
|
2597
|
-
|
|
2598
|
-
|
|
2599
|
-
|
|
2600
|
-
|
|
2601
|
-
|
|
2602
|
-
|
|
2603
|
-
|
|
2604
|
-
|
|
2605
|
-
|
|
2606
|
-
m4trace:configure.ac:
|
|
2607
|
-
m4trace:configure.ac:
|
|
2608
|
-
|
|
2609
|
-
|
|
2610
|
-
|
|
2611
|
-
|
|
2612
|
-
m4trace:configure.ac:
|
|
2613
|
-
|
|
2614
|
-
|
|
2615
|
-
|
|
2616
|
-
|
|
2617
|
-
|
|
2618
|
-
|
|
2619
|
-
|
|
2620
|
-
|
|
2621
|
-
m4trace:configure.ac:
|
|
2622
|
-
m4trace:configure.ac:
|
|
2623
|
-
m4trace:configure.ac:
|
|
2624
|
-
m4trace:configure.ac:
|
|
2625
|
-
m4trace:configure.ac:
|
|
2626
|
-
m4trace:configure.ac:
|
|
2627
|
-
m4trace:configure.ac:
|
|
2628
|
-
m4trace:configure.ac:
|
|
2629
|
-
m4trace:configure.ac:
|
|
2630
|
-
m4trace:configure.ac:
|
|
2631
|
-
m4trace:configure.ac:
|
|
2632
|
-
m4trace:configure.ac:
|
|
2633
|
-
m4trace:configure.ac:
|
|
2634
|
-
m4trace:configure.ac:
|
|
2635
|
-
m4trace:configure.ac:
|
|
2636
|
-
m4trace:configure.ac:
|
|
2637
|
-
m4trace:configure.ac:
|
|
2638
|
-
m4trace:configure.ac:
|
|
2639
|
-
m4trace:configure.ac:
|
|
2640
|
-
m4trace:configure.ac:
|
|
2641
|
-
m4trace:configure.ac:
|
|
2642
|
-
m4trace:configure.ac:
|
|
2643
|
-
m4trace:configure.ac:
|
|
2644
|
-
m4trace:configure.ac:72: -1- m4_pattern_allow([^HAVE_SYS_EPOLL_H$])
|
|
2645
|
-
m4trace:configure.ac:73: -1- m4_pattern_allow([^HAVE_SYS_EVENT_H$])
|
|
2646
|
-
m4trace:configure.ac:76: -1- m4_pattern_allow([^HAVE_LIBM$])
|
|
2647
|
-
m4trace:configure.ac:77: -1- m4_pattern_allow([^HAVE_LIBPTHREAD$])
|
|
2648
|
-
m4trace:configure.ac:80: -1- m4_pattern_allow([^HAVE_VFORK_H$])
|
|
2649
|
-
m4trace:configure.ac:80: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
|
|
2650
|
-
m4trace:configure.ac:80: -1- m4_pattern_allow([^vfork$])
|
|
2651
|
-
m4trace:configure.ac:80: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
|
|
2652
|
-
m4trace:configure.ac:81: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
|
|
2653
|
-
m4trace:configure.ac:81: -1- m4_pattern_allow([^HAVE_MALLOC$])
|
|
2654
|
-
m4trace:configure.ac:81: -1- m4_pattern_allow([^HAVE_MALLOC$])
|
|
2655
|
-
m4trace:configure.ac:81: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
|
2656
|
-
m4trace:configure.ac:81: -1- m4_pattern_allow([^malloc$])
|
|
2657
|
-
m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
|
|
2658
|
-
m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_REALLOC$])
|
|
2659
|
-
m4trace:configure.ac:82: -1- m4_pattern_allow([^HAVE_REALLOC$])
|
|
2660
|
-
m4trace:configure.ac:82: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
|
2661
|
-
m4trace:configure.ac:82: -1- m4_pattern_allow([^realloc$])
|
|
2662
|
-
m4trace:configure.ac:84: -1- m4_pattern_allow([^HAVE_SOCKET$])
|
|
2663
|
-
m4trace:configure.ac:105: -2- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
|
2664
|
-
You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
|
|
2665
|
-
configure.ac:105: the top level])
|
|
2666
|
-
m4trace:configure.ac:105: -2- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
|
|
2667
|
-
../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
|
|
2668
|
-
configure.ac:105: the top level])
|
|
2669
|
-
m4trace:configure.ac:107: -1- m4_pattern_allow([^HAVE_EPOLL$])
|
|
2670
|
-
m4trace:configure.ac:128: -2- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
|
2671
|
-
You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
|
|
2672
|
-
configure.ac:128: the top level])
|
|
2673
|
-
m4trace:configure.ac:128: -2- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
|
|
2674
|
-
../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
|
|
2675
|
-
configure.ac:128: the top level])
|
|
2676
|
-
m4trace:configure.ac:130: -1- m4_pattern_allow([^HAVE_KQUEUE$])
|
|
2677
|
-
m4trace:configure.ac:149: -2- _m4_warn([obsolete], [The macro `AC_TRY_RUN' is obsolete.
|
|
2678
|
-
You should run autoupdate.], [../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
|
|
2679
|
-
configure.ac:149: the top level])
|
|
2680
|
-
m4trace:configure.ac:149: -2- _m4_warn([cross], [AC_RUN_IFELSE called without default to allow cross compiling], [../../lib/autoconf/general.m4:2757: AC_RUN_IFELSE is expanded from...
|
|
2681
|
-
../../lib/autoconf/general.m4:2765: AC_TRY_RUN is expanded from...
|
|
2682
|
-
configure.ac:149: the top level])
|
|
2683
|
-
m4trace:configure.ac:151: -1- m4_pattern_allow([^HAVE_EVENT_PORTS$])
|
|
2684
|
-
m4trace:configure.ac:158: -1- AM_CONDITIONAL([OS_LINUX], [test "x$ac_cv_epoll_works" = "xyes"])
|
|
2685
|
-
m4trace:configure.ac:158: -1- m4_pattern_allow([^OS_LINUX_TRUE$])
|
|
2686
|
-
m4trace:configure.ac:158: -1- m4_pattern_allow([^OS_LINUX_FALSE$])
|
|
2687
|
-
m4trace:configure.ac:158: -1- _AM_SUBST_NOTMAKE([OS_LINUX_TRUE])
|
|
2688
|
-
m4trace:configure.ac:158: -1- _AM_SUBST_NOTMAKE([OS_LINUX_FALSE])
|
|
2689
|
-
m4trace:configure.ac:159: -1- AM_CONDITIONAL([OS_BSD], [test "x$ac_cv_kqueue_works" = "xyes"])
|
|
2690
|
-
m4trace:configure.ac:159: -1- m4_pattern_allow([^OS_BSD_TRUE$])
|
|
2691
|
-
m4trace:configure.ac:159: -1- m4_pattern_allow([^OS_BSD_FALSE$])
|
|
2692
|
-
m4trace:configure.ac:159: -1- _AM_SUBST_NOTMAKE([OS_BSD_TRUE])
|
|
2693
|
-
m4trace:configure.ac:159: -1- _AM_SUBST_NOTMAKE([OS_BSD_FALSE])
|
|
2694
|
-
m4trace:configure.ac:160: -1- AM_CONDITIONAL([OS_SOLARIS], [test "x$ac_cv_evports_works" = "xyes"])
|
|
2695
|
-
m4trace:configure.ac:160: -1- m4_pattern_allow([^OS_SOLARIS_TRUE$])
|
|
2696
|
-
m4trace:configure.ac:160: -1- m4_pattern_allow([^OS_SOLARIS_FALSE$])
|
|
2697
|
-
m4trace:configure.ac:160: -1- _AM_SUBST_NOTMAKE([OS_SOLARIS_TRUE])
|
|
2698
|
-
m4trace:configure.ac:160: -1- _AM_SUBST_NOTMAKE([OS_SOLARIS_FALSE])
|
|
2699
|
-
m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_ASSERT_PANIC$])
|
|
2700
|
-
m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
|
|
2701
|
-
m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_ASSERT_LOG$])
|
|
2702
|
-
m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
|
|
2703
|
-
m4trace:configure.ac:182: -1- m4_pattern_allow([^HAVE_DEBUG_LOG$])
|
|
2704
|
-
m4trace:configure.ac:195: -1- m4_pattern_allow([^HAVE_STATS$])
|
|
2705
|
-
m4trace:configure.ac:202: -1- m4_pattern_allow([^subdirs$])
|
|
2706
|
-
m4trace:configure.ac:213: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
|
2707
|
-
m4trace:configure.ac:213: -1- m4_pattern_allow([^LTLIBOBJS$])
|
|
2708
|
-
m4trace:configure.ac:213: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
|
2709
|
-
m4trace:configure.ac:213: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
|
2710
|
-
m4trace:configure.ac:213: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
|
2711
|
-
m4trace:configure.ac:213: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
|
2712
|
-
m4trace:configure.ac:213: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
|
2713
|
-
m4trace:configure.ac:213: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
|
|
2714
|
-
m4trace:configure.ac:213: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
|
|
2715
|
-
m4trace:configure.ac:213: -1- _LT_PROG_LTMAIN
|
|
2621
|
+
m4trace:configure.ac:58: -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, )=])
|
|
2622
|
+
m4trace:configure.ac:58: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:197: AC_LANG_CONFTEST is expanded from...
|
|
2623
|
+
../../lib/autoconf/general.m4:2670: _AC_LINK_IFELSE is expanded from...
|
|
2624
|
+
../../lib/autoconf/general.m4:2680: AC_LINK_IFELSE is expanded from...
|
|
2625
|
+
m4/libtool.m4:1038: _LT_SYS_MODULE_PATH_AIX is expanded from...
|
|
2626
|
+
m4/libtool.m4:5225: _LT_LINKER_SHLIBS is expanded from...
|
|
2627
|
+
m4/libtool.m4:5310: _LT_LANG_C_CONFIG is expanded from...
|
|
2628
|
+
m4/libtool.m4:250: _LT_SETUP is expanded from...
|
|
2629
|
+
m4/libtool.m4:99: LT_INIT is expanded from...
|
|
2630
|
+
m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
|
|
2631
|
+
configure.ac:58: the top level])
|
|
2632
|
+
m4trace:configure.ac:58: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:197: AC_LANG_CONFTEST is expanded from...
|
|
2633
|
+
../../lib/autoconf/general.m4:2670: _AC_LINK_IFELSE is expanded from...
|
|
2634
|
+
../../lib/autoconf/general.m4:2680: AC_LINK_IFELSE is expanded from...
|
|
2635
|
+
m4/libtool.m4:1038: _LT_SYS_MODULE_PATH_AIX is expanded from...
|
|
2636
|
+
m4/libtool.m4:5225: _LT_LINKER_SHLIBS is expanded from...
|
|
2637
|
+
m4/libtool.m4:5310: _LT_LANG_C_CONFIG is expanded from...
|
|
2638
|
+
m4/libtool.m4:250: _LT_SETUP is expanded from...
|
|
2639
|
+
m4/libtool.m4:99: LT_INIT is expanded from...
|
|
2640
|
+
m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
|
|
2641
|
+
configure.ac:58: the top level])
|
|
2642
|
+
m4trace:configure.ac:58: -1- _LT_REQUIRED_DARWIN_CHECKS
|
|
2643
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^DSYMUTIL$])
|
|
2644
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^NMEDIT$])
|
|
2645
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^LIPO$])
|
|
2646
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^OTOOL$])
|
|
2647
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^OTOOL64$])
|
|
2648
|
+
m4trace:configure.ac:58: -1- _m4_warn([syntax], [AC_LANG_CONFTEST: no AC_LANG_SOURCE call detected in body], [../../lib/autoconf/lang.m4:197: AC_LANG_CONFTEST is expanded from...
|
|
2649
|
+
../../lib/autoconf/general.m4:2670: _AC_LINK_IFELSE is expanded from...
|
|
2650
|
+
../../lib/autoconf/general.m4:2680: AC_LINK_IFELSE is expanded from...
|
|
2651
|
+
m4/libtool.m4:5225: _LT_LINKER_SHLIBS is expanded from...
|
|
2652
|
+
m4/libtool.m4:5310: _LT_LANG_C_CONFIG is expanded from...
|
|
2653
|
+
m4/libtool.m4:250: _LT_SETUP is expanded from...
|
|
2654
|
+
m4/libtool.m4:99: LT_INIT is expanded from...
|
|
2655
|
+
m4/libtool.m4:102: AC_PROG_LIBTOOL is expanded from...
|
|
2656
|
+
configure.ac:58: the top level])
|
|
2657
|
+
m4trace:configure.ac:58: -1- LT_SYS_DLOPEN_SELF
|
|
2658
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^STDC_HEADERS$])
|
|
2659
|
+
m4trace:configure.ac:58: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
|
|
2660
|
+
m4trace:configure.ac:60: -1- m4_pattern_allow([^DOXYGEN$])
|
|
2661
|
+
m4trace:configure.ac:61: -1- AM_CONDITIONAL([DOXYGEN], [test "$DOXYGEN" = true])
|
|
2662
|
+
m4trace:configure.ac:61: -1- m4_pattern_allow([^DOXYGEN_TRUE$])
|
|
2663
|
+
m4trace:configure.ac:61: -1- m4_pattern_allow([^DOXYGEN_FALSE$])
|
|
2664
|
+
m4trace:configure.ac:61: -1- _AM_SUBST_NOTMAKE([DOXYGEN_TRUE])
|
|
2665
|
+
m4trace:configure.ac:61: -1- _AM_SUBST_NOTMAKE([DOXYGEN_FALSE])
|
|
2666
|
+
m4trace:configure.ac:64: -1- m4_pattern_allow([^STDC_HEADERS$])
|
|
2667
|
+
m4trace:configure.ac:65: -1- m4_pattern_allow([^HAVE_STDLIB_H$])
|
|
2668
|
+
m4trace:configure.ac:68: -1- m4_pattern_allow([^const$])
|
|
2669
|
+
m4trace:configure.ac:69: -1- m4_pattern_allow([^size_t$])
|
|
2670
|
+
m4trace:configure.ac:75: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
|
2671
|
+
m4trace:configure.ac:75: -1- m4_pattern_allow([^LTLIBOBJS$])
|
|
2672
|
+
m4trace:configure.ac:75: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
|
2673
|
+
m4trace:configure.ac:75: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
|
2674
|
+
m4trace:configure.ac:75: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
|
2675
|
+
m4trace:configure.ac:75: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
|
2676
|
+
m4trace:configure.ac:75: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
|
2677
|
+
m4trace:configure.ac:75: -1- _AC_AM_CONFIG_HEADER_HOOK(["$ac_file"])
|
|
2678
|
+
m4trace:configure.ac:75: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
|
|
2679
|
+
m4trace:configure.ac:75: -1- _LT_PROG_LTMAIN
|