rbnacl-libsodium 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGES.md +4 -0
- data/lib/rbnacl/libsodium/version.rb +1 -1
- data/vendor/libsodium/ChangeLog +10 -0
- data/vendor/libsodium/LICENSE +1 -1
- data/vendor/libsodium/Makefile.in +10 -2
- data/vendor/libsodium/THANKS +1 -0
- data/vendor/libsodium/autom4te.cache/output.1 +52 -17
- data/vendor/libsodium/autom4te.cache/output.3 +52 -17
- data/vendor/libsodium/autom4te.cache/requests +558 -558
- data/vendor/libsodium/autom4te.cache/traces.1 +543 -542
- data/vendor/libsodium/autom4te.cache/traces.3 +320 -319
- data/vendor/libsodium/build-aux/compile +347 -0
- data/vendor/libsodium/build-aux/config.guess +1568 -0
- data/vendor/libsodium/build-aux/config.sub +1793 -0
- data/vendor/libsodium/build-aux/depcomp +791 -0
- data/vendor/libsodium/build-aux/install-sh +527 -0
- data/vendor/libsodium/build-aux/ltmain.sh +9655 -0
- data/vendor/libsodium/build-aux/missing +215 -0
- data/vendor/libsodium/build-aux/test-driver +139 -0
- data/vendor/libsodium/builds/msvc/properties/Common.props +1 -3
- data/vendor/libsodium/builds/msvc/properties/Release.props +3 -1
- data/vendor/libsodium/builds/msvc/resource.rc +0 -0
- data/vendor/libsodium/builds/msvc/version.h +2 -2
- data/vendor/libsodium/builds/msvc/vs2010/libsodium/libsodium.props +1 -1
- data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj +12 -6
- data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj.filters +11 -5
- data/vendor/libsodium/builds/msvc/vs2012/libsodium/libsodium.props +1 -1
- data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj +12 -6
- data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj.filters +11 -5
- data/vendor/libsodium/builds/msvc/vs2013/libsodium/libsodium.props +1 -1
- data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj +12 -6
- data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj.filters +11 -5
- data/vendor/libsodium/configure +52 -17
- data/vendor/libsodium/configure.ac +7 -4
- data/vendor/libsodium/dist-build/ios.sh +4 -3
- data/vendor/libsodium/libsodium.vcxproj +4 -4
- data/vendor/libsodium/msvc-scripts/process.bat +2 -2
- data/vendor/libsodium/packaging/nuget/package.config +1 -1
- data/vendor/libsodium/packaging/nuget/package.nuspec +25 -25
- data/vendor/libsodium/packaging/nuget/package.targets +20 -20
- data/vendor/libsodium/src/libsodium/Makefile.in +2 -2
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +2 -2
- data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2.h +8 -8
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c +6 -6
- data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/poly1305_donna.h +2 -2
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt.h +2 -2
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.h +2 -2
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +1 -1
- data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sysendian.h +2 -2
- data/vendor/libsodium/src/libsodium/crypto_scalarmult/curve25519/donna_c64/smult_curve25519_donna_c64.c +38 -38
- data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c +8 -0
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_frombytes.c +10 -10
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_mul.c +10 -10
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq.c +10 -10
- data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/fe_sq2.c +10 -10
- data/vendor/libsodium/src/libsodium/include/sodium.h +2 -2
- data/vendor/libsodium/src/libsodium/include/sodium/core.h +2 -2
- data/vendor/libsodium/src/libsodium/include/sodium/export.h +3 -3
- data/vendor/libsodium/src/libsodium/include/sodium/runtime.h +2 -2
- data/vendor/libsodium/src/libsodium/include/sodium/utils.h +4 -4
- data/vendor/libsodium/src/libsodium/include/sodium/version.h.in +2 -2
- data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +9 -9
- data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +9 -9
- data/vendor/libsodium/src/libsodium/sodium/utils.c +17 -15
- data/vendor/libsodium/test/default/Makefile.in +5 -4
- data/vendor/libsodium/test/default/aead_chacha20poly1305.c +25 -0
- data/vendor/libsodium/test/default/aead_chacha20poly1305.exp +4 -0
- data/vendor/libsodium/test/default/box_easy2.c +23 -8
- data/vendor/libsodium/test/default/box_easy2.exp +2 -0
- data/vendor/libsodium/test/default/generichash.c +23 -15
- data/vendor/libsodium/test/default/generichash3.c +24 -20
- data/vendor/libsodium/test/default/pwhash.c +27 -28
- data/vendor/libsodium/test/default/scalarmult6.c +19 -3
- data/vendor/libsodium/test/default/secretbox_easy2.c +27 -11
- data/vendor/libsodium/test/default/secretbox_easy2.exp +3 -0
- data/vendor/libsodium/test/default/shorthash.c +15 -10
- data/vendor/libsodium/test/default/sign.c +23 -0
- data/vendor/libsodium/test/default/sodium_utils2.c +4 -0
- data/vendor/libsodium/test/default/sodium_utils3.c +4 -0
- metadata +10 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c645d0125d12808a809a8c7de0b6ff79bb6cd3d0
|
|
4
|
+
data.tar.gz: ec8deca0ae399111f2623b4e6dbc3a39ad9006b0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ff98dfc4b8d48de229e2d2a3b161f0aa286d041f8e700de33088bbd85ac577fd5ef50ace267987bd574f0c38f7e7c7b60a5cb5f1ed0a26753f2a181feaeb33e
|
|
7
|
+
data.tar.gz: d08112930635b0f08f6db1828c75ad2c7db32dfcb39ee745d7f49d3ae1ec62a85e47d0b1f7f21e3cb4abad0000c348fb420314c21c53066cf74f24a8ddc37c27
|
data/CHANGES.md
CHANGED
data/vendor/libsodium/ChangeLog
CHANGED
|
@@ -1,4 +1,14 @@
|
|
|
1
1
|
|
|
2
|
+
* Version 1.0.1
|
|
3
|
+
- DLL_EXPORT was renamed SODIUM_DLL_EXPORT in order to avoid
|
|
4
|
+
collisions with similar macros defined by other libraries.
|
|
5
|
+
- sodium_bin2hex() is now constant-time.
|
|
6
|
+
- crypto_secretbox_detached() now supports overlapping input and output
|
|
7
|
+
regions.
|
|
8
|
+
- NaCl's donna_c64 implementation of curve25519 was reading an extra byte
|
|
9
|
+
past the end of the buffer containing the base point. This has been
|
|
10
|
+
fixed.
|
|
11
|
+
|
|
2
12
|
* Version 1.0.0
|
|
3
13
|
- The API and ABI are now stable. New features will be added, but
|
|
4
14
|
backward-compatibility is guaranteed through all the 1.x.y releases.
|
data/vendor/libsodium/LICENSE
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Copyright (c) 2013-2014
|
|
3
3
|
* Frank Denis <j at pureftpd dot org>
|
|
4
4
|
*
|
|
5
|
-
* Permission to use, copy, modify, and distribute this software for any
|
|
5
|
+
* Permission to use, copy, modify, and/or distribute this software for any
|
|
6
6
|
* purpose with or without fee is hereby granted, provided that the above
|
|
7
7
|
* copyright notice and this permission notice appear in all copies.
|
|
8
8
|
*
|
|
@@ -83,8 +83,16 @@ DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
|
|
|
83
83
|
$(top_srcdir)/configure $(am__configure_deps) \
|
|
84
84
|
$(srcdir)/libsodium.pc.in \
|
|
85
85
|
$(top_srcdir)/src/libsodium/include/sodium/version.h.in \
|
|
86
|
-
AUTHORS ChangeLog README THANKS compile
|
|
87
|
-
config.
|
|
86
|
+
AUTHORS ChangeLog README THANKS compile build-aux/compile \
|
|
87
|
+
config.guess build-aux/config.guess config.sub \
|
|
88
|
+
build-aux/config.sub depcomp install-sh build-aux/install-sh \
|
|
89
|
+
missing build-aux/missing ltmain.sh build-aux/ltmain.sh \
|
|
90
|
+
$(top_srcdir)/build-aux/compile \
|
|
91
|
+
$(top_srcdir)/build-aux/config.guess \
|
|
92
|
+
$(top_srcdir)/build-aux/config.sub \
|
|
93
|
+
$(top_srcdir)/build-aux/install-sh \
|
|
94
|
+
$(top_srcdir)/build-aux/ltmain.sh \
|
|
95
|
+
$(top_srcdir)/build-aux/missing
|
|
88
96
|
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
|
|
89
97
|
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_compile_flag.m4 \
|
|
90
98
|
$(top_srcdir)/m4/ax_check_link_flag.m4 \
|
data/vendor/libsodium/THANKS
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@%:@! /bin/sh
|
|
2
2
|
@%:@ Guess values for system-dependent variables and create Makefiles.
|
|
3
|
-
@%:@ Generated by GNU Autoconf 2.69 for libsodium 1.0.
|
|
3
|
+
@%:@ Generated by GNU Autoconf 2.69 for libsodium 1.0.1.
|
|
4
4
|
@%:@
|
|
5
5
|
@%:@ Report bugs to <https://github.com/jedisct1/libsodium/issues>.
|
|
6
6
|
@%:@
|
|
@@ -590,8 +590,8 @@ MAKEFLAGS=
|
|
|
590
590
|
# Identity of this package.
|
|
591
591
|
PACKAGE_NAME='libsodium'
|
|
592
592
|
PACKAGE_TARNAME='libsodium'
|
|
593
|
-
PACKAGE_VERSION='1.0.
|
|
594
|
-
PACKAGE_STRING='libsodium 1.0.
|
|
593
|
+
PACKAGE_VERSION='1.0.1'
|
|
594
|
+
PACKAGE_STRING='libsodium 1.0.1'
|
|
595
595
|
PACKAGE_BUGREPORT='https://github.com/jedisct1/libsodium/issues'
|
|
596
596
|
PACKAGE_URL='https://github.com/jedisct1/libsodium'
|
|
597
597
|
|
|
@@ -1353,7 +1353,7 @@ if test "$ac_init_help" = "long"; then
|
|
|
1353
1353
|
# Omit some internal or obsolete options to make the list less imposing.
|
|
1354
1354
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
|
1355
1355
|
cat <<_ACEOF
|
|
1356
|
-
\`configure' configures libsodium 1.0.
|
|
1356
|
+
\`configure' configures libsodium 1.0.1 to adapt to many kinds of systems.
|
|
1357
1357
|
|
|
1358
1358
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
|
1359
1359
|
|
|
@@ -1423,7 +1423,7 @@ fi
|
|
|
1423
1423
|
|
|
1424
1424
|
if test -n "$ac_init_help"; then
|
|
1425
1425
|
case $ac_init_help in
|
|
1426
|
-
short | recursive ) echo "Configuration of libsodium 1.0.
|
|
1426
|
+
short | recursive ) echo "Configuration of libsodium 1.0.1:";;
|
|
1427
1427
|
esac
|
|
1428
1428
|
cat <<\_ACEOF
|
|
1429
1429
|
|
|
@@ -1550,7 +1550,7 @@ fi
|
|
|
1550
1550
|
test -n "$ac_init_help" && exit $ac_status
|
|
1551
1551
|
if $ac_init_version; then
|
|
1552
1552
|
cat <<\_ACEOF
|
|
1553
|
-
libsodium configure 1.0.
|
|
1553
|
+
libsodium configure 1.0.1
|
|
1554
1554
|
generated by GNU Autoconf 2.69
|
|
1555
1555
|
|
|
1556
1556
|
Copyright (C) 2012 Free Software Foundation, Inc.
|
|
@@ -1919,7 +1919,7 @@ cat >config.log <<_ACEOF
|
|
|
1919
1919
|
This file contains any messages produced by compilers while
|
|
1920
1920
|
running configure, to aid debugging if configure makes a mistake.
|
|
1921
1921
|
|
|
1922
|
-
It was created by libsodium $as_me 1.0.
|
|
1922
|
+
It was created by libsodium $as_me 1.0.1, which was
|
|
1923
1923
|
generated by GNU Autoconf 2.69. Invocation command line was
|
|
1924
1924
|
|
|
1925
1925
|
$ $0 $@
|
|
@@ -2267,10 +2267,8 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
|
|
|
2267
2267
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
2268
2268
|
|
|
2269
2269
|
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
2270
|
ac_aux_dir=
|
|
2273
|
-
for ac_dir in
|
|
2271
|
+
for ac_dir in build-aux "$srcdir"/build-aux; do
|
|
2274
2272
|
if test -f "$ac_dir/install-sh"; then
|
|
2275
2273
|
ac_aux_dir=$ac_dir
|
|
2276
2274
|
ac_install_sh="$ac_aux_dir/install-sh -c"
|
|
@@ -2286,7 +2284,7 @@ for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
|
|
2286
2284
|
fi
|
|
2287
2285
|
done
|
|
2288
2286
|
if test -z "$ac_aux_dir"; then
|
|
2289
|
-
as_fn_error $? "cannot find install-sh, install.sh, or shtool in
|
|
2287
|
+
as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5
|
|
2290
2288
|
fi
|
|
2291
2289
|
|
|
2292
2290
|
# These three variables are undocumented and unsupported,
|
|
@@ -2298,6 +2296,8 @@ ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
|
|
|
2298
2296
|
ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
|
2299
2297
|
|
|
2300
2298
|
|
|
2299
|
+
|
|
2300
|
+
|
|
2301
2301
|
# Make sure we can run config.sub.
|
|
2302
2302
|
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
|
|
2303
2303
|
as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
|
|
@@ -2855,7 +2855,7 @@ fi
|
|
|
2855
2855
|
|
|
2856
2856
|
# Define the identity of the package.
|
|
2857
2857
|
PACKAGE='libsodium'
|
|
2858
|
-
VERSION='1.0.
|
|
2858
|
+
VERSION='1.0.1'
|
|
2859
2859
|
|
|
2860
2860
|
|
|
2861
2861
|
cat >>confdefs.h <<_ACEOF
|
|
@@ -3150,9 +3150,9 @@ ISODATE=`date +%Y-%m-%d`
|
|
|
3150
3150
|
|
|
3151
3151
|
|
|
3152
3152
|
SODIUM_LIBRARY_VERSION_MAJOR=7
|
|
3153
|
-
SODIUM_LIBRARY_VERSION_MINOR=
|
|
3153
|
+
SODIUM_LIBRARY_VERSION_MINOR=3
|
|
3154
3154
|
DLL_VERSION=6
|
|
3155
|
-
SODIUM_LIBRARY_VERSION=13:
|
|
3155
|
+
SODIUM_LIBRARY_VERSION=13:3:0
|
|
3156
3156
|
# | | |
|
|
3157
3157
|
# +------+ | +---+
|
|
3158
3158
|
# | | |
|
|
@@ -5115,7 +5115,42 @@ $as_echo "$ac_cv_safe_to_define___extensions__" >&6; }
|
|
|
5115
5115
|
$as_echo "@%:@define _TANDEM_SOURCE 1" >>confdefs.h
|
|
5116
5116
|
|
|
5117
5117
|
|
|
5118
|
-
|
|
5118
|
+
|
|
5119
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -D_FORTIFY_SOURCE=2" >&5
|
|
5120
|
+
$as_echo_n "checking whether C compiler accepts -D_FORTIFY_SOURCE=2... " >&6; }
|
|
5121
|
+
if ${ax_cv_check_cflags___D_FORTIFY_SOURCE_2+:} false; then :
|
|
5122
|
+
$as_echo_n "(cached) " >&6
|
|
5123
|
+
else
|
|
5124
|
+
|
|
5125
|
+
ax_check_save_flags=$CFLAGS
|
|
5126
|
+
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
|
|
5127
|
+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
5128
|
+
/* end confdefs.h. */
|
|
5129
|
+
#include <stdio.h>
|
|
5130
|
+
int
|
|
5131
|
+
main ()
|
|
5132
|
+
{
|
|
5133
|
+
char x[42U], fodder = 0;if (fodder > -1000 && fgets(x,1000,stdin)) puts(x)
|
|
5134
|
+
;
|
|
5135
|
+
return 0;
|
|
5136
|
+
}
|
|
5137
|
+
_ACEOF
|
|
5138
|
+
if ac_fn_c_try_compile "$LINENO"; then :
|
|
5139
|
+
ax_cv_check_cflags___D_FORTIFY_SOURCE_2=yes
|
|
5140
|
+
else
|
|
5141
|
+
ax_cv_check_cflags___D_FORTIFY_SOURCE_2=no
|
|
5142
|
+
fi
|
|
5143
|
+
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
5144
|
+
CFLAGS=$ax_check_save_flags
|
|
5145
|
+
fi
|
|
5146
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___D_FORTIFY_SOURCE_2" >&5
|
|
5147
|
+
$as_echo "$ax_cv_check_cflags___D_FORTIFY_SOURCE_2" >&6; }
|
|
5148
|
+
if test x"$ax_cv_check_cflags___D_FORTIFY_SOURCE_2" = xyes; then :
|
|
5149
|
+
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
|
5150
|
+
else
|
|
5151
|
+
:
|
|
5152
|
+
fi
|
|
5153
|
+
|
|
5119
5154
|
|
|
5120
5155
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fvisibility=hidden" >&5
|
|
5121
5156
|
$as_echo_n "checking whether C compiler accepts -fvisibility=hidden... " >&6; }
|
|
@@ -15504,7 +15539,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|
|
15504
15539
|
# report actual input values of CONFIG_FILES etc. instead of their
|
|
15505
15540
|
# values after options handling.
|
|
15506
15541
|
ac_log="
|
|
15507
|
-
This file was extended by libsodium $as_me 1.0.
|
|
15542
|
+
This file was extended by libsodium $as_me 1.0.1, which was
|
|
15508
15543
|
generated by GNU Autoconf 2.69. Invocation command line was
|
|
15509
15544
|
|
|
15510
15545
|
CONFIG_FILES = $CONFIG_FILES
|
|
@@ -15562,7 +15597,7 @@ _ACEOF
|
|
|
15562
15597
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|
15563
15598
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
|
15564
15599
|
ac_cs_version="\\
|
|
15565
|
-
libsodium config.status 1.0.
|
|
15600
|
+
libsodium config.status 1.0.1
|
|
15566
15601
|
configured by $0, generated by GNU Autoconf 2.69,
|
|
15567
15602
|
with options \\"\$ac_cs_config\\"
|
|
15568
15603
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
@%:@! /bin/sh
|
|
2
2
|
@%:@ Guess values for system-dependent variables and create Makefiles.
|
|
3
|
-
@%:@ Generated by GNU Autoconf 2.69 for libsodium 1.0.
|
|
3
|
+
@%:@ Generated by GNU Autoconf 2.69 for libsodium 1.0.1.
|
|
4
4
|
@%:@
|
|
5
5
|
@%:@ Report bugs to <https://github.com/jedisct1/libsodium/issues>.
|
|
6
6
|
@%:@
|
|
@@ -590,8 +590,8 @@ MAKEFLAGS=
|
|
|
590
590
|
# Identity of this package.
|
|
591
591
|
PACKAGE_NAME='libsodium'
|
|
592
592
|
PACKAGE_TARNAME='libsodium'
|
|
593
|
-
PACKAGE_VERSION='1.0.
|
|
594
|
-
PACKAGE_STRING='libsodium 1.0.
|
|
593
|
+
PACKAGE_VERSION='1.0.1'
|
|
594
|
+
PACKAGE_STRING='libsodium 1.0.1'
|
|
595
595
|
PACKAGE_BUGREPORT='https://github.com/jedisct1/libsodium/issues'
|
|
596
596
|
PACKAGE_URL='https://github.com/jedisct1/libsodium'
|
|
597
597
|
|
|
@@ -1353,7 +1353,7 @@ if test "$ac_init_help" = "long"; then
|
|
|
1353
1353
|
# Omit some internal or obsolete options to make the list less imposing.
|
|
1354
1354
|
# This message is too long to be a string in the A/UX 3.1 sh.
|
|
1355
1355
|
cat <<_ACEOF
|
|
1356
|
-
\`configure' configures libsodium 1.0.
|
|
1356
|
+
\`configure' configures libsodium 1.0.1 to adapt to many kinds of systems.
|
|
1357
1357
|
|
|
1358
1358
|
Usage: $0 [OPTION]... [VAR=VALUE]...
|
|
1359
1359
|
|
|
@@ -1423,7 +1423,7 @@ fi
|
|
|
1423
1423
|
|
|
1424
1424
|
if test -n "$ac_init_help"; then
|
|
1425
1425
|
case $ac_init_help in
|
|
1426
|
-
short | recursive ) echo "Configuration of libsodium 1.0.
|
|
1426
|
+
short | recursive ) echo "Configuration of libsodium 1.0.1:";;
|
|
1427
1427
|
esac
|
|
1428
1428
|
cat <<\_ACEOF
|
|
1429
1429
|
|
|
@@ -1550,7 +1550,7 @@ fi
|
|
|
1550
1550
|
test -n "$ac_init_help" && exit $ac_status
|
|
1551
1551
|
if $ac_init_version; then
|
|
1552
1552
|
cat <<\_ACEOF
|
|
1553
|
-
libsodium configure 1.0.
|
|
1553
|
+
libsodium configure 1.0.1
|
|
1554
1554
|
generated by GNU Autoconf 2.69
|
|
1555
1555
|
|
|
1556
1556
|
Copyright (C) 2012 Free Software Foundation, Inc.
|
|
@@ -1919,7 +1919,7 @@ cat >config.log <<_ACEOF
|
|
|
1919
1919
|
This file contains any messages produced by compilers while
|
|
1920
1920
|
running configure, to aid debugging if configure makes a mistake.
|
|
1921
1921
|
|
|
1922
|
-
It was created by libsodium $as_me 1.0.
|
|
1922
|
+
It was created by libsodium $as_me 1.0.1, which was
|
|
1923
1923
|
generated by GNU Autoconf 2.69. Invocation command line was
|
|
1924
1924
|
|
|
1925
1925
|
$ $0 $@
|
|
@@ -2267,10 +2267,8 @@ ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $
|
|
|
2267
2267
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
2268
2268
|
|
|
2269
2269
|
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
2270
|
ac_aux_dir=
|
|
2273
|
-
for ac_dir in
|
|
2271
|
+
for ac_dir in build-aux "$srcdir"/build-aux; do
|
|
2274
2272
|
if test -f "$ac_dir/install-sh"; then
|
|
2275
2273
|
ac_aux_dir=$ac_dir
|
|
2276
2274
|
ac_install_sh="$ac_aux_dir/install-sh -c"
|
|
@@ -2286,7 +2284,7 @@ for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do
|
|
|
2286
2284
|
fi
|
|
2287
2285
|
done
|
|
2288
2286
|
if test -z "$ac_aux_dir"; then
|
|
2289
|
-
as_fn_error $? "cannot find install-sh, install.sh, or shtool in
|
|
2287
|
+
as_fn_error $? "cannot find install-sh, install.sh, or shtool in build-aux \"$srcdir\"/build-aux" "$LINENO" 5
|
|
2290
2288
|
fi
|
|
2291
2289
|
|
|
2292
2290
|
# These three variables are undocumented and unsupported,
|
|
@@ -2298,6 +2296,8 @@ ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var.
|
|
|
2298
2296
|
ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var.
|
|
2299
2297
|
|
|
2300
2298
|
|
|
2299
|
+
|
|
2300
|
+
|
|
2301
2301
|
# Make sure we can run config.sub.
|
|
2302
2302
|
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
|
|
2303
2303
|
as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
|
|
@@ -2855,7 +2855,7 @@ fi
|
|
|
2855
2855
|
|
|
2856
2856
|
# Define the identity of the package.
|
|
2857
2857
|
PACKAGE='libsodium'
|
|
2858
|
-
VERSION='1.0.
|
|
2858
|
+
VERSION='1.0.1'
|
|
2859
2859
|
|
|
2860
2860
|
|
|
2861
2861
|
cat >>confdefs.h <<_ACEOF
|
|
@@ -3150,9 +3150,9 @@ ISODATE=`date +%Y-%m-%d`
|
|
|
3150
3150
|
|
|
3151
3151
|
|
|
3152
3152
|
SODIUM_LIBRARY_VERSION_MAJOR=7
|
|
3153
|
-
SODIUM_LIBRARY_VERSION_MINOR=
|
|
3153
|
+
SODIUM_LIBRARY_VERSION_MINOR=3
|
|
3154
3154
|
DLL_VERSION=6
|
|
3155
|
-
SODIUM_LIBRARY_VERSION=13:
|
|
3155
|
+
SODIUM_LIBRARY_VERSION=13:3:0
|
|
3156
3156
|
# | | |
|
|
3157
3157
|
# +------+ | +---+
|
|
3158
3158
|
# | | |
|
|
@@ -5115,7 +5115,42 @@ $as_echo "$ac_cv_safe_to_define___extensions__" >&6; }
|
|
|
5115
5115
|
$as_echo "@%:@define _TANDEM_SOURCE 1" >>confdefs.h
|
|
5116
5116
|
|
|
5117
5117
|
|
|
5118
|
-
|
|
5118
|
+
|
|
5119
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -D_FORTIFY_SOURCE=2" >&5
|
|
5120
|
+
$as_echo_n "checking whether C compiler accepts -D_FORTIFY_SOURCE=2... " >&6; }
|
|
5121
|
+
if ${ax_cv_check_cflags___D_FORTIFY_SOURCE_2+:} false; then :
|
|
5122
|
+
$as_echo_n "(cached) " >&6
|
|
5123
|
+
else
|
|
5124
|
+
|
|
5125
|
+
ax_check_save_flags=$CFLAGS
|
|
5126
|
+
CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
|
|
5127
|
+
cat confdefs.h - <<_ACEOF >conftest.$ac_ext
|
|
5128
|
+
/* end confdefs.h. */
|
|
5129
|
+
#include <stdio.h>
|
|
5130
|
+
int
|
|
5131
|
+
main ()
|
|
5132
|
+
{
|
|
5133
|
+
char x[42U], fodder = 0;if (fodder > -1000 && fgets(x,1000,stdin)) puts(x)
|
|
5134
|
+
;
|
|
5135
|
+
return 0;
|
|
5136
|
+
}
|
|
5137
|
+
_ACEOF
|
|
5138
|
+
if ac_fn_c_try_compile "$LINENO"; then :
|
|
5139
|
+
ax_cv_check_cflags___D_FORTIFY_SOURCE_2=yes
|
|
5140
|
+
else
|
|
5141
|
+
ax_cv_check_cflags___D_FORTIFY_SOURCE_2=no
|
|
5142
|
+
fi
|
|
5143
|
+
rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
|
|
5144
|
+
CFLAGS=$ax_check_save_flags
|
|
5145
|
+
fi
|
|
5146
|
+
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___D_FORTIFY_SOURCE_2" >&5
|
|
5147
|
+
$as_echo "$ax_cv_check_cflags___D_FORTIFY_SOURCE_2" >&6; }
|
|
5148
|
+
if test x"$ax_cv_check_cflags___D_FORTIFY_SOURCE_2" = xyes; then :
|
|
5149
|
+
CPPFLAGS="$CPPFLAGS -D_FORTIFY_SOURCE=2"
|
|
5150
|
+
else
|
|
5151
|
+
:
|
|
5152
|
+
fi
|
|
5153
|
+
|
|
5119
5154
|
|
|
5120
5155
|
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fvisibility=hidden" >&5
|
|
5121
5156
|
$as_echo_n "checking whether C compiler accepts -fvisibility=hidden... " >&6; }
|
|
@@ -15504,7 +15539,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
|
|
|
15504
15539
|
# report actual input values of CONFIG_FILES etc. instead of their
|
|
15505
15540
|
# values after options handling.
|
|
15506
15541
|
ac_log="
|
|
15507
|
-
This file was extended by libsodium $as_me 1.0.
|
|
15542
|
+
This file was extended by libsodium $as_me 1.0.1, which was
|
|
15508
15543
|
generated by GNU Autoconf 2.69. Invocation command line was
|
|
15509
15544
|
|
|
15510
15545
|
CONFIG_FILES = $CONFIG_FILES
|
|
@@ -15562,7 +15597,7 @@ _ACEOF
|
|
|
15562
15597
|
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
|
|
15563
15598
|
ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
|
|
15564
15599
|
ac_cs_version="\\
|
|
15565
|
-
libsodium config.status 1.0.
|
|
15600
|
+
libsodium config.status 1.0.1
|
|
15566
15601
|
configured by $0, generated by GNU Autoconf 2.69,
|
|
15567
15602
|
with options \\"\$ac_cs_config\\"
|
|
15568
15603
|
|
|
@@ -47,197 +47,197 @@
|
|
|
47
47
|
'configure.ac'
|
|
48
48
|
],
|
|
49
49
|
{
|
|
50
|
-
'AM_ENABLE_STATIC' => 1,
|
|
51
|
-
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
|
52
|
-
'_LT_AC_SHELL_INIT' => 1,
|
|
53
50
|
'AC_DEFUN' => 1,
|
|
54
|
-
'
|
|
55
|
-
'
|
|
56
|
-
'
|
|
57
|
-
'
|
|
58
|
-
'
|
|
59
|
-
'
|
|
60
|
-
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
61
|
-
'AM_PROG_INSTALL_STRIP' => 1,
|
|
62
|
-
'_m4_warn' => 1,
|
|
63
|
-
'AC_LIBTOOL_OBJDIR' => 1,
|
|
64
|
-
'gl_FUNC_ARGZ' => 1,
|
|
65
|
-
'LTOBSOLETE_VERSION' => 1,
|
|
66
|
-
'AM_SANITY_CHECK' => 1,
|
|
51
|
+
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
52
|
+
'AC_PROG_LD' => 1,
|
|
53
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
54
|
+
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
|
55
|
+
'AC_LTDL_SHLIBPATH' => 1,
|
|
56
|
+
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
67
57
|
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
|
68
|
-
'
|
|
58
|
+
'LTDL_INSTALLABLE' => 1,
|
|
59
|
+
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
60
|
+
'AC_ENABLE_STATIC' => 1,
|
|
61
|
+
'_LT_CC_BASENAME' => 1,
|
|
62
|
+
'LTDL_INIT' => 1,
|
|
63
|
+
'_AM_DEPENDENCIES' => 1,
|
|
64
|
+
'AC_DEFUN_ONCE' => 1,
|
|
65
|
+
'_AM_PROG_CC_C_O' => 1,
|
|
66
|
+
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
67
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
68
|
+
'm4_pattern_allow' => 1,
|
|
69
|
+
'AC_LTDL_DLLIB' => 1,
|
|
70
|
+
'_LT_COMPILER_OPTION' => 1,
|
|
71
|
+
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
72
|
+
'LT_WITH_LTDL' => 1,
|
|
73
|
+
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
|
74
|
+
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
|
75
|
+
'LT_AC_PROG_RC' => 1,
|
|
76
|
+
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
69
77
|
'LT_LIB_M' => 1,
|
|
70
|
-
'
|
|
78
|
+
'AC_DISABLE_SHARED' => 1,
|
|
79
|
+
'_LT_AC_TAGVAR' => 1,
|
|
80
|
+
'LT_PATH_LD' => 1,
|
|
81
|
+
'AC_LTDL_SHLIBEXT' => 1,
|
|
82
|
+
'LT_AC_PROG_EGREP' => 1,
|
|
83
|
+
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
84
|
+
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
85
|
+
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
|
86
|
+
'AM_DEP_TRACK' => 1,
|
|
87
|
+
'AC_LIBTOOL_OBJDIR' => 1,
|
|
88
|
+
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
89
|
+
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
90
|
+
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
91
|
+
'AM_AUX_DIR_EXPAND' => 1,
|
|
92
|
+
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
93
|
+
'm4_pattern_forbid' => 1,
|
|
94
|
+
'_AC_PROG_LIBTOOL' => 1,
|
|
95
|
+
'AM_MISSING_HAS_RUN' => 1,
|
|
96
|
+
'PKG_INSTALLDIR' => 1,
|
|
97
|
+
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
|
98
|
+
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
99
|
+
'AC_LIB_LTDL' => 1,
|
|
100
|
+
'AC_LTDL_ENABLE_INSTALL' => 1,
|
|
101
|
+
'LT_PROG_RC' => 1,
|
|
102
|
+
'AC_LIBTOOL_PICMODE' => 1,
|
|
103
|
+
'AC_PATH_MAGIC' => 1,
|
|
104
|
+
'_LT_LINKER_BOILERPLATE' => 1,
|
|
71
105
|
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
|
72
|
-
'
|
|
73
|
-
'
|
|
74
|
-
'
|
|
75
|
-
'
|
|
106
|
+
'LTDL_CONVENIENCE' => 1,
|
|
107
|
+
'AM_ENABLE_STATIC' => 1,
|
|
108
|
+
'_LT_AC_LOCK' => 1,
|
|
109
|
+
'AC_LTDL_OBJDIR' => 1,
|
|
110
|
+
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
76
111
|
'AC_LIBTOOL_GCJ' => 1,
|
|
77
|
-
'
|
|
78
|
-
'
|
|
79
|
-
'
|
|
80
|
-
'
|
|
81
|
-
'
|
|
82
|
-
'AC_CONFIG_MACRO_DIR' => 1,
|
|
112
|
+
'gl_FUNC_ARGZ' => 1,
|
|
113
|
+
'AM_PROG_INSTALL_STRIP' => 1,
|
|
114
|
+
'PKG_CHECK_MODULES' => 1,
|
|
115
|
+
'PKG_CHECK_EXISTS' => 1,
|
|
116
|
+
'LT_PROG_GCJ' => 1,
|
|
83
117
|
'_AM_SUBST_NOTMAKE' => 1,
|
|
84
|
-
'
|
|
85
|
-
'_AM_AUTOCONF_VERSION' => 1,
|
|
86
|
-
'AM_DISABLE_SHARED' => 1,
|
|
87
|
-
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
88
|
-
'_LTDL_SETUP' => 1,
|
|
89
|
-
'PKG_CHECK_VAR' => 1,
|
|
90
|
-
'_LT_AC_LANG_CXX' => 1,
|
|
91
|
-
'AM_PROG_LIBTOOL' => 1,
|
|
92
|
-
'AC_LIB_LTDL' => 1,
|
|
93
|
-
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
94
|
-
'AM_PROG_LD' => 1,
|
|
118
|
+
'_LT_AC_SHELL_INIT' => 1,
|
|
95
119
|
'AU_DEFUN' => 1,
|
|
96
|
-
'
|
|
120
|
+
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
121
|
+
'_LTDL_SETUP' => 1,
|
|
122
|
+
'AC_CHECK_LIBM' => 1,
|
|
123
|
+
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
|
97
124
|
'AC_LIBTOOL_DLOPEN' => 1,
|
|
98
|
-
'
|
|
99
|
-
'
|
|
100
|
-
'
|
|
101
|
-
'
|
|
102
|
-
'
|
|
103
|
-
'
|
|
104
|
-
'
|
|
105
|
-
'
|
|
106
|
-
'
|
|
107
|
-
'
|
|
108
|
-
'
|
|
125
|
+
'AM_RUN_LOG' => 1,
|
|
126
|
+
'include' => 1,
|
|
127
|
+
'PKG_PROG_PKG_CONFIG' => 1,
|
|
128
|
+
'LT_LANG' => 1,
|
|
129
|
+
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
130
|
+
'AC_CONFIG_MACRO_DIR' => 1,
|
|
131
|
+
'AC_LIBTOOL_SETUP' => 1,
|
|
132
|
+
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
133
|
+
'AM_PROG_NM' => 1,
|
|
134
|
+
'_AM_SET_OPTIONS' => 1,
|
|
135
|
+
'_LT_WITH_SYSROOT' => 1,
|
|
109
136
|
'gl_PREREQ_ARGZ' => 1,
|
|
110
|
-
'
|
|
111
|
-
'
|
|
112
|
-
'
|
|
113
|
-
'
|
|
114
|
-
'
|
|
115
|
-
'
|
|
116
|
-
'
|
|
117
|
-
'AC_LTDL_OBJDIR' => 1,
|
|
118
|
-
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
119
|
-
'AC_LIBTOOL_RC' => 1,
|
|
120
|
-
'AM_SILENT_RULES' => 1,
|
|
121
|
-
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
137
|
+
'AM_MAKE_INCLUDE' => 1,
|
|
138
|
+
'LTOBSOLETE_VERSION' => 1,
|
|
139
|
+
'AC_LIBLTDL_CONVENIENCE' => 1,
|
|
140
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
141
|
+
'AC_LTDL_PREOPEN' => 1,
|
|
142
|
+
'AC_PATH_TOOL_PREFIX' => 1,
|
|
143
|
+
'LT_PATH_NM' => 1,
|
|
122
144
|
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
123
|
-
'
|
|
124
|
-
'
|
|
125
|
-
'include' => 1,
|
|
126
|
-
'LT_AC_PROG_SED' => 1,
|
|
127
|
-
'AM_ENABLE_SHARED' => 1,
|
|
128
|
-
'LTDL_INSTALLABLE' => 1,
|
|
129
|
-
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
|
130
|
-
'AC_ENABLE_SHARED' => 1,
|
|
131
|
-
'AX_CHECK_LINK_FLAG' => 1,
|
|
132
|
-
'AC_ENABLE_STATIC' => 1,
|
|
133
|
-
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
134
|
-
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
135
|
-
'AM_PROG_CC_C_O' => 1,
|
|
136
|
-
'_LT_AC_TAGVAR' => 1,
|
|
137
|
-
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
145
|
+
'AC_LTDL_DLSYM_USCORE' => 1,
|
|
146
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
138
147
|
'AM_CONDITIONAL' => 1,
|
|
148
|
+
'LTOPTIONS_VERSION' => 1,
|
|
149
|
+
'_LT_PROG_FC' => 1,
|
|
150
|
+
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
151
|
+
'AM_DISABLE_SHARED' => 1,
|
|
152
|
+
'_LT_AC_LANG_GCJ' => 1,
|
|
153
|
+
'LT_CMD_MAX_LEN' => 1,
|
|
139
154
|
'LT_LIB_DLLOAD' => 1,
|
|
140
|
-
'
|
|
141
|
-
'
|
|
142
|
-
'
|
|
143
|
-
'
|
|
144
|
-
'
|
|
145
|
-
'
|
|
155
|
+
'AM_SANITY_CHECK' => 1,
|
|
156
|
+
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
157
|
+
'_AM_SET_OPTION' => 1,
|
|
158
|
+
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
|
159
|
+
'PKG_CHECK_VAR' => 1,
|
|
160
|
+
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
|
161
|
+
'LT_SYS_MODULE_PATH' => 1,
|
|
162
|
+
'_m4_warn' => 1,
|
|
146
163
|
'AC_PROG_EGREP' => 1,
|
|
147
|
-
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
148
|
-
'AC_PATH_MAGIC' => 1,
|
|
149
|
-
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
150
|
-
'AM_MAKE_INCLUDE' => 1,
|
|
151
|
-
'LT_CMD_MAX_LEN' => 1,
|
|
152
|
-
'_LT_AC_TAGCONFIG' => 1,
|
|
153
|
-
'm4_pattern_forbid' => 1,
|
|
154
|
-
'_LT_LINKER_OPTION' => 1,
|
|
155
|
-
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
156
|
-
'PKG_INSTALLDIR' => 1,
|
|
157
|
-
'AC_DISABLE_SHARED' => 1,
|
|
158
|
-
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
159
|
-
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
160
|
-
'AC_LIBTOOL_SETUP' => 1,
|
|
161
|
-
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
162
|
-
'AC_LTDL_DLSYM_USCORE' => 1,
|
|
163
|
-
'AM_MISSING_HAS_RUN' => 1,
|
|
164
|
-
'LT_LANG' => 1,
|
|
165
|
-
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
166
|
-
'LT_CONFIG_LTDL_DIR' => 1,
|
|
167
|
-
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
168
|
-
'LT_OUTPUT' => 1,
|
|
169
|
-
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
170
|
-
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
171
|
-
'gl_LD_OUTPUT_DEF' => 1,
|
|
172
|
-
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
|
173
|
-
'AC_WITH_LTDL' => 1,
|
|
174
|
-
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
175
|
-
'PKG_CHECK_EXISTS' => 1,
|
|
176
|
-
'LT_AC_PROG_RC' => 1,
|
|
177
|
-
'AC_LIBTOOL_CXX' => 1,
|
|
178
|
-
'LT_INIT' => 1,
|
|
179
|
-
'LT_SYS_DLOPEN_SELF' => 1,
|
|
180
164
|
'LT_AC_PROG_GCJ' => 1,
|
|
181
|
-
'
|
|
182
|
-
'AM_DEP_TRACK' => 1,
|
|
165
|
+
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
183
166
|
'_LT_AC_PROG_CXXCPP' => 1,
|
|
184
|
-
'
|
|
167
|
+
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
168
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
169
|
+
'AC_LIBTOOL_CONFIG' => 1,
|
|
170
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
171
|
+
'AM_ENABLE_SHARED' => 1,
|
|
172
|
+
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
173
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
174
|
+
'AC_DISABLE_STATIC' => 1,
|
|
175
|
+
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
176
|
+
'AM_SILENT_RULES' => 1,
|
|
177
|
+
'_AM_AUTOCONF_VERSION' => 1,
|
|
178
|
+
'AC_PROG_NM' => 1,
|
|
179
|
+
'AM_PROG_AS' => 1,
|
|
180
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
181
|
+
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
182
|
+
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
183
|
+
'AC_LIBTOOL_FC' => 1,
|
|
184
|
+
'_LT_PROG_F77' => 1,
|
|
185
|
+
'_LT_AC_LANG_CXX' => 1,
|
|
186
|
+
'AX_CHECK_LINK_FLAG' => 1,
|
|
187
|
+
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
185
188
|
'_AM_IF_OPTION' => 1,
|
|
189
|
+
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
190
|
+
'AM_PROG_INSTALL_SH' => 1,
|
|
191
|
+
'LTVERSION_VERSION' => 1,
|
|
192
|
+
'LTSUGAR_VERSION' => 1,
|
|
193
|
+
'LT_SYS_SYMBOL_USCORE' => 1,
|
|
194
|
+
'AM_MAINTAINER_MODE' => 1,
|
|
195
|
+
'AM_PROG_LD' => 1,
|
|
196
|
+
'AM_SUBST_NOTMAKE' => 1,
|
|
197
|
+
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
198
|
+
'AC_LIBTOOL_CXX' => 1,
|
|
199
|
+
'_LT_LIBOBJ' => 1,
|
|
200
|
+
'_AM_PROG_TAR' => 1,
|
|
201
|
+
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
186
202
|
'PKG_NOARCH_INSTALLDIR' => 1,
|
|
187
|
-
'
|
|
188
|
-
'
|
|
189
|
-
'
|
|
190
|
-
'
|
|
191
|
-
'
|
|
192
|
-
'
|
|
193
|
-
'_AM_DEPENDENCIES' => 1,
|
|
194
|
-
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
195
|
-
'LTOPTIONS_VERSION' => 1,
|
|
203
|
+
'LT_SYS_MODULE_EXT' => 1,
|
|
204
|
+
'_LT_PROG_LTMAIN' => 1,
|
|
205
|
+
'AC_WITH_LTDL' => 1,
|
|
206
|
+
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
207
|
+
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
208
|
+
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
196
209
|
'_LT_AC_SYS_COMPILER' => 1,
|
|
197
|
-
'
|
|
198
|
-
'
|
|
199
|
-
'
|
|
200
|
-
'
|
|
201
|
-
'
|
|
202
|
-
'
|
|
203
|
-
'
|
|
204
|
-
'
|
|
205
|
-
'
|
|
206
|
-
'LT_PROG_GCJ' => 1,
|
|
207
|
-
'AM_INIT_AUTOMAKE' => 1,
|
|
208
|
-
'AC_DISABLE_STATIC' => 1,
|
|
209
|
-
'LT_PATH_NM' => 1,
|
|
210
|
-
'AM_MAINTAINER_MODE' => 1,
|
|
211
|
-
'AC_LTDL_SHLIBEXT' => 1,
|
|
212
|
-
'_LT_AC_LOCK' => 1,
|
|
213
|
-
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
210
|
+
'LT_OUTPUT' => 1,
|
|
211
|
+
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
212
|
+
'AM_MISSING_PROG' => 1,
|
|
213
|
+
'gl_LD_OUTPUT_DEF' => 1,
|
|
214
|
+
'm4_include' => 1,
|
|
215
|
+
'_LT_PROG_CXX' => 1,
|
|
216
|
+
'AM_DISABLE_STATIC' => 1,
|
|
217
|
+
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
218
|
+
'AC_ENABLE_SHARED' => 1,
|
|
214
219
|
'LT_PROG_GO' => 1,
|
|
215
|
-
'
|
|
216
|
-
'
|
|
217
|
-
'
|
|
218
|
-
'
|
|
219
|
-
'AM_PROG_AS' => 1,
|
|
220
|
-
'AM_AUX_DIR_EXPAND' => 1,
|
|
221
|
-
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
222
|
-
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
223
|
-
'_AM_SET_OPTIONS' => 1,
|
|
224
|
-
'_LT_COMPILER_OPTION' => 1,
|
|
225
|
-
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
226
|
-
'AM_RUN_LOG' => 1,
|
|
227
|
-
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
|
228
|
-
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
229
|
-
'AC_LIBTOOL_PICMODE' => 1,
|
|
230
|
-
'LT_PATH_LD' => 1,
|
|
231
|
-
'AC_CHECK_LIBM' => 1,
|
|
232
|
-
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
233
|
-
'_AM_MANGLE_OPTION' => 1,
|
|
234
|
-
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
235
|
-
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
236
|
-
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
220
|
+
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
221
|
+
'_LT_LINKER_OPTION' => 1,
|
|
222
|
+
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
223
|
+
'AM_SET_LEADING_DOT' => 1,
|
|
237
224
|
'AM_SET_DEPDIR' => 1,
|
|
238
|
-
'
|
|
239
|
-
'
|
|
240
|
-
'
|
|
225
|
+
'_LT_AC_CHECK_DLFCN' => 1,
|
|
226
|
+
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
227
|
+
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
|
228
|
+
'AC_LIBLTDL_INSTALLABLE' => 1,
|
|
229
|
+
'LT_AC_PROG_SED' => 1,
|
|
230
|
+
'_LT_AC_LANG_F77' => 1,
|
|
231
|
+
'AX_CHECK_COMPILE_FLAG' => 1,
|
|
232
|
+
'AM_PROG_CC_C_O' => 1,
|
|
233
|
+
'LT_FUNC_DLSYM_USCORE' => 1,
|
|
234
|
+
'AC_LIBTOOL_F77' => 1,
|
|
235
|
+
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
|
236
|
+
'LT_INIT' => 1,
|
|
237
|
+
'AC_PROG_LD_GNU' => 1,
|
|
238
|
+
'LT_SYS_DLOPEN_SELF' => 1,
|
|
239
|
+
'_AM_MANGLE_OPTION' => 1,
|
|
240
|
+
'AC_LIBTOOL_RC' => 1
|
|
241
241
|
}
|
|
242
242
|
], 'Autom4te::Request' ),
|
|
243
243
|
bless( [
|
|
@@ -252,65 +252,65 @@
|
|
|
252
252
|
'configure.ac'
|
|
253
253
|
],
|
|
254
254
|
{
|
|
255
|
-
'AM_PROG_F77_C_O' => 1,
|
|
256
|
-
'_LT_AC_TAGCONFIG' => 1,
|
|
257
|
-
'AC_INIT' => 1,
|
|
258
|
-
'm4_pattern_forbid' => 1,
|
|
259
|
-
'AC_CANONICAL_TARGET' => 1,
|
|
260
|
-
'_AM_COND_IF' => 1,
|
|
261
|
-
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
|
262
|
-
'AC_SUBST' => 1,
|
|
263
|
-
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
|
264
|
-
'AC_CANONICAL_HOST' => 1,
|
|
265
|
-
'AC_FC_SRCEXT' => 1,
|
|
266
|
-
'AC_PROG_LIBTOOL' => 1,
|
|
267
|
-
'AM_PROG_MKDIR_P' => 1,
|
|
268
|
-
'AM_INIT_AUTOMAKE' => 1,
|
|
269
|
-
'AC_CONFIG_SUBDIRS' => 1,
|
|
270
|
-
'AM_PATH_GUILE' => 1,
|
|
271
|
-
'AM_AUTOMAKE_VERSION' => 1,
|
|
272
|
-
'LT_CONFIG_LTDL_DIR' => 1,
|
|
273
255
|
'AC_CONFIG_LINKS' => 1,
|
|
274
|
-
'
|
|
275
|
-
'
|
|
276
|
-
'
|
|
256
|
+
'AM_POT_TOOLS' => 1,
|
|
257
|
+
'AM_XGETTEXT_OPTION' => 1,
|
|
258
|
+
'AM_CONDITIONAL' => 1,
|
|
259
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
260
|
+
'AC_DEFINE_TRACE_LITERAL' => 1,
|
|
261
|
+
'sinclude' => 1,
|
|
262
|
+
'AC_CANONICAL_HOST' => 1,
|
|
263
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
277
264
|
'AM_MAINTAINER_MODE' => 1,
|
|
278
|
-
'
|
|
279
|
-
'
|
|
265
|
+
'AM_PROG_MOC' => 1,
|
|
266
|
+
'AC_FC_PP_SRCEXT' => 1,
|
|
280
267
|
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
|
268
|
+
'_AM_COND_ELSE' => 1,
|
|
269
|
+
'_AM_MAKEFILE_INCLUDE' => 1,
|
|
281
270
|
'_m4_warn' => 1,
|
|
282
|
-
'
|
|
271
|
+
'm4_include' => 1,
|
|
272
|
+
'm4_pattern_allow' => 1,
|
|
273
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
274
|
+
'AC_CONFIG_AUX_DIR' => 1,
|
|
275
|
+
'AC_LIBSOURCE' => 1,
|
|
276
|
+
'AC_FC_PP_DEFINE' => 1,
|
|
277
|
+
'AC_REQUIRE_AUX_FILE' => 1,
|
|
278
|
+
'AM_NLS' => 1,
|
|
283
279
|
'AM_PROG_CXX_C_O' => 1,
|
|
284
|
-
'
|
|
285
|
-
'
|
|
286
|
-
'AM_ENABLE_MULTILIB' => 1,
|
|
287
|
-
'AM_PROG_MOC' => 1,
|
|
280
|
+
'AM_PROG_FC_C_O' => 1,
|
|
281
|
+
'include' => 1,
|
|
288
282
|
'AM_SILENT_RULES' => 1,
|
|
289
283
|
'AC_CONFIG_FILES' => 1,
|
|
290
|
-
'include' => 1,
|
|
291
|
-
'LT_INIT' => 1,
|
|
292
|
-
'AM_GNU_GETTEXT' => 1,
|
|
293
284
|
'AM_PROG_AR' => 1,
|
|
294
|
-
'
|
|
295
|
-
'
|
|
296
|
-
'
|
|
297
|
-
'AC_FC_FREEFORM' => 1,
|
|
298
|
-
'AC_FC_PP_SRCEXT' => 1,
|
|
299
|
-
'AH_OUTPUT' => 1,
|
|
300
|
-
'AC_CONFIG_AUX_DIR' => 1,
|
|
285
|
+
'm4_sinclude' => 1,
|
|
286
|
+
'AM_MAKEFILE_INCLUDE' => 1,
|
|
287
|
+
'AC_FC_SRCEXT' => 1,
|
|
301
288
|
'_AM_SUBST_NOTMAKE' => 1,
|
|
302
|
-
'
|
|
289
|
+
'AC_INIT' => 1,
|
|
290
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
291
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
292
|
+
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
|
293
|
+
'AM_GNU_GETTEXT' => 1,
|
|
294
|
+
'_AM_COND_ENDIF' => 1,
|
|
295
|
+
'AC_CONFIG_HEADERS' => 1,
|
|
296
|
+
'AM_ENABLE_MULTILIB' => 1,
|
|
297
|
+
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
|
298
|
+
'LT_INIT' => 1,
|
|
299
|
+
'AC_SUBST_TRACE' => 1,
|
|
300
|
+
'AC_CANONICAL_TARGET' => 1,
|
|
301
|
+
'AC_SUBST' => 1,
|
|
302
|
+
'm4_pattern_forbid' => 1,
|
|
303
|
+
'AC_FC_FREEFORM' => 1,
|
|
304
|
+
'_AM_COND_IF' => 1,
|
|
305
|
+
'AM_PATH_GUILE' => 1,
|
|
303
306
|
'AM_PROG_CC_C_O' => 1,
|
|
304
|
-
'
|
|
305
|
-
'
|
|
307
|
+
'AM_PROG_MKDIR_P' => 1,
|
|
308
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
309
|
+
'AM_PROG_F77_C_O' => 1,
|
|
310
|
+
'AC_CONFIG_SUBDIRS' => 1,
|
|
306
311
|
'AC_CANONICAL_SYSTEM' => 1,
|
|
307
|
-
'
|
|
308
|
-
'
|
|
309
|
-
'AC_DEFINE_TRACE_LITERAL' => 1,
|
|
310
|
-
'AM_POT_TOOLS' => 1,
|
|
311
|
-
'm4_include' => 1,
|
|
312
|
-
'_AM_COND_ELSE' => 1,
|
|
313
|
-
'AC_SUBST_TRACE' => 1
|
|
312
|
+
'AC_CANONICAL_BUILD' => 1,
|
|
313
|
+
'AH_OUTPUT' => 1
|
|
314
314
|
}
|
|
315
315
|
], 'Autom4te::Request' ),
|
|
316
316
|
bless( [
|
|
@@ -357,197 +357,197 @@
|
|
|
357
357
|
'configure.ac'
|
|
358
358
|
],
|
|
359
359
|
{
|
|
360
|
-
'
|
|
361
|
-
'
|
|
360
|
+
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
|
361
|
+
'AC_LIBTOOL_DLOPEN' => 1,
|
|
362
|
+
'AM_RUN_LOG' => 1,
|
|
363
|
+
'include' => 1,
|
|
364
|
+
'PKG_PROG_PKG_CONFIG' => 1,
|
|
365
|
+
'LT_LANG' => 1,
|
|
366
|
+
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
367
|
+
'LT_PROG_GCJ' => 1,
|
|
362
368
|
'_LT_AC_SHELL_INIT' => 1,
|
|
363
|
-
'
|
|
369
|
+
'_AM_SUBST_NOTMAKE' => 1,
|
|
370
|
+
'AU_DEFUN' => 1,
|
|
371
|
+
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
372
|
+
'_LTDL_SETUP' => 1,
|
|
373
|
+
'AC_CHECK_LIBM' => 1,
|
|
374
|
+
'_AM_SET_OPTIONS' => 1,
|
|
375
|
+
'gl_PREREQ_ARGZ' => 1,
|
|
376
|
+
'_LT_WITH_SYSROOT' => 1,
|
|
377
|
+
'LTOBSOLETE_VERSION' => 1,
|
|
378
|
+
'AM_MAKE_INCLUDE' => 1,
|
|
379
|
+
'AC_LIBLTDL_CONVENIENCE' => 1,
|
|
380
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
381
|
+
'AC_PATH_TOOL_PREFIX' => 1,
|
|
382
|
+
'AC_LTDL_PREOPEN' => 1,
|
|
383
|
+
'AC_CONFIG_MACRO_DIR' => 1,
|
|
384
|
+
'AC_LIBTOOL_SETUP' => 1,
|
|
385
|
+
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
386
|
+
'AM_PROG_NM' => 1,
|
|
387
|
+
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
388
|
+
'AC_LIB_LTDL' => 1,
|
|
389
|
+
'AC_LTDL_ENABLE_INSTALL' => 1,
|
|
390
|
+
'LT_PROG_RC' => 1,
|
|
391
|
+
'AC_LIBTOOL_PICMODE' => 1,
|
|
392
|
+
'AC_PATH_MAGIC' => 1,
|
|
393
|
+
'_LT_LINKER_BOILERPLATE' => 1,
|
|
394
|
+
'PKG_INSTALLDIR' => 1,
|
|
364
395
|
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
|
365
|
-
'
|
|
366
|
-
'AM_AUTOMAKE_VERSION' => 1,
|
|
367
|
-
'AM_SUBST_NOTMAKE' => 1,
|
|
368
|
-
'AM_MISSING_PROG' => 1,
|
|
369
|
-
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
370
|
-
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
371
|
-
'AM_PROG_INSTALL_STRIP' => 1,
|
|
372
|
-
'_m4_warn' => 1,
|
|
373
|
-
'AC_LIBTOOL_OBJDIR' => 1,
|
|
396
|
+
'AC_LIBTOOL_GCJ' => 1,
|
|
374
397
|
'gl_FUNC_ARGZ' => 1,
|
|
375
|
-
'
|
|
376
|
-
'
|
|
377
|
-
'
|
|
378
|
-
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
379
|
-
'LT_LIB_M' => 1,
|
|
380
|
-
'_LT_AC_CHECK_DLFCN' => 1,
|
|
398
|
+
'AM_PROG_INSTALL_STRIP' => 1,
|
|
399
|
+
'PKG_CHECK_EXISTS' => 1,
|
|
400
|
+
'PKG_CHECK_MODULES' => 1,
|
|
381
401
|
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
|
382
|
-
'
|
|
383
|
-
'
|
|
384
|
-
'
|
|
385
|
-
'
|
|
386
|
-
'
|
|
387
|
-
'
|
|
388
|
-
'
|
|
389
|
-
'
|
|
390
|
-
'
|
|
391
|
-
'
|
|
392
|
-
'
|
|
402
|
+
'LTDL_CONVENIENCE' => 1,
|
|
403
|
+
'AM_ENABLE_STATIC' => 1,
|
|
404
|
+
'_LT_AC_LOCK' => 1,
|
|
405
|
+
'AC_LTDL_OBJDIR' => 1,
|
|
406
|
+
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
407
|
+
'LT_WITH_LTDL' => 1,
|
|
408
|
+
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
|
409
|
+
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
|
410
|
+
'LT_AC_PROG_RC' => 1,
|
|
411
|
+
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
412
|
+
'LT_LIB_M' => 1,
|
|
413
|
+
'_LT_COMPILER_OPTION' => 1,
|
|
393
414
|
'AC_LTDL_DLLIB' => 1,
|
|
394
|
-
'
|
|
395
|
-
'
|
|
396
|
-
'
|
|
397
|
-
'
|
|
398
|
-
'
|
|
399
|
-
'
|
|
400
|
-
'
|
|
401
|
-
'
|
|
402
|
-
'
|
|
403
|
-
'
|
|
404
|
-
'
|
|
405
|
-
'
|
|
406
|
-
'
|
|
407
|
-
'
|
|
415
|
+
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
416
|
+
'AM_DEP_TRACK' => 1,
|
|
417
|
+
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
418
|
+
'AC_LIBTOOL_OBJDIR' => 1,
|
|
419
|
+
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
420
|
+
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
421
|
+
'AM_AUX_DIR_EXPAND' => 1,
|
|
422
|
+
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
423
|
+
'm4_pattern_forbid' => 1,
|
|
424
|
+
'_AC_PROG_LIBTOOL' => 1,
|
|
425
|
+
'AM_MISSING_HAS_RUN' => 1,
|
|
426
|
+
'AC_DISABLE_SHARED' => 1,
|
|
427
|
+
'LT_PATH_LD' => 1,
|
|
428
|
+
'_LT_AC_TAGVAR' => 1,
|
|
429
|
+
'AC_LTDL_SHLIBEXT' => 1,
|
|
430
|
+
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
431
|
+
'LT_AC_PROG_EGREP' => 1,
|
|
432
|
+
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
|
433
|
+
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
434
|
+
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
|
435
|
+
'AC_DEFUN' => 1,
|
|
436
|
+
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
408
437
|
'AC_PROG_LD' => 1,
|
|
409
|
-
'
|
|
410
|
-
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
411
|
-
'AC_LIBTOOL_FC' => 1,
|
|
412
|
-
'LTDL_CONVENIENCE' => 1,
|
|
413
|
-
'_AM_SET_OPTION' => 1,
|
|
414
|
-
'AC_LTDL_PREOPEN' => 1,
|
|
415
|
-
'_LT_LINKER_BOILERPLATE' => 1,
|
|
416
|
-
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
438
|
+
'_LT_AC_TAGCONFIG' => 1,
|
|
417
439
|
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
|
418
|
-
'
|
|
419
|
-
'
|
|
420
|
-
'LT_SUPPORTED_TAG' => 1,
|
|
421
|
-
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
422
|
-
'LT_SYS_MODULE_EXT' => 1,
|
|
423
|
-
'LT_PROG_RC' => 1,
|
|
440
|
+
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
441
|
+
'AC_LTDL_SHLIBPATH' => 1,
|
|
424
442
|
'AC_DEFUN_ONCE' => 1,
|
|
425
|
-
'
|
|
426
|
-
'
|
|
427
|
-
'
|
|
428
|
-
'
|
|
429
|
-
'AC_LIBTOOL_RC' => 1,
|
|
430
|
-
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
443
|
+
'_AM_PROG_CC_C_O' => 1,
|
|
444
|
+
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
445
|
+
'm4_pattern_allow' => 1,
|
|
446
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
431
447
|
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
432
|
-
'
|
|
433
|
-
'
|
|
434
|
-
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
435
|
-
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
436
|
-
'LT_AC_PROG_SED' => 1,
|
|
437
|
-
'AM_ENABLE_SHARED' => 1,
|
|
448
|
+
'AC_ENABLE_STATIC' => 1,
|
|
449
|
+
'_LT_CC_BASENAME' => 1,
|
|
438
450
|
'LTDL_INSTALLABLE' => 1,
|
|
439
|
-
'
|
|
451
|
+
'LTDL_INIT' => 1,
|
|
452
|
+
'_AM_DEPENDENCIES' => 1,
|
|
453
|
+
'AM_SET_LEADING_DOT' => 1,
|
|
454
|
+
'AM_SET_DEPDIR' => 1,
|
|
455
|
+
'_LT_AC_CHECK_DLFCN' => 1,
|
|
456
|
+
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
457
|
+
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
|
458
|
+
'AC_LIBLTDL_INSTALLABLE' => 1,
|
|
459
|
+
'LT_AC_PROG_SED' => 1,
|
|
460
|
+
'AM_DISABLE_STATIC' => 1,
|
|
461
|
+
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
440
462
|
'AC_ENABLE_SHARED' => 1,
|
|
441
|
-
'
|
|
442
|
-
'
|
|
443
|
-
'
|
|
444
|
-
'
|
|
445
|
-
'
|
|
463
|
+
'LT_PROG_GO' => 1,
|
|
464
|
+
'_LT_LINKER_OPTION' => 1,
|
|
465
|
+
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
466
|
+
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
467
|
+
'LT_INIT' => 1,
|
|
468
|
+
'AC_PROG_LD_GNU' => 1,
|
|
469
|
+
'LT_SYS_DLOPEN_SELF' => 1,
|
|
470
|
+
'_AM_MANGLE_OPTION' => 1,
|
|
471
|
+
'AC_LIBTOOL_RC' => 1,
|
|
472
|
+
'_LT_AC_LANG_F77' => 1,
|
|
473
|
+
'AX_CHECK_COMPILE_FLAG' => 1,
|
|
446
474
|
'AM_PROG_CC_C_O' => 1,
|
|
447
|
-
'
|
|
448
|
-
'
|
|
449
|
-
'
|
|
475
|
+
'LT_FUNC_DLSYM_USCORE' => 1,
|
|
476
|
+
'AC_LIBTOOL_F77' => 1,
|
|
477
|
+
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
|
478
|
+
'AM_PROG_LD' => 1,
|
|
479
|
+
'AM_SUBST_NOTMAKE' => 1,
|
|
480
|
+
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
481
|
+
'AC_LIBTOOL_CXX' => 1,
|
|
482
|
+
'_LT_LIBOBJ' => 1,
|
|
483
|
+
'_AM_PROG_TAR' => 1,
|
|
484
|
+
'LTSUGAR_VERSION' => 1,
|
|
450
485
|
'LTVERSION_VERSION' => 1,
|
|
486
|
+
'LT_SYS_SYMBOL_USCORE' => 1,
|
|
487
|
+
'AM_MAINTAINER_MODE' => 1,
|
|
488
|
+
'LT_OUTPUT' => 1,
|
|
489
|
+
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
490
|
+
'gl_LD_OUTPUT_DEF' => 1,
|
|
491
|
+
'AM_MISSING_PROG' => 1,
|
|
492
|
+
'm4_include' => 1,
|
|
451
493
|
'_LT_PROG_CXX' => 1,
|
|
494
|
+
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
495
|
+
'_LT_PROG_LTMAIN' => 1,
|
|
496
|
+
'PKG_NOARCH_INSTALLDIR' => 1,
|
|
497
|
+
'LT_SYS_MODULE_EXT' => 1,
|
|
498
|
+
'AC_WITH_LTDL' => 1,
|
|
499
|
+
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
500
|
+
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
501
|
+
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
502
|
+
'_LT_AC_SYS_COMPILER' => 1,
|
|
503
|
+
'AC_DISABLE_STATIC' => 1,
|
|
504
|
+
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
505
|
+
'AM_SILENT_RULES' => 1,
|
|
506
|
+
'_AM_AUTOCONF_VERSION' => 1,
|
|
507
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
508
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
509
|
+
'AM_ENABLE_SHARED' => 1,
|
|
510
|
+
'AC_LIBTOOL_CONFIG' => 1,
|
|
511
|
+
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
512
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
513
|
+
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
514
|
+
'AC_LIBTOOL_FC' => 1,
|
|
515
|
+
'_LT_AC_LANG_CXX' => 1,
|
|
452
516
|
'_LT_PROG_F77' => 1,
|
|
453
|
-
'
|
|
454
|
-
'
|
|
517
|
+
'AX_CHECK_LINK_FLAG' => 1,
|
|
518
|
+
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
519
|
+
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
455
520
|
'AM_PROG_INSTALL_SH' => 1,
|
|
456
|
-
'
|
|
457
|
-
'
|
|
458
|
-
'
|
|
459
|
-
'
|
|
460
|
-
'
|
|
521
|
+
'_AM_IF_OPTION' => 1,
|
|
522
|
+
'AC_PROG_NM' => 1,
|
|
523
|
+
'AM_PROG_AS' => 1,
|
|
524
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
525
|
+
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
526
|
+
'AM_CONDITIONAL' => 1,
|
|
527
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
528
|
+
'LTOPTIONS_VERSION' => 1,
|
|
529
|
+
'_LT_PROG_FC' => 1,
|
|
530
|
+
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
531
|
+
'AM_DISABLE_SHARED' => 1,
|
|
532
|
+
'_LT_AC_LANG_GCJ' => 1,
|
|
461
533
|
'LT_CMD_MAX_LEN' => 1,
|
|
462
|
-
'
|
|
463
|
-
'
|
|
464
|
-
'_LT_LINKER_OPTION' => 1,
|
|
465
|
-
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
466
|
-
'PKG_INSTALLDIR' => 1,
|
|
467
|
-
'AC_DISABLE_SHARED' => 1,
|
|
468
|
-
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
469
|
-
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
470
|
-
'AC_LIBTOOL_SETUP' => 1,
|
|
471
|
-
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
534
|
+
'LT_PATH_NM' => 1,
|
|
535
|
+
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
472
536
|
'AC_LTDL_DLSYM_USCORE' => 1,
|
|
473
|
-
'
|
|
474
|
-
'LT_LANG' => 1,
|
|
475
|
-
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
476
|
-
'LT_CONFIG_LTDL_DIR' => 1,
|
|
477
|
-
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
478
|
-
'LT_OUTPUT' => 1,
|
|
479
|
-
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
480
|
-
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
481
|
-
'gl_LD_OUTPUT_DEF' => 1,
|
|
482
|
-
'_PKG_SHORT_ERRORS_SUPPORTED' => 1,
|
|
483
|
-
'AC_WITH_LTDL' => 1,
|
|
484
|
-
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
485
|
-
'PKG_CHECK_EXISTS' => 1,
|
|
486
|
-
'LT_AC_PROG_RC' => 1,
|
|
487
|
-
'AC_LIBTOOL_CXX' => 1,
|
|
488
|
-
'LT_INIT' => 1,
|
|
537
|
+
'_m4_warn' => 1,
|
|
489
538
|
'LT_AC_PROG_GCJ' => 1,
|
|
490
|
-
'
|
|
539
|
+
'AC_PROG_EGREP' => 1,
|
|
540
|
+
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
491
541
|
'_LT_AC_PROG_CXXCPP' => 1,
|
|
492
|
-
'
|
|
493
|
-
'
|
|
494
|
-
'
|
|
495
|
-
'
|
|
496
|
-
'
|
|
497
|
-
'PKG_NOARCH_INSTALLDIR' => 1,
|
|
498
|
-
'm4_pattern_allow' => 1,
|
|
499
|
-
'AC_LIBTOOL_F77' => 1,
|
|
500
|
-
'AM_SET_LEADING_DOT' => 1,
|
|
501
|
-
'_LT_PROG_FC' => 1,
|
|
502
|
-
'LT_AC_PROG_EGREP' => 1,
|
|
503
|
-
'_AM_DEPENDENCIES' => 1,
|
|
504
|
-
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
505
|
-
'LTOPTIONS_VERSION' => 1,
|
|
506
|
-
'_LT_AC_SYS_COMPILER' => 1,
|
|
507
|
-
'AM_PROG_NM' => 1,
|
|
508
|
-
'_AM_PROG_CC_C_O' => 1,
|
|
509
|
-
'PKG_CHECK_MODULES' => 1,
|
|
510
|
-
'AC_LIBLTDL_CONVENIENCE' => 1,
|
|
511
|
-
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
|
512
|
-
'AC_LIBLTDL_INSTALLABLE' => 1,
|
|
542
|
+
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
543
|
+
'LT_LIB_DLLOAD' => 1,
|
|
544
|
+
'AM_SANITY_CHECK' => 1,
|
|
545
|
+
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
546
|
+
'PKG_CHECK_VAR' => 1,
|
|
513
547
|
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
|
514
|
-
'
|
|
515
|
-
'LT_PROG_GCJ' => 1,
|
|
516
|
-
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
517
|
-
'AM_INIT_AUTOMAKE' => 1,
|
|
518
|
-
'AC_DISABLE_STATIC' => 1,
|
|
519
|
-
'LT_PATH_NM' => 1,
|
|
520
|
-
'AM_MAINTAINER_MODE' => 1,
|
|
521
|
-
'AC_LTDL_SHLIBEXT' => 1,
|
|
522
|
-
'_LT_AC_LOCK' => 1,
|
|
523
|
-
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
524
|
-
'LT_PROG_GO' => 1,
|
|
548
|
+
'_AM_SET_OPTION' => 1,
|
|
525
549
|
'LT_SYS_MODULE_PATH' => 1,
|
|
526
|
-
'
|
|
527
|
-
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
528
|
-
'AC_LTDL_SHLIBPATH' => 1,
|
|
529
|
-
'AM_PROG_AS' => 1,
|
|
530
|
-
'AM_AUX_DIR_EXPAND' => 1,
|
|
531
|
-
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
532
|
-
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
533
|
-
'_LT_COMPILER_OPTION' => 1,
|
|
534
|
-
'_AM_SET_OPTIONS' => 1,
|
|
535
|
-
'AM_RUN_LOG' => 1,
|
|
536
|
-
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
537
|
-
'AC_LIBTOOL_PICMODE' => 1,
|
|
538
|
-
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
539
|
-
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
|
540
|
-
'AC_CHECK_LIBM' => 1,
|
|
541
|
-
'LT_PATH_LD' => 1,
|
|
542
|
-
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
543
|
-
'_AM_MANGLE_OPTION' => 1,
|
|
544
|
-
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
545
|
-
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
546
|
-
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
547
|
-
'AM_SET_DEPDIR' => 1,
|
|
548
|
-
'PKG_PROG_PKG_CONFIG' => 1,
|
|
549
|
-
'_LT_CC_BASENAME' => 1,
|
|
550
|
-
'_LT_LIBOBJ' => 1
|
|
550
|
+
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1
|
|
551
551
|
}
|
|
552
552
|
], 'Autom4te::Request' ),
|
|
553
553
|
bless( [
|
|
@@ -589,194 +589,194 @@
|
|
|
589
589
|
'm4/ltoptions.m4',
|
|
590
590
|
'm4/ltsugar.m4',
|
|
591
591
|
'm4/ltversion.m4',
|
|
592
|
-
'm4/lt~obsolete.m4',
|
|
593
|
-
'configure.ac'
|
|
594
|
-
],
|
|
595
|
-
{
|
|
596
|
-
'
|
|
597
|
-
'
|
|
598
|
-
'
|
|
599
|
-
'
|
|
600
|
-
'
|
|
601
|
-
'AC_PROG_LIBTOOL' => 1,
|
|
602
|
-
'AM_AUTOMAKE_VERSION' => 1,
|
|
603
|
-
'AM_SUBST_NOTMAKE' => 1,
|
|
604
|
-
'AM_MISSING_PROG' => 1,
|
|
605
|
-
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
606
|
-
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
607
|
-
'AM_PROG_INSTALL_STRIP' => 1,
|
|
608
|
-
'_m4_warn' => 1,
|
|
609
|
-
'AC_LIBTOOL_OBJDIR' => 1,
|
|
610
|
-
'gl_FUNC_ARGZ' => 1,
|
|
611
|
-
'AM_SANITY_CHECK' => 1,
|
|
612
|
-
'LTOBSOLETE_VERSION' => 1,
|
|
613
|
-
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
|
614
|
-
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
615
|
-
'LT_LIB_M' => 1,
|
|
616
|
-
'_LT_AC_CHECK_DLFCN' => 1,
|
|
617
|
-
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
|
618
|
-
'LTSUGAR_VERSION' => 1,
|
|
619
|
-
'_LT_PROG_LTMAIN' => 1,
|
|
620
|
-
'LT_SYS_SYMBOL_USCORE' => 1,
|
|
621
|
-
'_AM_PROG_TAR' => 1,
|
|
622
|
-
'AC_LIBTOOL_GCJ' => 1,
|
|
623
|
-
'_LT_WITH_SYSROOT' => 1,
|
|
624
|
-
'LT_FUNC_DLSYM_USCORE' => 1,
|
|
625
|
-
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
|
626
|
-
'_LT_AC_LANG_F77' => 1,
|
|
627
|
-
'AC_LIBTOOL_CONFIG' => 1,
|
|
628
|
-
'AC_CONFIG_MACRO_DIR' => 1,
|
|
629
|
-
'AC_LTDL_DLLIB' => 1,
|
|
630
|
-
'_AM_SUBST_NOTMAKE' => 1,
|
|
631
|
-
'_AM_AUTOCONF_VERSION' => 1,
|
|
632
|
-
'AM_DISABLE_SHARED' => 1,
|
|
633
|
-
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
634
|
-
'_LTDL_SETUP' => 1,
|
|
635
|
-
'AM_PROG_LIBTOOL' => 1,
|
|
636
|
-
'_LT_AC_LANG_CXX' => 1,
|
|
637
|
-
'AM_PROG_LD' => 1,
|
|
638
|
-
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
639
|
-
'AC_LIB_LTDL' => 1,
|
|
640
|
-
'AU_DEFUN' => 1,
|
|
641
|
-
'AC_PROG_NM' => 1,
|
|
642
|
-
'AC_LIBTOOL_DLOPEN' => 1,
|
|
643
|
-
'AC_PROG_LD' => 1,
|
|
644
|
-
'AC_PROG_LD_GNU' => 1,
|
|
645
|
-
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
646
|
-
'AC_LIBTOOL_FC' => 1,
|
|
647
|
-
'LTDL_CONVENIENCE' => 1,
|
|
648
|
-
'_AM_SET_OPTION' => 1,
|
|
649
|
-
'AC_LTDL_PREOPEN' => 1,
|
|
650
|
-
'_LT_LINKER_BOILERPLATE' => 1,
|
|
651
|
-
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
652
|
-
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
|
653
|
-
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
|
654
|
-
'gl_PREREQ_ARGZ' => 1,
|
|
655
|
-
'LT_SUPPORTED_TAG' => 1,
|
|
656
|
-
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
657
|
-
'LT_SYS_MODULE_EXT' => 1,
|
|
658
|
-
'LT_PROG_RC' => 1,
|
|
659
|
-
'AC_DEFUN_ONCE' => 1,
|
|
660
|
-
'AX_CHECK_COMPILE_FLAG' => 1,
|
|
661
|
-
'_LT_AC_LANG_GCJ' => 1,
|
|
662
|
-
'AC_LTDL_OBJDIR' => 1,
|
|
663
|
-
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
664
|
-
'AC_LIBTOOL_RC' => 1,
|
|
665
|
-
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
666
|
-
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
667
|
-
'AM_SILENT_RULES' => 1,
|
|
668
|
-
'include' => 1,
|
|
669
|
-
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
670
|
-
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
671
|
-
'LT_AC_PROG_SED' => 1,
|
|
672
|
-
'AM_ENABLE_SHARED' => 1,
|
|
592
|
+
'm4/lt~obsolete.m4',
|
|
593
|
+
'configure.ac'
|
|
594
|
+
],
|
|
595
|
+
{
|
|
596
|
+
'AC_DEFUN_ONCE' => 1,
|
|
597
|
+
'_AM_PROG_CC_C_O' => 1,
|
|
598
|
+
'_LT_AC_LANG_C_CONFIG' => 1,
|
|
599
|
+
'AM_INIT_AUTOMAKE' => 1,
|
|
600
|
+
'm4_pattern_allow' => 1,
|
|
673
601
|
'LTDL_INSTALLABLE' => 1,
|
|
674
|
-
'
|
|
675
|
-
'AC_ENABLE_SHARED' => 1,
|
|
676
|
-
'AX_CHECK_LINK_FLAG' => 1,
|
|
677
|
-
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
678
|
-
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
602
|
+
'AC_DISABLE_FAST_INSTALL' => 1,
|
|
679
603
|
'AC_ENABLE_STATIC' => 1,
|
|
680
|
-
'
|
|
681
|
-
'
|
|
682
|
-
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
683
|
-
'AM_CONDITIONAL' => 1,
|
|
684
|
-
'LT_LIB_DLLOAD' => 1,
|
|
685
|
-
'LTVERSION_VERSION' => 1,
|
|
686
|
-
'_LT_PROG_CXX' => 1,
|
|
687
|
-
'_LT_PROG_F77' => 1,
|
|
604
|
+
'_LT_CC_BASENAME' => 1,
|
|
605
|
+
'_AM_DEPENDENCIES' => 1,
|
|
688
606
|
'LTDL_INIT' => 1,
|
|
689
|
-
'
|
|
690
|
-
'
|
|
691
|
-
'
|
|
692
|
-
'AC_PATH_MAGIC' => 1,
|
|
693
|
-
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
694
|
-
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
695
|
-
'AM_MAKE_INCLUDE' => 1,
|
|
696
|
-
'LT_CMD_MAX_LEN' => 1,
|
|
607
|
+
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
|
608
|
+
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
|
609
|
+
'AC_PROG_LD' => 1,
|
|
697
610
|
'_LT_AC_TAGCONFIG' => 1,
|
|
698
|
-
'
|
|
699
|
-
'
|
|
700
|
-
'
|
|
701
|
-
'
|
|
702
|
-
'
|
|
611
|
+
'AC_DEFUN' => 1,
|
|
612
|
+
'AC_LTDL_SHLIBPATH' => 1,
|
|
613
|
+
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
614
|
+
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
|
615
|
+
'AC_LIBTOOL_OBJDIR' => 1,
|
|
616
|
+
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
617
|
+
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
|
618
|
+
'AM_AUX_DIR_EXPAND' => 1,
|
|
703
619
|
'AC_LIBTOOL_WIN32_DLL' => 1,
|
|
704
|
-
'
|
|
705
|
-
'
|
|
706
|
-
'
|
|
620
|
+
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
|
621
|
+
'AM_DEP_TRACK' => 1,
|
|
622
|
+
'_AC_PROG_LIBTOOL' => 1,
|
|
707
623
|
'AM_MISSING_HAS_RUN' => 1,
|
|
708
|
-
'
|
|
624
|
+
'm4_pattern_forbid' => 1,
|
|
625
|
+
'AC_LTDL_SHLIBEXT' => 1,
|
|
626
|
+
'AC_DISABLE_SHARED' => 1,
|
|
627
|
+
'LT_PATH_LD' => 1,
|
|
628
|
+
'_LT_AC_TAGVAR' => 1,
|
|
629
|
+
'LT_AC_PROG_EGREP' => 1,
|
|
630
|
+
'_LT_AC_LANG_F77_CONFIG' => 1,
|
|
631
|
+
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
|
632
|
+
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
|
633
|
+
'LT_AC_PROG_RC' => 1,
|
|
634
|
+
'LT_WITH_LTDL' => 1,
|
|
635
|
+
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
|
636
|
+
'LT_LIB_M' => 1,
|
|
637
|
+
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
|
638
|
+
'AC_LTDL_DLLIB' => 1,
|
|
639
|
+
'_LT_COMPILER_OPTION' => 1,
|
|
709
640
|
'LT_SYS_DLSEARCH_PATH' => 1,
|
|
710
|
-
'
|
|
711
|
-
'
|
|
712
|
-
'
|
|
641
|
+
'gl_FUNC_ARGZ' => 1,
|
|
642
|
+
'AC_LIBTOOL_GCJ' => 1,
|
|
643
|
+
'AM_PROG_INSTALL_STRIP' => 1,
|
|
644
|
+
'LTDL_CONVENIENCE' => 1,
|
|
645
|
+
'AM_ENABLE_STATIC' => 1,
|
|
646
|
+
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
|
647
|
+
'AC_LTDL_OBJDIR' => 1,
|
|
713
648
|
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
|
714
|
-
'
|
|
715
|
-
'
|
|
716
|
-
'
|
|
717
|
-
'
|
|
718
|
-
'
|
|
719
|
-
'
|
|
720
|
-
'
|
|
649
|
+
'_LT_AC_LOCK' => 1,
|
|
650
|
+
'AC_LIB_LTDL' => 1,
|
|
651
|
+
'AC_LTDL_ENABLE_INSTALL' => 1,
|
|
652
|
+
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
|
653
|
+
'AC_LIBTOOL_PICMODE' => 1,
|
|
654
|
+
'AC_PATH_MAGIC' => 1,
|
|
655
|
+
'_LT_LINKER_BOILERPLATE' => 1,
|
|
656
|
+
'LT_PROG_RC' => 1,
|
|
657
|
+
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
|
658
|
+
'_LT_WITH_SYSROOT' => 1,
|
|
659
|
+
'gl_PREREQ_ARGZ' => 1,
|
|
660
|
+
'LTOBSOLETE_VERSION' => 1,
|
|
661
|
+
'AM_MAKE_INCLUDE' => 1,
|
|
662
|
+
'_AM_SET_OPTIONS' => 1,
|
|
663
|
+
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
|
664
|
+
'AC_LTDL_PREOPEN' => 1,
|
|
665
|
+
'AC_PATH_TOOL_PREFIX' => 1,
|
|
666
|
+
'AC_LIBLTDL_CONVENIENCE' => 1,
|
|
667
|
+
'AC_LIBTOOL_SETUP' => 1,
|
|
668
|
+
'AC_LTDL_SYMBOL_USCORE' => 1,
|
|
669
|
+
'AC_CONFIG_MACRO_DIR' => 1,
|
|
670
|
+
'AM_PROG_NM' => 1,
|
|
671
|
+
'include' => 1,
|
|
672
|
+
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
|
673
|
+
'AM_RUN_LOG' => 1,
|
|
674
|
+
'AC_LIBTOOL_DLOPEN' => 1,
|
|
675
|
+
'AC_LTDL_SYSSEARCHPATH' => 1,
|
|
676
|
+
'LT_LANG' => 1,
|
|
677
|
+
'_LT_AC_SHELL_INIT' => 1,
|
|
678
|
+
'_AM_SUBST_NOTMAKE' => 1,
|
|
679
|
+
'_LT_COMPILER_BOILERPLATE' => 1,
|
|
680
|
+
'AU_DEFUN' => 1,
|
|
681
|
+
'LT_PROG_GCJ' => 1,
|
|
682
|
+
'_LTDL_SETUP' => 1,
|
|
683
|
+
'AC_CHECK_LIBM' => 1,
|
|
684
|
+
'_m4_warn' => 1,
|
|
685
|
+
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
|
686
|
+
'AC_PROG_EGREP' => 1,
|
|
721
687
|
'LT_AC_PROG_GCJ' => 1,
|
|
722
|
-
'
|
|
688
|
+
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
|
723
689
|
'_LT_AC_PROG_CXXCPP' => 1,
|
|
724
|
-
'
|
|
725
|
-
'
|
|
726
|
-
'
|
|
727
|
-
'
|
|
728
|
-
'
|
|
729
|
-
'
|
|
730
|
-
'
|
|
731
|
-
'AM_SET_LEADING_DOT' => 1,
|
|
690
|
+
'_LT_PATH_TOOL_PREFIX' => 1,
|
|
691
|
+
'AM_SANITY_CHECK' => 1,
|
|
692
|
+
'LT_LIB_DLLOAD' => 1,
|
|
693
|
+
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
|
694
|
+
'_AM_SET_OPTION' => 1,
|
|
695
|
+
'LT_SYS_MODULE_PATH' => 1,
|
|
696
|
+
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
|
732
697
|
'_LT_PROG_FC' => 1,
|
|
733
|
-
'LT_AC_PROG_EGREP' => 1,
|
|
734
|
-
'_AM_DEPENDENCIES' => 1,
|
|
735
|
-
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
|
736
698
|
'LTOPTIONS_VERSION' => 1,
|
|
737
|
-
'
|
|
738
|
-
'
|
|
739
|
-
'
|
|
740
|
-
'
|
|
741
|
-
'
|
|
742
|
-
'
|
|
743
|
-
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
|
744
|
-
'AC_LTDL_ENABLE_INSTALL' => 1,
|
|
745
|
-
'LT_PROG_GCJ' => 1,
|
|
746
|
-
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
747
|
-
'AM_INIT_AUTOMAKE' => 1,
|
|
748
|
-
'AC_DISABLE_STATIC' => 1,
|
|
699
|
+
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
700
|
+
'AM_AUTOMAKE_VERSION' => 1,
|
|
701
|
+
'AM_CONDITIONAL' => 1,
|
|
702
|
+
'LT_CMD_MAX_LEN' => 1,
|
|
703
|
+
'AM_DISABLE_SHARED' => 1,
|
|
704
|
+
'_LT_AC_LANG_GCJ' => 1,
|
|
749
705
|
'LT_PATH_NM' => 1,
|
|
750
|
-
'
|
|
751
|
-
'
|
|
752
|
-
'
|
|
706
|
+
'AC_LTDL_DLSYM_USCORE' => 1,
|
|
707
|
+
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
|
708
|
+
'_LT_AC_LANG_CXX' => 1,
|
|
709
|
+
'_LT_PROG_F77' => 1,
|
|
710
|
+
'AX_CHECK_LINK_FLAG' => 1,
|
|
711
|
+
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
|
712
|
+
'AC_LIBTOOL_FC' => 1,
|
|
713
|
+
'_AM_IF_OPTION' => 1,
|
|
714
|
+
'AM_PROG_INSTALL_SH' => 1,
|
|
715
|
+
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
|
716
|
+
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
|
717
|
+
'AC_PROG_NM' => 1,
|
|
718
|
+
'AC_PROG_LIBTOOL' => 1,
|
|
753
719
|
'_LT_AC_LANG_RC_CONFIG' => 1,
|
|
754
|
-
'LT_PROG_GO' => 1,
|
|
755
|
-
'LT_SYS_MODULE_PATH' => 1,
|
|
756
|
-
'LT_WITH_LTDL' => 1,
|
|
757
|
-
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
|
758
|
-
'AC_LTDL_SHLIBPATH' => 1,
|
|
759
720
|
'AM_PROG_AS' => 1,
|
|
760
|
-
'
|
|
761
|
-
'
|
|
762
|
-
'
|
|
763
|
-
'
|
|
764
|
-
'
|
|
765
|
-
'
|
|
766
|
-
'
|
|
767
|
-
'
|
|
768
|
-
'
|
|
769
|
-
'
|
|
770
|
-
'
|
|
771
|
-
'
|
|
721
|
+
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
|
722
|
+
'AM_SILENT_RULES' => 1,
|
|
723
|
+
'AC_DISABLE_STATIC' => 1,
|
|
724
|
+
'_AM_AUTOCONF_VERSION' => 1,
|
|
725
|
+
'AC_ENABLE_FAST_INSTALL' => 1,
|
|
726
|
+
'LT_CONFIG_LTDL_DIR' => 1,
|
|
727
|
+
'AM_ENABLE_SHARED' => 1,
|
|
728
|
+
'LT_SUPPORTED_TAG' => 1,
|
|
729
|
+
'AC_LIBTOOL_CONFIG' => 1,
|
|
730
|
+
'AM_PROG_LIBTOOL' => 1,
|
|
731
|
+
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
|
732
|
+
'AM_MISSING_PROG' => 1,
|
|
733
|
+
'gl_LD_OUTPUT_DEF' => 1,
|
|
734
|
+
'LT_OUTPUT' => 1,
|
|
735
|
+
'm4_include' => 1,
|
|
736
|
+
'_LT_PROG_CXX' => 1,
|
|
737
|
+
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
|
738
|
+
'LT_SYS_MODULE_EXT' => 1,
|
|
739
|
+
'_LT_PROG_LTMAIN' => 1,
|
|
740
|
+
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
|
741
|
+
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
|
742
|
+
'_LT_AC_SYS_COMPILER' => 1,
|
|
772
743
|
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
|
744
|
+
'AC_WITH_LTDL' => 1,
|
|
745
|
+
'AM_PROG_LD' => 1,
|
|
746
|
+
'AM_SUBST_NOTMAKE' => 1,
|
|
747
|
+
'_LT_LIBOBJ' => 1,
|
|
748
|
+
'_AM_PROG_TAR' => 1,
|
|
749
|
+
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
|
750
|
+
'AC_LIBTOOL_CXX' => 1,
|
|
751
|
+
'LTVERSION_VERSION' => 1,
|
|
752
|
+
'LTSUGAR_VERSION' => 1,
|
|
753
|
+
'AM_MAINTAINER_MODE' => 1,
|
|
754
|
+
'LT_SYS_SYMBOL_USCORE' => 1,
|
|
755
|
+
'AC_PROG_LD_GNU' => 1,
|
|
756
|
+
'LT_SYS_DLOPEN_SELF' => 1,
|
|
757
|
+
'LT_INIT' => 1,
|
|
773
758
|
'_AM_MANGLE_OPTION' => 1,
|
|
774
|
-
'
|
|
775
|
-
'
|
|
776
|
-
'
|
|
759
|
+
'AC_LIBTOOL_RC' => 1,
|
|
760
|
+
'LT_FUNC_DLSYM_USCORE' => 1,
|
|
761
|
+
'AX_CHECK_COMPILE_FLAG' => 1,
|
|
762
|
+
'_LT_AC_LANG_F77' => 1,
|
|
763
|
+
'AM_PROG_CC_C_O' => 1,
|
|
764
|
+
'AC_LIBTOOL_F77' => 1,
|
|
765
|
+
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
|
766
|
+
'AM_SET_LEADING_DOT' => 1,
|
|
777
767
|
'AM_SET_DEPDIR' => 1,
|
|
778
|
-
'
|
|
779
|
-
'
|
|
768
|
+
'AC_LIBLTDL_INSTALLABLE' => 1,
|
|
769
|
+
'LT_AC_PROG_SED' => 1,
|
|
770
|
+
'_LT_AC_CHECK_DLFCN' => 1,
|
|
771
|
+
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
|
772
|
+
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
|
773
|
+
'AC_ENABLE_SHARED' => 1,
|
|
774
|
+
'AM_DISABLE_STATIC' => 1,
|
|
775
|
+
'_LT_AC_FILE_LTDLL_C' => 1,
|
|
776
|
+
'_AM_CONFIG_MACRO_DIRS' => 1,
|
|
777
|
+
'_LT_LINKER_OPTION' => 1,
|
|
778
|
+
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
|
779
|
+
'LT_PROG_GO' => 1
|
|
780
780
|
}
|
|
781
781
|
], 'Autom4te::Request' )
|
|
782
782
|
);
|