rbnacl-libsodium 1.0.15.1 → 1.0.16
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.travis.yml +4 -6
- data/CHANGES.md +50 -42
- data/Gemfile +1 -1
- data/README.md +3 -1
- data/Rakefile +46 -0
- data/ext/rbnacl/extconf.rb +16 -1
- data/lib/rbnacl/libsodium.rb +16 -8
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/rbnacl-libsodium.gemspec +3 -0
- data/vendor/libsodium/AUTHORS +20 -5
- data/vendor/libsodium/ChangeLog +25 -0
- data/vendor/libsodium/Makefile.in +3 -1
- data/vendor/libsodium/README.markdown +2 -1
- data/vendor/libsodium/aclocal.m4 +1 -0
- data/vendor/libsodium/autom4te.cache/output.1 +836 -123
- data/vendor/libsodium/autom4te.cache/output.4 +21342 -0
- data/vendor/libsodium/autom4te.cache/requests +801 -554
- data/vendor/libsodium/autom4te.cache/traces.1 +717 -596
- data/vendor/libsodium/autom4te.cache/traces.4 +4355 -0
- data/vendor/libsodium/builds/Makefile.in +3 -1
- data/vendor/libsodium/builds/msvc/resource.h +1 -1
- data/vendor/libsodium/builds/msvc/resource.rc +2 -2
- data/vendor/libsodium/builds/msvc/version.h +2 -2
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj +17 -8
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.vcxproj.filters +60 -24
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj +17 -8
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.vcxproj.filters +60 -24
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj +17 -8
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.vcxproj.filters +60 -24
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj +17 -8
- data/vendor/libsodium/builds/msvc/vs2015/libsodium/libsodium.vcxproj.filters +60 -24
- data/vendor/libsodium/builds/msvc/vs2017/libsodium/libsodium.vcxproj +17 -8
- data/vendor/libsodium/builds/msvc/vs2017/libsodium/libsodium.vcxproj.filters +60 -24
- data/vendor/libsodium/configure +834 -121
- data/vendor/libsodium/configure.ac +55 -13
- data/vendor/libsodium/contrib/Findsodium.cmake +22 -3
- data/vendor/libsodium/contrib/Makefile.in +3 -1
- data/vendor/libsodium/dist-build/Makefile.in +3 -1
- data/vendor/libsodium/dist-build/android-build.sh +2 -2
- data/vendor/libsodium/dist-build/emscripten-symbols.def +38 -26
- data/vendor/libsodium/dist-build/emscripten.sh +23 -8
- data/vendor/libsodium/dist-build/msys2-win32.sh +1 -1
- data/vendor/libsodium/dist-build/msys2-win64.sh +1 -1
- data/vendor/libsodium/libsodium.vcxproj +17 -8
- data/vendor/libsodium/libsodium.vcxproj.filters +41 -14
- data/vendor/libsodium/m4/ax_tls.m4 +74 -0
- data/vendor/libsodium/msvc-scripts/Makefile.in +3 -1
- data/vendor/libsodium/msvc-scripts/process.bat +2 -2
- data/vendor/libsodium/packaging/dotnet-core/README.md +5 -5
- data/vendor/libsodium/packaging/dotnet-core/prepare.py +7 -7
- data/vendor/libsodium/packaging/nuget/package.config +1 -1
- data/vendor/libsodium/regen-msvc/libsodium.vcxproj +326 -0
- data/vendor/libsodium/regen-msvc/libsodium.vcxproj.filters +23 -0
- data/vendor/libsodium/regen-msvc/libsodium.vcxproj.filters.tpl +35 -0
- data/vendor/libsodium/regen-msvc/libsodium.vcxproj.tpl +93 -0
- data/vendor/libsodium/regen-msvc/regen-msvc.py +136 -0
- data/vendor/libsodium/regen-msvc/tl_libsodium.vcxproj.filters.tpl +23 -0
- data/vendor/libsodium/regen-msvc/tl_libsodium.vcxproj.tpl +331 -0
- data/vendor/libsodium/src/Makefile.in +3 -1
- data/vendor/libsodium/src/libsodium/Makefile.am +40 -24
- data/vendor/libsodium/src/libsodium/Makefile.in +238 -180
- data/vendor/libsodium/src/libsodium/crypto_aead/aes256gcm/aesni/aead_aes256gcm_aesni.c +10 -2
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/core_ed25519.c +79 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/ed25519_ref10.c +2031 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/base.h +1344 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/base2.h +40 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/constants.h +20 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_25_5/fe.h +220 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/base.h +1344 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/base2.h +40 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/constants.h +21 -0
- data/vendor/libsodium/src/libsodium/crypto_core/ed25519/ref10/fe_51/fe.h +116 -0
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-compress-ref.c +2 -1
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/blake2b-ref.c +14 -82
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2b/ref/generichash_blake2b.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256_cp.c +3 -3
- data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512_cp.c +3 -3
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna64.h +1 -7
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/sse2/poly1305_sse2.c +0 -6
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.c +19 -92
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2-core.h +72 -4
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.c +5 -1
- data/vendor/libsodium/src/libsodium/crypto_pwhash/argon2/argon2.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +10 -7
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.c +108 -231
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/ref10/x25519_ref10.h +1 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/curve25519_sandy2x.c +27 -27
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe51_invert.c +2 -1
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/sandy2x/fe_frombytes_sandy2x.c +6 -3
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/scalarmult_curve25519.c +3 -11
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/ed25519/ref10/scalarmult_ed25519_ref10.c +86 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +28 -26
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/obsolete.c +32 -30
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/open.c +14 -115
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +56 -13
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/{ed25519_ref10.h → sign_ed25519_ref10.h} +2 -5
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/sign_ed25519.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/stream_chacha20.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/stream_salsa20.c +1 -0
- data/vendor/libsodium/src/libsodium/crypto_stream/salsa20/xmm6int/u8.h +1 -1
- data/vendor/libsodium/src/libsodium/include/Makefile.am +2 -0
- data/vendor/libsodium/src/libsodium/include/Makefile.in +13 -9
- data/vendor/libsodium/src/libsodium/include/sodium.h +2 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_core_ed25519.h +37 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_curve25519.h +8 -0
- data/vendor/libsodium/src/libsodium/include/sodium/crypto_scalarmult_ed25519.h +41 -0
- data/vendor/libsodium/src/libsodium/include/sodium/private/common.h +18 -0
- data/vendor/libsodium/src/libsodium/include/sodium/private/ed25519_ref10.h +125 -0
- data/vendor/libsodium/src/libsodium/include/sodium/private/ed25519_ref10_fe_25_5.h +1050 -0
- data/vendor/libsodium/src/libsodium/include/sodium/private/ed25519_ref10_fe_51.h +518 -0
- data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +3 -0
- data/vendor/libsodium/src/libsodium/include/sodium/utils.h +3 -0
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +182 -102
- data/vendor/libsodium/src/libsodium/sodium/core.c +30 -2
- data/vendor/libsodium/src/libsodium/sodium/runtime.c +14 -0
- data/vendor/libsodium/src/libsodium/sodium/utils.c +46 -0
- data/vendor/libsodium/test/Makefile.in +3 -1
- data/vendor/libsodium/test/default/Makefile.am +16 -0
- data/vendor/libsodium/test/default/Makefile.in +71 -23
- data/vendor/libsodium/test/default/aead_aes256gcm.c +1 -1
- data/vendor/libsodium/test/default/cmptest.h +4 -0
- data/vendor/libsodium/test/default/core3.c +44 -4
- data/vendor/libsodium/test/default/core3.exp +2 -0
- data/vendor/libsodium/test/default/core4.c +1 -1
- data/vendor/libsodium/test/default/core_ed25519.c +151 -0
- data/vendor/libsodium/test/default/core_ed25519.exp +1 -0
- data/vendor/libsodium/test/default/ed25519_convert.c +9 -1
- data/vendor/libsodium/test/default/index.html.tpl +17 -3
- data/vendor/libsodium/test/default/kdf.c +4 -2
- data/vendor/libsodium/test/default/metamorphic.c +8 -8
- data/vendor/libsodium/test/default/misuse.c +29 -1
- data/vendor/libsodium/test/default/pwhash_argon2i.c +9 -3
- data/vendor/libsodium/test/default/pwhash_argon2i.exp +2 -2
- data/vendor/libsodium/test/default/pwhash_argon2id.c +7 -2
- data/vendor/libsodium/test/default/pwhash_argon2id.exp +2 -2
- data/vendor/libsodium/test/default/scalarmult.c +0 -2
- data/vendor/libsodium/test/default/scalarmult.exp +0 -1
- data/vendor/libsodium/test/default/scalarmult_ed25519.c +90 -0
- data/vendor/libsodium/test/default/scalarmult_ed25519.exp +1 -0
- data/vendor/libsodium/test/default/secretbox_easy2.c +1 -1
- data/vendor/libsodium/test/default/secretstream.c +52 -3
- data/vendor/libsodium/test/default/sign.c +16 -0
- data/vendor/libsodium/test/default/sodium_core.c +1 -0
- data/vendor/libsodium/test/default/sodium_utils.c +2 -1
- data/vendor/libsodium/test/default/xchacha20.c +2 -1
- metadata +63 -12
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/base.h +0 -1344
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/base2.h +0 -40
- data/vendor/libsodium/src/libsodium/crypto_core/curve25519/ref10/curve25519_ref10.c +0 -2797
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.c +0 -545
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/curve25519_donna_c64.h +0 -10
- data/vendor/libsodium/src/libsodium/include/sodium/private/curve25519_ref10.h +0 -132
- data/vendor/libsodium/test/default/index-wasm.html.tpl +0 -118
@@ -0,0 +1,4355 @@
|
|
1
|
+
m4trace:/usr/local/share/aclocal/ltargz.m4:74: -1- AC_DEFUN([LT_FUNC_ARGZ], [
|
2
|
+
AC_CHECK_HEADERS([argz.h], [], [], [AC_INCLUDES_DEFAULT])
|
3
|
+
|
4
|
+
AC_CHECK_TYPES([error_t],
|
5
|
+
[],
|
6
|
+
[AC_DEFINE([error_t], [int],
|
7
|
+
[Define to a type to use for 'error_t' if it is not otherwise available.])
|
8
|
+
AC_DEFINE([__error_t_defined], [1], [Define so that glibc/gnulib argp.h
|
9
|
+
does not typedef error_t.])],
|
10
|
+
[#if defined(HAVE_ARGZ_H)
|
11
|
+
# include <argz.h>
|
12
|
+
#endif])
|
13
|
+
|
14
|
+
LT_ARGZ_H=
|
15
|
+
AC_CHECK_FUNCS([argz_add argz_append argz_count argz_create_sep argz_insert \
|
16
|
+
argz_next argz_stringify], [], [LT_ARGZ_H=lt__argz.h; AC_LIBOBJ([lt__argz])])
|
17
|
+
|
18
|
+
dnl if have system argz functions, allow forced use of
|
19
|
+
dnl libltdl-supplied implementation (and default to do so
|
20
|
+
dnl on "known bad" systems). Could use a runtime check, but
|
21
|
+
dnl (a) detecting malloc issues is notoriously unreliable
|
22
|
+
dnl (b) only known system that declares argz functions,
|
23
|
+
dnl provides them, yet they are broken, is cygwin
|
24
|
+
dnl releases prior to 16-Mar-2007 (1.5.24 and earlier)
|
25
|
+
dnl So, it's more straightforward simply to special case
|
26
|
+
dnl this for known bad systems.
|
27
|
+
AS_IF([test -z "$LT_ARGZ_H"],
|
28
|
+
[AC_CACHE_CHECK(
|
29
|
+
[if argz actually works],
|
30
|
+
[lt_cv_sys_argz_works],
|
31
|
+
[[case $host_os in #(
|
32
|
+
*cygwin*)
|
33
|
+
lt_cv_sys_argz_works=no
|
34
|
+
if test no != "$cross_compiling"; then
|
35
|
+
lt_cv_sys_argz_works="guessing no"
|
36
|
+
else
|
37
|
+
lt_sed_extract_leading_digits='s/^\([0-9\.]*\).*/\1/'
|
38
|
+
save_IFS=$IFS
|
39
|
+
IFS=-.
|
40
|
+
set x `uname -r | sed -e "$lt_sed_extract_leading_digits"`
|
41
|
+
IFS=$save_IFS
|
42
|
+
lt_os_major=${2-0}
|
43
|
+
lt_os_minor=${3-0}
|
44
|
+
lt_os_micro=${4-0}
|
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
|
50
|
+
lt_cv_sys_argz_works=yes
|
51
|
+
fi
|
52
|
+
fi
|
53
|
+
;; #(
|
54
|
+
*) lt_cv_sys_argz_works=yes ;;
|
55
|
+
esac]])
|
56
|
+
AS_IF([test yes = "$lt_cv_sys_argz_works"],
|
57
|
+
[AC_DEFINE([HAVE_WORKING_ARGZ], 1,
|
58
|
+
[This value is set to 1 to indicate that the system argz facility works])],
|
59
|
+
[LT_ARGZ_H=lt__argz.h
|
60
|
+
AC_LIBOBJ([lt__argz])])])
|
61
|
+
|
62
|
+
AC_SUBST([LT_ARGZ_H])
|
63
|
+
])
|
64
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:19: -1- AC_DEFUN([LT_CONFIG_LTDL_DIR], [AC_BEFORE([$0], [LTDL_INIT])
|
65
|
+
_$0($*)
|
66
|
+
])
|
67
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:77: -1- AC_DEFUN([LTDL_CONVENIENCE], [AC_BEFORE([$0], [LTDL_INIT])dnl
|
68
|
+
dnl Although the argument is deprecated and no longer documented,
|
69
|
+
dnl LTDL_CONVENIENCE used to take a DIRECTORY orgument, if we have one
|
70
|
+
dnl here make sure it is the same as any other declaration of libltdl's
|
71
|
+
dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
|
72
|
+
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
|
73
|
+
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
|
74
|
+
_$0()
|
75
|
+
])
|
76
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AU_DEFUN([AC_LIBLTDL_CONVENIENCE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
77
|
+
_LTDL_CONVENIENCE])
|
78
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:83: -1- AC_DEFUN([AC_LIBLTDL_CONVENIENCE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_CONVENIENCE' is obsolete.
|
79
|
+
You should run autoupdate.])dnl
|
80
|
+
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
81
|
+
_LTDL_CONVENIENCE])
|
82
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:133: -1- AC_DEFUN([LTDL_INSTALLABLE], [AC_BEFORE([$0], [LTDL_INIT])dnl
|
83
|
+
dnl Although the argument is deprecated and no longer documented,
|
84
|
+
dnl LTDL_INSTALLABLE used to take a DIRECTORY orgument, if we have one
|
85
|
+
dnl here make sure it is the same as any other declaration of libltdl's
|
86
|
+
dnl location! This also ensures lt_ltdl_dir is set when configure.ac is
|
87
|
+
dnl not yet using an explicit LT_CONFIG_LTDL_DIR.
|
88
|
+
m4_ifval([$1], [_LT_CONFIG_LTDL_DIR([$1])])dnl
|
89
|
+
_$0()
|
90
|
+
])
|
91
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AU_DEFUN([AC_LIBLTDL_INSTALLABLE], [_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
92
|
+
_LTDL_INSTALLABLE])
|
93
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:139: -1- AC_DEFUN([AC_LIBLTDL_INSTALLABLE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBLTDL_INSTALLABLE' is obsolete.
|
94
|
+
You should run autoupdate.])dnl
|
95
|
+
_LT_CONFIG_LTDL_DIR([m4_default([$1], [libltdl])])
|
96
|
+
_LTDL_INSTALLABLE])
|
97
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:216: -1- AC_DEFUN([_LT_LIBOBJ], [
|
98
|
+
m4_pattern_allow([^_LT_LIBOBJS$])
|
99
|
+
_LT_LIBOBJS="$_LT_LIBOBJS $1.$ac_objext"
|
100
|
+
])
|
101
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:349: -1- AC_DEFUN([LTDL_INIT], [dnl Parse OPTIONS
|
102
|
+
_LT_SET_OPTIONS([$0], [$1])
|
103
|
+
|
104
|
+
dnl We need to keep our own list of libobjs separate from our parent project,
|
105
|
+
dnl and the easiest way to do that is redefine the AC_LIBOBJs macro while
|
106
|
+
dnl we look for our own LIBOBJs.
|
107
|
+
m4_pushdef([AC_LIBOBJ], m4_defn([_LT_LIBOBJ]))
|
108
|
+
m4_pushdef([AC_LIBSOURCES])
|
109
|
+
|
110
|
+
dnl If not otherwise defined, default to the 1.5.x compatible subproject mode:
|
111
|
+
m4_if(_LTDL_MODE, [],
|
112
|
+
[m4_define([_LTDL_MODE], m4_default([$2], [subproject]))
|
113
|
+
m4_if([-1], [m4_bregexp(_LTDL_MODE, [\(subproject\|\(non\)?recursive\)])],
|
114
|
+
[m4_fatal([unknown libltdl mode: ]_LTDL_MODE)])])
|
115
|
+
|
116
|
+
AC_ARG_WITH([included_ltdl],
|
117
|
+
[AS_HELP_STRING([--with-included-ltdl],
|
118
|
+
[use the GNU ltdl sources included here])])
|
119
|
+
|
120
|
+
if test yes != "$with_included_ltdl"; then
|
121
|
+
# We are not being forced to use the included libltdl sources, so
|
122
|
+
# decide whether there is a useful installed version we can use.
|
123
|
+
AC_CHECK_HEADER([ltdl.h],
|
124
|
+
[AC_CHECK_DECL([lt_dlinterface_register],
|
125
|
+
[AC_CHECK_LIB([ltdl], [lt_dladvise_preload],
|
126
|
+
[with_included_ltdl=no],
|
127
|
+
[with_included_ltdl=yes])],
|
128
|
+
[with_included_ltdl=yes],
|
129
|
+
[AC_INCLUDES_DEFAULT
|
130
|
+
#include <ltdl.h>])],
|
131
|
+
[with_included_ltdl=yes],
|
132
|
+
[AC_INCLUDES_DEFAULT]
|
133
|
+
)
|
134
|
+
fi
|
135
|
+
|
136
|
+
dnl If neither LT_CONFIG_LTDL_DIR, LTDL_CONVENIENCE nor LTDL_INSTALLABLE
|
137
|
+
dnl was called yet, then for old times' sake, we assume libltdl is in an
|
138
|
+
dnl eponymous directory:
|
139
|
+
AC_PROVIDE_IFELSE([LT_CONFIG_LTDL_DIR], [], [_LT_CONFIG_LTDL_DIR([libltdl])])
|
140
|
+
|
141
|
+
AC_ARG_WITH([ltdl_include],
|
142
|
+
[AS_HELP_STRING([--with-ltdl-include=DIR],
|
143
|
+
[use the ltdl headers installed in DIR])])
|
144
|
+
|
145
|
+
if test -n "$with_ltdl_include"; then
|
146
|
+
if test -f "$with_ltdl_include/ltdl.h"; then :
|
147
|
+
else
|
148
|
+
AC_MSG_ERROR([invalid ltdl include directory: '$with_ltdl_include'])
|
149
|
+
fi
|
150
|
+
else
|
151
|
+
with_ltdl_include=no
|
152
|
+
fi
|
153
|
+
|
154
|
+
AC_ARG_WITH([ltdl_lib],
|
155
|
+
[AS_HELP_STRING([--with-ltdl-lib=DIR],
|
156
|
+
[use the libltdl.la installed in DIR])])
|
157
|
+
|
158
|
+
if test -n "$with_ltdl_lib"; then
|
159
|
+
if test -f "$with_ltdl_lib/libltdl.la"; then :
|
160
|
+
else
|
161
|
+
AC_MSG_ERROR([invalid ltdl library directory: '$with_ltdl_lib'])
|
162
|
+
fi
|
163
|
+
else
|
164
|
+
with_ltdl_lib=no
|
165
|
+
fi
|
166
|
+
|
167
|
+
case ,$with_included_ltdl,$with_ltdl_include,$with_ltdl_lib, in
|
168
|
+
,yes,no,no,)
|
169
|
+
m4_case(m4_default(_LTDL_TYPE, [convenience]),
|
170
|
+
[convenience], [_LTDL_CONVENIENCE],
|
171
|
+
[installable], [_LTDL_INSTALLABLE],
|
172
|
+
[m4_fatal([unknown libltdl build type: ]_LTDL_TYPE)])
|
173
|
+
;;
|
174
|
+
,no,no,no,)
|
175
|
+
# If the included ltdl is not to be used, then use the
|
176
|
+
# preinstalled libltdl we found.
|
177
|
+
AC_DEFINE([HAVE_LTDL], [1],
|
178
|
+
[Define this if a modern libltdl is already installed])
|
179
|
+
LIBLTDL=-lltdl
|
180
|
+
LTDLDEPS=
|
181
|
+
LTDLINCL=
|
182
|
+
;;
|
183
|
+
,no*,no,*)
|
184
|
+
AC_MSG_ERROR(['--with-ltdl-include' and '--with-ltdl-lib' options must be used together])
|
185
|
+
;;
|
186
|
+
*) with_included_ltdl=no
|
187
|
+
LIBLTDL="-L$with_ltdl_lib -lltdl"
|
188
|
+
LTDLDEPS=
|
189
|
+
LTDLINCL=-I$with_ltdl_include
|
190
|
+
;;
|
191
|
+
esac
|
192
|
+
INCLTDL=$LTDLINCL
|
193
|
+
|
194
|
+
# Report our decision...
|
195
|
+
AC_MSG_CHECKING([where to find libltdl headers])
|
196
|
+
AC_MSG_RESULT([$LTDLINCL])
|
197
|
+
AC_MSG_CHECKING([where to find libltdl library])
|
198
|
+
AC_MSG_RESULT([$LIBLTDL])
|
199
|
+
|
200
|
+
_LTDL_SETUP
|
201
|
+
|
202
|
+
dnl restore autoconf definition.
|
203
|
+
m4_popdef([AC_LIBOBJ])
|
204
|
+
m4_popdef([AC_LIBSOURCES])
|
205
|
+
|
206
|
+
AC_CONFIG_COMMANDS_PRE([
|
207
|
+
_ltdl_libobjs=
|
208
|
+
_ltdl_ltlibobjs=
|
209
|
+
if test -n "$_LT_LIBOBJS"; then
|
210
|
+
# Remove the extension.
|
211
|
+
_lt_sed_drop_objext='s/\.o$//;s/\.obj$//'
|
212
|
+
for i in `for i in $_LT_LIBOBJS; do echo "$i"; done | sed "$_lt_sed_drop_objext" | sort -u`; do
|
213
|
+
_ltdl_libobjs="$_ltdl_libobjs $lt_libobj_prefix$i.$ac_objext"
|
214
|
+
_ltdl_ltlibobjs="$_ltdl_ltlibobjs $lt_libobj_prefix$i.lo"
|
215
|
+
done
|
216
|
+
fi
|
217
|
+
AC_SUBST([ltdl_LIBOBJS], [$_ltdl_libobjs])
|
218
|
+
AC_SUBST([ltdl_LTLIBOBJS], [$_ltdl_ltlibobjs])
|
219
|
+
])
|
220
|
+
|
221
|
+
# Only expand once:
|
222
|
+
m4_define([LTDL_INIT])
|
223
|
+
])
|
224
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AU_DEFUN([AC_LIB_LTDL], [LTDL_INIT($@)])
|
225
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:352: -1- AC_DEFUN([AC_LIB_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIB_LTDL' is obsolete.
|
226
|
+
You should run autoupdate.])dnl
|
227
|
+
LTDL_INIT($@)])
|
228
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AU_DEFUN([AC_WITH_LTDL], [LTDL_INIT($@)])
|
229
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:353: -1- AC_DEFUN([AC_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `AC_WITH_LTDL' is obsolete.
|
230
|
+
You should run autoupdate.])dnl
|
231
|
+
LTDL_INIT($@)])
|
232
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AU_DEFUN([LT_WITH_LTDL], [LTDL_INIT($@)])
|
233
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:354: -1- AC_DEFUN([LT_WITH_LTDL], [AC_DIAGNOSE([obsolete], [The macro `LT_WITH_LTDL' is obsolete.
|
234
|
+
You should run autoupdate.])dnl
|
235
|
+
LTDL_INIT($@)])
|
236
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:421: -1- AC_DEFUN([_LTDL_SETUP], [AC_REQUIRE([AC_PROG_CC])dnl
|
237
|
+
AC_REQUIRE([LT_SYS_MODULE_EXT])dnl
|
238
|
+
AC_REQUIRE([LT_SYS_MODULE_PATH])dnl
|
239
|
+
AC_REQUIRE([LT_SYS_DLSEARCH_PATH])dnl
|
240
|
+
AC_REQUIRE([LT_LIB_DLLOAD])dnl
|
241
|
+
AC_REQUIRE([LT_SYS_SYMBOL_USCORE])dnl
|
242
|
+
AC_REQUIRE([LT_FUNC_DLSYM_USCORE])dnl
|
243
|
+
AC_REQUIRE([LT_SYS_DLOPEN_DEPLIBS])dnl
|
244
|
+
AC_REQUIRE([LT_FUNC_ARGZ])dnl
|
245
|
+
|
246
|
+
m4_require([_LT_CHECK_OBJDIR])dnl
|
247
|
+
m4_require([_LT_HEADER_DLFCN])dnl
|
248
|
+
m4_require([_LT_CHECK_DLPREOPEN])dnl
|
249
|
+
m4_require([_LT_DECL_SED])dnl
|
250
|
+
|
251
|
+
dnl Don't require this, or it will be expanded earlier than the code
|
252
|
+
dnl that sets the variables it relies on:
|
253
|
+
_LT_ENABLE_INSTALL
|
254
|
+
|
255
|
+
dnl _LTDL_MODE specific code must be called at least once:
|
256
|
+
_LTDL_MODE_DISPATCH
|
257
|
+
|
258
|
+
# In order that ltdl.c can compile, find out the first AC_CONFIG_HEADERS
|
259
|
+
# the user used. This is so that ltdl.h can pick up the parent projects
|
260
|
+
# config.h file, The first file in AC_CONFIG_HEADERS must contain the
|
261
|
+
# definitions required by ltdl.c.
|
262
|
+
# FIXME: Remove use of undocumented AC_LIST_HEADERS (2.59 compatibility).
|
263
|
+
AC_CONFIG_COMMANDS_PRE([dnl
|
264
|
+
m4_pattern_allow([^LT_CONFIG_H$])dnl
|
265
|
+
m4_ifset([AH_HEADER],
|
266
|
+
[LT_CONFIG_H=AH_HEADER],
|
267
|
+
[m4_ifset([AC_LIST_HEADERS],
|
268
|
+
[LT_CONFIG_H=`echo "AC_LIST_HEADERS" | $SED 's|^[[ ]]*||;s|[[ :]].*$||'`],
|
269
|
+
[])])])
|
270
|
+
AC_SUBST([LT_CONFIG_H])
|
271
|
+
|
272
|
+
AC_CHECK_HEADERS([unistd.h dl.h sys/dl.h dld.h mach-o/dyld.h dirent.h],
|
273
|
+
[], [], [AC_INCLUDES_DEFAULT])
|
274
|
+
|
275
|
+
AC_CHECK_FUNCS([closedir opendir readdir], [], [AC_LIBOBJ([lt__dirent])])
|
276
|
+
AC_CHECK_FUNCS([strlcat strlcpy], [], [AC_LIBOBJ([lt__strl])])
|
277
|
+
|
278
|
+
m4_pattern_allow([LT_LIBEXT])dnl
|
279
|
+
AC_DEFINE_UNQUOTED([LT_LIBEXT],["$libext"],[The archive extension])
|
280
|
+
|
281
|
+
name=
|
282
|
+
eval "lt_libprefix=\"$libname_spec\""
|
283
|
+
m4_pattern_allow([LT_LIBPREFIX])dnl
|
284
|
+
AC_DEFINE_UNQUOTED([LT_LIBPREFIX],["$lt_libprefix"],[The archive prefix])
|
285
|
+
|
286
|
+
name=ltdl
|
287
|
+
eval "LTDLOPEN=\"$libname_spec\""
|
288
|
+
AC_SUBST([LTDLOPEN])
|
289
|
+
])
|
290
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:542: -1- AC_DEFUN([LT_SYS_DLOPEN_DEPLIBS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
291
|
+
AC_CACHE_CHECK([whether deplibs are loaded by dlopen],
|
292
|
+
[lt_cv_sys_dlopen_deplibs],
|
293
|
+
[# PORTME does your system automatically load deplibs for dlopen?
|
294
|
+
# or its logical equivalent (e.g. shl_load for HP-UX < 11)
|
295
|
+
# For now, we just catch OSes we know something about -- in the
|
296
|
+
# future, we'll try test this programmatically.
|
297
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
298
|
+
case $host_os in
|
299
|
+
aix3*|aix4.1.*|aix4.2.*)
|
300
|
+
# Unknown whether this is true for these versions of AIX, but
|
301
|
+
# we want this 'case' here to explicitly catch those versions.
|
302
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
303
|
+
;;
|
304
|
+
aix[[4-9]]*)
|
305
|
+
lt_cv_sys_dlopen_deplibs=yes
|
306
|
+
;;
|
307
|
+
amigaos*)
|
308
|
+
case $host_cpu in
|
309
|
+
powerpc)
|
310
|
+
lt_cv_sys_dlopen_deplibs=no
|
311
|
+
;;
|
312
|
+
esac
|
313
|
+
;;
|
314
|
+
bitrig*)
|
315
|
+
lt_cv_sys_dlopen_deplibs=yes
|
316
|
+
;;
|
317
|
+
darwin*)
|
318
|
+
# Assuming the user has installed a libdl from somewhere, this is true
|
319
|
+
# If you are looking for one http://www.opendarwin.org/projects/dlcompat
|
320
|
+
lt_cv_sys_dlopen_deplibs=yes
|
321
|
+
;;
|
322
|
+
freebsd* | dragonfly*)
|
323
|
+
lt_cv_sys_dlopen_deplibs=yes
|
324
|
+
;;
|
325
|
+
gnu* | linux* | k*bsd*-gnu | kopensolaris*-gnu)
|
326
|
+
# GNU and its variants, using gnu ld.so (Glibc)
|
327
|
+
lt_cv_sys_dlopen_deplibs=yes
|
328
|
+
;;
|
329
|
+
hpux10*|hpux11*)
|
330
|
+
lt_cv_sys_dlopen_deplibs=yes
|
331
|
+
;;
|
332
|
+
interix*)
|
333
|
+
lt_cv_sys_dlopen_deplibs=yes
|
334
|
+
;;
|
335
|
+
irix[[12345]]*|irix6.[[01]]*)
|
336
|
+
# Catch all versions of IRIX before 6.2, and indicate that we don't
|
337
|
+
# know how it worked for any of those versions.
|
338
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
339
|
+
;;
|
340
|
+
irix*)
|
341
|
+
# The case above catches anything before 6.2, and it's known that
|
342
|
+
# at 6.2 and later dlopen does load deplibs.
|
343
|
+
lt_cv_sys_dlopen_deplibs=yes
|
344
|
+
;;
|
345
|
+
netbsd*)
|
346
|
+
lt_cv_sys_dlopen_deplibs=yes
|
347
|
+
;;
|
348
|
+
openbsd*)
|
349
|
+
lt_cv_sys_dlopen_deplibs=yes
|
350
|
+
;;
|
351
|
+
osf[[1234]]*)
|
352
|
+
# dlopen did load deplibs (at least at 4.x), but until the 5.x series,
|
353
|
+
# it did *not* use an RPATH in a shared library to find objects the
|
354
|
+
# library depends on, so we explicitly say 'no'.
|
355
|
+
lt_cv_sys_dlopen_deplibs=no
|
356
|
+
;;
|
357
|
+
osf5.0|osf5.0a|osf5.1)
|
358
|
+
# dlopen *does* load deplibs and with the right loader patch applied
|
359
|
+
# it even uses RPATH in a shared library to search for shared objects
|
360
|
+
# that the library depends on, but there's no easy way to know if that
|
361
|
+
# patch is installed. Since this is the case, all we can really
|
362
|
+
# say is unknown -- it depends on the patch being installed. If
|
363
|
+
# it is, this changes to 'yes'. Without it, it would be 'no'.
|
364
|
+
lt_cv_sys_dlopen_deplibs=unknown
|
365
|
+
;;
|
366
|
+
osf*)
|
367
|
+
# the two cases above should catch all versions of osf <= 5.1. Read
|
368
|
+
# the comments above for what we know about them.
|
369
|
+
# At > 5.1, deplibs are loaded *and* any RPATH in a shared library
|
370
|
+
# is used to find them so we can finally say 'yes'.
|
371
|
+
lt_cv_sys_dlopen_deplibs=yes
|
372
|
+
;;
|
373
|
+
qnx*)
|
374
|
+
lt_cv_sys_dlopen_deplibs=yes
|
375
|
+
;;
|
376
|
+
solaris*)
|
377
|
+
lt_cv_sys_dlopen_deplibs=yes
|
378
|
+
;;
|
379
|
+
sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*)
|
380
|
+
libltdl_cv_sys_dlopen_deplibs=yes
|
381
|
+
;;
|
382
|
+
esac
|
383
|
+
])
|
384
|
+
if test yes != "$lt_cv_sys_dlopen_deplibs"; then
|
385
|
+
AC_DEFINE([LTDL_DLOPEN_DEPLIBS], [1],
|
386
|
+
[Define if the OS needs help to load dependent libraries for dlopen().])
|
387
|
+
fi
|
388
|
+
])
|
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.
|
391
|
+
You should run autoupdate.])dnl
|
392
|
+
m4_if($#, 0, [LT_SYS_DLOPEN_DEPLIBS], [LT_SYS_DLOPEN_DEPLIBS($@)])])
|
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],
|
395
|
+
[libltdl_cv_shlibext],
|
396
|
+
[
|
397
|
+
module=yes
|
398
|
+
eval libltdl_cv_shlibext=$shrext_cmds
|
399
|
+
module=no
|
400
|
+
eval libltdl_cv_shrext=$shrext_cmds
|
401
|
+
])
|
402
|
+
if test -n "$libltdl_cv_shlibext"; then
|
403
|
+
m4_pattern_allow([LT_MODULE_EXT])dnl
|
404
|
+
AC_DEFINE_UNQUOTED([LT_MODULE_EXT], ["$libltdl_cv_shlibext"],
|
405
|
+
[Define to the extension used for runtime loadable modules, say, ".so".])
|
406
|
+
fi
|
407
|
+
if test "$libltdl_cv_shrext" != "$libltdl_cv_shlibext"; then
|
408
|
+
m4_pattern_allow([LT_SHARED_EXT])dnl
|
409
|
+
AC_DEFINE_UNQUOTED([LT_SHARED_EXT], ["$libltdl_cv_shrext"],
|
410
|
+
[Define to the shared library suffix, say, ".dylib".])
|
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
|
417
|
+
])
|
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.
|
420
|
+
You should run autoupdate.])dnl
|
421
|
+
m4_if($#, 0, [LT_SYS_MODULE_EXT], [LT_SYS_MODULE_EXT($@)])])
|
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])
|
425
|
+
if test -n "$lt_cv_module_path_var"; then
|
426
|
+
m4_pattern_allow([LT_MODULE_PATH_VAR])dnl
|
427
|
+
AC_DEFINE_UNQUOTED([LT_MODULE_PATH_VAR], ["$lt_cv_module_path_var"],
|
428
|
+
[Define to the name of the environment variable that determines the run-time module search path.])
|
429
|
+
fi
|
430
|
+
])
|
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.
|
433
|
+
You should run autoupdate.])dnl
|
434
|
+
m4_if($#, 0, [LT_SYS_MODULE_PATH], [LT_SYS_MODULE_PATH($@)])])
|
435
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:624: -1- AC_DEFUN([LT_SYS_DLSEARCH_PATH], [m4_require([_LT_SYS_DYNAMIC_LINKER])dnl
|
436
|
+
AC_CACHE_CHECK([for the default library search path],
|
437
|
+
[lt_cv_sys_dlsearch_path],
|
438
|
+
[lt_cv_sys_dlsearch_path=$sys_lib_dlsearch_path_spec])
|
439
|
+
if test -n "$lt_cv_sys_dlsearch_path"; then
|
440
|
+
sys_dlsearch_path=
|
441
|
+
for dir in $lt_cv_sys_dlsearch_path; do
|
442
|
+
if test -z "$sys_dlsearch_path"; then
|
443
|
+
sys_dlsearch_path=$dir
|
444
|
+
else
|
445
|
+
sys_dlsearch_path=$sys_dlsearch_path$PATH_SEPARATOR$dir
|
446
|
+
fi
|
447
|
+
done
|
448
|
+
m4_pattern_allow([LT_DLSEARCH_PATH])dnl
|
449
|
+
AC_DEFINE_UNQUOTED([LT_DLSEARCH_PATH], ["$sys_dlsearch_path"],
|
450
|
+
[Define to the system default library search path.])
|
451
|
+
fi
|
452
|
+
])
|
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.
|
455
|
+
You should run autoupdate.])dnl
|
456
|
+
m4_if($#, 0, [LT_SYS_DLSEARCH_PATH], [LT_SYS_DLSEARCH_PATH($@)])])
|
457
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:745: -1- AC_DEFUN([LT_LIB_DLLOAD], [m4_pattern_allow([^LT_DLLOADERS$])
|
458
|
+
LT_DLLOADERS=
|
459
|
+
AC_SUBST([LT_DLLOADERS])
|
460
|
+
|
461
|
+
AC_LANG_PUSH([C])
|
462
|
+
lt_dlload_save_LIBS=$LIBS
|
463
|
+
|
464
|
+
LIBADD_DLOPEN=
|
465
|
+
AC_SEARCH_LIBS([dlopen], [dl],
|
466
|
+
[AC_DEFINE([HAVE_LIBDL], [1],
|
467
|
+
[Define if you have the libdl library or equivalent.])
|
468
|
+
if test "$ac_cv_search_dlopen" != "none required"; then
|
469
|
+
LIBADD_DLOPEN=-ldl
|
470
|
+
fi
|
471
|
+
libltdl_cv_lib_dl_dlopen=yes
|
472
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
473
|
+
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#if HAVE_DLFCN_H
|
474
|
+
# include <dlfcn.h>
|
475
|
+
#endif
|
476
|
+
]], [[dlopen(0, 0);]])],
|
477
|
+
[AC_DEFINE([HAVE_LIBDL], [1],
|
478
|
+
[Define if you have the libdl library or equivalent.])
|
479
|
+
libltdl_cv_func_dlopen=yes
|
480
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"],
|
481
|
+
[AC_CHECK_LIB([svld], [dlopen],
|
482
|
+
[AC_DEFINE([HAVE_LIBDL], [1],
|
483
|
+
[Define if you have the libdl library or equivalent.])
|
484
|
+
LIBADD_DLOPEN=-lsvld libltdl_cv_func_dlopen=yes
|
485
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dlopen.la"])])])
|
486
|
+
if test yes = "$libltdl_cv_func_dlopen" || test yes = "$libltdl_cv_lib_dl_dlopen"
|
487
|
+
then
|
488
|
+
lt_save_LIBS=$LIBS
|
489
|
+
LIBS="$LIBS $LIBADD_DLOPEN"
|
490
|
+
AC_CHECK_FUNCS([dlerror])
|
491
|
+
LIBS=$lt_save_LIBS
|
492
|
+
fi
|
493
|
+
AC_SUBST([LIBADD_DLOPEN])
|
494
|
+
|
495
|
+
LIBADD_SHL_LOAD=
|
496
|
+
AC_CHECK_FUNC([shl_load],
|
497
|
+
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
498
|
+
[Define if you have the shl_load function.])
|
499
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"],
|
500
|
+
[AC_CHECK_LIB([dld], [shl_load],
|
501
|
+
[AC_DEFINE([HAVE_SHL_LOAD], [1],
|
502
|
+
[Define if you have the shl_load function.])
|
503
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}shl_load.la"
|
504
|
+
LIBADD_SHL_LOAD=-ldld])])
|
505
|
+
AC_SUBST([LIBADD_SHL_LOAD])
|
506
|
+
|
507
|
+
case $host_os in
|
508
|
+
darwin[[1567]].*)
|
509
|
+
# We only want this for pre-Mac OS X 10.4.
|
510
|
+
AC_CHECK_FUNC([_dyld_func_lookup],
|
511
|
+
[AC_DEFINE([HAVE_DYLD], [1],
|
512
|
+
[Define if you have the _dyld_func_lookup function.])
|
513
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dyld.la"])
|
514
|
+
;;
|
515
|
+
beos*)
|
516
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}load_add_on.la"
|
517
|
+
;;
|
518
|
+
cygwin* | mingw* | pw32*)
|
519
|
+
AC_CHECK_DECLS([cygwin_conv_path], [], [], [[#include <sys/cygwin.h>]])
|
520
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}loadlibrary.la"
|
521
|
+
;;
|
522
|
+
esac
|
523
|
+
|
524
|
+
AC_CHECK_LIB([dld], [dld_link],
|
525
|
+
[AC_DEFINE([HAVE_DLD], [1],
|
526
|
+
[Define if you have the GNU dld library.])
|
527
|
+
LT_DLLOADERS="$LT_DLLOADERS ${lt_dlopen_dir+$lt_dlopen_dir/}dld_link.la"])
|
528
|
+
AC_SUBST([LIBADD_DLD_LINK])
|
529
|
+
|
530
|
+
m4_pattern_allow([^LT_DLPREOPEN$])
|
531
|
+
LT_DLPREOPEN=
|
532
|
+
if test -n "$LT_DLLOADERS"
|
533
|
+
then
|
534
|
+
for lt_loader in $LT_DLLOADERS; do
|
535
|
+
LT_DLPREOPEN="$LT_DLPREOPEN-dlpreopen $lt_loader "
|
536
|
+
done
|
537
|
+
AC_DEFINE([HAVE_LIBDLLOADER], [1],
|
538
|
+
[Define if libdlloader will be built on this platform])
|
539
|
+
fi
|
540
|
+
AC_SUBST([LT_DLPREOPEN])
|
541
|
+
|
542
|
+
dnl This isn't used anymore, but set it for backwards compatibility
|
543
|
+
LIBADD_DL="$LIBADD_DLOPEN $LIBADD_SHL_LOAD"
|
544
|
+
AC_SUBST([LIBADD_DL])
|
545
|
+
|
546
|
+
LIBS=$lt_dlload_save_LIBS
|
547
|
+
AC_LANG_POP
|
548
|
+
])
|
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.
|
551
|
+
You should run autoupdate.])dnl
|
552
|
+
m4_if($#, 0, [LT_LIB_DLLOAD], [LT_LIB_DLLOAD($@)])])
|
553
|
+
m4trace:/usr/local/share/aclocal/ltdl.m4:790: -1- AC_DEFUN([LT_SYS_SYMBOL_USCORE], [m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl
|
554
|
+
AC_CACHE_CHECK([for _ prefix in compiled symbols],
|
555
|
+
[lt_cv_sys_symbol_underscore],
|
556
|
+
[lt_cv_sys_symbol_underscore=no
|
557
|
+
cat > conftest.$ac_ext <<_LT_EOF
|
558
|
+
void nm_test_func(){}
|
559
|
+
int main(){nm_test_func;return 0;}
|
560
|
+
_LT_EOF
|
561
|
+
if AC_TRY_EVAL(ac_compile); then
|
562
|
+
# Now try to grab the symbols.
|
563
|
+
ac_nlist=conftest.nm
|
564
|
+
if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $ac_nlist) && test -s "$ac_nlist"; then
|
565
|
+
# See whether the symbols have a leading underscore.
|
566
|
+
if grep '^. _nm_test_func' "$ac_nlist" >/dev/null; then
|
567
|
+
lt_cv_sys_symbol_underscore=yes
|
568
|
+
else
|
569
|
+
if grep '^. nm_test_func ' "$ac_nlist" >/dev/null; then
|
570
|
+
:
|
571
|
+
else
|
572
|
+
echo "configure: cannot find nm_test_func in $ac_nlist" >&AS_MESSAGE_LOG_FD
|
573
|
+
fi
|
574
|
+
fi
|
575
|
+
else
|
576
|
+
echo "configure: cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD
|
577
|
+
fi
|
578
|
+
else
|
579
|
+
echo "configure: failed program was:" >&AS_MESSAGE_LOG_FD
|
580
|
+
cat conftest.c >&AS_MESSAGE_LOG_FD
|
581
|
+
fi
|
582
|
+
rm -rf conftest*
|
583
|
+
])
|
584
|
+
sys_symbol_underscore=$lt_cv_sys_symbol_underscore
|
585
|
+
AC_SUBST([sys_symbol_underscore])
|
586
|
+
])
|
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.
|
589
|
+
You should run autoupdate.])dnl
|
590
|
+
m4_if($#, 0, [LT_SYS_SYMBOL_USCORE], [LT_SYS_SYMBOL_USCORE($@)])])
|
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
|
+
])
|
687
|
+
fi
|
688
|
+
fi
|
689
|
+
|
690
|
+
if test yes = "$libltdl_cv_need_uscore"; then
|
691
|
+
AC_DEFINE([NEED_USCORE], [1],
|
692
|
+
[Define if dlsym() requires a leading underscore in symbol names.])
|
693
|
+
fi
|
694
|
+
])
|
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.
|
697
|
+
You should run autoupdate.])dnl
|
698
|
+
m4_if($#, 0, [LT_FUNC_DLSYM_USCORE], [LT_FUNC_DLSYM_USCORE($@)])])
|
699
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/amversion.m4:20: -1- AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.15'
|
700
|
+
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
701
|
+
dnl require some minimum version. Point them to the right macro.
|
702
|
+
m4_if([$1], [1.15.1], [],
|
703
|
+
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
704
|
+
])
|
705
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/amversion.m4:37: -1- AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.15.1])dnl
|
706
|
+
m4_ifndef([AC_AUTOCONF_VERSION],
|
707
|
+
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
708
|
+
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
709
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/as.m4:19: -1- AC_DEFUN([AM_PROG_AS], [# By default we simply use the C compiler to build assembly code.
|
710
|
+
AC_REQUIRE([AC_PROG_CC])
|
711
|
+
test "${CCAS+set}" = set || CCAS=$CC
|
712
|
+
test "${CCASFLAGS+set}" = set || CCASFLAGS=$CFLAGS
|
713
|
+
AC_ARG_VAR([CCAS], [assembler compiler command (defaults to CC)])
|
714
|
+
AC_ARG_VAR([CCASFLAGS], [assembler compiler flags (defaults to CFLAGS)])
|
715
|
+
_AM_IF_OPTION([no-dependencies],, [_AM_DEPENDENCIES([CCAS])])dnl
|
716
|
+
])
|
717
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/auxdir.m4:51: -1- AC_DEFUN([AM_AUX_DIR_EXPAND], [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
|
718
|
+
# Expand $ac_aux_dir to an absolute path.
|
719
|
+
am_aux_dir=`cd "$ac_aux_dir" && pwd`
|
720
|
+
])
|
721
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/cond.m4:32: -1- AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ([2.52])dnl
|
722
|
+
m4_if([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])],
|
723
|
+
[$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl
|
724
|
+
AC_SUBST([$1_TRUE])dnl
|
725
|
+
AC_SUBST([$1_FALSE])dnl
|
726
|
+
_AM_SUBST_NOTMAKE([$1_TRUE])dnl
|
727
|
+
_AM_SUBST_NOTMAKE([$1_FALSE])dnl
|
728
|
+
m4_define([_AM_COND_VALUE_$1], [$2])dnl
|
729
|
+
if $2; then
|
730
|
+
$1_TRUE=
|
731
|
+
$1_FALSE='#'
|
732
|
+
else
|
733
|
+
$1_TRUE='#'
|
734
|
+
$1_FALSE=
|
735
|
+
fi
|
736
|
+
AC_CONFIG_COMMANDS_PRE(
|
737
|
+
[if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then
|
738
|
+
AC_MSG_ERROR([[conditional "$1" was never defined.
|
739
|
+
Usually this means the macro was only invoked conditionally.]])
|
740
|
+
fi])])
|
741
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/depend.m4:156: -1- AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl
|
742
|
+
AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl
|
743
|
+
AC_REQUIRE([AM_MAKE_INCLUDE])dnl
|
744
|
+
AC_REQUIRE([AM_DEP_TRACK])dnl
|
745
|
+
|
746
|
+
m4_if([$1], [CC], [depcc="$CC" am_compiler_list=],
|
747
|
+
[$1], [CXX], [depcc="$CXX" am_compiler_list=],
|
748
|
+
[$1], [OBJC], [depcc="$OBJC" am_compiler_list='gcc3 gcc'],
|
749
|
+
[$1], [OBJCXX], [depcc="$OBJCXX" am_compiler_list='gcc3 gcc'],
|
750
|
+
[$1], [UPC], [depcc="$UPC" am_compiler_list=],
|
751
|
+
[$1], [GCJ], [depcc="$GCJ" am_compiler_list='gcc3 gcc'],
|
752
|
+
[depcc="$$1" am_compiler_list=])
|
753
|
+
|
754
|
+
AC_CACHE_CHECK([dependency style of $depcc],
|
755
|
+
[am_cv_$1_dependencies_compiler_type],
|
756
|
+
[if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then
|
757
|
+
# We make a subdir and do the tests there. Otherwise we can end up
|
758
|
+
# making bogus files that we don't know about and never remove. For
|
759
|
+
# instance it was reported that on HP-UX the gcc test will end up
|
760
|
+
# making a dummy file named 'D' -- because '-MD' means "put the output
|
761
|
+
# in D".
|
762
|
+
rm -rf conftest.dir
|
763
|
+
mkdir conftest.dir
|
764
|
+
# Copy depcomp to subdir because otherwise we won't find it if we're
|
765
|
+
# using a relative directory.
|
766
|
+
cp "$am_depcomp" conftest.dir
|
767
|
+
cd conftest.dir
|
768
|
+
# We will build objects and dependencies in a subdirectory because
|
769
|
+
# it helps to detect inapplicable dependency modes. For instance
|
770
|
+
# both Tru64's cc and ICC support -MD to output dependencies as a
|
771
|
+
# side effect of compilation, but ICC will put the dependencies in
|
772
|
+
# the current directory while Tru64 will put them in the object
|
773
|
+
# directory.
|
774
|
+
mkdir sub
|
775
|
+
|
776
|
+
am_cv_$1_dependencies_compiler_type=none
|
777
|
+
if test "$am_compiler_list" = ""; then
|
778
|
+
am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp`
|
779
|
+
fi
|
780
|
+
am__universal=false
|
781
|
+
m4_case([$1], [CC],
|
782
|
+
[case " $depcc " in #(
|
783
|
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
784
|
+
esac],
|
785
|
+
[CXX],
|
786
|
+
[case " $depcc " in #(
|
787
|
+
*\ -arch\ *\ -arch\ *) am__universal=true ;;
|
788
|
+
esac])
|
789
|
+
|
790
|
+
for depmode in $am_compiler_list; do
|
791
|
+
# Setup a source with many dependencies, because some compilers
|
792
|
+
# like to wrap large dependency lists on column 80 (with \), and
|
793
|
+
# we should not choose a depcomp mode which is confused by this.
|
794
|
+
#
|
795
|
+
# We need to recreate these files for each test, as the compiler may
|
796
|
+
# overwrite some of them when testing with obscure command lines.
|
797
|
+
# This happens at least with the AIX C compiler.
|
798
|
+
: > sub/conftest.c
|
799
|
+
for i in 1 2 3 4 5 6; do
|
800
|
+
echo '#include "conftst'$i'.h"' >> sub/conftest.c
|
801
|
+
# Using ": > sub/conftst$i.h" creates only sub/conftst1.h with
|
802
|
+
# Solaris 10 /bin/sh.
|
803
|
+
echo '/* dummy */' > sub/conftst$i.h
|
804
|
+
done
|
805
|
+
echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf
|
806
|
+
|
807
|
+
# We check with '-c' and '-o' for the sake of the "dashmstdout"
|
808
|
+
# mode. It turns out that the SunPro C++ compiler does not properly
|
809
|
+
# handle '-M -o', and we need to detect this. Also, some Intel
|
810
|
+
# versions had trouble with output in subdirs.
|
811
|
+
am__obj=sub/conftest.${OBJEXT-o}
|
812
|
+
am__minus_obj="-o $am__obj"
|
813
|
+
case $depmode in
|
814
|
+
gcc)
|
815
|
+
# This depmode causes a compiler race in universal mode.
|
816
|
+
test "$am__universal" = false || continue
|
817
|
+
;;
|
818
|
+
nosideeffect)
|
819
|
+
# After this tag, mechanisms are not by side-effect, so they'll
|
820
|
+
# only be used when explicitly requested.
|
821
|
+
if test "x$enable_dependency_tracking" = xyes; then
|
822
|
+
continue
|
823
|
+
else
|
824
|
+
break
|
825
|
+
fi
|
826
|
+
;;
|
827
|
+
msvc7 | msvc7msys | msvisualcpp | msvcmsys)
|
828
|
+
# This compiler won't grok '-c -o', but also, the minuso test has
|
829
|
+
# not run yet. These depmodes are late enough in the game, and
|
830
|
+
# so weak that their functioning should not be impacted.
|
831
|
+
am__obj=conftest.${OBJEXT-o}
|
832
|
+
am__minus_obj=
|
833
|
+
;;
|
834
|
+
none) break ;;
|
835
|
+
esac
|
836
|
+
if depmode=$depmode \
|
837
|
+
source=sub/conftest.c object=$am__obj \
|
838
|
+
depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \
|
839
|
+
$SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \
|
840
|
+
>/dev/null 2>conftest.err &&
|
841
|
+
grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 &&
|
842
|
+
grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 &&
|
843
|
+
grep $am__obj sub/conftest.Po > /dev/null 2>&1 &&
|
844
|
+
${MAKE-make} -s -f confmf > /dev/null 2>&1; then
|
845
|
+
# icc doesn't choke on unknown options, it will just issue warnings
|
846
|
+
# or remarks (even with -Werror). So we grep stderr for any message
|
847
|
+
# that says an option was ignored or not supported.
|
848
|
+
# When given -MP, icc 7.0 and 7.1 complain thusly:
|
849
|
+
# icc: Command line warning: ignoring option '-M'; no argument required
|
850
|
+
# The diagnosis changed in icc 8.0:
|
851
|
+
# icc: Command line remark: option '-MP' not supported
|
852
|
+
if (grep 'ignoring option' conftest.err ||
|
853
|
+
grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else
|
854
|
+
am_cv_$1_dependencies_compiler_type=$depmode
|
855
|
+
break
|
856
|
+
fi
|
857
|
+
fi
|
858
|
+
done
|
859
|
+
|
860
|
+
cd ..
|
861
|
+
rm -rf conftest.dir
|
862
|
+
else
|
863
|
+
am_cv_$1_dependencies_compiler_type=none
|
864
|
+
fi
|
865
|
+
])
|
866
|
+
AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type])
|
867
|
+
AM_CONDITIONAL([am__fastdep$1], [
|
868
|
+
test "x$enable_dependency_tracking" != xno \
|
869
|
+
&& test "$am_cv_$1_dependencies_compiler_type" = gcc3])
|
870
|
+
])
|
871
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/depend.m4:166: -1- AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
872
|
+
AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl
|
873
|
+
])
|
874
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/depend.m4:189: -1- AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE([dependency-tracking], [dnl
|
875
|
+
AS_HELP_STRING(
|
876
|
+
[--enable-dependency-tracking],
|
877
|
+
[do not reject slow dependency extractors])
|
878
|
+
AS_HELP_STRING(
|
879
|
+
[--disable-dependency-tracking],
|
880
|
+
[speeds up one-time build])])
|
881
|
+
if test "x$enable_dependency_tracking" != xno; then
|
882
|
+
am_depcomp="$ac_aux_dir/depcomp"
|
883
|
+
AMDEPBACKSLASH='\'
|
884
|
+
am__nodep='_no'
|
885
|
+
fi
|
886
|
+
AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
887
|
+
AC_SUBST([AMDEPBACKSLASH])dnl
|
888
|
+
_AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl
|
889
|
+
AC_SUBST([am__nodep])dnl
|
890
|
+
_AM_SUBST_NOTMAKE([am__nodep])dnl
|
891
|
+
])
|
892
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/depout.m4:61: -1- AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{
|
893
|
+
# Older Autoconf quotes --file arguments for eval, but not when files
|
894
|
+
# are listed without --file. Let's play safe and only enable the eval
|
895
|
+
# if we detect the quoting.
|
896
|
+
case $CONFIG_FILES in
|
897
|
+
*\'*) eval set x "$CONFIG_FILES" ;;
|
898
|
+
*) set x $CONFIG_FILES ;;
|
899
|
+
esac
|
900
|
+
shift
|
901
|
+
for mf
|
902
|
+
do
|
903
|
+
# Strip MF so we end up with the name of the file.
|
904
|
+
mf=`echo "$mf" | sed -e 's/:.*$//'`
|
905
|
+
# Check whether this is an Automake generated Makefile or not.
|
906
|
+
# We used to match only the files named 'Makefile.in', but
|
907
|
+
# some people rename them; so instead we look at the file content.
|
908
|
+
# Grep'ing the first line is not enough: some people post-process
|
909
|
+
# each Makefile.in and add a new line on top of each file to say so.
|
910
|
+
# Grep'ing the whole file is not good either: AIX grep has a line
|
911
|
+
# limit of 2048, but all sed's we know have understand at least 4000.
|
912
|
+
if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then
|
913
|
+
dirpart=`AS_DIRNAME("$mf")`
|
914
|
+
else
|
915
|
+
continue
|
916
|
+
fi
|
917
|
+
# Extract the definition of DEPDIR, am__include, and am__quote
|
918
|
+
# from the Makefile without running 'make'.
|
919
|
+
DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"`
|
920
|
+
test -z "$DEPDIR" && continue
|
921
|
+
am__include=`sed -n 's/^am__include = //p' < "$mf"`
|
922
|
+
test -z "$am__include" && continue
|
923
|
+
am__quote=`sed -n 's/^am__quote = //p' < "$mf"`
|
924
|
+
# Find all dependency output files, they are included files with
|
925
|
+
# $(DEPDIR) in their names. We invoke sed twice because it is the
|
926
|
+
# simplest approach to changing $(DEPDIR) to its actual value in the
|
927
|
+
# expansion.
|
928
|
+
for file in `sed -n "
|
929
|
+
s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \
|
930
|
+
sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g'`; do
|
931
|
+
# Make sure the directory exists.
|
932
|
+
test -f "$dirpart/$file" && continue
|
933
|
+
fdir=`AS_DIRNAME(["$file"])`
|
934
|
+
AS_MKDIR_P([$dirpart/$fdir])
|
935
|
+
# echo "creating $dirpart/$file"
|
936
|
+
echo '# dummy' > "$dirpart/$file"
|
937
|
+
done
|
938
|
+
done
|
939
|
+
}
|
940
|
+
])
|
941
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/depout.m4:75: -1- AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles],
|
942
|
+
[test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS],
|
943
|
+
[AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"])
|
944
|
+
])
|
945
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/init.m4:171: -1- AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.65])dnl
|
946
|
+
dnl Autoconf wants to disallow AM_ names. We explicitly allow
|
947
|
+
dnl the ones we care about.
|
948
|
+
m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl
|
949
|
+
AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl
|
950
|
+
AC_REQUIRE([AC_PROG_INSTALL])dnl
|
951
|
+
if test "`cd $srcdir && pwd`" != "`pwd`"; then
|
952
|
+
# Use -I$(srcdir) only when $(srcdir) != ., so that make's output
|
953
|
+
# is not polluted with repeated "-I."
|
954
|
+
AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl
|
955
|
+
# test to see if srcdir already configured
|
956
|
+
if test -f $srcdir/config.status; then
|
957
|
+
AC_MSG_ERROR([source directory already configured; run "make distclean" there first])
|
958
|
+
fi
|
959
|
+
fi
|
960
|
+
|
961
|
+
# test whether we have cygpath
|
962
|
+
if test -z "$CYGPATH_W"; then
|
963
|
+
if (cygpath --version) >/dev/null 2>/dev/null; then
|
964
|
+
CYGPATH_W='cygpath -w'
|
965
|
+
else
|
966
|
+
CYGPATH_W=echo
|
967
|
+
fi
|
968
|
+
fi
|
969
|
+
AC_SUBST([CYGPATH_W])
|
970
|
+
|
971
|
+
# Define the identity of the package.
|
972
|
+
dnl Distinguish between old-style and new-style calls.
|
973
|
+
m4_ifval([$2],
|
974
|
+
[AC_DIAGNOSE([obsolete],
|
975
|
+
[$0: two- and three-arguments forms are deprecated.])
|
976
|
+
m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl
|
977
|
+
AC_SUBST([PACKAGE], [$1])dnl
|
978
|
+
AC_SUBST([VERSION], [$2])],
|
979
|
+
[_AM_SET_OPTIONS([$1])dnl
|
980
|
+
dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT.
|
981
|
+
m4_if(
|
982
|
+
m4_ifdef([AC_PACKAGE_NAME], [ok]):m4_ifdef([AC_PACKAGE_VERSION], [ok]),
|
983
|
+
[ok:ok],,
|
984
|
+
[m4_fatal([AC_INIT should be called with package and version arguments])])dnl
|
985
|
+
AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl
|
986
|
+
AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl
|
987
|
+
|
988
|
+
_AM_IF_OPTION([no-define],,
|
989
|
+
[AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
|
990
|
+
AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])dnl
|
991
|
+
|
992
|
+
# Some tools Automake needs.
|
993
|
+
AC_REQUIRE([AM_SANITY_CHECK])dnl
|
994
|
+
AC_REQUIRE([AC_ARG_PROGRAM])dnl
|
995
|
+
AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
|
996
|
+
AM_MISSING_PROG([AUTOCONF], [autoconf])
|
997
|
+
AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
|
998
|
+
AM_MISSING_PROG([AUTOHEADER], [autoheader])
|
999
|
+
AM_MISSING_PROG([MAKEINFO], [makeinfo])
|
1000
|
+
AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
1001
|
+
AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl
|
1002
|
+
AC_REQUIRE([AC_PROG_MKDIR_P])dnl
|
1003
|
+
# For better backward compatibility. To be removed once Automake 1.9.x
|
1004
|
+
# dies out for good. For more background, see:
|
1005
|
+
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00001.html>
|
1006
|
+
# <http://lists.gnu.org/archive/html/automake/2012-07/msg00014.html>
|
1007
|
+
AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
|
1008
|
+
# We need awk for the "check" target (and possibly the TAP driver). The
|
1009
|
+
# system "awk" is bad on some platforms.
|
1010
|
+
AC_REQUIRE([AC_PROG_AWK])dnl
|
1011
|
+
AC_REQUIRE([AC_PROG_MAKE_SET])dnl
|
1012
|
+
AC_REQUIRE([AM_SET_LEADING_DOT])dnl
|
1013
|
+
_AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])],
|
1014
|
+
[_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
1015
|
+
[_AM_PROG_TAR([v7])])])
|
1016
|
+
_AM_IF_OPTION([no-dependencies],,
|
1017
|
+
[AC_PROVIDE_IFELSE([AC_PROG_CC],
|
1018
|
+
[_AM_DEPENDENCIES([CC])],
|
1019
|
+
[m4_define([AC_PROG_CC],
|
1020
|
+
m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
|
1021
|
+
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
1022
|
+
[_AM_DEPENDENCIES([CXX])],
|
1023
|
+
[m4_define([AC_PROG_CXX],
|
1024
|
+
m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
|
1025
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
1026
|
+
[_AM_DEPENDENCIES([OBJC])],
|
1027
|
+
[m4_define([AC_PROG_OBJC],
|
1028
|
+
m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
|
1029
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
|
1030
|
+
[_AM_DEPENDENCIES([OBJCXX])],
|
1031
|
+
[m4_define([AC_PROG_OBJCXX],
|
1032
|
+
m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
|
1033
|
+
])
|
1034
|
+
AC_REQUIRE([AM_SILENT_RULES])dnl
|
1035
|
+
dnl The testsuite driver may need to know about EXEEXT, so add the
|
1036
|
+
dnl 'am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This
|
1037
|
+
dnl macro is hooked onto _AC_COMPILER_EXEEXT early, see below.
|
1038
|
+
AC_CONFIG_COMMANDS_PRE(dnl
|
1039
|
+
[m4_provide_if([_AM_COMPILER_EXEEXT],
|
1040
|
+
[AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl
|
1041
|
+
|
1042
|
+
# POSIX will say in a future version that running "rm -f" with no argument
|
1043
|
+
# is OK; and we want to be able to make that assumption in our Makefile
|
1044
|
+
# recipes. So use an aggressive probe to check that the usage we want is
|
1045
|
+
# actually supported "in the wild" to an acceptable degree.
|
1046
|
+
# See automake bug#10828.
|
1047
|
+
# To make any issue more visible, cause the running configure to be aborted
|
1048
|
+
# by default if the 'rm' program in use doesn't match our expectations; the
|
1049
|
+
# user can still override this though.
|
1050
|
+
if rm -f && rm -fr && rm -rf; then : OK; else
|
1051
|
+
cat >&2 <<'END'
|
1052
|
+
Oops!
|
1053
|
+
|
1054
|
+
Your 'rm' program seems unable to run without file operands specified
|
1055
|
+
on the command line, even when the '-f' option is present. This is contrary
|
1056
|
+
to the behaviour of most rm programs out there, and not conforming with
|
1057
|
+
the upcoming POSIX standard: <http://austingroupbugs.net/view.php?id=542>
|
1058
|
+
|
1059
|
+
Please tell bug-automake@gnu.org about your system, including the value
|
1060
|
+
of your $PATH and any error possibly output before this message. This
|
1061
|
+
can help us improve future automake versions.
|
1062
|
+
|
1063
|
+
END
|
1064
|
+
if test x"$ACCEPT_INFERIOR_RM_PROGRAM" = x"yes"; then
|
1065
|
+
echo 'Configuration will proceed anyway, since you have set the' >&2
|
1066
|
+
echo 'ACCEPT_INFERIOR_RM_PROGRAM variable to "yes"' >&2
|
1067
|
+
echo >&2
|
1068
|
+
else
|
1069
|
+
cat >&2 <<'END'
|
1070
|
+
Aborting the configuration process, to ensure you take notice of the issue.
|
1071
|
+
|
1072
|
+
You can download and install GNU coreutils to get an 'rm' implementation
|
1073
|
+
that behaves properly: <http://www.gnu.org/software/coreutils/>.
|
1074
|
+
|
1075
|
+
If you want to complete the configuration process using your problematic
|
1076
|
+
'rm' anyway, export the environment variable ACCEPT_INFERIOR_RM_PROGRAM
|
1077
|
+
to "yes", and re-run configure.
|
1078
|
+
|
1079
|
+
END
|
1080
|
+
AC_MSG_ERROR([Your 'rm' program is bad, sorry.])
|
1081
|
+
fi
|
1082
|
+
fi
|
1083
|
+
dnl The trailing newline in this macro's definition is deliberate, for
|
1084
|
+
dnl backward compatibility and to allow trailing 'dnl'-style comments
|
1085
|
+
dnl after the AM_INIT_AUTOMAKE invocation. See automake bug#16841.
|
1086
|
+
])
|
1087
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/init.m4:198: -1- AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers.
|
1088
|
+
_am_arg=$1
|
1089
|
+
_am_stamp_count=1
|
1090
|
+
for _am_header in $config_headers :; do
|
1091
|
+
case $_am_header in
|
1092
|
+
$_am_arg | $_am_arg:* )
|
1093
|
+
break ;;
|
1094
|
+
* )
|
1095
|
+
_am_stamp_count=`expr $_am_stamp_count + 1` ;;
|
1096
|
+
esac
|
1097
|
+
done
|
1098
|
+
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
1099
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/install-sh.m4:21: -1- AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
1100
|
+
if test x"${install_sh+set}" != xset; then
|
1101
|
+
case $am_aux_dir in
|
1102
|
+
*\ * | *\ *)
|
1103
|
+
install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;;
|
1104
|
+
*)
|
1105
|
+
install_sh="\${SHELL} $am_aux_dir/install-sh"
|
1106
|
+
esac
|
1107
|
+
fi
|
1108
|
+
AC_SUBST([install_sh])])
|
1109
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/lead-dot.m4:19: -1- AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null
|
1110
|
+
mkdir .tst 2>/dev/null
|
1111
|
+
if test -d .tst; then
|
1112
|
+
am__leading_dot=.
|
1113
|
+
else
|
1114
|
+
am__leading_dot=_
|
1115
|
+
fi
|
1116
|
+
rmdir .tst 2>/dev/null
|
1117
|
+
AC_SUBST([am__leading_dot])])
|
1118
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/maintainer.m4:35: -1- AC_DEFUN([AM_MAINTAINER_MODE], [m4_case(m4_default([$1], [disable]),
|
1119
|
+
[enable], [m4_define([am_maintainer_other], [disable])],
|
1120
|
+
[disable], [m4_define([am_maintainer_other], [enable])],
|
1121
|
+
[m4_define([am_maintainer_other], [enable])
|
1122
|
+
m4_warn([syntax], [unexpected argument to AM@&t@_MAINTAINER_MODE: $1])])
|
1123
|
+
AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
|
1124
|
+
dnl maintainer-mode's default is 'disable' unless 'enable' is passed
|
1125
|
+
AC_ARG_ENABLE([maintainer-mode],
|
1126
|
+
[AS_HELP_STRING([--]am_maintainer_other[-maintainer-mode],
|
1127
|
+
am_maintainer_other[ make rules and dependencies not useful
|
1128
|
+
(and sometimes confusing) to the casual installer])],
|
1129
|
+
[USE_MAINTAINER_MODE=$enableval],
|
1130
|
+
[USE_MAINTAINER_MODE=]m4_if(am_maintainer_other, [enable], [no], [yes]))
|
1131
|
+
AC_MSG_RESULT([$USE_MAINTAINER_MODE])
|
1132
|
+
AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
|
1133
|
+
MAINT=$MAINTAINER_MODE_TRUE
|
1134
|
+
AC_SUBST([MAINT])dnl
|
1135
|
+
|
1136
|
+
])
|
1137
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/make.m4:49: -1- AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make}
|
1138
|
+
cat > confinc << 'END'
|
1139
|
+
am__doit:
|
1140
|
+
@echo this is the am__doit target
|
1141
|
+
.PHONY: am__doit
|
1142
|
+
END
|
1143
|
+
# If we don't find an include directive, just comment out the code.
|
1144
|
+
AC_MSG_CHECKING([for style of include used by $am_make])
|
1145
|
+
am__include="#"
|
1146
|
+
am__quote=
|
1147
|
+
_am_result=none
|
1148
|
+
# First try GNU make style include.
|
1149
|
+
echo "include confinc" > confmf
|
1150
|
+
# Ignore all kinds of additional output from 'make'.
|
1151
|
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
1152
|
+
*the\ am__doit\ target*)
|
1153
|
+
am__include=include
|
1154
|
+
am__quote=
|
1155
|
+
_am_result=GNU
|
1156
|
+
;;
|
1157
|
+
esac
|
1158
|
+
# Now try BSD make style include.
|
1159
|
+
if test "$am__include" = "#"; then
|
1160
|
+
echo '.include "confinc"' > confmf
|
1161
|
+
case `$am_make -s -f confmf 2> /dev/null` in #(
|
1162
|
+
*the\ am__doit\ target*)
|
1163
|
+
am__include=.include
|
1164
|
+
am__quote="\""
|
1165
|
+
_am_result=BSD
|
1166
|
+
;;
|
1167
|
+
esac
|
1168
|
+
fi
|
1169
|
+
AC_SUBST([am__include])
|
1170
|
+
AC_SUBST([am__quote])
|
1171
|
+
AC_MSG_RESULT([$_am_result])
|
1172
|
+
rm -f confinc confmf
|
1173
|
+
])
|
1174
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/missing.m4:14: -1- AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN])
|
1175
|
+
$1=${$1-"${am_missing_run}$2"}
|
1176
|
+
AC_SUBST($1)])
|
1177
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/missing.m4:38: -1- AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
|
1178
|
+
AC_REQUIRE_AUX_FILE([missing])dnl
|
1179
|
+
if test x"${MISSING+set}" != xset; then
|
1180
|
+
case $am_aux_dir in
|
1181
|
+
*\ * | *\ *)
|
1182
|
+
MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;;
|
1183
|
+
*)
|
1184
|
+
MISSING="\${SHELL} $am_aux_dir/missing" ;;
|
1185
|
+
esac
|
1186
|
+
fi
|
1187
|
+
# Use eval to expand $SHELL
|
1188
|
+
if eval "$MISSING --is-lightweight"; then
|
1189
|
+
am_missing_run="$MISSING "
|
1190
|
+
else
|
1191
|
+
am_missing_run=
|
1192
|
+
AC_MSG_WARN(['missing' script is too old or missing])
|
1193
|
+
fi
|
1194
|
+
])
|
1195
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/options.m4:12: -1- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])])
|
1196
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/options.m4:18: -1- AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), [1])])
|
1197
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/options.m4:24: -1- AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])])
|
1198
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/options.m4:30: -1- AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
1199
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/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
|
1200
|
+
AC_REQUIRE_AUX_FILE([compile])dnl
|
1201
|
+
AC_LANG_PUSH([C])dnl
|
1202
|
+
AC_CACHE_CHECK(
|
1203
|
+
[whether $CC understands -c and -o together],
|
1204
|
+
[am_cv_prog_cc_c_o],
|
1205
|
+
[AC_LANG_CONFTEST([AC_LANG_PROGRAM([])])
|
1206
|
+
# Make sure it works both with $CC and with simple cc.
|
1207
|
+
# Following AC_PROG_CC_C_O, we do the test twice because some
|
1208
|
+
# compilers refuse to overwrite an existing .o file with -o,
|
1209
|
+
# though they will create one.
|
1210
|
+
am_cv_prog_cc_c_o=yes
|
1211
|
+
for am_i in 1 2; do
|
1212
|
+
if AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext]) \
|
1213
|
+
&& test -f conftest2.$ac_objext; then
|
1214
|
+
: OK
|
1215
|
+
else
|
1216
|
+
am_cv_prog_cc_c_o=no
|
1217
|
+
break
|
1218
|
+
fi
|
1219
|
+
done
|
1220
|
+
rm -f core conftest*
|
1221
|
+
unset am_i])
|
1222
|
+
if test "$am_cv_prog_cc_c_o" != yes; then
|
1223
|
+
# Losing compiler, so override with the script.
|
1224
|
+
# FIXME: It is wrong to rewrite CC.
|
1225
|
+
# But if we don't then we get into trouble of one sort or another.
|
1226
|
+
# A longer-term fix would be to have automake use am__CC in this case,
|
1227
|
+
# and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
|
1228
|
+
CC="$am_aux_dir/compile $CC"
|
1229
|
+
fi
|
1230
|
+
AC_LANG_POP([C])])
|
1231
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/prog-cc-c-o.m4:47: -1- AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
|
1232
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/runlog.m4:17: -1- AC_DEFUN([AM_RUN_LOG], [{ echo "$as_me:$LINENO: $1" >&AS_MESSAGE_LOG_FD
|
1233
|
+
($1) >&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD
|
1234
|
+
ac_status=$?
|
1235
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
1236
|
+
(exit $ac_status); }])
|
1237
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/sanity.m4:82: -1- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane])
|
1238
|
+
# Reject unsafe characters in $srcdir or the absolute working directory
|
1239
|
+
# name. Accept space and tab only in the latter.
|
1240
|
+
am_lf='
|
1241
|
+
'
|
1242
|
+
case `pwd` in
|
1243
|
+
*[[\\\"\#\$\&\'\`$am_lf]]*)
|
1244
|
+
AC_MSG_ERROR([unsafe absolute working directory name]);;
|
1245
|
+
esac
|
1246
|
+
case $srcdir in
|
1247
|
+
*[[\\\"\#\$\&\'\`$am_lf\ \ ]]*)
|
1248
|
+
AC_MSG_ERROR([unsafe srcdir value: '$srcdir']);;
|
1249
|
+
esac
|
1250
|
+
|
1251
|
+
# Do 'set' in a subshell so we don't clobber the current shell's
|
1252
|
+
# arguments. Must try -L first in case configure is actually a
|
1253
|
+
# symlink; some systems play weird games with the mod time of symlinks
|
1254
|
+
# (eg FreeBSD returns the mod time of the symlink's containing
|
1255
|
+
# directory).
|
1256
|
+
if (
|
1257
|
+
am_has_slept=no
|
1258
|
+
for am_try in 1 2; do
|
1259
|
+
echo "timestamp, slept: $am_has_slept" > conftest.file
|
1260
|
+
set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null`
|
1261
|
+
if test "$[*]" = "X"; then
|
1262
|
+
# -L didn't work.
|
1263
|
+
set X `ls -t "$srcdir/configure" conftest.file`
|
1264
|
+
fi
|
1265
|
+
if test "$[*]" != "X $srcdir/configure conftest.file" \
|
1266
|
+
&& test "$[*]" != "X conftest.file $srcdir/configure"; then
|
1267
|
+
|
1268
|
+
# If neither matched, then we have a broken ls. This can happen
|
1269
|
+
# if, for instance, CONFIG_SHELL is bash and it inherits a
|
1270
|
+
# broken ls alias from the environment. This has actually
|
1271
|
+
# happened. Such a system could not be considered "sane".
|
1272
|
+
AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken
|
1273
|
+
alias in your environment])
|
1274
|
+
fi
|
1275
|
+
if test "$[2]" = conftest.file || test $am_try -eq 2; then
|
1276
|
+
break
|
1277
|
+
fi
|
1278
|
+
# Just in case.
|
1279
|
+
sleep 1
|
1280
|
+
am_has_slept=yes
|
1281
|
+
done
|
1282
|
+
test "$[2]" = conftest.file
|
1283
|
+
)
|
1284
|
+
then
|
1285
|
+
# Ok.
|
1286
|
+
:
|
1287
|
+
else
|
1288
|
+
AC_MSG_ERROR([newly created file is older than distributed files!
|
1289
|
+
Check your system clock])
|
1290
|
+
fi
|
1291
|
+
AC_MSG_RESULT([yes])
|
1292
|
+
# If we didn't sleep, we still need to ensure time stamps of config.status and
|
1293
|
+
# generated files are strictly newer.
|
1294
|
+
am_sleep_pid=
|
1295
|
+
if grep 'slept: no' conftest.file >/dev/null 2>&1; then
|
1296
|
+
( sleep 1 ) &
|
1297
|
+
am_sleep_pid=$!
|
1298
|
+
fi
|
1299
|
+
AC_CONFIG_COMMANDS_PRE(
|
1300
|
+
[AC_MSG_CHECKING([that generated files are newer than configure])
|
1301
|
+
if test -n "$am_sleep_pid"; then
|
1302
|
+
# Hide warnings about reused PIDs.
|
1303
|
+
wait $am_sleep_pid 2>/dev/null
|
1304
|
+
fi
|
1305
|
+
AC_MSG_RESULT([done])])
|
1306
|
+
rm -f conftest.file
|
1307
|
+
])
|
1308
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/silent.m4:60: -1- AC_DEFUN([AM_SILENT_RULES], [AC_ARG_ENABLE([silent-rules], [dnl
|
1309
|
+
AS_HELP_STRING(
|
1310
|
+
[--enable-silent-rules],
|
1311
|
+
[less verbose build output (undo: "make V=1")])
|
1312
|
+
AS_HELP_STRING(
|
1313
|
+
[--disable-silent-rules],
|
1314
|
+
[verbose build output (undo: "make V=0")])dnl
|
1315
|
+
])
|
1316
|
+
case $enable_silent_rules in @%:@ (((
|
1317
|
+
yes) AM_DEFAULT_VERBOSITY=0;;
|
1318
|
+
no) AM_DEFAULT_VERBOSITY=1;;
|
1319
|
+
*) AM_DEFAULT_VERBOSITY=m4_if([$1], [yes], [0], [1]);;
|
1320
|
+
esac
|
1321
|
+
dnl
|
1322
|
+
dnl A few 'make' implementations (e.g., NonStop OS and NextStep)
|
1323
|
+
dnl do not support nested variable expansions.
|
1324
|
+
dnl See automake bug#9928 and bug#10237.
|
1325
|
+
am_make=${MAKE-make}
|
1326
|
+
AC_CACHE_CHECK([whether $am_make supports nested variables],
|
1327
|
+
[am_cv_make_support_nested_variables],
|
1328
|
+
[if AS_ECHO([['TRUE=$(BAR$(V))
|
1329
|
+
BAR0=false
|
1330
|
+
BAR1=true
|
1331
|
+
V=1
|
1332
|
+
am__doit:
|
1333
|
+
@$(TRUE)
|
1334
|
+
.PHONY: am__doit']]) | $am_make -f - >/dev/null 2>&1; then
|
1335
|
+
am_cv_make_support_nested_variables=yes
|
1336
|
+
else
|
1337
|
+
am_cv_make_support_nested_variables=no
|
1338
|
+
fi])
|
1339
|
+
if test $am_cv_make_support_nested_variables = yes; then
|
1340
|
+
dnl Using '$V' instead of '$(V)' breaks IRIX make.
|
1341
|
+
AM_V='$(V)'
|
1342
|
+
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
|
1343
|
+
else
|
1344
|
+
AM_V=$AM_DEFAULT_VERBOSITY
|
1345
|
+
AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY
|
1346
|
+
fi
|
1347
|
+
AC_SUBST([AM_V])dnl
|
1348
|
+
AM_SUBST_NOTMAKE([AM_V])dnl
|
1349
|
+
AC_SUBST([AM_DEFAULT_V])dnl
|
1350
|
+
AM_SUBST_NOTMAKE([AM_DEFAULT_V])dnl
|
1351
|
+
AC_SUBST([AM_DEFAULT_VERBOSITY])dnl
|
1352
|
+
AM_BACKSLASH='\'
|
1353
|
+
AC_SUBST([AM_BACKSLASH])dnl
|
1354
|
+
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
|
1355
|
+
])
|
1356
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/strip.m4:28: -1- AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl
|
1357
|
+
# Installed binaries are usually stripped using 'strip' when the user
|
1358
|
+
# run "make install-strip". However 'strip' might not be the right
|
1359
|
+
# tool to use in cross-compilation environments, therefore Automake
|
1360
|
+
# will honor the 'STRIP' environment variable to overrule this program.
|
1361
|
+
dnl Don't test for $cross_compiling = yes, because it might be 'maybe'.
|
1362
|
+
if test "$cross_compiling" != no; then
|
1363
|
+
AC_CHECK_TOOL([STRIP], [strip], :)
|
1364
|
+
fi
|
1365
|
+
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
1366
|
+
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
1367
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/substnot.m4:12: -1- AC_DEFUN([_AM_SUBST_NOTMAKE])
|
1368
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/substnot.m4:17: -1- AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
1369
|
+
m4trace:/usr/local/Cellar/automake/1.15.1/share/aclocal-1.15/tar.m4:132: -1- AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. Yes, it's still used
|
1370
|
+
# in the wild :-( We should find a proper way to deprecate it ...
|
1371
|
+
AC_SUBST([AMTAR], ['$${TAR-tar}'])
|
1372
|
+
|
1373
|
+
# We'll loop over all known methods to create a tar archive until one works.
|
1374
|
+
_am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none'
|
1375
|
+
|
1376
|
+
m4_if([$1], [v7],
|
1377
|
+
[am__tar='$${TAR-tar} chof - "$$tardir"' am__untar='$${TAR-tar} xf -'],
|
1378
|
+
|
1379
|
+
[m4_case([$1],
|
1380
|
+
[ustar],
|
1381
|
+
[# The POSIX 1988 'ustar' format is defined with fixed-size fields.
|
1382
|
+
# There is notably a 21 bits limit for the UID and the GID. In fact,
|
1383
|
+
# the 'pax' utility can hang on bigger UID/GID (see automake bug#8343
|
1384
|
+
# and bug#13588).
|
1385
|
+
am_max_uid=2097151 # 2^21 - 1
|
1386
|
+
am_max_gid=$am_max_uid
|
1387
|
+
# The $UID and $GID variables are not portable, so we need to resort
|
1388
|
+
# to the POSIX-mandated id(1) utility. Errors in the 'id' calls
|
1389
|
+
# below are definitely unexpected, so allow the users to see them
|
1390
|
+
# (that is, avoid stderr redirection).
|
1391
|
+
am_uid=`id -u || echo unknown`
|
1392
|
+
am_gid=`id -g || echo unknown`
|
1393
|
+
AC_MSG_CHECKING([whether UID '$am_uid' is supported by ustar format])
|
1394
|
+
if test $am_uid -le $am_max_uid; then
|
1395
|
+
AC_MSG_RESULT([yes])
|
1396
|
+
else
|
1397
|
+
AC_MSG_RESULT([no])
|
1398
|
+
_am_tools=none
|
1399
|
+
fi
|
1400
|
+
AC_MSG_CHECKING([whether GID '$am_gid' is supported by ustar format])
|
1401
|
+
if test $am_gid -le $am_max_gid; then
|
1402
|
+
AC_MSG_RESULT([yes])
|
1403
|
+
else
|
1404
|
+
AC_MSG_RESULT([no])
|
1405
|
+
_am_tools=none
|
1406
|
+
fi],
|
1407
|
+
|
1408
|
+
[pax],
|
1409
|
+
[],
|
1410
|
+
|
1411
|
+
[m4_fatal([Unknown tar format])])
|
1412
|
+
|
1413
|
+
AC_MSG_CHECKING([how to create a $1 tar archive])
|
1414
|
+
|
1415
|
+
# Go ahead even if we have the value already cached. We do so because we
|
1416
|
+
# need to set the values for the 'am__tar' and 'am__untar' variables.
|
1417
|
+
_am_tools=${am_cv_prog_tar_$1-$_am_tools}
|
1418
|
+
|
1419
|
+
for _am_tool in $_am_tools; do
|
1420
|
+
case $_am_tool in
|
1421
|
+
gnutar)
|
1422
|
+
for _am_tar in tar gnutar gtar; do
|
1423
|
+
AM_RUN_LOG([$_am_tar --version]) && break
|
1424
|
+
done
|
1425
|
+
am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"'
|
1426
|
+
am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"'
|
1427
|
+
am__untar="$_am_tar -xf -"
|
1428
|
+
;;
|
1429
|
+
plaintar)
|
1430
|
+
# Must skip GNU tar: if it does not support --format= it doesn't create
|
1431
|
+
# ustar tarball either.
|
1432
|
+
(tar --version) >/dev/null 2>&1 && continue
|
1433
|
+
am__tar='tar chf - "$$tardir"'
|
1434
|
+
am__tar_='tar chf - "$tardir"'
|
1435
|
+
am__untar='tar xf -'
|
1436
|
+
;;
|
1437
|
+
pax)
|
1438
|
+
am__tar='pax -L -x $1 -w "$$tardir"'
|
1439
|
+
am__tar_='pax -L -x $1 -w "$tardir"'
|
1440
|
+
am__untar='pax -r'
|
1441
|
+
;;
|
1442
|
+
cpio)
|
1443
|
+
am__tar='find "$$tardir" -print | cpio -o -H $1 -L'
|
1444
|
+
am__tar_='find "$tardir" -print | cpio -o -H $1 -L'
|
1445
|
+
am__untar='cpio -i -H $1 -d'
|
1446
|
+
;;
|
1447
|
+
none)
|
1448
|
+
am__tar=false
|
1449
|
+
am__tar_=false
|
1450
|
+
am__untar=false
|
1451
|
+
;;
|
1452
|
+
esac
|
1453
|
+
|
1454
|
+
# If the value was cached, stop now. We just wanted to have am__tar
|
1455
|
+
# and am__untar set.
|
1456
|
+
test -n "${am_cv_prog_tar_$1}" && break
|
1457
|
+
|
1458
|
+
# tar/untar a dummy directory, and stop if the command works.
|
1459
|
+
rm -rf conftest.dir
|
1460
|
+
mkdir conftest.dir
|
1461
|
+
echo GrepMe > conftest.dir/file
|
1462
|
+
AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
|
1463
|
+
rm -rf conftest.dir
|
1464
|
+
if test -s conftest.tar; then
|
1465
|
+
AM_RUN_LOG([$am__untar <conftest.tar])
|
1466
|
+
AM_RUN_LOG([cat conftest.dir/file])
|
1467
|
+
grep GrepMe conftest.dir/file >/dev/null 2>&1 && break
|
1468
|
+
fi
|
1469
|
+
done
|
1470
|
+
rm -rf conftest.dir
|
1471
|
+
|
1472
|
+
AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool])
|
1473
|
+
AC_MSG_RESULT([$am_cv_prog_tar_$1])])
|
1474
|
+
|
1475
|
+
AC_SUBST([am__tar])
|
1476
|
+
AC_SUBST([am__untar])
|
1477
|
+
])
|
1478
|
+
m4trace:m4/ax_check_catchable_abrt.m4:57: -1- AC_DEFUN([AX_CHECK_CATCHABLE_ABRT], [dnl
|
1479
|
+
AC_PREREQ(2.64)
|
1480
|
+
AS_VAR_PUSHDEF([CACHEVAR], [ax_cv_check_[]_AC_LANG_ABBREV[]CATCHABLE_ABRT])dnl
|
1481
|
+
AC_CACHE_CHECK([whether SIGABRT can be caught when using the _AC_LANG compiler], CACHEVAR, [
|
1482
|
+
AC_RUN_IFELSE([
|
1483
|
+
AC_LANG_PROGRAM([[
|
1484
|
+
#include <signal.h>
|
1485
|
+
#include <stdlib.h>
|
1486
|
+
|
1487
|
+
#ifndef SIGABRT
|
1488
|
+
# error SIGABRT is not defined
|
1489
|
+
#endif
|
1490
|
+
|
1491
|
+
static void sigabrt_handler_3(int _)
|
1492
|
+
{
|
1493
|
+
exit(0);
|
1494
|
+
}
|
1495
|
+
|
1496
|
+
static void sigabrt_handler_2(int _)
|
1497
|
+
{
|
1498
|
+
signal(SIGABRT, sigabrt_handler_3);
|
1499
|
+
abort();
|
1500
|
+
exit(1);
|
1501
|
+
}
|
1502
|
+
|
1503
|
+
static void sigabrt_handler_1(int _)
|
1504
|
+
{
|
1505
|
+
signal(SIGABRT, sigabrt_handler_2);
|
1506
|
+
abort();
|
1507
|
+
exit(1);
|
1508
|
+
}
|
1509
|
+
]], [[
|
1510
|
+
signal(SIGABRT, sigabrt_handler_1);
|
1511
|
+
abort();
|
1512
|
+
exit(1);
|
1513
|
+
]])],
|
1514
|
+
[AS_VAR_SET(CACHEVAR, [yes])],
|
1515
|
+
[AS_VAR_SET(CACHEVAR, [no])],
|
1516
|
+
[AS_VAR_SET(CACHEVAR, [unknown])]
|
1517
|
+
)
|
1518
|
+
])
|
1519
|
+
AS_VAR_IF(CACHEVAR, yes,
|
1520
|
+
[AC_DEFINE([HAVE_CATCHABLE_ABRT], [1], [Define if SIGABRT can be caught using signal handlers])],
|
1521
|
+
[AC_MSG_WARN([On this platform, SIGABRT cannot be caught using signal handlers.])]
|
1522
|
+
)
|
1523
|
+
AS_VAR_POPDEF([CACHEVAR])dnl
|
1524
|
+
])
|
1525
|
+
m4trace:m4/ax_check_catchable_segv.m4:42: -1- AC_DEFUN([AX_CHECK_CATCHABLE_SEGV], [dnl
|
1526
|
+
AC_PREREQ(2.64)
|
1527
|
+
AS_VAR_PUSHDEF([CACHEVAR], [ax_cv_check_[]_AC_LANG_ABBREV[]CATCHABLE_SEGV])dnl
|
1528
|
+
AC_CACHE_CHECK([whether segmentation violations can be caught when using the _AC_LANG compiler], CACHEVAR, [
|
1529
|
+
AC_RUN_IFELSE([
|
1530
|
+
AC_LANG_PROGRAM([[
|
1531
|
+
#include <signal.h>
|
1532
|
+
#include <stdlib.h>
|
1533
|
+
static void sig(int _) { exit(0); }
|
1534
|
+
]], [[
|
1535
|
+
volatile unsigned char * volatile x = (volatile unsigned char *) malloc(8);
|
1536
|
+
size_t i;
|
1537
|
+
|
1538
|
+
signal(SIGSEGV, sig);
|
1539
|
+
signal(SIGBUS, sig);
|
1540
|
+
#if !defined(__SANITIZE_ADDRESS__) && !defined(__EMSCRIPTEN__)
|
1541
|
+
for (i = 0; i < 10000000; i += 1024) { x[-i] = x[i] = (unsigned char) i; }
|
1542
|
+
#endif
|
1543
|
+
free((void *) x);
|
1544
|
+
exit(1)
|
1545
|
+
]])],
|
1546
|
+
[AS_VAR_SET(CACHEVAR, [yes])],
|
1547
|
+
[AS_VAR_SET(CACHEVAR, [no])],
|
1548
|
+
[AS_VAR_SET(CACHEVAR, [unknown])]
|
1549
|
+
)
|
1550
|
+
])
|
1551
|
+
AS_VAR_IF(CACHEVAR, yes,
|
1552
|
+
[AC_DEFINE([HAVE_CATCHABLE_SEGV], [1], [Define if segmentation violations can be caught using signal handlers])],
|
1553
|
+
[AC_MSG_WARN([On this platform, segmentation violations cannot be caught using signal handlers. This is expected if you enabled a tool such as Address Sanitizer (-fsanitize=address), but be aware that using Address Sanitizer may also significantly reduce performance.])]
|
1554
|
+
)
|
1555
|
+
AS_VAR_POPDEF([CACHEVAR])dnl
|
1556
|
+
])
|
1557
|
+
m4trace:m4/ax_check_compile_flag.m4:75: -1- AC_DEFUN([AX_CHECK_COMPILE_FLAG], [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
|
1558
|
+
AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_[]_AC_LANG_ABBREV[]flags_$4_$1])dnl
|
1559
|
+
AC_CACHE_CHECK([whether _AC_LANG compiler accepts $1], CACHEVAR, [
|
1560
|
+
ax_check_save_flags=$[]_AC_LANG_PREFIX[]FLAGS
|
1561
|
+
_AC_LANG_PREFIX[]FLAGS="$[]_AC_LANG_PREFIX[]FLAGS $4 $1"
|
1562
|
+
AC_TRY_LINK([#include <time.h>],
|
1563
|
+
[time_t x; int fodder = 0; if (fodder > -1000 && time(&x)) return (int) x],
|
1564
|
+
[AS_VAR_SET(CACHEVAR,[yes])],
|
1565
|
+
[AS_VAR_SET(CACHEVAR,[no])])
|
1566
|
+
_AC_LANG_PREFIX[]FLAGS=$ax_check_save_flags])
|
1567
|
+
AS_VAR_IF(CACHEVAR,yes,
|
1568
|
+
[m4_default([$2], :)],
|
1569
|
+
[m4_default([$3], :)])
|
1570
|
+
AS_VAR_POPDEF([CACHEVAR])dnl
|
1571
|
+
])
|
1572
|
+
m4trace:m4/ax_check_define.m4:49: -1- AU_DEFUN([AC_CHECK_DEFINED], [m4_if($#, 0, [AC_CHECK_DEFINE], [AC_CHECK_DEFINE($@)])])
|
1573
|
+
m4trace:m4/ax_check_define.m4:49: -1- AC_DEFUN([AC_CHECK_DEFINED], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_DEFINED' is obsolete.
|
1574
|
+
You should run autoupdate.])dnl
|
1575
|
+
m4_if($#, 0, [AC_CHECK_DEFINE], [AC_CHECK_DEFINE($@)])])
|
1576
|
+
m4trace:m4/ax_check_define.m4:62: -1- AC_DEFUN([AC_CHECK_DEFINE], [
|
1577
|
+
AS_VAR_PUSHDEF([ac_var],[ac_cv_defined_$1])dnl
|
1578
|
+
AC_CACHE_CHECK([for $1 defined], ac_var,
|
1579
|
+
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[
|
1580
|
+
#ifdef $1
|
1581
|
+
int ok;
|
1582
|
+
#else
|
1583
|
+
choke me
|
1584
|
+
#endif
|
1585
|
+
]])],[AS_VAR_SET(ac_var, yes)],[AS_VAR_SET(ac_var, no)]))
|
1586
|
+
AS_IF([test AS_VAR_GET(ac_var) != "no"], [$2], [$3])dnl
|
1587
|
+
AS_VAR_POPDEF([ac_var])dnl
|
1588
|
+
])
|
1589
|
+
m4trace:m4/ax_check_define.m4:64: -1- AU_DEFUN([AX_CHECK_DEFINED], [m4_if($#, 0, [AX_CHECK_DEFINE], [AX_CHECK_DEFINE($@)])])
|
1590
|
+
m4trace:m4/ax_check_define.m4:64: -1- AC_DEFUN([AX_CHECK_DEFINED], [AC_DIAGNOSE([obsolete], [The macro `AX_CHECK_DEFINED' is obsolete.
|
1591
|
+
You should run autoupdate.])dnl
|
1592
|
+
m4_if($#, 0, [AX_CHECK_DEFINE], [AX_CHECK_DEFINE($@)])])
|
1593
|
+
m4trace:m4/ax_check_define.m4:77: -1- AC_DEFUN([AX_CHECK_DEFINE], [
|
1594
|
+
AS_VAR_PUSHDEF([ac_var],[ac_cv_defined_$2_$1])dnl
|
1595
|
+
AC_CACHE_CHECK([for $2 defined in $1], ac_var,
|
1596
|
+
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <$1>]], [[
|
1597
|
+
#ifdef $2
|
1598
|
+
int ok;
|
1599
|
+
#else
|
1600
|
+
choke me
|
1601
|
+
#endif
|
1602
|
+
]])],[AS_VAR_SET(ac_var, yes)],[AS_VAR_SET(ac_var, no)]))
|
1603
|
+
AS_IF([test AS_VAR_GET(ac_var) != "no"], [$3], [$4])dnl
|
1604
|
+
AS_VAR_POPDEF([ac_var])dnl
|
1605
|
+
])
|
1606
|
+
m4trace:m4/ax_check_define.m4:92: -1- AC_DEFUN([AX_CHECK_FUNC], [AS_VAR_PUSHDEF([ac_var], [ac_cv_func_$2])dnl
|
1607
|
+
AC_CACHE_CHECK([for $2], ac_var,
|
1608
|
+
dnl AC_LANG_FUNC_LINK_TRY
|
1609
|
+
[AC_LINK_IFELSE([AC_LANG_PROGRAM([$1
|
1610
|
+
#undef $2
|
1611
|
+
char $2 ();],[
|
1612
|
+
char (*f) () = $2;
|
1613
|
+
return f != $2; ])],
|
1614
|
+
[AS_VAR_SET(ac_var, yes)],
|
1615
|
+
[AS_VAR_SET(ac_var, no)])])
|
1616
|
+
AS_IF([test AS_VAR_GET(ac_var) = yes], [$3], [$4])dnl
|
1617
|
+
AS_VAR_POPDEF([ac_var])dnl
|
1618
|
+
])
|
1619
|
+
m4trace:m4/ax_check_link_flag.m4:75: -1- AC_DEFUN([AX_CHECK_LINK_FLAG], [AC_PREREQ(2.64)dnl for _AC_LANG_PREFIX and AS_VAR_IF
|
1620
|
+
AS_VAR_PUSHDEF([CACHEVAR],[ax_cv_check_ldflags_$4_$1])dnl
|
1621
|
+
AC_CACHE_CHECK([whether the linker accepts $1], CACHEVAR, [
|
1622
|
+
ax_check_save_flags=$LDFLAGS
|
1623
|
+
LDFLAGS="$LDFLAGS $4 $1"
|
1624
|
+
AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <time.h>]],
|
1625
|
+
[[time_t x; int fodder = 0; if (fodder > -1000 && time(&x)) return (int) x]])],
|
1626
|
+
[AS_VAR_SET(CACHEVAR,[yes])],
|
1627
|
+
[AS_VAR_SET(CACHEVAR,[no])])
|
1628
|
+
LDFLAGS=$ax_check_save_flags])
|
1629
|
+
AS_VAR_IF(CACHEVAR,yes,
|
1630
|
+
[m4_default([$2], :)],
|
1631
|
+
[m4_default([$3], :)])
|
1632
|
+
AS_VAR_POPDEF([CACHEVAR])dnl
|
1633
|
+
])
|
1634
|
+
m4trace:m4/ax_pthread.m4:87: -1- AU_DEFUN([ACX_PTHREAD], [m4_if($#, 0, [AX_PTHREAD], [AX_PTHREAD($@)])])
|
1635
|
+
m4trace:m4/ax_pthread.m4:87: -1- AC_DEFUN([ACX_PTHREAD], [AC_DIAGNOSE([obsolete], [The macro `ACX_PTHREAD' is obsolete.
|
1636
|
+
You should run autoupdate.])dnl
|
1637
|
+
m4_if($#, 0, [AX_PTHREAD], [AX_PTHREAD($@)])])
|
1638
|
+
m4trace:m4/ax_pthread.m4:485: -1- AC_DEFUN([AX_PTHREAD], [
|
1639
|
+
AC_REQUIRE([AC_CANONICAL_HOST])
|
1640
|
+
AC_REQUIRE([AC_PROG_CC])
|
1641
|
+
AC_REQUIRE([AC_PROG_SED])
|
1642
|
+
AC_LANG_PUSH([C])
|
1643
|
+
ax_pthread_ok=no
|
1644
|
+
|
1645
|
+
# We used to check for pthread.h first, but this fails if pthread.h
|
1646
|
+
# requires special compiler flags (e.g. on Tru64 or Sequent).
|
1647
|
+
# It gets checked for in the link test anyway.
|
1648
|
+
|
1649
|
+
# First of all, check if the user has set any of the PTHREAD_LIBS,
|
1650
|
+
# etcetera environment variables, and if threads linking works using
|
1651
|
+
# them:
|
1652
|
+
if test "x$PTHREAD_CFLAGS$PTHREAD_LIBS" != "x"; then
|
1653
|
+
ax_pthread_save_CC="$CC"
|
1654
|
+
ax_pthread_save_CFLAGS="$CFLAGS"
|
1655
|
+
ax_pthread_save_LIBS="$LIBS"
|
1656
|
+
AS_IF([test "x$PTHREAD_CC" != "x"], [CC="$PTHREAD_CC"])
|
1657
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
1658
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
1659
|
+
AC_MSG_CHECKING([for pthread_join using $CC $PTHREAD_CFLAGS $PTHREAD_LIBS])
|
1660
|
+
AC_LINK_IFELSE([AC_LANG_CALL([], [pthread_join])], [ax_pthread_ok=yes])
|
1661
|
+
AC_MSG_RESULT([$ax_pthread_ok])
|
1662
|
+
if test "x$ax_pthread_ok" = "xno"; then
|
1663
|
+
PTHREAD_LIBS=""
|
1664
|
+
PTHREAD_CFLAGS=""
|
1665
|
+
fi
|
1666
|
+
CC="$ax_pthread_save_CC"
|
1667
|
+
CFLAGS="$ax_pthread_save_CFLAGS"
|
1668
|
+
LIBS="$ax_pthread_save_LIBS"
|
1669
|
+
fi
|
1670
|
+
|
1671
|
+
# We must check for the threads library under a number of different
|
1672
|
+
# names; the ordering is very important because some systems
|
1673
|
+
# (e.g. DEC) have both -lpthread and -lpthreads, where one of the
|
1674
|
+
# libraries is broken (non-POSIX).
|
1675
|
+
|
1676
|
+
# Create a list of thread flags to try. Items starting with a "-" are
|
1677
|
+
# C compiler flags, and other items are library names, except for "none"
|
1678
|
+
# which indicates that we try without any flags at all, and "pthread-config"
|
1679
|
+
# which is a program returning the flags for the Pth emulation library.
|
1680
|
+
|
1681
|
+
ax_pthread_flags="pthreads none -Kthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config"
|
1682
|
+
|
1683
|
+
# The ordering *is* (sometimes) important. Some notes on the
|
1684
|
+
# individual items follow:
|
1685
|
+
|
1686
|
+
# pthreads: AIX (must check this before -lpthread)
|
1687
|
+
# none: in case threads are in libc; should be tried before -Kthread and
|
1688
|
+
# other compiler flags to prevent continual compiler warnings
|
1689
|
+
# -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h)
|
1690
|
+
# -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads), Tru64
|
1691
|
+
# (Note: HP C rejects this with "bad form for `-t' option")
|
1692
|
+
# -pthreads: Solaris/gcc (Note: HP C also rejects)
|
1693
|
+
# -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it
|
1694
|
+
# doesn't hurt to check since this sometimes defines pthreads and
|
1695
|
+
# -D_REENTRANT too), HP C (must be checked before -lpthread, which
|
1696
|
+
# is present but should not be used directly; and before -mthreads,
|
1697
|
+
# because the compiler interprets this as "-mt" + "-hreads")
|
1698
|
+
# -mthreads: Mingw32/gcc, Lynx/gcc
|
1699
|
+
# pthread: Linux, etcetera
|
1700
|
+
# --thread-safe: KAI C++
|
1701
|
+
# pthread-config: use pthread-config program (for GNU Pth library)
|
1702
|
+
|
1703
|
+
case $host_os in
|
1704
|
+
|
1705
|
+
freebsd*)
|
1706
|
+
|
1707
|
+
# -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able)
|
1708
|
+
# lthread: LinuxThreads port on FreeBSD (also preferred to -pthread)
|
1709
|
+
|
1710
|
+
ax_pthread_flags="-kthread lthread $ax_pthread_flags"
|
1711
|
+
;;
|
1712
|
+
|
1713
|
+
hpux*)
|
1714
|
+
|
1715
|
+
# From the cc(1) man page: "[-mt] Sets various -D flags to enable
|
1716
|
+
# multi-threading and also sets -lpthread."
|
1717
|
+
|
1718
|
+
ax_pthread_flags="-mt -pthread pthread $ax_pthread_flags"
|
1719
|
+
;;
|
1720
|
+
|
1721
|
+
openedition*)
|
1722
|
+
|
1723
|
+
# IBM z/OS requires a feature-test macro to be defined in order to
|
1724
|
+
# enable POSIX threads at all, so give the user a hint if this is
|
1725
|
+
# not set. (We don't define these ourselves, as they can affect
|
1726
|
+
# other portions of the system API in unpredictable ways.)
|
1727
|
+
|
1728
|
+
AC_EGREP_CPP([AX_PTHREAD_ZOS_MISSING],
|
1729
|
+
[
|
1730
|
+
# if !defined(_OPEN_THREADS) && !defined(_UNIX03_THREADS)
|
1731
|
+
AX_PTHREAD_ZOS_MISSING
|
1732
|
+
# endif
|
1733
|
+
],
|
1734
|
+
[AC_MSG_WARN([IBM z/OS requires -D_OPEN_THREADS or -D_UNIX03_THREADS to enable pthreads support.])])
|
1735
|
+
;;
|
1736
|
+
|
1737
|
+
solaris*)
|
1738
|
+
|
1739
|
+
# On Solaris (at least, for some versions), libc contains stubbed
|
1740
|
+
# (non-functional) versions of the pthreads routines, so link-based
|
1741
|
+
# tests will erroneously succeed. (N.B.: The stubs are missing
|
1742
|
+
# pthread_cleanup_push, or rather a function called by this macro,
|
1743
|
+
# so we could check for that, but who knows whether they'll stub
|
1744
|
+
# that too in a future libc.) So we'll check first for the
|
1745
|
+
# standard Solaris way of linking pthreads (-mt -lpthread).
|
1746
|
+
|
1747
|
+
ax_pthread_flags="-mt,pthread pthread $ax_pthread_flags"
|
1748
|
+
;;
|
1749
|
+
esac
|
1750
|
+
|
1751
|
+
# GCC generally uses -pthread, or -pthreads on some platforms (e.g. SPARC)
|
1752
|
+
|
1753
|
+
AS_IF([test "x$GCC" = "xyes"],
|
1754
|
+
[ax_pthread_flags="-pthread -pthreads $ax_pthread_flags"])
|
1755
|
+
|
1756
|
+
# The presence of a feature test macro requesting re-entrant function
|
1757
|
+
# definitions is, on some systems, a strong hint that pthreads support is
|
1758
|
+
# correctly enabled
|
1759
|
+
|
1760
|
+
case $host_os in
|
1761
|
+
darwin* | hpux* | linux* | osf* | solaris*)
|
1762
|
+
ax_pthread_check_macro="_REENTRANT"
|
1763
|
+
;;
|
1764
|
+
|
1765
|
+
aix*)
|
1766
|
+
ax_pthread_check_macro="_THREAD_SAFE"
|
1767
|
+
;;
|
1768
|
+
|
1769
|
+
*)
|
1770
|
+
ax_pthread_check_macro="--"
|
1771
|
+
;;
|
1772
|
+
esac
|
1773
|
+
AS_IF([test "x$ax_pthread_check_macro" = "x--"],
|
1774
|
+
[ax_pthread_check_cond=0],
|
1775
|
+
[ax_pthread_check_cond="!defined($ax_pthread_check_macro)"])
|
1776
|
+
|
1777
|
+
# Are we compiling with Clang?
|
1778
|
+
|
1779
|
+
AC_CACHE_CHECK([whether $CC is Clang],
|
1780
|
+
[ax_cv_PTHREAD_CLANG],
|
1781
|
+
[ax_cv_PTHREAD_CLANG=no
|
1782
|
+
# Note that Autoconf sets GCC=yes for Clang as well as GCC
|
1783
|
+
if test "x$GCC" = "xyes"; then
|
1784
|
+
AC_EGREP_CPP([AX_PTHREAD_CC_IS_CLANG],
|
1785
|
+
[/* Note: Clang 2.7 lacks __clang_[a-z]+__ */
|
1786
|
+
# if defined(__clang__) && defined(__llvm__)
|
1787
|
+
AX_PTHREAD_CC_IS_CLANG
|
1788
|
+
# endif
|
1789
|
+
],
|
1790
|
+
[ax_cv_PTHREAD_CLANG=yes])
|
1791
|
+
fi
|
1792
|
+
])
|
1793
|
+
ax_pthread_clang="$ax_cv_PTHREAD_CLANG"
|
1794
|
+
|
1795
|
+
ax_pthread_clang_warning=no
|
1796
|
+
|
1797
|
+
# Clang needs special handling, because older versions handle the -pthread
|
1798
|
+
# option in a rather... idiosyncratic way
|
1799
|
+
|
1800
|
+
if test "x$ax_pthread_clang" = "xyes"; then
|
1801
|
+
|
1802
|
+
# Clang takes -pthread; it has never supported any other flag
|
1803
|
+
|
1804
|
+
# (Note 1: This will need to be revisited if a system that Clang
|
1805
|
+
# supports has POSIX threads in a separate library. This tends not
|
1806
|
+
# to be the way of modern systems, but it's conceivable.)
|
1807
|
+
|
1808
|
+
# (Note 2: On some systems, notably Darwin, -pthread is not needed
|
1809
|
+
# to get POSIX threads support; the API is always present and
|
1810
|
+
# active. We could reasonably leave PTHREAD_CFLAGS empty. But
|
1811
|
+
# -pthread does define _REENTRANT, and while the Darwin headers
|
1812
|
+
# ignore this macro, third-party headers might not.)
|
1813
|
+
|
1814
|
+
PTHREAD_CFLAGS="-pthread"
|
1815
|
+
PTHREAD_LIBS=
|
1816
|
+
|
1817
|
+
ax_pthread_ok=yes
|
1818
|
+
|
1819
|
+
# However, older versions of Clang make a point of warning the user
|
1820
|
+
# that, in an invocation where only linking and no compilation is
|
1821
|
+
# taking place, the -pthread option has no effect ("argument unused
|
1822
|
+
# during compilation"). They expect -pthread to be passed in only
|
1823
|
+
# when source code is being compiled.
|
1824
|
+
#
|
1825
|
+
# Problem is, this is at odds with the way Automake and most other
|
1826
|
+
# C build frameworks function, which is that the same flags used in
|
1827
|
+
# compilation (CFLAGS) are also used in linking. Many systems
|
1828
|
+
# supported by AX_PTHREAD require exactly this for POSIX threads
|
1829
|
+
# support, and in fact it is often not straightforward to specify a
|
1830
|
+
# flag that is used only in the compilation phase and not in
|
1831
|
+
# linking. Such a scenario is extremely rare in practice.
|
1832
|
+
#
|
1833
|
+
# Even though use of the -pthread flag in linking would only print
|
1834
|
+
# a warning, this can be a nuisance for well-run software projects
|
1835
|
+
# that build with -Werror. So if the active version of Clang has
|
1836
|
+
# this misfeature, we search for an option to squash it.
|
1837
|
+
|
1838
|
+
AC_CACHE_CHECK([whether Clang needs flag to prevent "argument unused" warning when linking with -pthread],
|
1839
|
+
[ax_cv_PTHREAD_CLANG_NO_WARN_FLAG],
|
1840
|
+
[ax_cv_PTHREAD_CLANG_NO_WARN_FLAG=unknown
|
1841
|
+
# Create an alternate version of $ac_link that compiles and
|
1842
|
+
# links in two steps (.c -> .o, .o -> exe) instead of one
|
1843
|
+
# (.c -> exe), because the warning occurs only in the second
|
1844
|
+
# step
|
1845
|
+
ax_pthread_save_ac_link="$ac_link"
|
1846
|
+
ax_pthread_sed='s/conftest\.\$ac_ext/conftest.$ac_objext/g'
|
1847
|
+
ax_pthread_link_step=`$as_echo "$ac_link" | sed "$ax_pthread_sed"`
|
1848
|
+
ax_pthread_2step_ac_link="($ac_compile) && (echo ==== >&5) && ($ax_pthread_link_step)"
|
1849
|
+
ax_pthread_save_CFLAGS="$CFLAGS"
|
1850
|
+
for ax_pthread_try in '' -Qunused-arguments -Wno-unused-command-line-argument unknown; do
|
1851
|
+
AS_IF([test "x$ax_pthread_try" = "xunknown"], [break])
|
1852
|
+
CFLAGS="-Werror -Wunknown-warning-option $ax_pthread_try -pthread $ax_pthread_save_CFLAGS"
|
1853
|
+
ac_link="$ax_pthread_save_ac_link"
|
1854
|
+
AC_LINK_IFELSE([AC_LANG_SOURCE([[int main(void){return 0;}]])],
|
1855
|
+
[ac_link="$ax_pthread_2step_ac_link"
|
1856
|
+
AC_LINK_IFELSE([AC_LANG_SOURCE([[int main(void){return 0;}]])],
|
1857
|
+
[break])
|
1858
|
+
])
|
1859
|
+
done
|
1860
|
+
ac_link="$ax_pthread_save_ac_link"
|
1861
|
+
CFLAGS="$ax_pthread_save_CFLAGS"
|
1862
|
+
AS_IF([test "x$ax_pthread_try" = "x"], [ax_pthread_try=no])
|
1863
|
+
ax_cv_PTHREAD_CLANG_NO_WARN_FLAG="$ax_pthread_try"
|
1864
|
+
])
|
1865
|
+
|
1866
|
+
case "$ax_cv_PTHREAD_CLANG_NO_WARN_FLAG" in
|
1867
|
+
no | unknown) ;;
|
1868
|
+
*) PTHREAD_CFLAGS="$ax_cv_PTHREAD_CLANG_NO_WARN_FLAG $PTHREAD_CFLAGS" ;;
|
1869
|
+
esac
|
1870
|
+
|
1871
|
+
fi # $ax_pthread_clang = yes
|
1872
|
+
|
1873
|
+
if test "x$ax_pthread_ok" = "xno"; then
|
1874
|
+
for ax_pthread_try_flag in $ax_pthread_flags; do
|
1875
|
+
|
1876
|
+
case $ax_pthread_try_flag in
|
1877
|
+
none)
|
1878
|
+
AC_MSG_CHECKING([whether pthreads work without any flags])
|
1879
|
+
;;
|
1880
|
+
|
1881
|
+
-mt,pthread)
|
1882
|
+
AC_MSG_CHECKING([whether pthreads work with -mt -lpthread])
|
1883
|
+
PTHREAD_CFLAGS="-mt"
|
1884
|
+
PTHREAD_LIBS="-lpthread"
|
1885
|
+
;;
|
1886
|
+
|
1887
|
+
-*)
|
1888
|
+
AC_MSG_CHECKING([whether pthreads work with $ax_pthread_try_flag])
|
1889
|
+
PTHREAD_CFLAGS="$ax_pthread_try_flag"
|
1890
|
+
;;
|
1891
|
+
|
1892
|
+
pthread-config)
|
1893
|
+
AC_CHECK_PROG([ax_pthread_config], [pthread-config], [yes], [no])
|
1894
|
+
AS_IF([test "x$ax_pthread_config" = "xno"], [continue])
|
1895
|
+
PTHREAD_CFLAGS="`pthread-config --cflags`"
|
1896
|
+
PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`"
|
1897
|
+
;;
|
1898
|
+
|
1899
|
+
*)
|
1900
|
+
AC_MSG_CHECKING([for the pthreads library -l$ax_pthread_try_flag])
|
1901
|
+
PTHREAD_LIBS="-l$ax_pthread_try_flag"
|
1902
|
+
;;
|
1903
|
+
esac
|
1904
|
+
|
1905
|
+
ax_pthread_save_CFLAGS="$CFLAGS"
|
1906
|
+
ax_pthread_save_LIBS="$LIBS"
|
1907
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
1908
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
1909
|
+
|
1910
|
+
# Check for various functions. We must include pthread.h,
|
1911
|
+
# since some functions may be macros. (On the Sequent, we
|
1912
|
+
# need a special flag -Kthread to make this header compile.)
|
1913
|
+
# We check for pthread_join because it is in -lpthread on IRIX
|
1914
|
+
# while pthread_create is in libc. We check for pthread_attr_init
|
1915
|
+
# due to DEC craziness with -lpthreads. We check for
|
1916
|
+
# pthread_cleanup_push because it is one of the few pthread
|
1917
|
+
# functions on Solaris that doesn't have a non-functional libc stub.
|
1918
|
+
# We try pthread_create on general principles.
|
1919
|
+
|
1920
|
+
AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>
|
1921
|
+
# if $ax_pthread_check_cond
|
1922
|
+
# error "$ax_pthread_check_macro must be defined"
|
1923
|
+
# endif
|
1924
|
+
static void routine(void *a) { a = 0; }
|
1925
|
+
static void *start_routine(void *a) { return a; }],
|
1926
|
+
[pthread_t th; pthread_attr_t attr;
|
1927
|
+
pthread_create(&th, 0, start_routine, 0);
|
1928
|
+
pthread_join(th, 0);
|
1929
|
+
pthread_attr_init(&attr);
|
1930
|
+
pthread_cleanup_push(routine, 0);
|
1931
|
+
pthread_cleanup_pop(0) /* ; */])],
|
1932
|
+
[ax_pthread_ok=yes],
|
1933
|
+
[])
|
1934
|
+
|
1935
|
+
CFLAGS="$ax_pthread_save_CFLAGS"
|
1936
|
+
LIBS="$ax_pthread_save_LIBS"
|
1937
|
+
|
1938
|
+
AC_MSG_RESULT([$ax_pthread_ok])
|
1939
|
+
AS_IF([test "x$ax_pthread_ok" = "xyes"], [break])
|
1940
|
+
|
1941
|
+
PTHREAD_LIBS=""
|
1942
|
+
PTHREAD_CFLAGS=""
|
1943
|
+
done
|
1944
|
+
fi
|
1945
|
+
|
1946
|
+
# Various other checks:
|
1947
|
+
if test "x$ax_pthread_ok" = "xyes"; then
|
1948
|
+
ax_pthread_save_CFLAGS="$CFLAGS"
|
1949
|
+
ax_pthread_save_LIBS="$LIBS"
|
1950
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
1951
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
1952
|
+
|
1953
|
+
# Detect AIX lossage: JOINABLE attribute is called UNDETACHED.
|
1954
|
+
AC_CACHE_CHECK([for joinable pthread attribute],
|
1955
|
+
[ax_cv_PTHREAD_JOINABLE_ATTR],
|
1956
|
+
[ax_cv_PTHREAD_JOINABLE_ATTR=unknown
|
1957
|
+
for ax_pthread_attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do
|
1958
|
+
AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <pthread.h>],
|
1959
|
+
[int attr = $ax_pthread_attr; return attr /* ; */])],
|
1960
|
+
[ax_cv_PTHREAD_JOINABLE_ATTR=$ax_pthread_attr; break],
|
1961
|
+
[])
|
1962
|
+
done
|
1963
|
+
])
|
1964
|
+
AS_IF([test "x$ax_cv_PTHREAD_JOINABLE_ATTR" != "xunknown" && \
|
1965
|
+
test "x$ax_cv_PTHREAD_JOINABLE_ATTR" != "xPTHREAD_CREATE_JOINABLE" && \
|
1966
|
+
test "x$ax_pthread_joinable_attr_defined" != "xyes"],
|
1967
|
+
[AC_DEFINE_UNQUOTED([PTHREAD_CREATE_JOINABLE],
|
1968
|
+
[$ax_cv_PTHREAD_JOINABLE_ATTR],
|
1969
|
+
[Define to necessary symbol if this constant
|
1970
|
+
uses a non-standard name on your system.])
|
1971
|
+
ax_pthread_joinable_attr_defined=yes
|
1972
|
+
])
|
1973
|
+
|
1974
|
+
AC_CACHE_CHECK([whether more special flags are required for pthreads],
|
1975
|
+
[ax_cv_PTHREAD_SPECIAL_FLAGS],
|
1976
|
+
[ax_cv_PTHREAD_SPECIAL_FLAGS=no
|
1977
|
+
case $host_os in
|
1978
|
+
solaris*)
|
1979
|
+
ax_cv_PTHREAD_SPECIAL_FLAGS="-D_POSIX_PTHREAD_SEMANTICS"
|
1980
|
+
;;
|
1981
|
+
esac
|
1982
|
+
])
|
1983
|
+
AS_IF([test "x$ax_cv_PTHREAD_SPECIAL_FLAGS" != "xno" && \
|
1984
|
+
test "x$ax_pthread_special_flags_added" != "xyes"],
|
1985
|
+
[PTHREAD_CFLAGS="$ax_cv_PTHREAD_SPECIAL_FLAGS $PTHREAD_CFLAGS"
|
1986
|
+
ax_pthread_special_flags_added=yes])
|
1987
|
+
|
1988
|
+
AC_CACHE_CHECK([for PTHREAD_PRIO_INHERIT],
|
1989
|
+
[ax_cv_PTHREAD_PRIO_INHERIT],
|
1990
|
+
[AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include <pthread.h>]],
|
1991
|
+
[[int i = PTHREAD_PRIO_INHERIT;]])],
|
1992
|
+
[ax_cv_PTHREAD_PRIO_INHERIT=yes],
|
1993
|
+
[ax_cv_PTHREAD_PRIO_INHERIT=no])
|
1994
|
+
])
|
1995
|
+
AS_IF([test "x$ax_cv_PTHREAD_PRIO_INHERIT" = "xyes" && \
|
1996
|
+
test "x$ax_pthread_prio_inherit_defined" != "xyes"],
|
1997
|
+
[AC_DEFINE([HAVE_PTHREAD_PRIO_INHERIT], [1], [Have PTHREAD_PRIO_INHERIT.])
|
1998
|
+
ax_pthread_prio_inherit_defined=yes
|
1999
|
+
])
|
2000
|
+
|
2001
|
+
CFLAGS="$ax_pthread_save_CFLAGS"
|
2002
|
+
LIBS="$ax_pthread_save_LIBS"
|
2003
|
+
|
2004
|
+
# More AIX lossage: compile with *_r variant
|
2005
|
+
if test "x$GCC" != "xyes"; then
|
2006
|
+
case $host_os in
|
2007
|
+
aix*)
|
2008
|
+
AS_CASE(["x/$CC"],
|
2009
|
+
[x*/c89|x*/c89_128|x*/c99|x*/c99_128|x*/cc|x*/cc128|x*/xlc|x*/xlc_v6|x*/xlc128|x*/xlc128_v6],
|
2010
|
+
[#handle absolute path differently from PATH based program lookup
|
2011
|
+
AS_CASE(["x$CC"],
|
2012
|
+
[x/*],
|
2013
|
+
[AS_IF([AS_EXECUTABLE_P([${CC}_r])],[PTHREAD_CC="${CC}_r"])],
|
2014
|
+
[AC_CHECK_PROGS([PTHREAD_CC],[${CC}_r],[$CC])])])
|
2015
|
+
;;
|
2016
|
+
esac
|
2017
|
+
fi
|
2018
|
+
fi
|
2019
|
+
|
2020
|
+
test -n "$PTHREAD_CC" || PTHREAD_CC="$CC"
|
2021
|
+
|
2022
|
+
AC_SUBST([PTHREAD_LIBS])
|
2023
|
+
AC_SUBST([PTHREAD_CFLAGS])
|
2024
|
+
AC_SUBST([PTHREAD_CC])
|
2025
|
+
|
2026
|
+
# Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND:
|
2027
|
+
if test "x$ax_pthread_ok" = "xyes"; then
|
2028
|
+
ifelse([$1],,[AC_DEFINE([HAVE_PTHREAD],[1],[Define if you have POSIX threads libraries and header files.])],[$1])
|
2029
|
+
:
|
2030
|
+
else
|
2031
|
+
ax_pthread_ok=no
|
2032
|
+
$2
|
2033
|
+
fi
|
2034
|
+
AC_LANG_POP
|
2035
|
+
])
|
2036
|
+
m4trace:m4/ax_tls.m4:74: -1- AC_DEFUN([AX_TLS], [
|
2037
|
+
AC_MSG_CHECKING([for thread local storage (TLS) class])
|
2038
|
+
AC_CACHE_VAL([ac_cv_tls],
|
2039
|
+
[for ax_tls_keyword in thread_local _Thread_local __thread '__declspec(thread)' none; do
|
2040
|
+
AS_CASE([$ax_tls_keyword],
|
2041
|
+
[none], [ac_cv_tls=none ; break],
|
2042
|
+
[AC_TRY_COMPILE(
|
2043
|
+
[#include <stdlib.h>
|
2044
|
+
static void
|
2045
|
+
foo(void) {
|
2046
|
+
static ] $ax_tls_keyword [ int bar;
|
2047
|
+
exit(1);
|
2048
|
+
}],
|
2049
|
+
[],
|
2050
|
+
[ac_cv_tls=$ax_tls_keyword ; break],
|
2051
|
+
ac_cv_tls=none
|
2052
|
+
)])
|
2053
|
+
done
|
2054
|
+
])
|
2055
|
+
AC_MSG_RESULT([$ac_cv_tls])
|
2056
|
+
|
2057
|
+
AS_IF([test "$ac_cv_tls" != "none"],
|
2058
|
+
[AC_DEFINE_UNQUOTED([TLS],[$ac_cv_tls],[If the compiler supports a TLS storage class define it to that here])
|
2059
|
+
m4_ifnblank([$1],[$1])],
|
2060
|
+
[m4_ifnblank([$2],[$2])])
|
2061
|
+
])
|
2062
|
+
m4trace:m4/ax_valgrind_check.m4:80: -1- AC_DEFUN([AX_VALGRIND_DFLT], [
|
2063
|
+
m4_define([en_dflt_valgrind_$1], [$2])
|
2064
|
+
])
|
2065
|
+
m4trace:m4/ax_valgrind_check.m4:241: -1- AC_DEFUN([AX_VALGRIND_CHECK], [
|
2066
|
+
dnl Check for --enable-valgrind
|
2067
|
+
AC_ARG_ENABLE([valgrind],
|
2068
|
+
[AS_HELP_STRING([--enable-valgrind], [Whether to enable Valgrind on the unit tests (requires GNU make)])],
|
2069
|
+
[enable_valgrind=$enableval],[enable_valgrind=no])
|
2070
|
+
|
2071
|
+
AS_IF([test "$enable_valgrind" != "no"],[
|
2072
|
+
# Check for Valgrind.
|
2073
|
+
AC_CHECK_PROG([VALGRIND],[valgrind],[valgrind])
|
2074
|
+
AS_IF([test "$VALGRIND" = ""],[
|
2075
|
+
AS_IF([test "$enable_valgrind" = "yes"],[
|
2076
|
+
AC_MSG_ERROR([Could not find valgrind; either install it or reconfigure with --disable-valgrind])
|
2077
|
+
],[
|
2078
|
+
enable_valgrind=no
|
2079
|
+
])
|
2080
|
+
],[
|
2081
|
+
enable_valgrind=yes
|
2082
|
+
])
|
2083
|
+
])
|
2084
|
+
|
2085
|
+
AM_CONDITIONAL([VALGRIND_ENABLED],[test "$enable_valgrind" = "yes"])
|
2086
|
+
AC_SUBST([VALGRIND_ENABLED],[$enable_valgrind])
|
2087
|
+
|
2088
|
+
# Check for Valgrind tools we care about.
|
2089
|
+
[valgrind_enabled_tools=]
|
2090
|
+
m4_foreach([vgtool],[valgrind_tool_list],[
|
2091
|
+
AC_ARG_ENABLE([valgrind-]vgtool,
|
2092
|
+
m4_if(m4_defn([en_dflt_valgrind_]vgtool),[off],dnl
|
2093
|
+
[AS_HELP_STRING([--enable-valgrind-]vgtool, [Whether to use ]vgtool[ during the Valgrind tests])],dnl
|
2094
|
+
[AS_HELP_STRING([--disable-valgrind-]vgtool, [Whether to skip ]vgtool[ during the Valgrind tests])]),
|
2095
|
+
[enable_valgrind_]vgtool[=$enableval],
|
2096
|
+
[enable_valgrind_]vgtool[=])
|
2097
|
+
AS_IF([test "$enable_valgrind" = "no"],[
|
2098
|
+
enable_valgrind_]vgtool[=no],
|
2099
|
+
[test "$enable_valgrind_]vgtool[" ]dnl
|
2100
|
+
m4_if(m4_defn([en_dflt_valgrind_]vgtool), [off], [= "yes"], [!= "no"]),[
|
2101
|
+
AC_CACHE_CHECK([for Valgrind tool ]vgtool,
|
2102
|
+
[ax_cv_valgrind_tool_]vgtool,[
|
2103
|
+
ax_cv_valgrind_tool_]vgtool[=no
|
2104
|
+
m4_set_contains([valgrind_exp_tool_set],vgtool,
|
2105
|
+
[m4_define([vgtoolx],[exp-]vgtool)],
|
2106
|
+
[m4_define([vgtoolx],vgtool)])
|
2107
|
+
AS_IF([`$VALGRIND --tool=]vgtoolx[ --help >/dev/null 2>&1`],[
|
2108
|
+
ax_cv_valgrind_tool_]vgtool[=yes
|
2109
|
+
])
|
2110
|
+
])
|
2111
|
+
AS_IF([test "$ax_cv_valgrind_tool_]vgtool[" = "no"],[
|
2112
|
+
AS_IF([test "$enable_valgrind_]vgtool[" = "yes"],[
|
2113
|
+
AC_MSG_ERROR([Valgrind does not support ]vgtool[; reconfigure with --disable-valgrind-]vgtool)
|
2114
|
+
],[
|
2115
|
+
enable_valgrind_]vgtool[=no
|
2116
|
+
])
|
2117
|
+
],[
|
2118
|
+
enable_valgrind_]vgtool[=yes
|
2119
|
+
])
|
2120
|
+
])
|
2121
|
+
AS_IF([test "$enable_valgrind_]vgtool[" = "yes"],[
|
2122
|
+
valgrind_enabled_tools="$valgrind_enabled_tools ]m4_bpatsubst(vgtool,[^exp-])["
|
2123
|
+
])
|
2124
|
+
AC_SUBST([ENABLE_VALGRIND_]vgtool,[$enable_valgrind_]vgtool)
|
2125
|
+
])
|
2126
|
+
AC_SUBST([valgrind_tools],["]m4_join([ ], valgrind_tool_list)["])
|
2127
|
+
AC_SUBST([valgrind_enabled_tools],[$valgrind_enabled_tools])
|
2128
|
+
|
2129
|
+
[VALGRIND_CHECK_RULES='
|
2130
|
+
# Valgrind check
|
2131
|
+
#
|
2132
|
+
# Optional:
|
2133
|
+
# - VALGRIND_SUPPRESSIONS_FILES: Space-separated list of Valgrind suppressions
|
2134
|
+
# files to load. (Default: empty)
|
2135
|
+
# - VALGRIND_FLAGS: General flags to pass to all Valgrind tools.
|
2136
|
+
# (Default: --num-callers=30)
|
2137
|
+
# - VALGRIND_$toolname_FLAGS: Flags to pass to Valgrind $toolname (one of:
|
2138
|
+
# memcheck, helgrind, drd, sgcheck). (Default: various)
|
2139
|
+
|
2140
|
+
# Optional variables
|
2141
|
+
VALGRIND_SUPPRESSIONS ?= $(addprefix --suppressions=,$(VALGRIND_SUPPRESSIONS_FILES))
|
2142
|
+
VALGRIND_FLAGS ?= --num-callers=30
|
2143
|
+
VALGRIND_memcheck_FLAGS ?= --leak-check=full --show-reachable=no
|
2144
|
+
VALGRIND_helgrind_FLAGS ?= --history-level=approx
|
2145
|
+
VALGRIND_drd_FLAGS ?=
|
2146
|
+
VALGRIND_sgcheck_FLAGS ?=
|
2147
|
+
|
2148
|
+
# Internal use
|
2149
|
+
valgrind_log_files = $(addprefix test-suite-,$(addsuffix .log,$(valgrind_tools)))
|
2150
|
+
|
2151
|
+
valgrind_memcheck_flags = --tool=memcheck $(VALGRIND_memcheck_FLAGS)
|
2152
|
+
valgrind_helgrind_flags = --tool=helgrind $(VALGRIND_helgrind_FLAGS)
|
2153
|
+
valgrind_drd_flags = --tool=drd $(VALGRIND_drd_FLAGS)
|
2154
|
+
valgrind_sgcheck_flags = --tool=exp-sgcheck $(VALGRIND_sgcheck_FLAGS)
|
2155
|
+
|
2156
|
+
valgrind_quiet = $(valgrind_quiet_$(V))
|
2157
|
+
valgrind_quiet_ = $(valgrind_quiet_$(AM_DEFAULT_VERBOSITY))
|
2158
|
+
valgrind_quiet_0 = --quiet
|
2159
|
+
valgrind_v_use = $(valgrind_v_use_$(V))
|
2160
|
+
valgrind_v_use_ = $(valgrind_v_use_$(AM_DEFAULT_VERBOSITY))
|
2161
|
+
valgrind_v_use_0 = @echo " USE " $(patsubst check-valgrind-%,%,$''@):;
|
2162
|
+
|
2163
|
+
# Support running with and without libtool.
|
2164
|
+
ifneq ($(LIBTOOL),)
|
2165
|
+
valgrind_lt = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=execute
|
2166
|
+
else
|
2167
|
+
valgrind_lt =
|
2168
|
+
endif
|
2169
|
+
|
2170
|
+
# Use recursive makes in order to ignore errors during check
|
2171
|
+
check-valgrind:
|
2172
|
+
ifeq ($(VALGRIND_ENABLED),yes)
|
2173
|
+
$(A''M_V_at)$(MAKE) $(AM_MAKEFLAGS) -k \
|
2174
|
+
$(foreach tool, $(valgrind_enabled_tools), check-valgrind-$(tool))
|
2175
|
+
else
|
2176
|
+
@echo "Need to use GNU make and reconfigure with --enable-valgrind"
|
2177
|
+
endif
|
2178
|
+
|
2179
|
+
# Valgrind running
|
2180
|
+
VALGRIND_TESTS_ENVIRONMENT = \
|
2181
|
+
$(TESTS_ENVIRONMENT) \
|
2182
|
+
env VALGRIND=$(VALGRIND) \
|
2183
|
+
G_SLICE=always-malloc,debug-blocks \
|
2184
|
+
G_DEBUG=fatal-warnings,fatal-criticals,gc-friendly
|
2185
|
+
|
2186
|
+
VALGRIND_LOG_COMPILER = \
|
2187
|
+
$(valgrind_lt) \
|
2188
|
+
$(VALGRIND) $(VALGRIND_SUPPRESSIONS) --error-exitcode=1 $(VALGRIND_FLAGS)
|
2189
|
+
|
2190
|
+
define valgrind_tool_rule =
|
2191
|
+
check-valgrind-$(1):
|
2192
|
+
ifeq ($$(VALGRIND_ENABLED)-$$(ENABLE_VALGRIND_$(1)),yes-yes)
|
2193
|
+
$$(valgrind_v_use)$$(MAKE) check-TESTS \
|
2194
|
+
TESTS_ENVIRONMENT="$$(VALGRIND_TESTS_ENVIRONMENT)" \
|
2195
|
+
LOG_COMPILER="$$(VALGRIND_LOG_COMPILER)" \
|
2196
|
+
LOG_FLAGS="$$(valgrind_$(1)_flags)" \
|
2197
|
+
TEST_SUITE_LOG=test-suite-$(1).log
|
2198
|
+
else ifeq ($$(VALGRIND_ENABLED),yes)
|
2199
|
+
@echo "Need to reconfigure with --enable-valgrind-$(1)"
|
2200
|
+
else
|
2201
|
+
@echo "Need to reconfigure with --enable-valgrind"
|
2202
|
+
endif
|
2203
|
+
endef
|
2204
|
+
|
2205
|
+
$(foreach tool,$(valgrind_tools),$(eval $(call valgrind_tool_rule,$(tool))))
|
2206
|
+
|
2207
|
+
A''M_DISTCHECK_CONFIGURE_FLAGS ?=
|
2208
|
+
A''M_DISTCHECK_CONFIGURE_FLAGS += --disable-valgrind
|
2209
|
+
|
2210
|
+
MOSTLYCLEANFILES ?=
|
2211
|
+
MOSTLYCLEANFILES += $(valgrind_log_files)
|
2212
|
+
|
2213
|
+
.PHONY: check-valgrind $(add-prefix check-valgrind-,$(valgrind_tools))
|
2214
|
+
']
|
2215
|
+
|
2216
|
+
AS_IF([test "$enable_valgrind" != "yes"], [
|
2217
|
+
VALGRIND_CHECK_RULES='
|
2218
|
+
check-valgrind:
|
2219
|
+
@echo "Need to use GNU make and reconfigure with --enable-valgrind"'
|
2220
|
+
])
|
2221
|
+
|
2222
|
+
AC_SUBST([VALGRIND_CHECK_RULES])
|
2223
|
+
m4_ifdef([_AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE([VALGRIND_CHECK_RULES])])
|
2224
|
+
])
|
2225
|
+
m4trace:m4/ld-output-def.m4:29: -1- AC_DEFUN([gl_LD_OUTPUT_DEF], [
|
2226
|
+
AC_CACHE_CHECK([if gcc/ld supports -Wl,--output-def],
|
2227
|
+
[gl_cv_ld_output_def],
|
2228
|
+
[if test "$enable_shared" = no; then
|
2229
|
+
gl_cv_ld_output_def="not needed, shared libraries are disabled"
|
2230
|
+
else
|
2231
|
+
gl_ldflags_save=$LDFLAGS
|
2232
|
+
LDFLAGS="-Wl,--output-def,conftest.def"
|
2233
|
+
AC_LINK_IFELSE([AC_LANG_PROGRAM([])],
|
2234
|
+
[gl_cv_ld_output_def=yes],
|
2235
|
+
[gl_cv_ld_output_def=no])
|
2236
|
+
rm -f conftest.def
|
2237
|
+
LDFLAGS="$gl_ldflags_save"
|
2238
|
+
fi])
|
2239
|
+
AM_CONDITIONAL([HAVE_LD_OUTPUT_DEF], test "x$gl_cv_ld_output_def" = "xyes")
|
2240
|
+
])
|
2241
|
+
m4trace:m4/libtool.m4:96: -1- AC_DEFUN([LT_INIT], [AC_PREREQ([2.62])dnl We use AC_PATH_PROGS_FEATURE_CHECK
|
2242
|
+
AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
|
2243
|
+
AC_BEFORE([$0], [LT_LANG])dnl
|
2244
|
+
AC_BEFORE([$0], [LT_OUTPUT])dnl
|
2245
|
+
AC_BEFORE([$0], [LTDL_INIT])dnl
|
2246
|
+
m4_require([_LT_CHECK_BUILDDIR])dnl
|
2247
|
+
|
2248
|
+
dnl Autoconf doesn't catch unexpanded LT_ macros by default:
|
2249
|
+
m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl
|
2250
|
+
m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl
|
2251
|
+
dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4
|
2252
|
+
dnl unless we require an AC_DEFUNed macro:
|
2253
|
+
AC_REQUIRE([LTOPTIONS_VERSION])dnl
|
2254
|
+
AC_REQUIRE([LTSUGAR_VERSION])dnl
|
2255
|
+
AC_REQUIRE([LTVERSION_VERSION])dnl
|
2256
|
+
AC_REQUIRE([LTOBSOLETE_VERSION])dnl
|
2257
|
+
m4_require([_LT_PROG_LTMAIN])dnl
|
2258
|
+
|
2259
|
+
_LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}])
|
2260
|
+
|
2261
|
+
dnl Parse OPTIONS
|
2262
|
+
_LT_SET_OPTIONS([$0], [$1])
|
2263
|
+
|
2264
|
+
# This can be used to rebuild libtool when needed
|
2265
|
+
LIBTOOL_DEPS=$ltmain
|
2266
|
+
|
2267
|
+
# Always use our own libtool.
|
2268
|
+
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
|
2269
|
+
AC_SUBST(LIBTOOL)dnl
|
2270
|
+
|
2271
|
+
_LT_SETUP
|
2272
|
+
|
2273
|
+
# Only expand once:
|
2274
|
+
m4_define([LT_INIT])
|
2275
|
+
])
|
2276
|
+
m4trace:m4/libtool.m4:99: -1- AU_DEFUN([AC_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
2277
|
+
m4trace:m4/libtool.m4:99: -1- AC_DEFUN([AC_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
2278
|
+
You should run autoupdate.])dnl
|
2279
|
+
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
2280
|
+
m4trace:m4/libtool.m4:100: -1- AU_DEFUN([AM_PROG_LIBTOOL], [m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
2281
|
+
m4trace:m4/libtool.m4:100: -1- AC_DEFUN([AM_PROG_LIBTOOL], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LIBTOOL' is obsolete.
|
2282
|
+
You should run autoupdate.])dnl
|
2283
|
+
m4_if($#, 0, [LT_INIT], [LT_INIT($@)])])
|
2284
|
+
m4trace:m4/libtool.m4:704: -1- AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt}
|
2285
|
+
AC_MSG_NOTICE([creating $CONFIG_LT])
|
2286
|
+
_LT_GENERATED_FILE_INIT(["$CONFIG_LT"],
|
2287
|
+
[# Run this file to recreate a libtool stub with the current configuration.])
|
2288
|
+
|
2289
|
+
cat >>"$CONFIG_LT" <<\_LTEOF
|
2290
|
+
lt_cl_silent=false
|
2291
|
+
exec AS_MESSAGE_LOG_FD>>config.log
|
2292
|
+
{
|
2293
|
+
echo
|
2294
|
+
AS_BOX([Running $as_me.])
|
2295
|
+
} >&AS_MESSAGE_LOG_FD
|
2296
|
+
|
2297
|
+
lt_cl_help="\
|
2298
|
+
'$as_me' creates a local libtool stub from the current configuration,
|
2299
|
+
for use in further configure time tests before the real libtool is
|
2300
|
+
generated.
|
2301
|
+
|
2302
|
+
Usage: $[0] [[OPTIONS]]
|
2303
|
+
|
2304
|
+
-h, --help print this help, then exit
|
2305
|
+
-V, --version print version number, then exit
|
2306
|
+
-q, --quiet do not print progress messages
|
2307
|
+
-d, --debug don't remove temporary files
|
2308
|
+
|
2309
|
+
Report bugs to <bug-libtool@gnu.org>."
|
2310
|
+
|
2311
|
+
lt_cl_version="\
|
2312
|
+
m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl
|
2313
|
+
m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION])
|
2314
|
+
configured by $[0], generated by m4_PACKAGE_STRING.
|
2315
|
+
|
2316
|
+
Copyright (C) 2011 Free Software Foundation, Inc.
|
2317
|
+
This config.lt script is free software; the Free Software Foundation
|
2318
|
+
gives unlimited permision to copy, distribute and modify it."
|
2319
|
+
|
2320
|
+
while test 0 != $[#]
|
2321
|
+
do
|
2322
|
+
case $[1] in
|
2323
|
+
--version | --v* | -V )
|
2324
|
+
echo "$lt_cl_version"; exit 0 ;;
|
2325
|
+
--help | --h* | -h )
|
2326
|
+
echo "$lt_cl_help"; exit 0 ;;
|
2327
|
+
--debug | --d* | -d )
|
2328
|
+
debug=: ;;
|
2329
|
+
--quiet | --q* | --silent | --s* | -q )
|
2330
|
+
lt_cl_silent=: ;;
|
2331
|
+
|
2332
|
+
-*) AC_MSG_ERROR([unrecognized option: $[1]
|
2333
|
+
Try '$[0] --help' for more information.]) ;;
|
2334
|
+
|
2335
|
+
*) AC_MSG_ERROR([unrecognized argument: $[1]
|
2336
|
+
Try '$[0] --help' for more information.]) ;;
|
2337
|
+
esac
|
2338
|
+
shift
|
2339
|
+
done
|
2340
|
+
|
2341
|
+
if $lt_cl_silent; then
|
2342
|
+
exec AS_MESSAGE_FD>/dev/null
|
2343
|
+
fi
|
2344
|
+
_LTEOF
|
2345
|
+
|
2346
|
+
cat >>"$CONFIG_LT" <<_LTEOF
|
2347
|
+
_LT_OUTPUT_LIBTOOL_COMMANDS_INIT
|
2348
|
+
_LTEOF
|
2349
|
+
|
2350
|
+
cat >>"$CONFIG_LT" <<\_LTEOF
|
2351
|
+
AC_MSG_NOTICE([creating $ofile])
|
2352
|
+
_LT_OUTPUT_LIBTOOL_COMMANDS
|
2353
|
+
AS_EXIT(0)
|
2354
|
+
_LTEOF
|
2355
|
+
chmod +x "$CONFIG_LT"
|
2356
|
+
|
2357
|
+
# configure is writing to config.log, but config.lt does its own redirection,
|
2358
|
+
# appending to config.log, which fails on DOS, as config.log is still kept
|
2359
|
+
# open by configure. Here we exec the FD to /dev/null, effectively closing
|
2360
|
+
# config.log, so it can be properly (re)opened and appended to by config.lt.
|
2361
|
+
lt_cl_success=:
|
2362
|
+
test yes = "$silent" &&
|
2363
|
+
lt_config_lt_args="$lt_config_lt_args --quiet"
|
2364
|
+
exec AS_MESSAGE_LOG_FD>/dev/null
|
2365
|
+
$SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false
|
2366
|
+
exec AS_MESSAGE_LOG_FD>>config.log
|
2367
|
+
$lt_cl_success || AS_EXIT(1)
|
2368
|
+
])
|
2369
|
+
m4trace:m4/libtool.m4:812: -1- AC_DEFUN([LT_SUPPORTED_TAG], [])
|
2370
|
+
m4trace:m4/libtool.m4:836: -1- AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl
|
2371
|
+
m4_case([$1],
|
2372
|
+
[C], [_LT_LANG(C)],
|
2373
|
+
[C++], [_LT_LANG(CXX)],
|
2374
|
+
[Go], [_LT_LANG(GO)],
|
2375
|
+
[Java], [_LT_LANG(GCJ)],
|
2376
|
+
[Fortran 77], [_LT_LANG(F77)],
|
2377
|
+
[Fortran], [_LT_LANG(FC)],
|
2378
|
+
[Windows Resource], [_LT_LANG(RC)],
|
2379
|
+
[m4_ifdef([_LT_LANG_]$1[_CONFIG],
|
2380
|
+
[_LT_LANG($1)],
|
2381
|
+
[m4_fatal([$0: unsupported language: "$1"])])])dnl
|
2382
|
+
])
|
2383
|
+
m4trace:m4/libtool.m4:915: -1- AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)])
|
2384
|
+
m4trace:m4/libtool.m4:915: -1- AC_DEFUN([AC_LIBTOOL_CXX], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_CXX' is obsolete.
|
2385
|
+
You should run autoupdate.])dnl
|
2386
|
+
LT_LANG(C++)])
|
2387
|
+
m4trace:m4/libtool.m4:916: -1- AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)])
|
2388
|
+
m4trace:m4/libtool.m4:916: -1- AC_DEFUN([AC_LIBTOOL_F77], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_F77' is obsolete.
|
2389
|
+
You should run autoupdate.])dnl
|
2390
|
+
LT_LANG(Fortran 77)])
|
2391
|
+
m4trace:m4/libtool.m4:917: -1- AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)])
|
2392
|
+
m4trace:m4/libtool.m4:917: -1- AC_DEFUN([AC_LIBTOOL_FC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_FC' is obsolete.
|
2393
|
+
You should run autoupdate.])dnl
|
2394
|
+
LT_LANG(Fortran)])
|
2395
|
+
m4trace:m4/libtool.m4:918: -1- AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)])
|
2396
|
+
m4trace:m4/libtool.m4:918: -1- AC_DEFUN([AC_LIBTOOL_GCJ], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_GCJ' is obsolete.
|
2397
|
+
You should run autoupdate.])dnl
|
2398
|
+
LT_LANG(Java)])
|
2399
|
+
m4trace:m4/libtool.m4:919: -1- AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)])
|
2400
|
+
m4trace:m4/libtool.m4:919: -1- AC_DEFUN([AC_LIBTOOL_RC], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_RC' is obsolete.
|
2401
|
+
You should run autoupdate.])dnl
|
2402
|
+
LT_LANG(Windows Resource)])
|
2403
|
+
m4trace:m4/libtool.m4:1277: -1- AC_DEFUN([_LT_WITH_SYSROOT], [AC_MSG_CHECKING([for sysroot])
|
2404
|
+
AC_ARG_WITH([sysroot],
|
2405
|
+
[AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
|
2406
|
+
[Search for dependent libraries within DIR (or the compiler's sysroot
|
2407
|
+
if not specified).])],
|
2408
|
+
[], [with_sysroot=no])
|
2409
|
+
|
2410
|
+
dnl lt_sysroot will always be passed unquoted. We quote it here
|
2411
|
+
dnl in case the user passed a directory name.
|
2412
|
+
lt_sysroot=
|
2413
|
+
case $with_sysroot in #(
|
2414
|
+
yes)
|
2415
|
+
if test yes = "$GCC"; then
|
2416
|
+
lt_sysroot=`$CC --print-sysroot 2>/dev/null`
|
2417
|
+
fi
|
2418
|
+
;; #(
|
2419
|
+
/*)
|
2420
|
+
lt_sysroot=`echo "$with_sysroot" | sed -e "$sed_quote_subst"`
|
2421
|
+
;; #(
|
2422
|
+
no|'')
|
2423
|
+
;; #(
|
2424
|
+
*)
|
2425
|
+
AC_MSG_RESULT([$with_sysroot])
|
2426
|
+
AC_MSG_ERROR([The sysroot must be an absolute path.])
|
2427
|
+
;;
|
2428
|
+
esac
|
2429
|
+
|
2430
|
+
AC_MSG_RESULT([${lt_sysroot:-no}])
|
2431
|
+
_LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl
|
2432
|
+
[dependent libraries, and where our libraries should be installed.])])
|
2433
|
+
m4trace:m4/libtool.m4:1617: -1- AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
2434
|
+
m4_require([_LT_DECL_SED])dnl
|
2435
|
+
AC_CACHE_CHECK([$1], [$2],
|
2436
|
+
[$2=no
|
2437
|
+
m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4])
|
2438
|
+
echo "$lt_simple_compile_test_code" > conftest.$ac_ext
|
2439
|
+
lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment
|
2440
|
+
# Insert the option either (1) after the last *FLAGS variable, or
|
2441
|
+
# (2) before a word containing "conftest.", or (3) at the end.
|
2442
|
+
# Note that $ac_compile itself does not contain backslashes and begins
|
2443
|
+
# with a dollar sign (not a hyphen), so the echo should work correctly.
|
2444
|
+
# The option is referenced via a variable to avoid confusing sed.
|
2445
|
+
lt_compile=`echo "$ac_compile" | $SED \
|
2446
|
+
-e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \
|
2447
|
+
-e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \
|
2448
|
+
-e 's:$: $lt_compiler_flag:'`
|
2449
|
+
(eval echo "\"\$as_me:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD)
|
2450
|
+
(eval "$lt_compile" 2>conftest.err)
|
2451
|
+
ac_status=$?
|
2452
|
+
cat conftest.err >&AS_MESSAGE_LOG_FD
|
2453
|
+
echo "$as_me:$LINENO: \$? = $ac_status" >&AS_MESSAGE_LOG_FD
|
2454
|
+
if (exit $ac_status) && test -s "$ac_outfile"; then
|
2455
|
+
# The compiler can only warn and ignore the option if not recognized
|
2456
|
+
# So say no if there are warnings other than the usual output.
|
2457
|
+
$ECHO "$_lt_compiler_boilerplate" | $SED '/^$/d' >conftest.exp
|
2458
|
+
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
2459
|
+
if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then
|
2460
|
+
$2=yes
|
2461
|
+
fi
|
2462
|
+
fi
|
2463
|
+
$RM conftest*
|
2464
|
+
])
|
2465
|
+
|
2466
|
+
if test yes = "[$]$2"; then
|
2467
|
+
m4_if([$5], , :, [$5])
|
2468
|
+
else
|
2469
|
+
m4_if([$6], , :, [$6])
|
2470
|
+
fi
|
2471
|
+
])
|
2472
|
+
m4trace:m4/libtool.m4:1620: -1- AU_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
2473
|
+
m4trace:m4/libtool.m4:1620: -1- AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_COMPILER_OPTION' is obsolete.
|
2474
|
+
You should run autoupdate.])dnl
|
2475
|
+
m4_if($#, 0, [_LT_COMPILER_OPTION], [_LT_COMPILER_OPTION($@)])])
|
2476
|
+
m4trace:m4/libtool.m4:1661: -1- AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl
|
2477
|
+
m4_require([_LT_DECL_SED])dnl
|
2478
|
+
AC_CACHE_CHECK([$1], [$2],
|
2479
|
+
[$2=no
|
2480
|
+
save_LDFLAGS=$LDFLAGS
|
2481
|
+
LDFLAGS="$LDFLAGS $3"
|
2482
|
+
echo "$lt_simple_link_test_code" > conftest.$ac_ext
|
2483
|
+
if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then
|
2484
|
+
# The linker can only warn and ignore the option if not recognized
|
2485
|
+
# So say no if there are warnings
|
2486
|
+
if test -s conftest.err; then
|
2487
|
+
# Append any errors to the config.log.
|
2488
|
+
cat conftest.err 1>&AS_MESSAGE_LOG_FD
|
2489
|
+
$ECHO "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp
|
2490
|
+
$SED '/^$/d; /^ *+/d' conftest.err >conftest.er2
|
2491
|
+
if diff conftest.exp conftest.er2 >/dev/null; then
|
2492
|
+
$2=yes
|
2493
|
+
fi
|
2494
|
+
else
|
2495
|
+
$2=yes
|
2496
|
+
fi
|
2497
|
+
fi
|
2498
|
+
$RM -r conftest*
|
2499
|
+
LDFLAGS=$save_LDFLAGS
|
2500
|
+
])
|
2501
|
+
|
2502
|
+
if test yes = "[$]$2"; then
|
2503
|
+
m4_if([$4], , :, [$4])
|
2504
|
+
else
|
2505
|
+
m4_if([$5], , :, [$5])
|
2506
|
+
fi
|
2507
|
+
])
|
2508
|
+
m4trace:m4/libtool.m4:1664: -1- AU_DEFUN([AC_LIBTOOL_LINKER_OPTION], [m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
2509
|
+
m4trace:m4/libtool.m4:1664: -1- AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_LINKER_OPTION' is obsolete.
|
2510
|
+
You should run autoupdate.])dnl
|
2511
|
+
m4_if($#, 0, [_LT_LINKER_OPTION], [_LT_LINKER_OPTION($@)])])
|
2512
|
+
m4trace:m4/libtool.m4:1807: -1- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
2513
|
+
# find the maximum length of command line arguments
|
2514
|
+
AC_MSG_CHECKING([the maximum length of command line arguments])
|
2515
|
+
AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl
|
2516
|
+
i=0
|
2517
|
+
teststring=ABCD
|
2518
|
+
|
2519
|
+
case $build_os in
|
2520
|
+
msdosdjgpp*)
|
2521
|
+
# On DJGPP, this test can blow up pretty badly due to problems in libc
|
2522
|
+
# (any single argument exceeding 2000 bytes causes a buffer overrun
|
2523
|
+
# during glob expansion). Even if it were fixed, the result of this
|
2524
|
+
# check would be larger than it should be.
|
2525
|
+
lt_cv_sys_max_cmd_len=12288; # 12K is about right
|
2526
|
+
;;
|
2527
|
+
|
2528
|
+
gnu*)
|
2529
|
+
# Under GNU Hurd, this test is not required because there is
|
2530
|
+
# no limit to the length of command line arguments.
|
2531
|
+
# Libtool will interpret -1 as no limit whatsoever
|
2532
|
+
lt_cv_sys_max_cmd_len=-1;
|
2533
|
+
;;
|
2534
|
+
|
2535
|
+
cygwin* | mingw* | cegcc*)
|
2536
|
+
# On Win9x/ME, this test blows up -- it succeeds, but takes
|
2537
|
+
# about 5 minutes as the teststring grows exponentially.
|
2538
|
+
# Worse, since 9x/ME are not pre-emptively multitasking,
|
2539
|
+
# you end up with a "frozen" computer, even though with patience
|
2540
|
+
# the test eventually succeeds (with a max line length of 256k).
|
2541
|
+
# Instead, let's just punt: use the minimum linelength reported by
|
2542
|
+
# all of the supported platforms: 8192 (on NT/2K/XP).
|
2543
|
+
lt_cv_sys_max_cmd_len=8192;
|
2544
|
+
;;
|
2545
|
+
|
2546
|
+
mint*)
|
2547
|
+
# On MiNT this can take a long time and run out of memory.
|
2548
|
+
lt_cv_sys_max_cmd_len=8192;
|
2549
|
+
;;
|
2550
|
+
|
2551
|
+
amigaos*)
|
2552
|
+
# On AmigaOS with pdksh, this test takes hours, literally.
|
2553
|
+
# So we just punt and use a minimum line length of 8192.
|
2554
|
+
lt_cv_sys_max_cmd_len=8192;
|
2555
|
+
;;
|
2556
|
+
|
2557
|
+
bitrig* | darwin* | dragonfly* | freebsd* | netbsd* | openbsd*)
|
2558
|
+
# This has been around since 386BSD, at least. Likely further.
|
2559
|
+
if test -x /sbin/sysctl; then
|
2560
|
+
lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax`
|
2561
|
+
elif test -x /usr/sbin/sysctl; then
|
2562
|
+
lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax`
|
2563
|
+
else
|
2564
|
+
lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs
|
2565
|
+
fi
|
2566
|
+
# And add a safety zone
|
2567
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
|
2568
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
|
2569
|
+
;;
|
2570
|
+
|
2571
|
+
interix*)
|
2572
|
+
# We know the value 262144 and hardcode it with a safety zone (like BSD)
|
2573
|
+
lt_cv_sys_max_cmd_len=196608
|
2574
|
+
;;
|
2575
|
+
|
2576
|
+
os2*)
|
2577
|
+
# The test takes a long time on OS/2.
|
2578
|
+
lt_cv_sys_max_cmd_len=8192
|
2579
|
+
;;
|
2580
|
+
|
2581
|
+
osf*)
|
2582
|
+
# Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure
|
2583
|
+
# due to this test when exec_disable_arg_limit is 1 on Tru64. It is not
|
2584
|
+
# nice to cause kernel panics so lets avoid the loop below.
|
2585
|
+
# First set a reasonable default.
|
2586
|
+
lt_cv_sys_max_cmd_len=16384
|
2587
|
+
#
|
2588
|
+
if test -x /sbin/sysconfig; then
|
2589
|
+
case `/sbin/sysconfig -q proc exec_disable_arg_limit` in
|
2590
|
+
*1*) lt_cv_sys_max_cmd_len=-1 ;;
|
2591
|
+
esac
|
2592
|
+
fi
|
2593
|
+
;;
|
2594
|
+
sco3.2v5*)
|
2595
|
+
lt_cv_sys_max_cmd_len=102400
|
2596
|
+
;;
|
2597
|
+
sysv5* | sco5v6* | sysv4.2uw2*)
|
2598
|
+
kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null`
|
2599
|
+
if test -n "$kargmax"; then
|
2600
|
+
lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'`
|
2601
|
+
else
|
2602
|
+
lt_cv_sys_max_cmd_len=32768
|
2603
|
+
fi
|
2604
|
+
;;
|
2605
|
+
*)
|
2606
|
+
lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null`
|
2607
|
+
if test -n "$lt_cv_sys_max_cmd_len" && \
|
2608
|
+
test undefined != "$lt_cv_sys_max_cmd_len"; then
|
2609
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4`
|
2610
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3`
|
2611
|
+
else
|
2612
|
+
# Make teststring a little bigger before we do anything with it.
|
2613
|
+
# a 1K string should be a reasonable start.
|
2614
|
+
for i in 1 2 3 4 5 6 7 8; do
|
2615
|
+
teststring=$teststring$teststring
|
2616
|
+
done
|
2617
|
+
SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}}
|
2618
|
+
# If test is not a shell built-in, we'll probably end up computing a
|
2619
|
+
# maximum length that is only half of the actual maximum length, but
|
2620
|
+
# we can't tell.
|
2621
|
+
while { test X`env echo "$teststring$teststring" 2>/dev/null` \
|
2622
|
+
= "X$teststring$teststring"; } >/dev/null 2>&1 &&
|
2623
|
+
test 17 != "$i" # 1/2 MB should be enough
|
2624
|
+
do
|
2625
|
+
i=`expr $i + 1`
|
2626
|
+
teststring=$teststring$teststring
|
2627
|
+
done
|
2628
|
+
# Only check the string length outside the loop.
|
2629
|
+
lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1`
|
2630
|
+
teststring=
|
2631
|
+
# Add a significant safety factor because C++ compilers can tack on
|
2632
|
+
# massive amounts of additional arguments before passing them to the
|
2633
|
+
# linker. It appears as though 1/2 is a usable value.
|
2634
|
+
lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2`
|
2635
|
+
fi
|
2636
|
+
;;
|
2637
|
+
esac
|
2638
|
+
])
|
2639
|
+
if test -n "$lt_cv_sys_max_cmd_len"; then
|
2640
|
+
AC_MSG_RESULT($lt_cv_sys_max_cmd_len)
|
2641
|
+
else
|
2642
|
+
AC_MSG_RESULT(none)
|
2643
|
+
fi
|
2644
|
+
max_cmd_len=$lt_cv_sys_max_cmd_len
|
2645
|
+
_LT_DECL([], [max_cmd_len], [0],
|
2646
|
+
[What is the maximum length of a command?])
|
2647
|
+
])
|
2648
|
+
m4trace:m4/libtool.m4:1810: -1- AU_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
2649
|
+
m4trace:m4/libtool.m4:1810: -1- AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_SYS_MAX_CMD_LEN' is obsolete.
|
2650
|
+
You should run autoupdate.])dnl
|
2651
|
+
m4_if($#, 0, [LT_CMD_MAX_LEN], [LT_CMD_MAX_LEN($@)])])
|
2652
|
+
m4trace:m4/libtool.m4:2043: -1- AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl
|
2653
|
+
if test yes != "$enable_dlopen"; then
|
2654
|
+
enable_dlopen=unknown
|
2655
|
+
enable_dlopen_self=unknown
|
2656
|
+
enable_dlopen_self_static=unknown
|
2657
|
+
else
|
2658
|
+
lt_cv_dlopen=no
|
2659
|
+
lt_cv_dlopen_libs=
|
2660
|
+
|
2661
|
+
case $host_os in
|
2662
|
+
beos*)
|
2663
|
+
lt_cv_dlopen=load_add_on
|
2664
|
+
lt_cv_dlopen_libs=
|
2665
|
+
lt_cv_dlopen_self=yes
|
2666
|
+
;;
|
2667
|
+
|
2668
|
+
mingw* | pw32* | cegcc*)
|
2669
|
+
lt_cv_dlopen=LoadLibrary
|
2670
|
+
lt_cv_dlopen_libs=
|
2671
|
+
;;
|
2672
|
+
|
2673
|
+
cygwin*)
|
2674
|
+
lt_cv_dlopen=dlopen
|
2675
|
+
lt_cv_dlopen_libs=
|
2676
|
+
;;
|
2677
|
+
|
2678
|
+
darwin*)
|
2679
|
+
# if libdl is installed we need to link against it
|
2680
|
+
AC_CHECK_LIB([dl], [dlopen],
|
2681
|
+
[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],[
|
2682
|
+
lt_cv_dlopen=dyld
|
2683
|
+
lt_cv_dlopen_libs=
|
2684
|
+
lt_cv_dlopen_self=yes
|
2685
|
+
])
|
2686
|
+
;;
|
2687
|
+
|
2688
|
+
tpf*)
|
2689
|
+
# Don't try to run any link tests for TPF. We know it's impossible
|
2690
|
+
# because TPF is a cross-compiler, and we know how we open DSOs.
|
2691
|
+
lt_cv_dlopen=dlopen
|
2692
|
+
lt_cv_dlopen_libs=
|
2693
|
+
lt_cv_dlopen_self=no
|
2694
|
+
;;
|
2695
|
+
|
2696
|
+
*)
|
2697
|
+
AC_CHECK_FUNC([shl_load],
|
2698
|
+
[lt_cv_dlopen=shl_load],
|
2699
|
+
[AC_CHECK_LIB([dld], [shl_load],
|
2700
|
+
[lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld],
|
2701
|
+
[AC_CHECK_FUNC([dlopen],
|
2702
|
+
[lt_cv_dlopen=dlopen],
|
2703
|
+
[AC_CHECK_LIB([dl], [dlopen],
|
2704
|
+
[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl],
|
2705
|
+
[AC_CHECK_LIB([svld], [dlopen],
|
2706
|
+
[lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld],
|
2707
|
+
[AC_CHECK_LIB([dld], [dld_link],
|
2708
|
+
[lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld])
|
2709
|
+
])
|
2710
|
+
])
|
2711
|
+
])
|
2712
|
+
])
|
2713
|
+
])
|
2714
|
+
;;
|
2715
|
+
esac
|
2716
|
+
|
2717
|
+
if test no = "$lt_cv_dlopen"; then
|
2718
|
+
enable_dlopen=no
|
2719
|
+
else
|
2720
|
+
enable_dlopen=yes
|
2721
|
+
fi
|
2722
|
+
|
2723
|
+
case $lt_cv_dlopen in
|
2724
|
+
dlopen)
|
2725
|
+
save_CPPFLAGS=$CPPFLAGS
|
2726
|
+
test yes = "$ac_cv_header_dlfcn_h" && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H"
|
2727
|
+
|
2728
|
+
save_LDFLAGS=$LDFLAGS
|
2729
|
+
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\"
|
2730
|
+
|
2731
|
+
save_LIBS=$LIBS
|
2732
|
+
LIBS="$lt_cv_dlopen_libs $LIBS"
|
2733
|
+
|
2734
|
+
AC_CACHE_CHECK([whether a program can dlopen itself],
|
2735
|
+
lt_cv_dlopen_self, [dnl
|
2736
|
+
_LT_TRY_DLOPEN_SELF(
|
2737
|
+
lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes,
|
2738
|
+
lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross)
|
2739
|
+
])
|
2740
|
+
|
2741
|
+
if test yes = "$lt_cv_dlopen_self"; then
|
2742
|
+
wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\"
|
2743
|
+
AC_CACHE_CHECK([whether a statically linked program can dlopen itself],
|
2744
|
+
lt_cv_dlopen_self_static, [dnl
|
2745
|
+
_LT_TRY_DLOPEN_SELF(
|
2746
|
+
lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes,
|
2747
|
+
lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross)
|
2748
|
+
])
|
2749
|
+
fi
|
2750
|
+
|
2751
|
+
CPPFLAGS=$save_CPPFLAGS
|
2752
|
+
LDFLAGS=$save_LDFLAGS
|
2753
|
+
LIBS=$save_LIBS
|
2754
|
+
;;
|
2755
|
+
esac
|
2756
|
+
|
2757
|
+
case $lt_cv_dlopen_self in
|
2758
|
+
yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;;
|
2759
|
+
*) enable_dlopen_self=unknown ;;
|
2760
|
+
esac
|
2761
|
+
|
2762
|
+
case $lt_cv_dlopen_self_static in
|
2763
|
+
yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;;
|
2764
|
+
*) enable_dlopen_self_static=unknown ;;
|
2765
|
+
esac
|
2766
|
+
fi
|
2767
|
+
_LT_DECL([dlopen_support], [enable_dlopen], [0],
|
2768
|
+
[Whether dlopen is supported])
|
2769
|
+
_LT_DECL([dlopen_self], [enable_dlopen_self], [0],
|
2770
|
+
[Whether dlopen of programs is supported])
|
2771
|
+
_LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0],
|
2772
|
+
[Whether dlopen of statically linked programs is supported])
|
2773
|
+
])
|
2774
|
+
m4trace:m4/libtool.m4:2046: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
2775
|
+
m4trace:m4/libtool.m4:2046: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN_SELF' is obsolete.
|
2776
|
+
You should run autoupdate.])dnl
|
2777
|
+
m4_if($#, 0, [LT_SYS_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF($@)])])
|
2778
|
+
m4trace:m4/libtool.m4:3214: -1- AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl
|
2779
|
+
AC_MSG_CHECKING([for $1])
|
2780
|
+
AC_CACHE_VAL(lt_cv_path_MAGIC_CMD,
|
2781
|
+
[case $MAGIC_CMD in
|
2782
|
+
[[\\/*] | ?:[\\/]*])
|
2783
|
+
lt_cv_path_MAGIC_CMD=$MAGIC_CMD # Let the user override the test with a path.
|
2784
|
+
;;
|
2785
|
+
*)
|
2786
|
+
lt_save_MAGIC_CMD=$MAGIC_CMD
|
2787
|
+
lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
|
2788
|
+
dnl $ac_dummy forces splitting on constant user-supplied paths.
|
2789
|
+
dnl POSIX.2 word splitting is done only on the output of word expansions,
|
2790
|
+
dnl not every word. This closes a longstanding sh security hole.
|
2791
|
+
ac_dummy="m4_if([$2], , $PATH, [$2])"
|
2792
|
+
for ac_dir in $ac_dummy; do
|
2793
|
+
IFS=$lt_save_ifs
|
2794
|
+
test -z "$ac_dir" && ac_dir=.
|
2795
|
+
if test -f "$ac_dir/$1"; then
|
2796
|
+
lt_cv_path_MAGIC_CMD=$ac_dir/"$1"
|
2797
|
+
if test -n "$file_magic_test_file"; then
|
2798
|
+
case $deplibs_check_method in
|
2799
|
+
"file_magic "*)
|
2800
|
+
file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"`
|
2801
|
+
MAGIC_CMD=$lt_cv_path_MAGIC_CMD
|
2802
|
+
if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null |
|
2803
|
+
$EGREP "$file_magic_regex" > /dev/null; then
|
2804
|
+
:
|
2805
|
+
else
|
2806
|
+
cat <<_LT_EOF 1>&2
|
2807
|
+
|
2808
|
+
*** Warning: the command libtool uses to detect shared libraries,
|
2809
|
+
*** $file_magic_cmd, produces output that libtool cannot recognize.
|
2810
|
+
*** The result is that libtool may fail to recognize shared libraries
|
2811
|
+
*** as such. This will affect the creation of libtool libraries that
|
2812
|
+
*** depend on shared libraries, but programs linked with such libtool
|
2813
|
+
*** libraries will work regardless of this problem. Nevertheless, you
|
2814
|
+
*** may want to report the problem to your system manager and/or to
|
2815
|
+
*** bug-libtool@gnu.org
|
2816
|
+
|
2817
|
+
_LT_EOF
|
2818
|
+
fi ;;
|
2819
|
+
esac
|
2820
|
+
fi
|
2821
|
+
break
|
2822
|
+
fi
|
2823
|
+
done
|
2824
|
+
IFS=$lt_save_ifs
|
2825
|
+
MAGIC_CMD=$lt_save_MAGIC_CMD
|
2826
|
+
;;
|
2827
|
+
esac])
|
2828
|
+
MAGIC_CMD=$lt_cv_path_MAGIC_CMD
|
2829
|
+
if test -n "$MAGIC_CMD"; then
|
2830
|
+
AC_MSG_RESULT($MAGIC_CMD)
|
2831
|
+
else
|
2832
|
+
AC_MSG_RESULT(no)
|
2833
|
+
fi
|
2834
|
+
_LT_DECL([], [MAGIC_CMD], [0],
|
2835
|
+
[Used to examine libraries when file_magic_cmd begins with "file"])dnl
|
2836
|
+
])
|
2837
|
+
m4trace:m4/libtool.m4:3217: -1- AU_DEFUN([AC_PATH_TOOL_PREFIX], [m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
2838
|
+
m4trace:m4/libtool.m4:3217: -1- AC_DEFUN([AC_PATH_TOOL_PREFIX], [AC_DIAGNOSE([obsolete], [The macro `AC_PATH_TOOL_PREFIX' is obsolete.
|
2839
|
+
You should run autoupdate.])dnl
|
2840
|
+
m4_if($#, 0, [_LT_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX($@)])])
|
2841
|
+
m4trace:m4/libtool.m4:3326: -1- AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl
|
2842
|
+
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
2843
|
+
AC_REQUIRE([AC_CANONICAL_BUILD])dnl
|
2844
|
+
m4_require([_LT_DECL_SED])dnl
|
2845
|
+
m4_require([_LT_DECL_EGREP])dnl
|
2846
|
+
m4_require([_LT_PROG_ECHO_BACKSLASH])dnl
|
2847
|
+
|
2848
|
+
AC_ARG_WITH([gnu-ld],
|
2849
|
+
[AS_HELP_STRING([--with-gnu-ld],
|
2850
|
+
[assume the C compiler uses GNU ld @<:@default=no@:>@])],
|
2851
|
+
[test no = "$withval" || with_gnu_ld=yes],
|
2852
|
+
[with_gnu_ld=no])dnl
|
2853
|
+
|
2854
|
+
ac_prog=ld
|
2855
|
+
if test yes = "$GCC"; then
|
2856
|
+
# Check if gcc -print-prog-name=ld gives a path.
|
2857
|
+
AC_MSG_CHECKING([for ld used by $CC])
|
2858
|
+
case $host in
|
2859
|
+
*-*-mingw*)
|
2860
|
+
# gcc leaves a trailing carriage return, which upsets mingw
|
2861
|
+
ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;;
|
2862
|
+
*)
|
2863
|
+
ac_prog=`($CC -print-prog-name=ld) 2>&5` ;;
|
2864
|
+
esac
|
2865
|
+
case $ac_prog in
|
2866
|
+
# Accept absolute paths.
|
2867
|
+
[[\\/]]* | ?:[[\\/]]*)
|
2868
|
+
re_direlt='/[[^/]][[^/]]*/\.\./'
|
2869
|
+
# Canonicalize the pathname of ld
|
2870
|
+
ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'`
|
2871
|
+
while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do
|
2872
|
+
ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"`
|
2873
|
+
done
|
2874
|
+
test -z "$LD" && LD=$ac_prog
|
2875
|
+
;;
|
2876
|
+
"")
|
2877
|
+
# If it fails, then pretend we aren't using GCC.
|
2878
|
+
ac_prog=ld
|
2879
|
+
;;
|
2880
|
+
*)
|
2881
|
+
# If it is relative, then search for the first ld in PATH.
|
2882
|
+
with_gnu_ld=unknown
|
2883
|
+
;;
|
2884
|
+
esac
|
2885
|
+
elif test yes = "$with_gnu_ld"; then
|
2886
|
+
AC_MSG_CHECKING([for GNU ld])
|
2887
|
+
else
|
2888
|
+
AC_MSG_CHECKING([for non-GNU ld])
|
2889
|
+
fi
|
2890
|
+
AC_CACHE_VAL(lt_cv_path_LD,
|
2891
|
+
[if test -z "$LD"; then
|
2892
|
+
lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
|
2893
|
+
for ac_dir in $PATH; do
|
2894
|
+
IFS=$lt_save_ifs
|
2895
|
+
test -z "$ac_dir" && ac_dir=.
|
2896
|
+
if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then
|
2897
|
+
lt_cv_path_LD=$ac_dir/$ac_prog
|
2898
|
+
# Check to see if the program is GNU ld. I'd rather use --version,
|
2899
|
+
# but apparently some variants of GNU ld only accept -v.
|
2900
|
+
# Break only if it was the GNU/non-GNU ld that we prefer.
|
2901
|
+
case `"$lt_cv_path_LD" -v 2>&1 </dev/null` in
|
2902
|
+
*GNU* | *'with BFD'*)
|
2903
|
+
test no != "$with_gnu_ld" && break
|
2904
|
+
;;
|
2905
|
+
*)
|
2906
|
+
test yes != "$with_gnu_ld" && break
|
2907
|
+
;;
|
2908
|
+
esac
|
2909
|
+
fi
|
2910
|
+
done
|
2911
|
+
IFS=$lt_save_ifs
|
2912
|
+
else
|
2913
|
+
lt_cv_path_LD=$LD # Let the user override the test with a path.
|
2914
|
+
fi])
|
2915
|
+
LD=$lt_cv_path_LD
|
2916
|
+
if test -n "$LD"; then
|
2917
|
+
AC_MSG_RESULT($LD)
|
2918
|
+
else
|
2919
|
+
AC_MSG_RESULT(no)
|
2920
|
+
fi
|
2921
|
+
test -z "$LD" && AC_MSG_ERROR([no acceptable ld found in \$PATH])
|
2922
|
+
_LT_PATH_LD_GNU
|
2923
|
+
AC_SUBST([LD])
|
2924
|
+
|
2925
|
+
_LT_TAGDECL([], [LD], [1], [The linker used to build libraries])
|
2926
|
+
])
|
2927
|
+
m4trace:m4/libtool.m4:3329: -1- AU_DEFUN([AM_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2928
|
+
m4trace:m4/libtool.m4:3329: -1- AC_DEFUN([AM_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_LD' is obsolete.
|
2929
|
+
You should run autoupdate.])dnl
|
2930
|
+
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2931
|
+
m4trace:m4/libtool.m4:3330: -1- AU_DEFUN([AC_PROG_LD], [m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2932
|
+
m4trace:m4/libtool.m4:3330: -1- AC_DEFUN([AC_PROG_LD], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_LD' is obsolete.
|
2933
|
+
You should run autoupdate.])dnl
|
2934
|
+
m4_if($#, 0, [LT_PATH_LD], [LT_PATH_LD($@)])])
|
2935
|
+
m4trace:m4/libtool.m4:3751: -1- AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl
|
2936
|
+
AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM,
|
2937
|
+
[if test -n "$NM"; then
|
2938
|
+
# Let the user override the test.
|
2939
|
+
lt_cv_path_NM=$NM
|
2940
|
+
else
|
2941
|
+
lt_nm_to_check=${ac_tool_prefix}nm
|
2942
|
+
if test -n "$ac_tool_prefix" && test "$build" = "$host"; then
|
2943
|
+
lt_nm_to_check="$lt_nm_to_check nm"
|
2944
|
+
fi
|
2945
|
+
for lt_tmp_nm in $lt_nm_to_check; do
|
2946
|
+
lt_save_ifs=$IFS; IFS=$PATH_SEPARATOR
|
2947
|
+
for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do
|
2948
|
+
IFS=$lt_save_ifs
|
2949
|
+
test -z "$ac_dir" && ac_dir=.
|
2950
|
+
tmp_nm=$ac_dir/$lt_tmp_nm
|
2951
|
+
if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext"; then
|
2952
|
+
# Check to see if the nm accepts a BSD-compat flag.
|
2953
|
+
# Adding the 'sed 1q' prevents false positives on HP-UX, which says:
|
2954
|
+
# nm: unknown option "B" ignored
|
2955
|
+
# Tru64's nm complains that /dev/null is an invalid object file
|
2956
|
+
# MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty
|
2957
|
+
case $build_os in
|
2958
|
+
mingw*) lt_bad_file=conftest.nm/nofile ;;
|
2959
|
+
*) lt_bad_file=/dev/null ;;
|
2960
|
+
esac
|
2961
|
+
case `"$tmp_nm" -B $lt_bad_file 2>&1 | sed '1q'` in
|
2962
|
+
*$lt_bad_file* | *'Invalid file or object type'*)
|
2963
|
+
lt_cv_path_NM="$tmp_nm -B"
|
2964
|
+
break 2
|
2965
|
+
;;
|
2966
|
+
*)
|
2967
|
+
case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in
|
2968
|
+
*/dev/null*)
|
2969
|
+
lt_cv_path_NM="$tmp_nm -p"
|
2970
|
+
break 2
|
2971
|
+
;;
|
2972
|
+
*)
|
2973
|
+
lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but
|
2974
|
+
continue # so that we can try to find one that supports BSD flags
|
2975
|
+
;;
|
2976
|
+
esac
|
2977
|
+
;;
|
2978
|
+
esac
|
2979
|
+
fi
|
2980
|
+
done
|
2981
|
+
IFS=$lt_save_ifs
|
2982
|
+
done
|
2983
|
+
: ${lt_cv_path_NM=no}
|
2984
|
+
fi])
|
2985
|
+
if test no != "$lt_cv_path_NM"; then
|
2986
|
+
NM=$lt_cv_path_NM
|
2987
|
+
else
|
2988
|
+
# Didn't find any BSD compatible name lister, look for dumpbin.
|
2989
|
+
if test -n "$DUMPBIN"; then :
|
2990
|
+
# Let the user override the test.
|
2991
|
+
else
|
2992
|
+
AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :)
|
2993
|
+
case `$DUMPBIN -symbols -headers /dev/null 2>&1 | sed '1q'` in
|
2994
|
+
*COFF*)
|
2995
|
+
DUMPBIN="$DUMPBIN -symbols -headers"
|
2996
|
+
;;
|
2997
|
+
*)
|
2998
|
+
DUMPBIN=:
|
2999
|
+
;;
|
3000
|
+
esac
|
3001
|
+
fi
|
3002
|
+
AC_SUBST([DUMPBIN])
|
3003
|
+
if test : != "$DUMPBIN"; then
|
3004
|
+
NM=$DUMPBIN
|
3005
|
+
fi
|
3006
|
+
fi
|
3007
|
+
test -z "$NM" && NM=nm
|
3008
|
+
AC_SUBST([NM])
|
3009
|
+
_LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl
|
3010
|
+
|
3011
|
+
AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface],
|
3012
|
+
[lt_cv_nm_interface="BSD nm"
|
3013
|
+
echo "int some_variable = 0;" > conftest.$ac_ext
|
3014
|
+
(eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD)
|
3015
|
+
(eval "$ac_compile" 2>conftest.err)
|
3016
|
+
cat conftest.err >&AS_MESSAGE_LOG_FD
|
3017
|
+
(eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD)
|
3018
|
+
(eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out)
|
3019
|
+
cat conftest.err >&AS_MESSAGE_LOG_FD
|
3020
|
+
(eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD)
|
3021
|
+
cat conftest.out >&AS_MESSAGE_LOG_FD
|
3022
|
+
if $GREP 'External.*some_variable' conftest.out > /dev/null; then
|
3023
|
+
lt_cv_nm_interface="MS dumpbin"
|
3024
|
+
fi
|
3025
|
+
rm -f conftest*])
|
3026
|
+
])
|
3027
|
+
m4trace:m4/libtool.m4:3754: -1- AU_DEFUN([AM_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
3028
|
+
m4trace:m4/libtool.m4:3754: -1- AC_DEFUN([AM_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AM_PROG_NM' is obsolete.
|
3029
|
+
You should run autoupdate.])dnl
|
3030
|
+
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
3031
|
+
m4trace:m4/libtool.m4:3755: -1- AU_DEFUN([AC_PROG_NM], [m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
3032
|
+
m4trace:m4/libtool.m4:3755: -1- AC_DEFUN([AC_PROG_NM], [AC_DIAGNOSE([obsolete], [The macro `AC_PROG_NM' is obsolete.
|
3033
|
+
You should run autoupdate.])dnl
|
3034
|
+
m4_if($#, 0, [LT_PATH_NM], [LT_PATH_NM($@)])])
|
3035
|
+
m4trace:m4/libtool.m4:3834: -1- AC_DEFUN([_LT_DLL_DEF_P], [dnl
|
3036
|
+
test DEF = "`$SED -n dnl
|
3037
|
+
-e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace
|
3038
|
+
-e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments
|
3039
|
+
-e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl
|
3040
|
+
-e q dnl Only consider the first "real" line
|
3041
|
+
$1`" dnl
|
3042
|
+
])
|
3043
|
+
m4trace:m4/libtool.m4:3856: -1- AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
3044
|
+
LIBM=
|
3045
|
+
case $host in
|
3046
|
+
*-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-pw32* | *-*-darwin*)
|
3047
|
+
# These system don't have libm, or don't need it
|
3048
|
+
;;
|
3049
|
+
*-ncr-sysv4.3*)
|
3050
|
+
AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM=-lmw)
|
3051
|
+
AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm")
|
3052
|
+
;;
|
3053
|
+
*)
|
3054
|
+
AC_CHECK_LIB(m, cos, LIBM=-lm)
|
3055
|
+
;;
|
3056
|
+
esac
|
3057
|
+
AC_SUBST([LIBM])
|
3058
|
+
])
|
3059
|
+
m4trace:m4/libtool.m4:3859: -1- AU_DEFUN([AC_CHECK_LIBM], [m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
3060
|
+
m4trace:m4/libtool.m4:3859: -1- AC_DEFUN([AC_CHECK_LIBM], [AC_DIAGNOSE([obsolete], [The macro `AC_CHECK_LIBM' is obsolete.
|
3061
|
+
You should run autoupdate.])dnl
|
3062
|
+
m4_if($#, 0, [LT_LIB_M], [LT_LIB_M($@)])])
|
3063
|
+
m4trace:m4/libtool.m4:8128: -1- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ],
|
3064
|
+
[m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ],
|
3065
|
+
[AC_CHECK_TOOL(GCJ, gcj,)
|
3066
|
+
test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2"
|
3067
|
+
AC_SUBST(GCJFLAGS)])])[]dnl
|
3068
|
+
])
|
3069
|
+
m4trace:m4/libtool.m4:8131: -1- AU_DEFUN([LT_AC_PROG_GCJ], [m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
3070
|
+
m4trace:m4/libtool.m4:8131: -1- AC_DEFUN([LT_AC_PROG_GCJ], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_GCJ' is obsolete.
|
3071
|
+
You should run autoupdate.])dnl
|
3072
|
+
m4_if($#, 0, [LT_PROG_GCJ], [LT_PROG_GCJ($@)])])
|
3073
|
+
m4trace:m4/libtool.m4:8140: -1- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,)
|
3074
|
+
])
|
3075
|
+
m4trace:m4/libtool.m4:8147: -1- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,)
|
3076
|
+
])
|
3077
|
+
m4trace:m4/libtool.m4:8150: -1- AU_DEFUN([LT_AC_PROG_RC], [m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
3078
|
+
m4trace:m4/libtool.m4:8150: -1- AC_DEFUN([LT_AC_PROG_RC], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_RC' is obsolete.
|
3079
|
+
You should run autoupdate.])dnl
|
3080
|
+
m4_if($#, 0, [LT_PROG_RC], [LT_PROG_RC($@)])])
|
3081
|
+
m4trace:m4/libtool.m4:8270: -1- AU_DEFUN([LT_AC_PROG_SED], [m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
3082
|
+
m4trace:m4/libtool.m4:8270: -1- AC_DEFUN([LT_AC_PROG_SED], [AC_DIAGNOSE([obsolete], [The macro `LT_AC_PROG_SED' is obsolete.
|
3083
|
+
You should run autoupdate.])dnl
|
3084
|
+
m4_if($#, 0, [AC_PROG_SED], [AC_PROG_SED($@)])])
|
3085
|
+
m4trace:m4/ltoptions.m4:14: -1- AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])])
|
3086
|
+
m4trace:m4/ltoptions.m4:118: -1- AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen])
|
3087
|
+
AC_DIAGNOSE([obsolete],
|
3088
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
3089
|
+
put the 'dlopen' option into LT_INIT's first parameter.])
|
3090
|
+
])
|
3091
|
+
m4trace:m4/ltoptions.m4:118: -1- AC_DEFUN([AC_LIBTOOL_DLOPEN], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_DLOPEN' is obsolete.
|
3092
|
+
You should run autoupdate.])dnl
|
3093
|
+
_LT_SET_OPTION([LT_INIT], [dlopen])
|
3094
|
+
AC_DIAGNOSE([obsolete],
|
3095
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
3096
|
+
put the 'dlopen' option into LT_INIT's first parameter.])
|
3097
|
+
])
|
3098
|
+
m4trace:m4/ltoptions.m4:154: -1- AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
3099
|
+
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
3100
|
+
AC_DIAGNOSE([obsolete],
|
3101
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
3102
|
+
put the 'win32-dll' option into LT_INIT's first parameter.])
|
3103
|
+
])
|
3104
|
+
m4trace:m4/ltoptions.m4:154: -1- AC_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
|
3105
|
+
You should run autoupdate.])dnl
|
3106
|
+
AC_REQUIRE([AC_CANONICAL_HOST])dnl
|
3107
|
+
_LT_SET_OPTION([LT_INIT], [win32-dll])
|
3108
|
+
AC_DIAGNOSE([obsolete],
|
3109
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
3110
|
+
put the 'win32-dll' option into LT_INIT's first parameter.])
|
3111
|
+
])
|
3112
|
+
m4trace:m4/ltoptions.m4:199: -1- AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared])
|
3113
|
+
])
|
3114
|
+
m4trace:m4/ltoptions.m4:203: -1- AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared])
|
3115
|
+
])
|
3116
|
+
m4trace:m4/ltoptions.m4:205: -1- AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)])
|
3117
|
+
m4trace:m4/ltoptions.m4:205: -1- AC_DEFUN([AM_ENABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_SHARED' is obsolete.
|
3118
|
+
You should run autoupdate.])dnl
|
3119
|
+
AC_ENABLE_SHARED($@)])
|
3120
|
+
m4trace:m4/ltoptions.m4:206: -1- AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)])
|
3121
|
+
m4trace:m4/ltoptions.m4:206: -1- AC_DEFUN([AM_DISABLE_SHARED], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_SHARED' is obsolete.
|
3122
|
+
You should run autoupdate.])dnl
|
3123
|
+
AC_DISABLE_SHARED($@)])
|
3124
|
+
m4trace:m4/ltoptions.m4:253: -1- AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static])
|
3125
|
+
])
|
3126
|
+
m4trace:m4/ltoptions.m4:257: -1- AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static])
|
3127
|
+
])
|
3128
|
+
m4trace:m4/ltoptions.m4:259: -1- AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)])
|
3129
|
+
m4trace:m4/ltoptions.m4:259: -1- AC_DEFUN([AM_ENABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_ENABLE_STATIC' is obsolete.
|
3130
|
+
You should run autoupdate.])dnl
|
3131
|
+
AC_ENABLE_STATIC($@)])
|
3132
|
+
m4trace:m4/ltoptions.m4:260: -1- AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)])
|
3133
|
+
m4trace:m4/ltoptions.m4:260: -1- AC_DEFUN([AM_DISABLE_STATIC], [AC_DIAGNOSE([obsolete], [The macro `AM_DISABLE_STATIC' is obsolete.
|
3134
|
+
You should run autoupdate.])dnl
|
3135
|
+
AC_DISABLE_STATIC($@)])
|
3136
|
+
m4trace:m4/ltoptions.m4:310: -1- AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
3137
|
+
AC_DIAGNOSE([obsolete],
|
3138
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
3139
|
+
the 'fast-install' option into LT_INIT's first parameter.])
|
3140
|
+
])
|
3141
|
+
m4trace:m4/ltoptions.m4:310: -1- AC_DEFUN([AC_ENABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_ENABLE_FAST_INSTALL' is obsolete.
|
3142
|
+
You should run autoupdate.])dnl
|
3143
|
+
_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install])
|
3144
|
+
AC_DIAGNOSE([obsolete],
|
3145
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
3146
|
+
the 'fast-install' option into LT_INIT's first parameter.])
|
3147
|
+
])
|
3148
|
+
m4trace:m4/ltoptions.m4:317: -1- AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
3149
|
+
AC_DIAGNOSE([obsolete],
|
3150
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
3151
|
+
the 'disable-fast-install' option into LT_INIT's first parameter.])
|
3152
|
+
])
|
3153
|
+
m4trace:m4/ltoptions.m4:317: -1- AC_DEFUN([AC_DISABLE_FAST_INSTALL], [AC_DIAGNOSE([obsolete], [The macro `AC_DISABLE_FAST_INSTALL' is obsolete.
|
3154
|
+
You should run autoupdate.])dnl
|
3155
|
+
_LT_SET_OPTION([LT_INIT], [disable-fast-install])
|
3156
|
+
AC_DIAGNOSE([obsolete],
|
3157
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you put
|
3158
|
+
the 'disable-fast-install' option into LT_INIT's first parameter.])
|
3159
|
+
])
|
3160
|
+
m4trace:m4/ltoptions.m4:416: -1- AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only])
|
3161
|
+
AC_DIAGNOSE([obsolete],
|
3162
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
3163
|
+
put the 'pic-only' option into LT_INIT's first parameter.])
|
3164
|
+
])
|
3165
|
+
m4trace:m4/ltoptions.m4:416: -1- AC_DEFUN([AC_LIBTOOL_PICMODE], [AC_DIAGNOSE([obsolete], [The macro `AC_LIBTOOL_PICMODE' is obsolete.
|
3166
|
+
You should run autoupdate.])dnl
|
3167
|
+
_LT_SET_OPTION([LT_INIT], [pic-only])
|
3168
|
+
AC_DIAGNOSE([obsolete],
|
3169
|
+
[$0: Remove this warning and the call to _LT_SET_OPTION when you
|
3170
|
+
put the 'pic-only' option into LT_INIT's first parameter.])
|
3171
|
+
])
|
3172
|
+
m4trace:m4/ltsugar.m4:14: -1- AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])])
|
3173
|
+
m4trace:m4/ltversion.m4:23: -1- AC_DEFUN([LTVERSION_VERSION], [macro_version='2.4.6'
|
3174
|
+
macro_revision='2.4.6'
|
3175
|
+
_LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?])
|
3176
|
+
_LT_DECL(, macro_revision, 0)
|
3177
|
+
])
|
3178
|
+
m4trace:m4/lt~obsolete.m4:37: -1- AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])])
|
3179
|
+
m4trace:m4/lt~obsolete.m4:41: -1- AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])
|
3180
|
+
m4trace:m4/lt~obsolete.m4:42: -1- AC_DEFUN([_LT_AC_SHELL_INIT])
|
3181
|
+
m4trace:m4/lt~obsolete.m4:43: -1- AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])
|
3182
|
+
m4trace:m4/lt~obsolete.m4:45: -1- AC_DEFUN([_LT_AC_TAGVAR])
|
3183
|
+
m4trace:m4/lt~obsolete.m4:46: -1- AC_DEFUN([AC_LTDL_ENABLE_INSTALL])
|
3184
|
+
m4trace:m4/lt~obsolete.m4:47: -1- AC_DEFUN([AC_LTDL_PREOPEN])
|
3185
|
+
m4trace:m4/lt~obsolete.m4:48: -1- AC_DEFUN([_LT_AC_SYS_COMPILER])
|
3186
|
+
m4trace:m4/lt~obsolete.m4:49: -1- AC_DEFUN([_LT_AC_LOCK])
|
3187
|
+
m4trace:m4/lt~obsolete.m4:50: -1- AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])
|
3188
|
+
m4trace:m4/lt~obsolete.m4:51: -1- AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])
|
3189
|
+
m4trace:m4/lt~obsolete.m4:52: -1- AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])
|
3190
|
+
m4trace:m4/lt~obsolete.m4:53: -1- AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])
|
3191
|
+
m4trace:m4/lt~obsolete.m4:54: -1- AC_DEFUN([AC_LIBTOOL_OBJDIR])
|
3192
|
+
m4trace:m4/lt~obsolete.m4:55: -1- AC_DEFUN([AC_LTDL_OBJDIR])
|
3193
|
+
m4trace:m4/lt~obsolete.m4:56: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])
|
3194
|
+
m4trace:m4/lt~obsolete.m4:57: -1- AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])
|
3195
|
+
m4trace:m4/lt~obsolete.m4:58: -1- AC_DEFUN([AC_PATH_MAGIC])
|
3196
|
+
m4trace:m4/lt~obsolete.m4:59: -1- AC_DEFUN([AC_PROG_LD_GNU])
|
3197
|
+
m4trace:m4/lt~obsolete.m4:60: -1- AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])
|
3198
|
+
m4trace:m4/lt~obsolete.m4:61: -1- AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])
|
3199
|
+
m4trace:m4/lt~obsolete.m4:62: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])
|
3200
|
+
m4trace:m4/lt~obsolete.m4:63: -1- AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])
|
3201
|
+
m4trace:m4/lt~obsolete.m4:64: -1- AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])
|
3202
|
+
m4trace:m4/lt~obsolete.m4:65: -1- AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])
|
3203
|
+
m4trace:m4/lt~obsolete.m4:66: -1- AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])
|
3204
|
+
m4trace:m4/lt~obsolete.m4:67: -1- AC_DEFUN([LT_AC_PROG_EGREP])
|
3205
|
+
m4trace:m4/lt~obsolete.m4:72: -1- AC_DEFUN([_AC_PROG_LIBTOOL])
|
3206
|
+
m4trace:m4/lt~obsolete.m4:73: -1- AC_DEFUN([AC_LIBTOOL_SETUP])
|
3207
|
+
m4trace:m4/lt~obsolete.m4:74: -1- AC_DEFUN([_LT_AC_CHECK_DLFCN])
|
3208
|
+
m4trace:m4/lt~obsolete.m4:75: -1- AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])
|
3209
|
+
m4trace:m4/lt~obsolete.m4:76: -1- AC_DEFUN([_LT_AC_TAGCONFIG])
|
3210
|
+
m4trace:m4/lt~obsolete.m4:78: -1- AC_DEFUN([_LT_AC_LANG_CXX])
|
3211
|
+
m4trace:m4/lt~obsolete.m4:79: -1- AC_DEFUN([_LT_AC_LANG_F77])
|
3212
|
+
m4trace:m4/lt~obsolete.m4:80: -1- AC_DEFUN([_LT_AC_LANG_GCJ])
|
3213
|
+
m4trace:m4/lt~obsolete.m4:81: -1- AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])
|
3214
|
+
m4trace:m4/lt~obsolete.m4:82: -1- AC_DEFUN([_LT_AC_LANG_C_CONFIG])
|
3215
|
+
m4trace:m4/lt~obsolete.m4:83: -1- AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])
|
3216
|
+
m4trace:m4/lt~obsolete.m4:84: -1- AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])
|
3217
|
+
m4trace:m4/lt~obsolete.m4:85: -1- AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])
|
3218
|
+
m4trace:m4/lt~obsolete.m4:86: -1- AC_DEFUN([_LT_AC_LANG_F77_CONFIG])
|
3219
|
+
m4trace:m4/lt~obsolete.m4:87: -1- AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])
|
3220
|
+
m4trace:m4/lt~obsolete.m4:88: -1- AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])
|
3221
|
+
m4trace:m4/lt~obsolete.m4:89: -1- AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])
|
3222
|
+
m4trace:m4/lt~obsolete.m4:90: -1- AC_DEFUN([_LT_AC_LANG_RC_CONFIG])
|
3223
|
+
m4trace:m4/lt~obsolete.m4:91: -1- AC_DEFUN([AC_LIBTOOL_CONFIG])
|
3224
|
+
m4trace:m4/lt~obsolete.m4:92: -1- AC_DEFUN([_LT_AC_FILE_LTDLL_C])
|
3225
|
+
m4trace:m4/lt~obsolete.m4:94: -1- AC_DEFUN([_LT_AC_PROG_CXXCPP])
|
3226
|
+
m4trace:m4/lt~obsolete.m4:97: -1- AC_DEFUN([_LT_PROG_F77])
|
3227
|
+
m4trace:m4/lt~obsolete.m4:98: -1- AC_DEFUN([_LT_PROG_FC])
|
3228
|
+
m4trace:m4/lt~obsolete.m4:99: -1- AC_DEFUN([_LT_PROG_CXX])
|
3229
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
3230
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([_AC_])
|
3231
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
3232
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^AS_FLAGS$])
|
3233
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?m4_])
|
3234
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^dnl$])
|
3235
|
+
m4trace:configure.ac:5: -1- m4_pattern_forbid([^_?AS_])
|
3236
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^SHELL$])
|
3237
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
3238
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
3239
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
3240
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
3241
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
3242
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
3243
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
|
3244
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^exec_prefix$])
|
3245
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^prefix$])
|
3246
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^program_transform_name$])
|
3247
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^bindir$])
|
3248
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^sbindir$])
|
3249
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^libexecdir$])
|
3250
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^datarootdir$])
|
3251
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^datadir$])
|
3252
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^sysconfdir$])
|
3253
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^sharedstatedir$])
|
3254
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^localstatedir$])
|
3255
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^includedir$])
|
3256
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^oldincludedir$])
|
3257
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^docdir$])
|
3258
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^infodir$])
|
3259
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^htmldir$])
|
3260
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^dvidir$])
|
3261
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^pdfdir$])
|
3262
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^psdir$])
|
3263
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^libdir$])
|
3264
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^localedir$])
|
3265
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^mandir$])
|
3266
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
3267
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
3268
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
3269
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
3270
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
3271
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^PACKAGE_URL$])
|
3272
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^DEFS$])
|
3273
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_C$])
|
3274
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_N$])
|
3275
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^ECHO_T$])
|
3276
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^LIBS$])
|
3277
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^build_alias$])
|
3278
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^host_alias$])
|
3279
|
+
m4trace:configure.ac:5: -1- m4_pattern_allow([^target_alias$])
|
3280
|
+
m4trace:configure.ac:7: -1- AC_CONFIG_MACRO_DIR([m4])
|
3281
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^build$])
|
3282
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^build_cpu$])
|
3283
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^build_vendor$])
|
3284
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^build_os$])
|
3285
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^host$])
|
3286
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^host_cpu$])
|
3287
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^host_vendor$])
|
3288
|
+
m4trace:configure.ac:9: -1- m4_pattern_allow([^host_os$])
|
3289
|
+
m4trace:configure.ac:10: -1- AM_INIT_AUTOMAKE([1.11 dist-bzip2 tar-ustar foreign subdir-objects])
|
3290
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
3291
|
+
m4trace:configure.ac:10: -1- AM_SET_CURRENT_AUTOMAKE_VERSION
|
3292
|
+
m4trace:configure.ac:10: -1- AM_AUTOMAKE_VERSION([1.15.1])
|
3293
|
+
m4trace:configure.ac:10: -1- _AM_AUTOCONF_VERSION([2.69])
|
3294
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
3295
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
3296
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^INSTALL_DATA$])
|
3297
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^am__isrc$])
|
3298
|
+
m4trace:configure.ac:10: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
3299
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^CYGPATH_W$])
|
3300
|
+
m4trace:configure.ac:10: -1- _AM_SET_OPTIONS([1.11 dist-bzip2 tar-ustar foreign subdir-objects])
|
3301
|
+
m4trace:configure.ac:10: -1- _AM_SET_OPTION([1.11])
|
3302
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([1.11])
|
3303
|
+
m4trace:configure.ac:10: -1- _AM_SET_OPTION([dist-bzip2])
|
3304
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([dist-bzip2])
|
3305
|
+
m4trace:configure.ac:10: -1- _AM_SET_OPTION([tar-ustar])
|
3306
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([tar-ustar])
|
3307
|
+
m4trace:configure.ac:10: -1- _AM_SET_OPTION([foreign])
|
3308
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([foreign])
|
3309
|
+
m4trace:configure.ac:10: -1- _AM_SET_OPTION([subdir-objects])
|
3310
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([subdir-objects])
|
3311
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^PACKAGE$])
|
3312
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^VERSION$])
|
3313
|
+
m4trace:configure.ac:10: -1- _AM_IF_OPTION([no-define], [], [AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
|
3314
|
+
AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])])
|
3315
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([no-define])
|
3316
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^PACKAGE$])
|
3317
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^VERSION$])
|
3318
|
+
m4trace:configure.ac:10: -1- AM_SANITY_CHECK
|
3319
|
+
m4trace:configure.ac:10: -1- AM_MISSING_PROG([ACLOCAL], [aclocal-${am__api_version}])
|
3320
|
+
m4trace:configure.ac:10: -1- AM_MISSING_HAS_RUN
|
3321
|
+
m4trace:configure.ac:10: -1- AM_AUX_DIR_EXPAND
|
3322
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^ACLOCAL$])
|
3323
|
+
m4trace:configure.ac:10: -1- AM_MISSING_PROG([AUTOCONF], [autoconf])
|
3324
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AUTOCONF$])
|
3325
|
+
m4trace:configure.ac:10: -1- AM_MISSING_PROG([AUTOMAKE], [automake-${am__api_version}])
|
3326
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AUTOMAKE$])
|
3327
|
+
m4trace:configure.ac:10: -1- AM_MISSING_PROG([AUTOHEADER], [autoheader])
|
3328
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AUTOHEADER$])
|
3329
|
+
m4trace:configure.ac:10: -1- AM_MISSING_PROG([MAKEINFO], [makeinfo])
|
3330
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^MAKEINFO$])
|
3331
|
+
m4trace:configure.ac:10: -1- AM_PROG_INSTALL_SH
|
3332
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^install_sh$])
|
3333
|
+
m4trace:configure.ac:10: -1- AM_PROG_INSTALL_STRIP
|
3334
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^STRIP$])
|
3335
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
|
3336
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^MKDIR_P$])
|
3337
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^mkdir_p$])
|
3338
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AWK$])
|
3339
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^SET_MAKE$])
|
3340
|
+
m4trace:configure.ac:10: -1- AM_SET_LEADING_DOT
|
3341
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^am__leading_dot$])
|
3342
|
+
m4trace:configure.ac:10: -1- _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])],
|
3343
|
+
[_AM_PROG_TAR([v7])])])
|
3344
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([tar-ustar])
|
3345
|
+
m4trace:configure.ac:10: -1- _AM_PROG_TAR([ustar])
|
3346
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AMTAR$])
|
3347
|
+
m4trace:configure.ac:10: -1- AM_RUN_LOG([$_am_tar --version])
|
3348
|
+
m4trace:configure.ac:10: -1- AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar])
|
3349
|
+
m4trace:configure.ac:10: -1- AM_RUN_LOG([$am__untar <conftest.tar])
|
3350
|
+
m4trace:configure.ac:10: -1- AM_RUN_LOG([cat conftest.dir/file])
|
3351
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^am__tar$])
|
3352
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^am__untar$])
|
3353
|
+
m4trace:configure.ac:10: -1- _AM_IF_OPTION([no-dependencies], [], [AC_PROVIDE_IFELSE([AC_PROG_CC],
|
3354
|
+
[_AM_DEPENDENCIES([CC])],
|
3355
|
+
[m4_define([AC_PROG_CC],
|
3356
|
+
m4_defn([AC_PROG_CC])[_AM_DEPENDENCIES([CC])])])dnl
|
3357
|
+
AC_PROVIDE_IFELSE([AC_PROG_CXX],
|
3358
|
+
[_AM_DEPENDENCIES([CXX])],
|
3359
|
+
[m4_define([AC_PROG_CXX],
|
3360
|
+
m4_defn([AC_PROG_CXX])[_AM_DEPENDENCIES([CXX])])])dnl
|
3361
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJC],
|
3362
|
+
[_AM_DEPENDENCIES([OBJC])],
|
3363
|
+
[m4_define([AC_PROG_OBJC],
|
3364
|
+
m4_defn([AC_PROG_OBJC])[_AM_DEPENDENCIES([OBJC])])])dnl
|
3365
|
+
AC_PROVIDE_IFELSE([AC_PROG_OBJCXX],
|
3366
|
+
[_AM_DEPENDENCIES([OBJCXX])],
|
3367
|
+
[m4_define([AC_PROG_OBJCXX],
|
3368
|
+
m4_defn([AC_PROG_OBJCXX])[_AM_DEPENDENCIES([OBJCXX])])])dnl
|
3369
|
+
])
|
3370
|
+
m4trace:configure.ac:10: -2- _AM_MANGLE_OPTION([no-dependencies])
|
3371
|
+
m4trace:configure.ac:10: -1- AM_SILENT_RULES
|
3372
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AM_V$])
|
3373
|
+
m4trace:configure.ac:10: -1- AM_SUBST_NOTMAKE([AM_V])
|
3374
|
+
m4trace:configure.ac:10: -1- _AM_SUBST_NOTMAKE([AM_V])
|
3375
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
3376
|
+
m4trace:configure.ac:10: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
3377
|
+
m4trace:configure.ac:10: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
3378
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
3379
|
+
m4trace:configure.ac:10: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
3380
|
+
m4trace:configure.ac:10: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
3381
|
+
m4trace:configure.ac:11: -1- AM_SILENT_RULES([yes])
|
3382
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^AM_V$])
|
3383
|
+
m4trace:configure.ac:11: -1- AM_SUBST_NOTMAKE([AM_V])
|
3384
|
+
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([AM_V])
|
3385
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
3386
|
+
m4trace:configure.ac:11: -1- AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
3387
|
+
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
3388
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
3389
|
+
m4trace:configure.ac:11: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
3390
|
+
m4trace:configure.ac:11: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
3391
|
+
m4trace:configure.ac:12: -1- AM_MAINTAINER_MODE
|
3392
|
+
m4trace:configure.ac:12: -1- AM_CONDITIONAL([MAINTAINER_MODE], [test $USE_MAINTAINER_MODE = yes])
|
3393
|
+
m4trace:configure.ac:12: -1- m4_pattern_allow([^MAINTAINER_MODE_TRUE$])
|
3394
|
+
m4trace:configure.ac:12: -1- m4_pattern_allow([^MAINTAINER_MODE_FALSE$])
|
3395
|
+
m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_TRUE])
|
3396
|
+
m4trace:configure.ac:12: -1- _AM_SUBST_NOTMAKE([MAINTAINER_MODE_FALSE])
|
3397
|
+
m4trace:configure.ac:12: -1- m4_pattern_allow([^MAINT$])
|
3398
|
+
m4trace:configure.ac:13: -1- AM_DEP_TRACK
|
3399
|
+
m4trace:configure.ac:13: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
3400
|
+
m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_TRUE$])
|
3401
|
+
m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEP_FALSE$])
|
3402
|
+
m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
|
3403
|
+
m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
|
3404
|
+
m4trace:configure.ac:13: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
|
3405
|
+
m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
|
3406
|
+
m4trace:configure.ac:13: -1- m4_pattern_allow([^am__nodep$])
|
3407
|
+
m4trace:configure.ac:13: -1- _AM_SUBST_NOTMAKE([am__nodep])
|
3408
|
+
m4trace:configure.ac:15: -1- m4_pattern_allow([^VERSION$])
|
3409
|
+
m4trace:configure.ac:17: -1- m4_pattern_allow([^ISODATE$])
|
3410
|
+
m4trace:configure.ac:34: -1- m4_pattern_allow([^SODIUM_LIBRARY_VERSION_MAJOR$])
|
3411
|
+
m4trace:configure.ac:35: -1- m4_pattern_allow([^SODIUM_LIBRARY_VERSION_MINOR$])
|
3412
|
+
m4trace:configure.ac:36: -1- m4_pattern_allow([^SODIUM_LIBRARY_VERSION$])
|
3413
|
+
m4trace:configure.ac:37: -1- m4_pattern_allow([^DLL_VERSION$])
|
3414
|
+
m4trace:configure.ac:85: -1- AX_CHECK_COMPILE_FLAG([-s ASSERTIONS=0], [
|
3415
|
+
enable_asm="no"
|
3416
|
+
AC_MSG_WARN([compiling to JavaScript - asm implementations disabled])
|
3417
|
+
], [
|
3418
|
+
AC_MSG_WARN([EMSCRIPTEN environment variable defined, but emcc doesn't appear to be used - Assuming compilation to native code])
|
3419
|
+
CFLAGS="$CFLAGS -U__EMSCRIPTEN__"
|
3420
|
+
unset EMSCRIPTEN
|
3421
|
+
])
|
3422
|
+
m4trace:configure.ac:85: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3423
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3424
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3425
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3426
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3427
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3428
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3429
|
+
configure.ac:85: the top level])
|
3430
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CC$])
|
3431
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CFLAGS$])
|
3432
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^LDFLAGS$])
|
3433
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^LIBS$])
|
3434
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CPPFLAGS$])
|
3435
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CC$])
|
3436
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CC$])
|
3437
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CC$])
|
3438
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CC$])
|
3439
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^ac_ct_CC$])
|
3440
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^EXEEXT$])
|
3441
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^OBJEXT$])
|
3442
|
+
m4trace:configure.ac:85: -1- _AM_PROG_CC_C_O
|
3443
|
+
m4trace:configure.ac:85: -1- AM_RUN_LOG([$CC -c conftest.$ac_ext -o conftest2.$ac_objext])
|
3444
|
+
m4trace:configure.ac:85: -1- _AM_DEPENDENCIES([CC])
|
3445
|
+
m4trace:configure.ac:85: -1- AM_SET_DEPDIR
|
3446
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^DEPDIR$])
|
3447
|
+
m4trace:configure.ac:85: -1- AM_OUTPUT_DEPENDENCY_COMMANDS
|
3448
|
+
m4trace:configure.ac:85: -1- AM_MAKE_INCLUDE
|
3449
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^am__include$])
|
3450
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^am__quote$])
|
3451
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^CCDEPMODE$])
|
3452
|
+
m4trace:configure.ac:85: -1- AM_CONDITIONAL([am__fastdepCC], [
|
3453
|
+
test "x$enable_dependency_tracking" != xno \
|
3454
|
+
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
|
3455
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
|
3456
|
+
m4trace:configure.ac:85: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
|
3457
|
+
m4trace:configure.ac:85: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
|
3458
|
+
m4trace:configure.ac:85: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
|
3459
|
+
m4trace:configure.ac:103: -1- m4_pattern_allow([^USE_BLOCKING_RANDOM$])
|
3460
|
+
m4trace:configure.ac:119: -1- m4_pattern_allow([^MINIMAL$])
|
3461
|
+
m4trace:configure.ac:120: -1- AM_CONDITIONAL([MINIMAL], [test x$enable_minimal = xyes])
|
3462
|
+
m4trace:configure.ac:120: -1- m4_pattern_allow([^MINIMAL_TRUE$])
|
3463
|
+
m4trace:configure.ac:120: -1- m4_pattern_allow([^MINIMAL_FALSE$])
|
3464
|
+
m4trace:configure.ac:120: -1- _AM_SUBST_NOTMAKE([MINIMAL_TRUE])
|
3465
|
+
m4trace:configure.ac:120: -1- _AM_SUBST_NOTMAKE([MINIMAL_FALSE])
|
3466
|
+
m4trace:configure.ac:121: -1- m4_pattern_allow([^SODIUM_LIBRARY_MINIMAL_DEF$])
|
3467
|
+
m4trace:configure.ac:124: -2- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
|
3468
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from...
|
3469
|
+
configure.ac:124: the top level])
|
3470
|
+
m4trace:configure.ac:134: -1- AX_PTHREAD([
|
3471
|
+
AC_DEFINE([HAVE_PTHREAD], [1], [Define if you have POSIX threads libraries and header files])
|
3472
|
+
with_threads="yes"
|
3473
|
+
LIBS="$PTHREAD_LIBS $LIBS"
|
3474
|
+
CFLAGS="$CFLAGS $PTHREAD_CFLAGS"
|
3475
|
+
CC="$PTHREAD_CC"])
|
3476
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^SED$])
|
3477
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^CPP$])
|
3478
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^CPPFLAGS$])
|
3479
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^CPP$])
|
3480
|
+
m4trace:configure.ac:134: -1- AC_PROG_EGREP
|
3481
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^GREP$])
|
3482
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^EGREP$])
|
3483
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^ax_pthread_config$])
|
3484
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^PTHREAD_CREATE_JOINABLE$])
|
3485
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^HAVE_PTHREAD_PRIO_INHERIT$])
|
3486
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^PTHREAD_CC$])
|
3487
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^PTHREAD_LIBS$])
|
3488
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^PTHREAD_CFLAGS$])
|
3489
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^PTHREAD_CC$])
|
3490
|
+
m4trace:configure.ac:134: -1- m4_pattern_allow([^HAVE_PTHREAD$])
|
3491
|
+
m4trace:configure.ac:145: -1- m4_pattern_allow([^SAFECODE_HOME$])
|
3492
|
+
m4trace:configure.ac:152: -1- m4_pattern_allow([^HAVE_LIBCTGRIND$])
|
3493
|
+
m4trace:configure.ac:182: -1- AX_CHECK_COMPILE_FLAG([-Ofast], [CFLAGS="$CFLAGS -Ofast"])
|
3494
|
+
m4trace:configure.ac:182: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3495
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3496
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3497
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3498
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3499
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3500
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3501
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3502
|
+
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
|
3503
|
+
configure.ac:182: the top level])
|
3504
|
+
m4trace:configure.ac:182: -1- AX_CHECK_COMPILE_FLAG([-fomit-frame-pointer], [CFLAGS="$CFLAGS -fomit-frame-pointer"])
|
3505
|
+
m4trace:configure.ac:182: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3506
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3507
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3508
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3509
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3510
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3511
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3512
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3513
|
+
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
|
3514
|
+
configure.ac:182: the top level])
|
3515
|
+
m4trace:configure.ac:182: -1- AX_CHECK_COMPILE_FLAG([-march=native], [CFLAGS="$CFLAGS -march=native"])
|
3516
|
+
m4trace:configure.ac:182: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3517
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3518
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3519
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3520
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3521
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3522
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3523
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3524
|
+
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
|
3525
|
+
configure.ac:182: the top level])
|
3526
|
+
m4trace:configure.ac:184: -1- m4_pattern_allow([^MAINT$])
|
3527
|
+
m4trace:configure.ac:186: -1- AX_VALGRIND_CHECK
|
3528
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^VALGRIND$])
|
3529
|
+
m4trace:configure.ac:186: -1- AM_CONDITIONAL([VALGRIND_ENABLED], [test "$enable_valgrind" = "yes"])
|
3530
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^VALGRIND_ENABLED_TRUE$])
|
3531
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^VALGRIND_ENABLED_FALSE$])
|
3532
|
+
m4trace:configure.ac:186: -1- _AM_SUBST_NOTMAKE([VALGRIND_ENABLED_TRUE])
|
3533
|
+
m4trace:configure.ac:186: -1- _AM_SUBST_NOTMAKE([VALGRIND_ENABLED_FALSE])
|
3534
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^VALGRIND_ENABLED$])
|
3535
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^ENABLE_VALGRIND_memcheck$])
|
3536
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^ENABLE_VALGRIND_helgrind$])
|
3537
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^ENABLE_VALGRIND_drd$])
|
3538
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^ENABLE_VALGRIND_sgcheck$])
|
3539
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^valgrind_tools$])
|
3540
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^valgrind_enabled_tools$])
|
3541
|
+
m4trace:configure.ac:186: -1- m4_pattern_allow([^VALGRIND_CHECK_RULES$])
|
3542
|
+
m4trace:configure.ac:186: -1- _AM_SUBST_NOTMAKE([VALGRIND_CHECK_RULES])
|
3543
|
+
m4trace:configure.ac:191: -1- AM_PROG_AS
|
3544
|
+
m4trace:configure.ac:191: -1- m4_pattern_allow([^CCAS$])
|
3545
|
+
m4trace:configure.ac:191: -1- m4_pattern_allow([^CCASFLAGS$])
|
3546
|
+
m4trace:configure.ac:191: -1- _AM_IF_OPTION([no-dependencies], [], [_AM_DEPENDENCIES([CCAS])])
|
3547
|
+
m4trace:configure.ac:191: -2- _AM_MANGLE_OPTION([no-dependencies])
|
3548
|
+
m4trace:configure.ac:191: -1- _AM_DEPENDENCIES([CCAS])
|
3549
|
+
m4trace:configure.ac:191: -1- m4_pattern_allow([^CCASDEPMODE$])
|
3550
|
+
m4trace:configure.ac:191: -1- AM_CONDITIONAL([am__fastdepCCAS], [
|
3551
|
+
test "x$enable_dependency_tracking" != xno \
|
3552
|
+
&& test "$am_cv_CCAS_dependencies_compiler_type" = gcc3])
|
3553
|
+
m4trace:configure.ac:191: -1- m4_pattern_allow([^am__fastdepCCAS_TRUE$])
|
3554
|
+
m4trace:configure.ac:191: -1- m4_pattern_allow([^am__fastdepCCAS_FALSE$])
|
3555
|
+
m4trace:configure.ac:191: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_TRUE])
|
3556
|
+
m4trace:configure.ac:191: -1- _AM_SUBST_NOTMAKE([am__fastdepCCAS_FALSE])
|
3557
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^STDC_HEADERS$])
|
3558
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_POSIX_SOURCE$])
|
3559
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_POSIX_1_SOURCE$])
|
3560
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_MINIX$])
|
3561
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^__EXTENSIONS__$])
|
3562
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_ALL_SOURCE$])
|
3563
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_GNU_SOURCE$])
|
3564
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$])
|
3565
|
+
m4trace:configure.ac:192: -1- m4_pattern_allow([^_TANDEM_SOURCE$])
|
3566
|
+
m4trace:configure.ac:193: -1- m4_pattern_allow([^HAVE_C_VARARRAYS$])
|
3567
|
+
m4trace:configure.ac:195: -1- AC_CHECK_DEFINE([__native_client__], [NATIVECLIENT="yes"], [])
|
3568
|
+
m4trace:configure.ac:200: -1- AC_CHECK_DEFINE([_FORTIFY_SOURCE], [], [
|
3569
|
+
AX_CHECK_COMPILE_FLAG([-D_FORTIFY_SOURCE=2],
|
3570
|
+
[CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"])
|
3571
|
+
])
|
3572
|
+
m4trace:configure.ac:200: -1- AX_CHECK_COMPILE_FLAG([-D_FORTIFY_SOURCE=2], [CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"])
|
3573
|
+
m4trace:configure.ac:200: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3574
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3575
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3576
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3577
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3578
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3579
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3580
|
+
m4/ax_check_define.m4:62: AC_CHECK_DEFINE is expanded from...
|
3581
|
+
configure.ac:200: the top level])
|
3582
|
+
m4trace:configure.ac:203: -1- AX_CHECK_COMPILE_FLAG([-fvisibility=hidden], [CFLAGS="$CFLAGS -fvisibility=hidden"])
|
3583
|
+
m4trace:configure.ac:203: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3584
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3585
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3586
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3587
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3588
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3589
|
+
configure.ac:203: the top level])
|
3590
|
+
m4trace:configure.ac:207: -1- AX_CHECK_COMPILE_FLAG([-fPIC], [CFLAGS="$CFLAGS -fPIC"])
|
3591
|
+
m4trace:configure.ac:207: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3592
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3593
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3594
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3595
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3596
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3597
|
+
../../lib/m4sugar/m4sh.m4:553: AS_CASE is expanded from...
|
3598
|
+
configure.ac:207: the top level])
|
3599
|
+
m4trace:configure.ac:216: -1- AX_CHECK_COMPILE_FLAG([-fPIE], [
|
3600
|
+
AX_CHECK_LINK_FLAG([-pie], [
|
3601
|
+
[CFLAGS="$CFLAGS -fPIE"
|
3602
|
+
LDFLAGS="$LDFLAGS -pie"]
|
3603
|
+
])
|
3604
|
+
])
|
3605
|
+
m4trace:configure.ac:216: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3606
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3607
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3608
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3609
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3610
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3611
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3612
|
+
configure.ac:216: the top level])
|
3613
|
+
m4trace:configure.ac:216: -1- AX_CHECK_LINK_FLAG([-pie], [
|
3614
|
+
[CFLAGS="$CFLAGS -fPIE"
|
3615
|
+
LDFLAGS="$LDFLAGS -pie"]
|
3616
|
+
])
|
3617
|
+
m4trace:configure.ac:218: -1- AX_CHECK_COMPILE_FLAG([-fno-strict-aliasing], [CFLAGS="$CFLAGS -fno-strict-aliasing"])
|
3618
|
+
m4trace:configure.ac:218: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3619
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3620
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3621
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3622
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3623
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3624
|
+
configure.ac:218: the top level])
|
3625
|
+
m4trace:configure.ac:221: -1- AX_CHECK_COMPILE_FLAG([-fno-strict-overflow], [CFLAGS="$CFLAGS -fno-strict-overflow"], [
|
3626
|
+
AX_CHECK_COMPILE_FLAG([-fwrapv], [CFLAGS="$CFLAGS -fwrapv"])
|
3627
|
+
])
|
3628
|
+
m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3629
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3630
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3631
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3632
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3633
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3634
|
+
configure.ac:221: the top level])
|
3635
|
+
m4trace:configure.ac:221: -1- AX_CHECK_COMPILE_FLAG([-fwrapv], [CFLAGS="$CFLAGS -fwrapv"])
|
3636
|
+
m4trace:configure.ac:221: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3637
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3638
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3639
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3640
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3641
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3642
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3643
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3644
|
+
configure.ac:221: the top level])
|
3645
|
+
m4trace:configure.ac:237: -1- AX_CHECK_COMPILE_FLAG([-flax-vector-conversions], [CFLAGS="$CFLAGS -flax-vector-conversions"])
|
3646
|
+
m4trace:configure.ac:237: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3647
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3648
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3649
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3650
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3651
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3652
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3653
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
3654
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
3655
|
+
../../lib/m4sugar/m4sh.m4:553: AS_CASE is expanded from...
|
3656
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3657
|
+
configure.ac:237: the top level])
|
3658
|
+
m4trace:configure.ac:248: -1- _m4_warn([obsolete], [The macro `AC_HELP_STRING' is obsolete.
|
3659
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:207: AC_HELP_STRING is expanded from...
|
3660
|
+
../../lib/autoconf/general.m4:1472: AC_ARG_ENABLE is expanded from...
|
3661
|
+
configure.ac:248: the top level])
|
3662
|
+
m4trace:configure.ac:255: -1- AX_CHECK_LINK_FLAG([-Wl,--dynamicbase], [LDFLAGS="$LDFLAGS -Wl,--dynamicbase"])
|
3663
|
+
m4trace:configure.ac:255: -1- AX_CHECK_LINK_FLAG([-Wl,--high-entropy-va], [LDFLAGS="$LDFLAGS -Wl,--high-entropy-va"])
|
3664
|
+
m4trace:configure.ac:255: -1- AX_CHECK_LINK_FLAG([-Wl,--nxcompat], [LDFLAGS="$LDFLAGS -Wl,--nxcompat"])
|
3665
|
+
m4trace:configure.ac:262: -1- AX_CHECK_COMPILE_FLAG([-fno-asynchronous-unwind-tables], [
|
3666
|
+
[CFLAGS="$CFLAGS -fno-asynchronous-unwind-tables"]
|
3667
|
+
])
|
3668
|
+
m4trace:configure.ac:262: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3669
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3670
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3671
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3672
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3673
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3674
|
+
../../lib/m4sugar/m4sh.m4:553: AS_CASE is expanded from...
|
3675
|
+
configure.ac:262: the top level])
|
3676
|
+
m4trace:configure.ac:275: -1- AX_CHECK_COMPILE_FLAG([-fstack-protector], [
|
3677
|
+
AX_CHECK_LINK_FLAG([-fstack-protector],
|
3678
|
+
[CFLAGS="$CFLAGS -fstack-protector"]
|
3679
|
+
)
|
3680
|
+
])
|
3681
|
+
m4trace:configure.ac:275: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3682
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3683
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3684
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3685
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3686
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3687
|
+
../../lib/m4sugar/m4sh.m4:553: AS_CASE is expanded from...
|
3688
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3689
|
+
configure.ac:275: the top level])
|
3690
|
+
m4trace:configure.ac:275: -1- AX_CHECK_LINK_FLAG([-fstack-protector], [CFLAGS="$CFLAGS -fstack-protector"
|
3691
|
+
])
|
3692
|
+
m4trace:configure.ac:277: -1- m4_pattern_allow([^CWFLAGS$])
|
3693
|
+
m4trace:configure.ac:279: -1- AX_CHECK_COMPILE_FLAG([$CFLAGS -Wall], [CWFLAGS="$CFLAGS -Wall"])
|
3694
|
+
m4trace:configure.ac:279: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3695
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3696
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3697
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3698
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3699
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3700
|
+
configure.ac:279: the top level])
|
3701
|
+
m4trace:configure.ac:280: -1- AX_CHECK_COMPILE_FLAG([$CFLAGS -Wextra], [CWFLAGS="$CFLAGS -Wextra"])
|
3702
|
+
m4trace:configure.ac:280: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3703
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3704
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3705
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3706
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3707
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3708
|
+
configure.ac:280: the top level])
|
3709
|
+
m4trace:configure.ac:293: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wno-unknown-warning-option], [CWFLAGS="$CWFLAGS -Wno-unknown-warning-option"])
|
3710
|
+
m4trace:configure.ac:293: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3711
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3712
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3713
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3714
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3715
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3716
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3717
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
3718
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
3719
|
+
configure.ac:293: the top level])
|
3720
|
+
m4trace:configure.ac:295: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wbad-function-cast], [CWFLAGS="$CWFLAGS -Wbad-function-cast"])
|
3721
|
+
m4trace:configure.ac:295: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3722
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3723
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3724
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3725
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3726
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3727
|
+
configure.ac:295: the top level])
|
3728
|
+
m4trace:configure.ac:296: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wcast-qual], [CWFLAGS="$CWFLAGS -Wcast-qual"])
|
3729
|
+
m4trace:configure.ac:296: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3730
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3731
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3732
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3733
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3734
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3735
|
+
configure.ac:296: the top level])
|
3736
|
+
m4trace:configure.ac:297: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wdiv-by-zero], [CWFLAGS="$CWFLAGS -Wdiv-by-zero"])
|
3737
|
+
m4trace:configure.ac:297: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3738
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3739
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3740
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3741
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3742
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3743
|
+
configure.ac:297: the top level])
|
3744
|
+
m4trace:configure.ac:298: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wduplicated-branches], [CWFLAGS="$CWFLAGS -Wduplicated-branches"])
|
3745
|
+
m4trace:configure.ac:298: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3746
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3747
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3748
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3749
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3750
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3751
|
+
configure.ac:298: the top level])
|
3752
|
+
m4trace:configure.ac:299: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wduplicated-cond], [CWFLAGS="$CWFLAGS -Wduplicated-cond"])
|
3753
|
+
m4trace:configure.ac:299: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3754
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3755
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3756
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3757
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3758
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3759
|
+
configure.ac:299: the top level])
|
3760
|
+
m4trace:configure.ac:300: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wfloat-equal], [CWFLAGS="$CWFLAGS -Wfloat-equal"])
|
3761
|
+
m4trace:configure.ac:300: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3762
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3763
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3764
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3765
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3766
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3767
|
+
configure.ac:300: the top level])
|
3768
|
+
m4trace:configure.ac:301: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wformat=2], [CWFLAGS="$CWFLAGS -Wformat=2"])
|
3769
|
+
m4trace:configure.ac:301: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3770
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3771
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3772
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3773
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3774
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3775
|
+
configure.ac:301: the top level])
|
3776
|
+
m4trace:configure.ac:302: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wlogical-op], [CWFLAGS="$CWFLAGS -Wlogical-op"])
|
3777
|
+
m4trace:configure.ac:302: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3778
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3779
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3780
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3781
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3782
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3783
|
+
configure.ac:302: the top level])
|
3784
|
+
m4trace:configure.ac:303: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wmaybe-uninitialized], [CWFLAGS="$CWFLAGS -Wmaybe-uninitialized"])
|
3785
|
+
m4trace:configure.ac:303: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3786
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3787
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3788
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3789
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3790
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3791
|
+
configure.ac:303: the top level])
|
3792
|
+
m4trace:configure.ac:304: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wmisleading-indentation], [CWFLAGS="$CWFLAGS -Wmisleading-indentation"])
|
3793
|
+
m4trace:configure.ac:304: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3794
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3795
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3796
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3797
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3798
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3799
|
+
configure.ac:304: the top level])
|
3800
|
+
m4trace:configure.ac:305: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wmissing-declarations], [CWFLAGS="$CWFLAGS -Wmissing-declarations"])
|
3801
|
+
m4trace:configure.ac:305: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3802
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3803
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3804
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3805
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3806
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3807
|
+
configure.ac:305: the top level])
|
3808
|
+
m4trace:configure.ac:306: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wmissing-prototypes], [CWFLAGS="$CWFLAGS -Wmissing-prototypes"])
|
3809
|
+
m4trace:configure.ac:306: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3810
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3811
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3812
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3813
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3814
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3815
|
+
configure.ac:306: the top level])
|
3816
|
+
m4trace:configure.ac:307: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wnested-externs], [CWFLAGS="$CWFLAGS -Wnested-externs"])
|
3817
|
+
m4trace:configure.ac:307: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3818
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3819
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3820
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3821
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3822
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3823
|
+
configure.ac:307: the top level])
|
3824
|
+
m4trace:configure.ac:308: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wno-type-limits], [CWFLAGS="$CWFLAGS -Wno-type-limits"])
|
3825
|
+
m4trace:configure.ac:308: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3826
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3827
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3828
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3829
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3830
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3831
|
+
configure.ac:308: the top level])
|
3832
|
+
m4trace:configure.ac:309: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wno-unknown-pragmas], [CWFLAGS="$CWFLAGS -Wno-unknown-pragmas"])
|
3833
|
+
m4trace:configure.ac:309: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3834
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3835
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3836
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3837
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3838
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3839
|
+
configure.ac:309: the top level])
|
3840
|
+
m4trace:configure.ac:310: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wnormalized=id], [CWFLAGS="$CWFLAGS -Wnormalized=id"])
|
3841
|
+
m4trace:configure.ac:310: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3842
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3843
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3844
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3845
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3846
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3847
|
+
configure.ac:310: the top level])
|
3848
|
+
m4trace:configure.ac:311: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wnull-dereference], [CWFLAGS="$CWFLAGS -Wnull-dereference"])
|
3849
|
+
m4trace:configure.ac:311: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3850
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3851
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3852
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3853
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3854
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3855
|
+
configure.ac:311: the top level])
|
3856
|
+
m4trace:configure.ac:312: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wold-style-declaration], [CWFLAGS="$CWFLAGS -Wold-style-declaration"])
|
3857
|
+
m4trace:configure.ac:312: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3858
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3859
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3860
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3861
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3862
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3863
|
+
configure.ac:312: the top level])
|
3864
|
+
m4trace:configure.ac:313: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wpointer-arith], [CWFLAGS="$CWFLAGS -Wpointer-arith"])
|
3865
|
+
m4trace:configure.ac:313: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3866
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3867
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3868
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3869
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3870
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3871
|
+
configure.ac:313: the top level])
|
3872
|
+
m4trace:configure.ac:314: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wredundant-decls], [CWFLAGS="$CWFLAGS -Wredundant-decls"])
|
3873
|
+
m4trace:configure.ac:314: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3874
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3875
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3876
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3877
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3878
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3879
|
+
configure.ac:314: the top level])
|
3880
|
+
m4trace:configure.ac:315: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wrestrict], [CWFLAGS="$CWFLAGS -Wrestrict"])
|
3881
|
+
m4trace:configure.ac:315: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3882
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3883
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3884
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3885
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3886
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3887
|
+
configure.ac:315: the top level])
|
3888
|
+
m4trace:configure.ac:316: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wshorten-64-to-32], [CWFLAGS="$CWFLAGS -Wshorten-64-to-32"])
|
3889
|
+
m4trace:configure.ac:316: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3890
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3891
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3892
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3893
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3894
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3895
|
+
configure.ac:316: the top level])
|
3896
|
+
m4trace:configure.ac:317: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wsometimes-uninitialized], [CWFLAGS="$CWFLAGS -Wsometimes-uninitialized"])
|
3897
|
+
m4trace:configure.ac:317: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3898
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3899
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3900
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3901
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3902
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3903
|
+
configure.ac:317: the top level])
|
3904
|
+
m4trace:configure.ac:318: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wstrict-prototypes], [CWFLAGS="$CWFLAGS -Wstrict-prototypes"])
|
3905
|
+
m4trace:configure.ac:318: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3906
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3907
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3908
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3909
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3910
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3911
|
+
configure.ac:318: the top level])
|
3912
|
+
m4trace:configure.ac:319: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wswitch-enum], [CWFLAGS="$CWFLAGS -Wswitch-enum"])
|
3913
|
+
m4trace:configure.ac:319: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3914
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3915
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3916
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3917
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3918
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3919
|
+
configure.ac:319: the top level])
|
3920
|
+
m4trace:configure.ac:320: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wvariable-decl], [CWFLAGS="$CWFLAGS -Wvariable-decl"])
|
3921
|
+
m4trace:configure.ac:320: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3922
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3923
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3924
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3925
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3926
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3927
|
+
configure.ac:320: the top level])
|
3928
|
+
m4trace:configure.ac:321: -1- AX_CHECK_COMPILE_FLAG([$CWFLAGS -Wwrite-strings], [CWFLAGS="$CWFLAGS -Wwrite-strings"])
|
3929
|
+
m4trace:configure.ac:321: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3930
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3931
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3932
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3933
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3934
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3935
|
+
configure.ac:321: the top level])
|
3936
|
+
m4trace:configure.ac:323: -1- AX_CHECK_LINK_FLAG([-Wl,-z,relro], [LDFLAGS="$LDFLAGS -Wl,-z,relro"])
|
3937
|
+
m4trace:configure.ac:324: -1- AX_CHECK_LINK_FLAG([-Wl,-z,now], [LDFLAGS="$LDFLAGS -Wl,-z,now"])
|
3938
|
+
m4trace:configure.ac:325: -1- AX_CHECK_LINK_FLAG([-Wl,-z,noexecstack], [LDFLAGS="$LDFLAGS -Wl,-z,noexecstack"])
|
3939
|
+
m4trace:configure.ac:338: -1- AX_CHECK_COMPILE_FLAG([$CFLAGS -mno-avx512f], [CFLAGS="$CFLAGS -mno-avx512f"])
|
3940
|
+
m4trace:configure.ac:338: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
3941
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
3942
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3943
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3944
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
3945
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
3946
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3947
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
3948
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
3949
|
+
configure.ac:338: the top level])
|
3950
|
+
m4trace:configure.ac:340: -1- AX_CHECK_CATCHABLE_SEGV
|
3951
|
+
m4trace:configure.ac:340: -1- m4_pattern_allow([^HAVE_CATCHABLE_SEGV$])
|
3952
|
+
m4trace:configure.ac:341: -1- AX_CHECK_CATCHABLE_ABRT
|
3953
|
+
m4trace:configure.ac:341: -1- m4_pattern_allow([^HAVE_CATCHABLE_ABRT$])
|
3954
|
+
m4trace:configure.ac:345: -1- AX_TLS([AC_MSG_RESULT(thread local storage is supported)], [AC_MSG_RESULT(thread local storage is not supported)])
|
3955
|
+
m4trace:configure.ac:345: -1- _m4_warn([obsolete], [The macro `AC_TRY_COMPILE' is obsolete.
|
3956
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2615: AC_TRY_COMPILE is expanded from...
|
3957
|
+
../../lib/m4sugar/m4sh.m4:553: AS_CASE is expanded from...
|
3958
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3959
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
3960
|
+
m4/ax_tls.m4:74: AX_TLS is expanded from...
|
3961
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
3962
|
+
configure.ac:345: the top level])
|
3963
|
+
m4trace:configure.ac:345: -1- m4_pattern_allow([^TLS$])
|
3964
|
+
m4trace:configure.ac:347: -1- LT_INIT
|
3965
|
+
m4trace:configure.ac:347: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
|
3966
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
|
3967
|
+
m4trace:configure.ac:347: -1- LTOPTIONS_VERSION
|
3968
|
+
m4trace:configure.ac:347: -1- LTSUGAR_VERSION
|
3969
|
+
m4trace:configure.ac:347: -1- LTVERSION_VERSION
|
3970
|
+
m4trace:configure.ac:347: -1- LTOBSOLETE_VERSION
|
3971
|
+
m4trace:configure.ac:347: -1- _LT_PROG_LTMAIN
|
3972
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^LIBTOOL$])
|
3973
|
+
m4trace:configure.ac:347: -1- _LT_PREPARE_SED_QUOTE_VARS
|
3974
|
+
m4trace:configure.ac:347: -1- _LT_PROG_ECHO_BACKSLASH
|
3975
|
+
m4trace:configure.ac:347: -1- LT_PATH_LD
|
3976
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^SED$])
|
3977
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^FGREP$])
|
3978
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^GREP$])
|
3979
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^LD$])
|
3980
|
+
m4trace:configure.ac:347: -1- LT_PATH_NM
|
3981
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^DUMPBIN$])
|
3982
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
|
3983
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^DUMPBIN$])
|
3984
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^NM$])
|
3985
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^LN_S$])
|
3986
|
+
m4trace:configure.ac:347: -1- LT_CMD_MAX_LEN
|
3987
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^OBJDUMP$])
|
3988
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^OBJDUMP$])
|
3989
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^DLLTOOL$])
|
3990
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^DLLTOOL$])
|
3991
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^AR$])
|
3992
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^ac_ct_AR$])
|
3993
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^STRIP$])
|
3994
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^RANLIB$])
|
3995
|
+
m4trace:configure.ac:347: -1- _LT_WITH_SYSROOT
|
3996
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([LT_OBJDIR])
|
3997
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^LT_OBJDIR$])
|
3998
|
+
m4trace:configure.ac:347: -1- _LT_CC_BASENAME([$compiler])
|
3999
|
+
m4trace:configure.ac:347: -1- _LT_PATH_TOOL_PREFIX([${ac_tool_prefix}file], [/usr/bin$PATH_SEPARATOR$PATH])
|
4000
|
+
m4trace:configure.ac:347: -1- _LT_PATH_TOOL_PREFIX([file], [/usr/bin$PATH_SEPARATOR$PATH])
|
4001
|
+
m4trace:configure.ac:347: -1- LT_SUPPORTED_TAG([CC])
|
4002
|
+
m4trace:configure.ac:347: -1- _LT_COMPILER_BOILERPLATE
|
4003
|
+
m4trace:configure.ac:347: -1- _LT_LINKER_BOILERPLATE
|
4004
|
+
m4trace:configure.ac:347: -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"])
|
4005
|
+
m4trace:configure.ac:347: -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
|
4006
|
+
"" | " "*) ;;
|
4007
|
+
*) _LT_TAGVAR(lt_prog_compiler_pic, )=" $_LT_TAGVAR(lt_prog_compiler_pic, )" ;;
|
4008
|
+
esac], [_LT_TAGVAR(lt_prog_compiler_pic, )=
|
4009
|
+
_LT_TAGVAR(lt_prog_compiler_can_build_shared, )=no])
|
4010
|
+
m4trace:configure.ac:347: -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, )=])
|
4011
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^MANIFEST_TOOL$])
|
4012
|
+
m4trace:configure.ac:347: -1- _LT_DLL_DEF_P([$export_symbols])
|
4013
|
+
m4trace:configure.ac:347: -1- _LT_DLL_DEF_P([$export_symbols])
|
4014
|
+
m4trace:configure.ac:347: -1- _LT_REQUIRED_DARWIN_CHECKS
|
4015
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^DSYMUTIL$])
|
4016
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^NMEDIT$])
|
4017
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^LIPO$])
|
4018
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^OTOOL$])
|
4019
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^OTOOL64$])
|
4020
|
+
m4trace:configure.ac:347: -1- _LT_LINKER_OPTION([if $CC understands -b], [lt_cv_prog_compiler__b], [-b], [_LT_TAGVAR(archive_cmds, )='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, )='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])
|
4021
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
|
4022
|
+
m4trace:configure.ac:347: -1- LT_SYS_DLOPEN_SELF
|
4023
|
+
m4trace:configure.ac:347: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
|
4024
|
+
m4trace:configure.ac:348: -1- m4_pattern_allow([^LIBTOOL_DEPS$])
|
4025
|
+
m4trace:configure.ac:350: -1- m4_pattern_allow([^AR$])
|
4026
|
+
m4trace:configure.ac:351: -1- m4_pattern_allow([^AR$])
|
4027
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mmmx], [CFLAGS="$CFLAGS -mmmx"])
|
4028
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4029
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4030
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4031
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4032
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4033
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4034
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4035
|
+
configure.ac:533: the top level])
|
4036
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_MMINTRIN_H$])
|
4037
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mmmx], [CFLAGS_MMX="-mmmx"])
|
4038
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4039
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4040
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4041
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4042
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4043
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4044
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4045
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4046
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4047
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4048
|
+
configure.ac:533: the top level])
|
4049
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-msse2], [CFLAGS="$CFLAGS -msse2"])
|
4050
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4051
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4052
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4053
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4054
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4055
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4056
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4057
|
+
configure.ac:533: the top level])
|
4058
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_EMMINTRIN_H$])
|
4059
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-msse2], [CFLAGS_SSE2="-msse2"])
|
4060
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4061
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4062
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4063
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4064
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4065
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4066
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4067
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4068
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4069
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4070
|
+
configure.ac:533: the top level])
|
4071
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-msse3], [CFLAGS="$CFLAGS -msse3"])
|
4072
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4073
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4074
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4075
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4076
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4077
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4078
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4079
|
+
configure.ac:533: the top level])
|
4080
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_PMMINTRIN_H$])
|
4081
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-msse3], [CFLAGS_SSE3="-msse3"])
|
4082
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4083
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4084
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4085
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4086
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4087
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4088
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4089
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4090
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4091
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4092
|
+
configure.ac:533: the top level])
|
4093
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mssse3], [CFLAGS="$CFLAGS -mssse3"])
|
4094
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4095
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4096
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4097
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4098
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4099
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4100
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4101
|
+
configure.ac:533: the top level])
|
4102
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_TMMINTRIN_H$])
|
4103
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mssse3], [CFLAGS_SSSE3="-mssse3"])
|
4104
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4105
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4106
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4107
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4108
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4109
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4110
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4111
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4112
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4113
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4114
|
+
configure.ac:533: the top level])
|
4115
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS="$CFLAGS -msse4.1"])
|
4116
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4117
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4118
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4119
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4120
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4121
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4122
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4123
|
+
configure.ac:533: the top level])
|
4124
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_SMMINTRIN_H$])
|
4125
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-msse4.1], [CFLAGS_SSE41="-msse4.1"])
|
4126
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4127
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4128
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4129
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4130
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4131
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4132
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4133
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4134
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4135
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4136
|
+
configure.ac:533: the top level])
|
4137
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mavx], [CFLAGS="$CFLAGS -mavx"])
|
4138
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4139
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4140
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4141
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4142
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4143
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4144
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4145
|
+
configure.ac:533: the top level])
|
4146
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_AVXINTRIN_H$])
|
4147
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mavx], [CFLAGS_AVX="-mavx"])
|
4148
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4149
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4150
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4151
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4152
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4153
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4154
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4155
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4156
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4157
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4158
|
+
configure.ac:533: the top level])
|
4159
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mavx2], [CFLAGS="$CFLAGS -mavx2"])
|
4160
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4161
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4162
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4163
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4164
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4165
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4166
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4167
|
+
configure.ac:533: the top level])
|
4168
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_AVX2INTRIN_H$])
|
4169
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mavx2], [CFLAGS_AVX2="-mavx2"])
|
4170
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4171
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4172
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4173
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4174
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4175
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4176
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4177
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4178
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4179
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4180
|
+
configure.ac:533: the top level])
|
4181
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^_mm256_broadcastsi128_si256$])
|
4182
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mavx512f], [CFLAGS="$CFLAGS -mavx512f"])
|
4183
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4184
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4185
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4186
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4187
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4188
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4189
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4190
|
+
configure.ac:533: the top level])
|
4191
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_AVX512FINTRIN_H$])
|
4192
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mavx512f], [CFLAGS_AVX512F="-mavx512f"])
|
4193
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4194
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4195
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4196
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4197
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4198
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4199
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4200
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4201
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4202
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4203
|
+
configure.ac:533: the top level])
|
4204
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-maes], [CFLAGS="$CFLAGS -maes"])
|
4205
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4206
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4207
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4208
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4209
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4210
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4211
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4212
|
+
configure.ac:533: the top level])
|
4213
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mpclmul], [CFLAGS="$CFLAGS -mpclmul"])
|
4214
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4215
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4216
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4217
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4218
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4219
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4220
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4221
|
+
configure.ac:533: the top level])
|
4222
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_WMMINTRIN_H$])
|
4223
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-maes], [CFLAGS_AESNI="-maes"])
|
4224
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4225
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4226
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4227
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4228
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4229
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4230
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4231
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4232
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4233
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4234
|
+
configure.ac:533: the top level])
|
4235
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mpclmul], [CFLAGS_PCLMUL="-mpclmul"])
|
4236
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4237
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4238
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4239
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4240
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4241
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4242
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4243
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4244
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4245
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4246
|
+
configure.ac:533: the top level])
|
4247
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mrdrnd], [CFLAGS="$CFLAGS -mrdrnd"])
|
4248
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4249
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4250
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4251
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4252
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4253
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4254
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4255
|
+
configure.ac:533: the top level])
|
4256
|
+
m4trace:configure.ac:533: -1- m4_pattern_allow([^HAVE_RDRAND$])
|
4257
|
+
m4trace:configure.ac:533: -1- AX_CHECK_COMPILE_FLAG([-mrdrnd], [CFLAGS_RDRAND="-mrdrnd"])
|
4258
|
+
m4trace:configure.ac:533: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
4259
|
+
You should run autoupdate.], [../../lib/autoconf/general.m4:2688: AC_TRY_LINK is expanded from...
|
4260
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4261
|
+
../../lib/autoconf/general.m4:2046: AC_CACHE_VAL is expanded from...
|
4262
|
+
../../lib/autoconf/general.m4:2059: AC_CACHE_CHECK is expanded from...
|
4263
|
+
m4/ax_check_compile_flag.m4:75: AX_CHECK_COMPILE_FLAG is expanded from...
|
4264
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4265
|
+
../../lib/autoconf/general.m4:2598: _AC_COMPILE_IFELSE is expanded from...
|
4266
|
+
../../lib/autoconf/general.m4:2608: AC_COMPILE_IFELSE is expanded from...
|
4267
|
+
../../lib/m4sugar/m4sh.m4:643: AS_IF is expanded from...
|
4268
|
+
configure.ac:533: the top level])
|
4269
|
+
m4trace:configure.ac:535: -1- m4_pattern_allow([^CFLAGS_MMX$])
|
4270
|
+
m4trace:configure.ac:536: -1- m4_pattern_allow([^CFLAGS_SSE2$])
|
4271
|
+
m4trace:configure.ac:537: -1- m4_pattern_allow([^CFLAGS_SSE3$])
|
4272
|
+
m4trace:configure.ac:538: -1- m4_pattern_allow([^CFLAGS_SSSE3$])
|
4273
|
+
m4trace:configure.ac:539: -1- m4_pattern_allow([^CFLAGS_SSE41$])
|
4274
|
+
m4trace:configure.ac:540: -1- m4_pattern_allow([^CFLAGS_AVX$])
|
4275
|
+
m4trace:configure.ac:541: -1- m4_pattern_allow([^CFLAGS_AVX2$])
|
4276
|
+
m4trace:configure.ac:542: -1- m4_pattern_allow([^CFLAGS_AVX512F$])
|
4277
|
+
m4trace:configure.ac:543: -1- m4_pattern_allow([^CFLAGS_AESNI$])
|
4278
|
+
m4trace:configure.ac:544: -1- m4_pattern_allow([^CFLAGS_PCLMUL$])
|
4279
|
+
m4trace:configure.ac:545: -1- m4_pattern_allow([^CFLAGS_RDRAND$])
|
4280
|
+
m4trace:configure.ac:554: -1- m4_pattern_allow([^HAVE__XGETBV$])
|
4281
|
+
m4trace:configure.ac:564: -2- m4_pattern_allow([^NATIVE_BIG_ENDIAN$])
|
4282
|
+
m4trace:configure.ac:565: -2- m4_pattern_allow([^NATIVE_LITTLE_ENDIAN$])
|
4283
|
+
m4trace:configure.ac:608: -1- m4_pattern_allow([^HAVE_AMD64_ASM$])
|
4284
|
+
m4trace:configure.ac:609: -1- AM_CONDITIONAL([HAVE_AMD64_ASM], [test $HAVE_AMD64_ASM_V = 1])
|
4285
|
+
m4trace:configure.ac:609: -1- m4_pattern_allow([^HAVE_AMD64_ASM_TRUE$])
|
4286
|
+
m4trace:configure.ac:609: -1- m4_pattern_allow([^HAVE_AMD64_ASM_FALSE$])
|
4287
|
+
m4trace:configure.ac:609: -1- _AM_SUBST_NOTMAKE([HAVE_AMD64_ASM_TRUE])
|
4288
|
+
m4trace:configure.ac:609: -1- _AM_SUBST_NOTMAKE([HAVE_AMD64_ASM_FALSE])
|
4289
|
+
m4trace:configure.ac:610: -1- m4_pattern_allow([^HAVE_AMD64_ASM_V$])
|
4290
|
+
m4trace:configure.ac:631: -1- m4_pattern_allow([^HAVE_AVX_ASM$])
|
4291
|
+
m4trace:configure.ac:632: -1- AM_CONDITIONAL([HAVE_AVX_ASM], [test $HAVE_AVX_ASM_V = 1])
|
4292
|
+
m4trace:configure.ac:632: -1- m4_pattern_allow([^HAVE_AVX_ASM_TRUE$])
|
4293
|
+
m4trace:configure.ac:632: -1- m4_pattern_allow([^HAVE_AVX_ASM_FALSE$])
|
4294
|
+
m4trace:configure.ac:632: -1- _AM_SUBST_NOTMAKE([HAVE_AVX_ASM_TRUE])
|
4295
|
+
m4trace:configure.ac:632: -1- _AM_SUBST_NOTMAKE([HAVE_AVX_ASM_FALSE])
|
4296
|
+
m4trace:configure.ac:633: -1- m4_pattern_allow([^HAVE_AVX_ASM_V$])
|
4297
|
+
m4trace:configure.ac:667: -1- m4_pattern_allow([^HAVE_TI_MODE$])
|
4298
|
+
m4trace:configure.ac:668: -1- AM_CONDITIONAL([HAVE_TI_MODE], [test $HAVE_TI_MODE_V = 1])
|
4299
|
+
m4trace:configure.ac:668: -1- m4_pattern_allow([^HAVE_TI_MODE_TRUE$])
|
4300
|
+
m4trace:configure.ac:668: -1- m4_pattern_allow([^HAVE_TI_MODE_FALSE$])
|
4301
|
+
m4trace:configure.ac:668: -1- _AM_SUBST_NOTMAKE([HAVE_TI_MODE_TRUE])
|
4302
|
+
m4trace:configure.ac:668: -1- _AM_SUBST_NOTMAKE([HAVE_TI_MODE_FALSE])
|
4303
|
+
m4trace:configure.ac:669: -1- m4_pattern_allow([^HAVE_TI_MODE_V$])
|
4304
|
+
m4trace:configure.ac:685: -1- m4_pattern_allow([^HAVE_CPUID$])
|
4305
|
+
m4trace:configure.ac:686: -1- m4_pattern_allow([^HAVE_CPUID_V$])
|
4306
|
+
m4trace:configure.ac:727: -1- m4_pattern_allow([^ASM_HIDE_SYMBOL$])
|
4307
|
+
m4trace:configure.ac:740: -1- m4_pattern_allow([^HAVE_WEAK_SYMBOLS$])
|
4308
|
+
m4trace:configure.ac:757: -1- m4_pattern_allow([^CPU_UNALIGNED_ACCESS$])
|
4309
|
+
m4trace:configure.ac:768: -1- m4_pattern_allow([^HAVE_ATOMIC_OPS$])
|
4310
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^size_t$])
|
4311
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^HAVE_ALLOCA_H$])
|
4312
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^HAVE_ALLOCA$])
|
4313
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^ALLOCA$])
|
4314
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^C_ALLOCA$])
|
4315
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^CRAY_STACKSEG_END$])
|
4316
|
+
m4trace:configure.ac:772: -1- m4_pattern_allow([^STACK_DIRECTION$])
|
4317
|
+
m4trace:configure.ac:779: -1- m4_pattern_allow([^LIBTOOL_EXTRA_FLAGS$])
|
4318
|
+
m4trace:configure.ac:786: -1- m4_pattern_allow([^TEST_LDFLAGS$])
|
4319
|
+
m4trace:configure.ac:787: -1- AM_CONDITIONAL([EMSCRIPTEN], [test "x$EMSCRIPTEN" != "x"])
|
4320
|
+
m4trace:configure.ac:787: -1- m4_pattern_allow([^EMSCRIPTEN_TRUE$])
|
4321
|
+
m4trace:configure.ac:787: -1- m4_pattern_allow([^EMSCRIPTEN_FALSE$])
|
4322
|
+
m4trace:configure.ac:787: -1- _AM_SUBST_NOTMAKE([EMSCRIPTEN_TRUE])
|
4323
|
+
m4trace:configure.ac:787: -1- _AM_SUBST_NOTMAKE([EMSCRIPTEN_FALSE])
|
4324
|
+
m4trace:configure.ac:789: -1- AM_CONDITIONAL([NATIVECLIENT], [test "x$NATIVECLIENT" != "x"])
|
4325
|
+
m4trace:configure.ac:789: -1- m4_pattern_allow([^NATIVECLIENT_TRUE$])
|
4326
|
+
m4trace:configure.ac:789: -1- m4_pattern_allow([^NATIVECLIENT_FALSE$])
|
4327
|
+
m4trace:configure.ac:789: -1- _AM_SUBST_NOTMAKE([NATIVECLIENT_TRUE])
|
4328
|
+
m4trace:configure.ac:789: -1- _AM_SUBST_NOTMAKE([NATIVECLIENT_FALSE])
|
4329
|
+
m4trace:configure.ac:791: -1- m4_pattern_allow([^CONFIGURED$])
|
4330
|
+
m4trace:configure.ac:795: -1- LT_INIT([dlopen])
|
4331
|
+
m4trace:configure.ac:796: -1- AC_LIBTOOL_WIN32_DLL
|
4332
|
+
m4trace:configure.ac:796: -1- _m4_warn([obsolete], [The macro `AC_LIBTOOL_WIN32_DLL' is obsolete.
|
4333
|
+
You should run autoupdate.], [m4/ltoptions.m4:154: AC_LIBTOOL_WIN32_DLL is expanded from...
|
4334
|
+
configure.ac:796: the top level])
|
4335
|
+
m4trace:configure.ac:796: -1- m4_pattern_allow([^AS$])
|
4336
|
+
m4trace:configure.ac:796: -1- m4_pattern_allow([^DLLTOOL$])
|
4337
|
+
m4trace:configure.ac:796: -1- m4_pattern_allow([^OBJDUMP$])
|
4338
|
+
m4trace:configure.ac:796: -1- _m4_warn([obsolete], [AC_LIBTOOL_WIN32_DLL: Remove this warning and the call to _LT_SET_OPTION when you
|
4339
|
+
put the 'win32-dll' option into LT_INIT's first parameter.], [m4/ltoptions.m4:154: AC_LIBTOOL_WIN32_DLL is expanded from...
|
4340
|
+
configure.ac:796: the top level])
|
4341
|
+
m4trace:configure.ac:797: -1- gl_LD_OUTPUT_DEF
|
4342
|
+
m4trace:configure.ac:797: -1- AM_CONDITIONAL([HAVE_LD_OUTPUT_DEF], [test "x$gl_cv_ld_output_def" = "xyes"])
|
4343
|
+
m4trace:configure.ac:797: -1- m4_pattern_allow([^HAVE_LD_OUTPUT_DEF_TRUE$])
|
4344
|
+
m4trace:configure.ac:797: -1- m4_pattern_allow([^HAVE_LD_OUTPUT_DEF_FALSE$])
|
4345
|
+
m4trace:configure.ac:797: -1- _AM_SUBST_NOTMAKE([HAVE_LD_OUTPUT_DEF_TRUE])
|
4346
|
+
m4trace:configure.ac:797: -1- _AM_SUBST_NOTMAKE([HAVE_LD_OUTPUT_DEF_FALSE])
|
4347
|
+
m4trace:configure.ac:824: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
4348
|
+
m4trace:configure.ac:824: -1- m4_pattern_allow([^LTLIBOBJS$])
|
4349
|
+
m4trace:configure.ac:824: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
4350
|
+
m4trace:configure.ac:824: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
4351
|
+
m4trace:configure.ac:824: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
4352
|
+
m4trace:configure.ac:824: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
4353
|
+
m4trace:configure.ac:824: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
4354
|
+
m4trace:configure.ac:824: -1- _AM_OUTPUT_DEPENDENCY_COMMANDS
|
4355
|
+
m4trace:configure.ac:824: -1- _LT_PROG_LTMAIN
|