rbnacl-libsodium 0.7.0 → 1.0.0

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.
Files changed (122) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGES.md +4 -0
  3. data/lib/rbnacl/libsodium/version.rb +1 -1
  4. data/vendor/libsodium/ChangeLog +13 -0
  5. data/vendor/libsodium/THANKS +1 -0
  6. data/vendor/libsodium/autom4te.cache/output.1 +14 -90
  7. data/vendor/libsodium/autom4te.cache/output.3 +14 -90
  8. data/vendor/libsodium/autom4te.cache/requests +127 -127
  9. data/vendor/libsodium/autom4te.cache/traces.1 +224 -224
  10. data/vendor/libsodium/autom4te.cache/traces.3 +137 -144
  11. data/vendor/libsodium/builds/msvc/version.h +2 -2
  12. data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj +3 -0
  13. data/vendor/libsodium/builds/msvc/vs2010/test/test.vcxproj.filters +3 -0
  14. data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj +3 -0
  15. data/vendor/libsodium/builds/msvc/vs2012/test/test.vcxproj.filters +3 -0
  16. data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj +3 -0
  17. data/vendor/libsodium/builds/msvc/vs2013/test/test.vcxproj.filters +3 -0
  18. data/vendor/libsodium/configure +14 -90
  19. data/vendor/libsodium/configure.ac +5 -12
  20. data/vendor/libsodium/msvc-scripts/process.bat +2 -2
  21. data/vendor/libsodium/packaging/nuget/package.config +1 -1
  22. data/vendor/libsodium/packaging/nuget/package.nuspec +25 -25
  23. data/vendor/libsodium/packaging/nuget/package.targets +20 -20
  24. data/vendor/libsodium/src/libsodium/crypto_aead/chacha20poly1305/sodium/aead_chacha20poly1305.c +2 -0
  25. data/vendor/libsodium/src/libsodium/crypto_box/crypto_box_easy.c +7 -0
  26. data/vendor/libsodium/src/libsodium/crypto_box/curve25519xsalsa20poly1305/ref/keypair_curve25519xsalsa20poly1305.c +1 -1
  27. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2-impl.h +9 -4
  28. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2b-ref.c +6 -1
  29. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/generichash_blake2b.c +4 -4
  30. data/vendor/libsodium/src/libsodium/crypto_hash/sha256/cp/hash_sha256.c +2 -0
  31. data/vendor/libsodium/src/libsodium/crypto_hash/sha512/cp/hash_sha512.c +2 -0
  32. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/donna/auth_poly1305_donna.c +2 -1
  33. data/vendor/libsodium/src/libsodium/crypto_onetimeauth/poly1305/onetimeauth_poly1305.c +2 -0
  34. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/crypto_scrypt-common.c +13 -13
  35. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pbkdf2-sha256.c +28 -27
  36. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/pwhash_scryptsalsa208sha256.c +16 -12
  37. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/scrypt_platform.c +2 -2
  38. data/vendor/libsodium/src/libsodium/crypto_pwhash/scryptsalsa208sha256/sse/pwhash_scryptsalsa208sha256_sse.c +2 -2
  39. data/vendor/libsodium/src/libsodium/crypto_secretbox/crypto_secretbox_easy.c +3 -3
  40. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/keypair.c +1 -1
  41. data/vendor/libsodium/src/libsodium/crypto_sign/ed25519/ref10/sign.c +7 -3
  42. data/vendor/libsodium/src/libsodium/crypto_sign/edwards25519sha512batch/ref/sign_edwards25519sha512batch.c +1 -1
  43. data/vendor/libsodium/src/libsodium/crypto_stream/chacha20/ref/stream_chacha20_ref.c +3 -2
  44. data/vendor/libsodium/src/libsodium/include/sodium/randombytes.h +10 -8
  45. data/vendor/libsodium/src/libsodium/randombytes/salsa20/randombytes_salsa20_random.c +13 -8
  46. data/vendor/libsodium/src/libsodium/randombytes/sysrandom/randombytes_sysrandom.c +10 -8
  47. data/vendor/libsodium/src/libsodium/sodium/core.c +1 -1
  48. data/vendor/libsodium/src/libsodium/sodium/runtime.c +3 -3
  49. data/vendor/libsodium/src/libsodium/sodium/utils.c +12 -12
  50. data/vendor/libsodium/test/default/Makefile.am +9 -1
  51. data/vendor/libsodium/test/default/Makefile.in +35 -13
  52. data/vendor/libsodium/test/default/aead_chacha20poly1305.c +37 -31
  53. data/vendor/libsodium/test/default/auth.c +48 -9
  54. data/vendor/libsodium/test/default/auth.exp +18 -0
  55. data/vendor/libsodium/test/default/auth2.c +19 -24
  56. data/vendor/libsodium/test/default/auth3.c +17 -25
  57. data/vendor/libsodium/test/default/auth5.c +24 -24
  58. data/vendor/libsodium/test/default/auth6.c +9 -8
  59. data/vendor/libsodium/test/default/auth7.c +24 -24
  60. data/vendor/libsodium/test/default/box.c +74 -51
  61. data/vendor/libsodium/test/default/box.exp +19 -0
  62. data/vendor/libsodium/test/default/box2.c +48 -51
  63. data/vendor/libsodium/test/default/box2.exp +17 -0
  64. data/vendor/libsodium/test/default/box7.c +20 -18
  65. data/vendor/libsodium/test/default/box8.c +27 -25
  66. data/vendor/libsodium/test/default/box_easy.c +32 -42
  67. data/vendor/libsodium/test/default/box_easy2.c +3 -5
  68. data/vendor/libsodium/test/default/box_seed.c +20 -20
  69. data/vendor/libsodium/test/default/chacha20.c +41 -21
  70. data/vendor/libsodium/test/default/chacha20.exp +8 -5
  71. data/vendor/libsodium/test/default/cmptest.h +4 -0
  72. data/vendor/libsodium/test/default/core1.c +26 -19
  73. data/vendor/libsodium/test/default/core2.c +24 -23
  74. data/vendor/libsodium/test/default/core3.c +30 -26
  75. data/vendor/libsodium/test/default/core4.c +22 -23
  76. data/vendor/libsodium/test/default/core5.c +18 -22
  77. data/vendor/libsodium/test/default/core6.c +33 -34
  78. data/vendor/libsodium/test/default/ed25519_convert.c +16 -20
  79. data/vendor/libsodium/test/default/generichash.c +59 -15
  80. data/vendor/libsodium/test/default/generichash.exp +2 -0
  81. data/vendor/libsodium/test/default/generichash2.c +30 -13
  82. data/vendor/libsodium/test/default/generichash3.c +156 -22
  83. data/vendor/libsodium/test/default/generichash3.exp +11 -0
  84. data/vendor/libsodium/test/default/hash.c +31 -6
  85. data/vendor/libsodium/test/default/hash.exp +3 -0
  86. data/vendor/libsodium/test/default/hash3.c +10 -7
  87. data/vendor/libsodium/test/default/onetimeauth.c +46 -34
  88. data/vendor/libsodium/test/default/onetimeauth.exp +2 -0
  89. data/vendor/libsodium/test/default/onetimeauth2.c +20 -32
  90. data/vendor/libsodium/test/default/onetimeauth7.c +24 -24
  91. data/vendor/libsodium/test/default/pwhash.c +276 -68
  92. data/vendor/libsodium/test/default/pwhash.exp +20 -0
  93. data/vendor/libsodium/test/default/pwhash_scrypt_ll.c +31 -37
  94. data/vendor/libsodium/test/default/randombytes.c +85 -8
  95. data/vendor/libsodium/test/default/randombytes.exp +1 -0
  96. data/vendor/libsodium/test/default/scalarmult.c +28 -15
  97. data/vendor/libsodium/test/default/scalarmult2.c +20 -15
  98. data/vendor/libsodium/test/default/scalarmult5.c +24 -21
  99. data/vendor/libsodium/test/default/scalarmult6.c +24 -21
  100. data/vendor/libsodium/test/default/scalarmult7.c +31 -0
  101. data/vendor/libsodium/test/default/scalarmult7.exp +1 -0
  102. data/vendor/libsodium/test/default/secretbox.c +50 -45
  103. data/vendor/libsodium/test/default/secretbox2.c +32 -45
  104. data/vendor/libsodium/test/default/secretbox7.c +19 -17
  105. data/vendor/libsodium/test/default/secretbox8.c +26 -24
  106. data/vendor/libsodium/test/default/secretbox_easy.c +46 -52
  107. data/vendor/libsodium/test/default/secretbox_easy2.c +3 -5
  108. data/vendor/libsodium/test/default/shorthash.c +17 -10
  109. data/vendor/libsodium/test/default/sign.c +74 -39
  110. data/vendor/libsodium/test/default/sodium_core.c +6 -3
  111. data/vendor/libsodium/test/default/sodium_utils.c +57 -28
  112. data/vendor/libsodium/test/default/sodium_utils.exp +6 -0
  113. data/vendor/libsodium/test/default/sodium_utils2.c +13 -11
  114. data/vendor/libsodium/test/default/sodium_utils3.c +5 -10
  115. data/vendor/libsodium/test/default/sodium_version.c +4 -5
  116. data/vendor/libsodium/test/default/stream.c +23 -17
  117. data/vendor/libsodium/test/default/stream2.c +17 -15
  118. data/vendor/libsodium/test/default/stream3.c +17 -19
  119. data/vendor/libsodium/test/default/stream4.c +36 -45
  120. data/vendor/libsodium/test/default/verify1.c +20 -18
  121. metadata +5 -3
  122. data/vendor/libsodium/src/libsodium/crypto_generichash/blake2/ref/blake2s-ref.c +0 -356
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9c4ff372aaa915d80d470c81a1464d465b6a1d44
4
- data.tar.gz: 1e74053ea9c43c91bf1865385ca7747b5eefcc6f
3
+ metadata.gz: 071c127dcfd6684293ae23faa412e6b50e715d99
4
+ data.tar.gz: de4425a2264942d7ced04531489136407cb099e9
5
5
  SHA512:
6
- metadata.gz: 5738d866d6c3a8d3df818e18de77bd21bcf39b1d949c8706dfde9ea1443553ed25f36384af63d3895403daafeb7adeb789c1eedd7ee79f1cee44cb44bcadd5a7
7
- data.tar.gz: cddb7a365337a3de5a45057b268e3a89b6859c71a03047974958bf405287cfb80483eb2306396fc8c8c8901185fd264f7533475064a181961a63a3e260c4beb2
6
+ metadata.gz: c590ee15a483f0127709b5ccf6ce3ce61e6417a843ff5a1de81cade6dc48e296ebbd4c54587671d0faf8f3ae9a98eae3dd9415cba3a4f5be7b66c20039460bee
7
+ data.tar.gz: 4ef2ea438879dcbe91443b2ff4a507e2682ed8c126dcc151426f223edc14b3ffd5e00bdeaea17289828a23eeb15ea035e6c02382a23e80e98b3cc0a127ba9113
data/CHANGES.md CHANGED
@@ -1,3 +1,7 @@
1
+ 1.0.0 (2014-09-27)
2
+ ------------------
3
+ * Update to libsodium 1.0.0
4
+
1
5
  0.7.0 (2014-08-24)
2
6
  ------------------
3
7
  * Update to libsodium 0.7.0
@@ -1,5 +1,5 @@
1
1
  module RbNaCl
2
2
  module Libsodium
3
- VERSION = "0.7.0"
3
+ VERSION = '1.0.0'
4
4
  end
5
5
  end
@@ -1,4 +1,17 @@
1
1
 
2
+ * Version 1.0.0
3
+ - The API and ABI are now stable. New features will be added, but
4
+ backward-compatibility is guaranteed through all the 1.x.y releases.
5
+ - crypto_sign() properly works with overlapping regions again. Thanks
6
+ to @pysiak for reporting this regression introduced in version 0.6.1.
7
+ - The test suite has been extended.
8
+
9
+ * Version 0.7.1 (1.0 RC2)
10
+ - This is the second release candidate of Sodium 1.0. Minor
11
+ compilation, readability and portability changes have been made and the
12
+ test suite was improved, but the API is the same as the previous release
13
+ candidate.
14
+
2
15
  * Version 0.7.0 (1.0 RC1)
3
16
  - Allocating memory to store sensitive data can now be done using
4
17
  sodium_malloc() and sodium_allocarray(). These functions add guard
@@ -2,6 +2,7 @@
2
2
  @dnaq
3
3
  @joshjdevl
4
4
  @jshahbazi
5
+ @lvh
5
6
  @neheb
6
7
  Amit Murthy (@amitmurthy)
7
8
  Bruno Oliveira (@abstractj)
@@ -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 0.7.0.
3
+ @%:@ Generated by GNU Autoconf 2.69 for libsodium 1.0.0.
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='0.7.0'
594
- PACKAGE_STRING='libsodium 0.7.0'
593
+ PACKAGE_VERSION='1.0.0'
594
+ PACKAGE_STRING='libsodium 1.0.0'
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 0.7.0 to adapt to many kinds of systems.
1356
+ \`configure' configures libsodium 1.0.0 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 0.7.0:";;
1426
+ short | recursive ) echo "Configuration of libsodium 1.0.0:";;
1427
1427
  esac
1428
1428
  cat <<\_ACEOF
1429
1429
 
@@ -1450,7 +1450,7 @@ Optional Features:
1450
1450
  --enable-debug For maintainers only - please do not use
1451
1451
  --enable-soname-versions
1452
1452
  enable soname versions (must be disabled for
1453
- android) (default: enabled)
1453
+ Android) (default: enabled)
1454
1454
  --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@
1455
1455
  --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@
1456
1456
  --enable-fast-install@<:@=PKGS@:>@
@@ -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 0.7.0
1553
+ libsodium configure 1.0.0
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 0.7.0, which was
1922
+ It was created by libsodium $as_me 1.0.0, which was
1923
1923
  generated by GNU Autoconf 2.69. Invocation command line was
1924
1924
 
1925
1925
  $ $0 $@
@@ -2855,7 +2855,7 @@ fi
2855
2855
 
2856
2856
  # Define the identity of the package.
2857
2857
  PACKAGE='libsodium'
2858
- VERSION='0.7.0'
2858
+ VERSION='1.0.0'
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=0
3153
+ SODIUM_LIBRARY_VERSION_MINOR=2
3154
3154
  DLL_VERSION=6
3155
- SODIUM_LIBRARY_VERSION=13:0:0
3155
+ SODIUM_LIBRARY_VERSION=13:2:0
3156
3156
  # | | |
3157
3157
  # +------+ | +---+
3158
3158
  # | | |
@@ -5555,7 +5555,7 @@ if test "x$enable_ssp" != "xno"; then :
5555
5555
  case $host_os in @%:@(
5556
5556
  cygwin*|mingw*|msys|pw32*|cegcc*) :
5557
5557
  ;; @%:@(
5558
- dragonfly*) :
5558
+ *) :
5559
5559
 
5560
5560
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-protector" >&5
5561
5561
  $as_echo_n "checking whether C compiler accepts -fstack-protector... " >&6; }
@@ -5626,82 +5626,6 @@ else
5626
5626
  fi
5627
5627
 
5628
5628
 
5629
- else
5630
- :
5631
- fi
5632
-
5633
- ;; @%:@(
5634
- *) :
5635
-
5636
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-protector-all" >&5
5637
- $as_echo_n "checking whether C compiler accepts -fstack-protector-all... " >&6; }
5638
- if ${ax_cv_check_cflags___fstack_protector_all+:} false; then :
5639
- $as_echo_n "(cached) " >&6
5640
- else
5641
-
5642
- ax_check_save_flags=$CFLAGS
5643
- CFLAGS="$CFLAGS -fstack-protector-all"
5644
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5645
- /* end confdefs.h. */
5646
- #include <stdio.h>
5647
- int
5648
- main ()
5649
- {
5650
- char x[42U], fodder = 0;if (fodder > -1000 && fgets(x,1000,stdin)) puts(x)
5651
- ;
5652
- return 0;
5653
- }
5654
- _ACEOF
5655
- if ac_fn_c_try_compile "$LINENO"; then :
5656
- ax_cv_check_cflags___fstack_protector_all=yes
5657
- else
5658
- ax_cv_check_cflags___fstack_protector_all=no
5659
- fi
5660
- rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5661
- CFLAGS=$ax_check_save_flags
5662
- fi
5663
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fstack_protector_all" >&5
5664
- $as_echo "$ax_cv_check_cflags___fstack_protector_all" >&6; }
5665
- if test x"$ax_cv_check_cflags___fstack_protector_all" = xyes; then :
5666
-
5667
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -fstack-protector-all" >&5
5668
- $as_echo_n "checking whether the linker accepts -fstack-protector-all... " >&6; }
5669
- if ${ax_cv_check_ldflags___fstack_protector_all+:} false; then :
5670
- $as_echo_n "(cached) " >&6
5671
- else
5672
-
5673
- ax_check_save_flags=$LDFLAGS
5674
- LDFLAGS="$LDFLAGS -fstack-protector-all"
5675
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5676
- /* end confdefs.h. */
5677
- #include <stdio.h>
5678
- int
5679
- main ()
5680
- {
5681
- char x[42U];if (fgets(x,1000,stdin)) puts(x)
5682
- ;
5683
- return 0;
5684
- }
5685
- _ACEOF
5686
- if ac_fn_c_try_link "$LINENO"; then :
5687
- ax_cv_check_ldflags___fstack_protector_all=yes
5688
- else
5689
- ax_cv_check_ldflags___fstack_protector_all=no
5690
- fi
5691
- rm -f core conftest.err conftest.$ac_objext \
5692
- conftest$ac_exeext conftest.$ac_ext
5693
- LDFLAGS=$ax_check_save_flags
5694
- fi
5695
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___fstack_protector_all" >&5
5696
- $as_echo "$ax_cv_check_ldflags___fstack_protector_all" >&6; }
5697
- if test x"$ax_cv_check_ldflags___fstack_protector_all" = xyes; then :
5698
- CFLAGS="$CFLAGS -fstack-protector-all"
5699
-
5700
- else
5701
- :
5702
- fi
5703
-
5704
-
5705
5629
  else
5706
5630
  :
5707
5631
  fi
@@ -15580,7 +15504,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
15580
15504
  # report actual input values of CONFIG_FILES etc. instead of their
15581
15505
  # values after options handling.
15582
15506
  ac_log="
15583
- This file was extended by libsodium $as_me 0.7.0, which was
15507
+ This file was extended by libsodium $as_me 1.0.0, which was
15584
15508
  generated by GNU Autoconf 2.69. Invocation command line was
15585
15509
 
15586
15510
  CONFIG_FILES = $CONFIG_FILES
@@ -15638,7 +15562,7 @@ _ACEOF
15638
15562
  cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15639
15563
  ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
15640
15564
  ac_cs_version="\\
15641
- libsodium config.status 0.7.0
15565
+ libsodium config.status 1.0.0
15642
15566
  configured by $0, generated by GNU Autoconf 2.69,
15643
15567
  with options \\"\$ac_cs_config\\"
15644
15568
 
@@ -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 0.7.0.
3
+ @%:@ Generated by GNU Autoconf 2.69 for libsodium 1.0.0.
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='0.7.0'
594
- PACKAGE_STRING='libsodium 0.7.0'
593
+ PACKAGE_VERSION='1.0.0'
594
+ PACKAGE_STRING='libsodium 1.0.0'
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 0.7.0 to adapt to many kinds of systems.
1356
+ \`configure' configures libsodium 1.0.0 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 0.7.0:";;
1426
+ short | recursive ) echo "Configuration of libsodium 1.0.0:";;
1427
1427
  esac
1428
1428
  cat <<\_ACEOF
1429
1429
 
@@ -1450,7 +1450,7 @@ Optional Features:
1450
1450
  --enable-debug For maintainers only - please do not use
1451
1451
  --enable-soname-versions
1452
1452
  enable soname versions (must be disabled for
1453
- android) (default: enabled)
1453
+ Android) (default: enabled)
1454
1454
  --enable-shared@<:@=PKGS@:>@ build shared libraries @<:@default=yes@:>@
1455
1455
  --enable-static@<:@=PKGS@:>@ build static libraries @<:@default=yes@:>@
1456
1456
  --enable-fast-install@<:@=PKGS@:>@
@@ -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 0.7.0
1553
+ libsodium configure 1.0.0
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 0.7.0, which was
1922
+ It was created by libsodium $as_me 1.0.0, which was
1923
1923
  generated by GNU Autoconf 2.69. Invocation command line was
1924
1924
 
1925
1925
  $ $0 $@
@@ -2855,7 +2855,7 @@ fi
2855
2855
 
2856
2856
  # Define the identity of the package.
2857
2857
  PACKAGE='libsodium'
2858
- VERSION='0.7.0'
2858
+ VERSION='1.0.0'
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=0
3153
+ SODIUM_LIBRARY_VERSION_MINOR=2
3154
3154
  DLL_VERSION=6
3155
- SODIUM_LIBRARY_VERSION=13:0:0
3155
+ SODIUM_LIBRARY_VERSION=13:2:0
3156
3156
  # | | |
3157
3157
  # +------+ | +---+
3158
3158
  # | | |
@@ -5555,7 +5555,7 @@ if test "x$enable_ssp" != "xno"; then :
5555
5555
  case $host_os in @%:@(
5556
5556
  cygwin*|mingw*|msys|pw32*|cegcc*) :
5557
5557
  ;; @%:@(
5558
- dragonfly*) :
5558
+ *) :
5559
5559
 
5560
5560
  { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-protector" >&5
5561
5561
  $as_echo_n "checking whether C compiler accepts -fstack-protector... " >&6; }
@@ -5626,82 +5626,6 @@ else
5626
5626
  fi
5627
5627
 
5628
5628
 
5629
- else
5630
- :
5631
- fi
5632
-
5633
- ;; @%:@(
5634
- *) :
5635
-
5636
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether C compiler accepts -fstack-protector-all" >&5
5637
- $as_echo_n "checking whether C compiler accepts -fstack-protector-all... " >&6; }
5638
- if ${ax_cv_check_cflags___fstack_protector_all+:} false; then :
5639
- $as_echo_n "(cached) " >&6
5640
- else
5641
-
5642
- ax_check_save_flags=$CFLAGS
5643
- CFLAGS="$CFLAGS -fstack-protector-all"
5644
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5645
- /* end confdefs.h. */
5646
- #include <stdio.h>
5647
- int
5648
- main ()
5649
- {
5650
- char x[42U], fodder = 0;if (fodder > -1000 && fgets(x,1000,stdin)) puts(x)
5651
- ;
5652
- return 0;
5653
- }
5654
- _ACEOF
5655
- if ac_fn_c_try_compile "$LINENO"; then :
5656
- ax_cv_check_cflags___fstack_protector_all=yes
5657
- else
5658
- ax_cv_check_cflags___fstack_protector_all=no
5659
- fi
5660
- rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext
5661
- CFLAGS=$ax_check_save_flags
5662
- fi
5663
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_cflags___fstack_protector_all" >&5
5664
- $as_echo "$ax_cv_check_cflags___fstack_protector_all" >&6; }
5665
- if test x"$ax_cv_check_cflags___fstack_protector_all" = xyes; then :
5666
-
5667
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the linker accepts -fstack-protector-all" >&5
5668
- $as_echo_n "checking whether the linker accepts -fstack-protector-all... " >&6; }
5669
- if ${ax_cv_check_ldflags___fstack_protector_all+:} false; then :
5670
- $as_echo_n "(cached) " >&6
5671
- else
5672
-
5673
- ax_check_save_flags=$LDFLAGS
5674
- LDFLAGS="$LDFLAGS -fstack-protector-all"
5675
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
5676
- /* end confdefs.h. */
5677
- #include <stdio.h>
5678
- int
5679
- main ()
5680
- {
5681
- char x[42U];if (fgets(x,1000,stdin)) puts(x)
5682
- ;
5683
- return 0;
5684
- }
5685
- _ACEOF
5686
- if ac_fn_c_try_link "$LINENO"; then :
5687
- ax_cv_check_ldflags___fstack_protector_all=yes
5688
- else
5689
- ax_cv_check_ldflags___fstack_protector_all=no
5690
- fi
5691
- rm -f core conftest.err conftest.$ac_objext \
5692
- conftest$ac_exeext conftest.$ac_ext
5693
- LDFLAGS=$ax_check_save_flags
5694
- fi
5695
- { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_ldflags___fstack_protector_all" >&5
5696
- $as_echo "$ax_cv_check_ldflags___fstack_protector_all" >&6; }
5697
- if test x"$ax_cv_check_ldflags___fstack_protector_all" = xyes; then :
5698
- CFLAGS="$CFLAGS -fstack-protector-all"
5699
-
5700
- else
5701
- :
5702
- fi
5703
-
5704
-
5705
5629
  else
5706
5630
  :
5707
5631
  fi
@@ -15580,7 +15504,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
15580
15504
  # report actual input values of CONFIG_FILES etc. instead of their
15581
15505
  # values after options handling.
15582
15506
  ac_log="
15583
- This file was extended by libsodium $as_me 0.7.0, which was
15507
+ This file was extended by libsodium $as_me 1.0.0, which was
15584
15508
  generated by GNU Autoconf 2.69. Invocation command line was
15585
15509
 
15586
15510
  CONFIG_FILES = $CONFIG_FILES
@@ -15638,7 +15562,7 @@ _ACEOF
15638
15562
  cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
15639
15563
  ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
15640
15564
  ac_cs_version="\\
15641
- libsodium config.status 0.7.0
15565
+ libsodium config.status 1.0.0
15642
15566
  configured by $0, generated by GNU Autoconf 2.69,
15643
15567
  with options \\"\$ac_cs_config\\"
15644
15568
 
@@ -62,8 +62,8 @@
62
62
  '_m4_warn' => 1,
63
63
  'AC_LIBTOOL_OBJDIR' => 1,
64
64
  'gl_FUNC_ARGZ' => 1,
65
- 'AM_SANITY_CHECK' => 1,
66
65
  'LTOBSOLETE_VERSION' => 1,
66
+ 'AM_SANITY_CHECK' => 1,
67
67
  'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
68
68
  'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
69
69
  'LT_LIB_M' => 1,
@@ -80,18 +80,18 @@
80
80
  '_LT_AC_LANG_F77' => 1,
81
81
  'AC_LIBTOOL_CONFIG' => 1,
82
82
  'AC_CONFIG_MACRO_DIR' => 1,
83
- 'AC_LTDL_DLLIB' => 1,
84
83
  '_AM_SUBST_NOTMAKE' => 1,
84
+ 'AC_LTDL_DLLIB' => 1,
85
85
  '_AM_AUTOCONF_VERSION' => 1,
86
86
  'AM_DISABLE_SHARED' => 1,
87
87
  '_LT_PROG_ECHO_BACKSLASH' => 1,
88
88
  '_LTDL_SETUP' => 1,
89
- 'AM_PROG_LIBTOOL' => 1,
90
- '_LT_AC_LANG_CXX' => 1,
91
89
  'PKG_CHECK_VAR' => 1,
92
- 'AM_PROG_LD' => 1,
93
- '_LT_AC_FILE_LTDLL_C' => 1,
90
+ '_LT_AC_LANG_CXX' => 1,
91
+ 'AM_PROG_LIBTOOL' => 1,
94
92
  'AC_LIB_LTDL' => 1,
93
+ '_LT_AC_FILE_LTDLL_C' => 1,
94
+ 'AM_PROG_LD' => 1,
95
95
  'AU_DEFUN' => 1,
96
96
  'AC_PROG_NM' => 1,
97
97
  'AC_LIBTOOL_DLOPEN' => 1,
@@ -117,35 +117,35 @@
117
117
  'AC_LTDL_OBJDIR' => 1,
118
118
  '_LT_PATH_TOOL_PREFIX' => 1,
119
119
  'AC_LIBTOOL_RC' => 1,
120
- '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
121
- 'AC_DISABLE_FAST_INSTALL' => 1,
122
120
  'AM_SILENT_RULES' => 1,
123
- 'include' => 1,
124
- '_LT_AC_TRY_DLOPEN_SELF' => 1,
121
+ 'AC_DISABLE_FAST_INSTALL' => 1,
122
+ '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
125
123
  '_LT_AC_SYS_LIBPATH_AIX' => 1,
124
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
125
+ 'include' => 1,
126
126
  'LT_AC_PROG_SED' => 1,
127
127
  'AM_ENABLE_SHARED' => 1,
128
128
  'LTDL_INSTALLABLE' => 1,
129
129
  '_LT_AC_LANG_GCJ_CONFIG' => 1,
130
130
  'AC_ENABLE_SHARED' => 1,
131
131
  'AX_CHECK_LINK_FLAG' => 1,
132
- '_LT_REQUIRED_DARWIN_CHECKS' => 1,
133
- 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
134
132
  'AC_ENABLE_STATIC' => 1,
135
- '_LT_AC_TAGVAR' => 1,
133
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
134
+ '_LT_REQUIRED_DARWIN_CHECKS' => 1,
136
135
  'AM_PROG_CC_C_O' => 1,
136
+ '_LT_AC_TAGVAR' => 1,
137
137
  'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
138
138
  'AM_CONDITIONAL' => 1,
139
139
  'LT_LIB_DLLOAD' => 1,
140
- 'LTVERSION_VERSION' => 1,
141
- '_LT_PROG_CXX' => 1,
142
- '_LT_PROG_F77' => 1,
143
140
  'LTDL_INIT' => 1,
144
- 'm4_include' => 1,
141
+ '_LT_PROG_F77' => 1,
142
+ '_LT_PROG_CXX' => 1,
143
+ 'LTVERSION_VERSION' => 1,
145
144
  'AM_PROG_INSTALL_SH' => 1,
145
+ 'm4_include' => 1,
146
146
  'AC_PROG_EGREP' => 1,
147
- 'AC_PATH_MAGIC' => 1,
148
147
  '_AC_AM_CONFIG_HEADER_HOOK' => 1,
148
+ 'AC_PATH_MAGIC' => 1,
149
149
  'AC_LTDL_SYSSEARCHPATH' => 1,
150
150
  'AM_MAKE_INCLUDE' => 1,
151
151
  'LT_CMD_MAX_LEN' => 1,
@@ -176,34 +176,34 @@
176
176
  'LT_AC_PROG_RC' => 1,
177
177
  'AC_LIBTOOL_CXX' => 1,
178
178
  'LT_INIT' => 1,
179
- 'LT_AC_PROG_GCJ' => 1,
180
179
  'LT_SYS_DLOPEN_SELF' => 1,
181
- '_LT_AC_PROG_CXXCPP' => 1,
182
- 'AM_DEP_TRACK' => 1,
180
+ 'LT_AC_PROG_GCJ' => 1,
183
181
  'AM_DISABLE_STATIC' => 1,
182
+ 'AM_DEP_TRACK' => 1,
183
+ '_LT_AC_PROG_CXXCPP' => 1,
184
184
  '_AC_PROG_LIBTOOL' => 1,
185
185
  '_AM_IF_OPTION' => 1,
186
- 'AC_PATH_TOOL_PREFIX' => 1,
187
186
  'PKG_NOARCH_INSTALLDIR' => 1,
188
- 'm4_pattern_allow' => 1,
187
+ 'AC_PATH_TOOL_PREFIX' => 1,
189
188
  'AC_LIBTOOL_F77' => 1,
189
+ 'm4_pattern_allow' => 1,
190
190
  'AM_SET_LEADING_DOT' => 1,
191
- '_LT_PROG_FC' => 1,
192
191
  'LT_AC_PROG_EGREP' => 1,
192
+ '_LT_PROG_FC' => 1,
193
193
  '_AM_DEPENDENCIES' => 1,
194
194
  'AC_LIBTOOL_LANG_C_CONFIG' => 1,
195
195
  'LTOPTIONS_VERSION' => 1,
196
196
  '_LT_AC_SYS_COMPILER' => 1,
197
- 'AM_PROG_NM' => 1,
198
197
  '_AM_PROG_CC_C_O' => 1,
198
+ 'AM_PROG_NM' => 1,
199
199
  'PKG_CHECK_MODULES' => 1,
200
200
  'AC_LIBLTDL_CONVENIENCE' => 1,
201
201
  'AC_DEPLIBS_CHECK_METHOD' => 1,
202
- 'AC_LIBLTDL_INSTALLABLE' => 1,
203
202
  'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
203
+ 'AC_LIBLTDL_INSTALLABLE' => 1,
204
204
  'AC_LTDL_ENABLE_INSTALL' => 1,
205
- 'LT_PROG_GCJ' => 1,
206
205
  'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
206
+ 'LT_PROG_GCJ' => 1,
207
207
  'AM_INIT_AUTOMAKE' => 1,
208
208
  'AC_DISABLE_STATIC' => 1,
209
209
  'LT_PATH_NM' => 1,
@@ -213,30 +213,30 @@
213
213
  '_LT_AC_LANG_RC_CONFIG' => 1,
214
214
  'LT_PROG_GO' => 1,
215
215
  'LT_SYS_MODULE_PATH' => 1,
216
- 'LT_WITH_LTDL' => 1,
217
216
  'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
217
+ 'LT_WITH_LTDL' => 1,
218
218
  'AC_LTDL_SHLIBPATH' => 1,
219
219
  'AM_PROG_AS' => 1,
220
220
  'AM_AUX_DIR_EXPAND' => 1,
221
- '_LT_AC_LANG_F77_CONFIG' => 1,
222
221
  'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
223
- '_LT_COMPILER_OPTION' => 1,
222
+ '_LT_AC_LANG_F77_CONFIG' => 1,
224
223
  '_AM_SET_OPTIONS' => 1,
225
- 'AM_RUN_LOG' => 1,
224
+ '_LT_COMPILER_OPTION' => 1,
226
225
  '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
227
- 'AC_LIBTOOL_PICMODE' => 1,
228
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
226
+ 'AM_RUN_LOG' => 1,
229
227
  'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
230
- 'AC_CHECK_LIBM' => 1,
228
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
229
+ 'AC_LIBTOOL_PICMODE' => 1,
231
230
  'LT_PATH_LD' => 1,
231
+ 'AC_CHECK_LIBM' => 1,
232
232
  'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
233
233
  '_AM_MANGLE_OPTION' => 1,
234
- 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
235
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
236
234
  'AC_LTDL_SYMBOL_USCORE' => 1,
235
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
236
+ 'AC_CONFIG_MACRO_DIR_TRACE' => 1,
237
237
  'AM_SET_DEPDIR' => 1,
238
- 'PKG_PROG_PKG_CONFIG' => 1,
239
238
  '_LT_CC_BASENAME' => 1,
239
+ 'PKG_PROG_PKG_CONFIG' => 1,
240
240
  '_LT_LIBOBJ' => 1
241
241
  }
242
242
  ], 'Autom4te::Request' ),
@@ -252,59 +252,59 @@
252
252
  'configure.ac'
253
253
  ],
254
254
  {
255
- '_LT_AC_TAGCONFIG' => 1,
256
255
  'AM_PROG_F77_C_O' => 1,
257
- 'm4_pattern_forbid' => 1,
256
+ '_LT_AC_TAGCONFIG' => 1,
258
257
  'AC_INIT' => 1,
259
- '_AM_COND_IF' => 1,
258
+ 'm4_pattern_forbid' => 1,
260
259
  'AC_CANONICAL_TARGET' => 1,
261
- 'AC_SUBST' => 1,
260
+ '_AM_COND_IF' => 1,
262
261
  'AC_CONFIG_LIBOBJ_DIR' => 1,
262
+ 'AC_SUBST' => 1,
263
263
  'AM_EXTRA_RECURSIVE_TARGETS' => 1,
264
- 'AC_FC_SRCEXT' => 1,
265
264
  'AC_CANONICAL_HOST' => 1,
265
+ 'AC_FC_SRCEXT' => 1,
266
266
  'AC_PROG_LIBTOOL' => 1,
267
267
  'AM_PROG_MKDIR_P' => 1,
268
268
  'AM_INIT_AUTOMAKE' => 1,
269
- 'AM_PATH_GUILE' => 1,
270
269
  'AC_CONFIG_SUBDIRS' => 1,
270
+ 'AM_PATH_GUILE' => 1,
271
271
  'AM_AUTOMAKE_VERSION' => 1,
272
272
  'LT_CONFIG_LTDL_DIR' => 1,
273
- 'AC_REQUIRE_AUX_FILE' => 1,
274
273
  'AC_CONFIG_LINKS' => 1,
275
- 'm4_sinclude' => 1,
274
+ 'AC_REQUIRE_AUX_FILE' => 1,
276
275
  'LT_SUPPORTED_TAG' => 1,
276
+ 'm4_sinclude' => 1,
277
277
  'AM_MAINTAINER_MODE' => 1,
278
278
  'AM_NLS' => 1,
279
279
  'AC_FC_PP_DEFINE' => 1,
280
280
  'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
281
- 'AM_MAKEFILE_INCLUDE' => 1,
282
281
  '_m4_warn' => 1,
282
+ 'AM_MAKEFILE_INCLUDE' => 1,
283
283
  'AM_PROG_CXX_C_O' => 1,
284
- '_AM_COND_ENDIF' => 1,
285
284
  '_AM_MAKEFILE_INCLUDE' => 1,
285
+ '_AM_COND_ENDIF' => 1,
286
286
  'AM_ENABLE_MULTILIB' => 1,
287
- 'AM_SILENT_RULES' => 1,
288
287
  'AM_PROG_MOC' => 1,
288
+ 'AM_SILENT_RULES' => 1,
289
289
  'AC_CONFIG_FILES' => 1,
290
- 'LT_INIT' => 1,
291
290
  'include' => 1,
292
- 'AM_PROG_AR' => 1,
291
+ 'LT_INIT' => 1,
293
292
  'AM_GNU_GETTEXT' => 1,
293
+ 'AM_PROG_AR' => 1,
294
294
  'AC_LIBSOURCE' => 1,
295
- 'AM_PROG_FC_C_O' => 1,
296
295
  'AC_CANONICAL_BUILD' => 1,
296
+ 'AM_PROG_FC_C_O' => 1,
297
297
  'AC_FC_FREEFORM' => 1,
298
- 'AH_OUTPUT' => 1,
299
298
  'AC_FC_PP_SRCEXT' => 1,
300
- '_AM_SUBST_NOTMAKE' => 1,
299
+ 'AH_OUTPUT' => 1,
301
300
  'AC_CONFIG_AUX_DIR' => 1,
302
- 'sinclude' => 1,
303
- 'AM_PROG_CC_C_O' => 1,
301
+ '_AM_SUBST_NOTMAKE' => 1,
304
302
  'm4_pattern_allow' => 1,
305
- 'AM_XGETTEXT_OPTION' => 1,
306
- 'AC_CANONICAL_SYSTEM' => 1,
303
+ 'AM_PROG_CC_C_O' => 1,
304
+ 'sinclude' => 1,
307
305
  'AM_CONDITIONAL' => 1,
306
+ 'AC_CANONICAL_SYSTEM' => 1,
307
+ 'AM_XGETTEXT_OPTION' => 1,
308
308
  'AC_CONFIG_HEADERS' => 1,
309
309
  'AC_DEFINE_TRACE_LITERAL' => 1,
310
310
  'AM_POT_TOOLS' => 1,
@@ -372,8 +372,8 @@
372
372
  '_m4_warn' => 1,
373
373
  'AC_LIBTOOL_OBJDIR' => 1,
374
374
  'gl_FUNC_ARGZ' => 1,
375
- 'LTOBSOLETE_VERSION' => 1,
376
375
  'AM_SANITY_CHECK' => 1,
376
+ 'LTOBSOLETE_VERSION' => 1,
377
377
  'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
378
378
  'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
379
379
  'LT_LIB_M' => 1,
@@ -390,18 +390,18 @@
390
390
  '_LT_AC_LANG_F77' => 1,
391
391
  'AC_LIBTOOL_CONFIG' => 1,
392
392
  'AC_CONFIG_MACRO_DIR' => 1,
393
- '_AM_SUBST_NOTMAKE' => 1,
394
393
  'AC_LTDL_DLLIB' => 1,
394
+ '_AM_SUBST_NOTMAKE' => 1,
395
395
  '_AM_AUTOCONF_VERSION' => 1,
396
396
  'AM_DISABLE_SHARED' => 1,
397
397
  '_LT_PROG_ECHO_BACKSLASH' => 1,
398
398
  '_LTDL_SETUP' => 1,
399
- 'PKG_CHECK_VAR' => 1,
400
- '_LT_AC_LANG_CXX' => 1,
401
399
  'AM_PROG_LIBTOOL' => 1,
402
- 'AC_LIB_LTDL' => 1,
403
- '_LT_AC_FILE_LTDLL_C' => 1,
400
+ '_LT_AC_LANG_CXX' => 1,
401
+ 'PKG_CHECK_VAR' => 1,
404
402
  'AM_PROG_LD' => 1,
403
+ '_LT_AC_FILE_LTDLL_C' => 1,
404
+ 'AC_LIB_LTDL' => 1,
405
405
  'AU_DEFUN' => 1,
406
406
  'AC_PROG_NM' => 1,
407
407
  'AC_LIBTOOL_DLOPEN' => 1,
@@ -427,35 +427,35 @@
427
427
  'AC_LTDL_OBJDIR' => 1,
428
428
  '_LT_PATH_TOOL_PREFIX' => 1,
429
429
  'AC_LIBTOOL_RC' => 1,
430
- 'AM_SILENT_RULES' => 1,
431
- 'AC_DISABLE_FAST_INSTALL' => 1,
432
430
  '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
433
- '_LT_AC_SYS_LIBPATH_AIX' => 1,
434
- '_LT_AC_TRY_DLOPEN_SELF' => 1,
431
+ 'AC_DISABLE_FAST_INSTALL' => 1,
432
+ 'AM_SILENT_RULES' => 1,
435
433
  'include' => 1,
434
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
435
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
436
436
  'LT_AC_PROG_SED' => 1,
437
437
  'AM_ENABLE_SHARED' => 1,
438
438
  'LTDL_INSTALLABLE' => 1,
439
439
  '_LT_AC_LANG_GCJ_CONFIG' => 1,
440
440
  'AC_ENABLE_SHARED' => 1,
441
441
  'AX_CHECK_LINK_FLAG' => 1,
442
- 'AC_ENABLE_STATIC' => 1,
443
- 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
444
442
  '_LT_REQUIRED_DARWIN_CHECKS' => 1,
445
- 'AM_PROG_CC_C_O' => 1,
443
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
444
+ 'AC_ENABLE_STATIC' => 1,
446
445
  '_LT_AC_TAGVAR' => 1,
446
+ 'AM_PROG_CC_C_O' => 1,
447
447
  'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
448
448
  'AM_CONDITIONAL' => 1,
449
449
  'LT_LIB_DLLOAD' => 1,
450
- 'LTDL_INIT' => 1,
451
- '_LT_PROG_F77' => 1,
452
- '_LT_PROG_CXX' => 1,
453
450
  'LTVERSION_VERSION' => 1,
454
- 'AM_PROG_INSTALL_SH' => 1,
451
+ '_LT_PROG_CXX' => 1,
452
+ '_LT_PROG_F77' => 1,
453
+ 'LTDL_INIT' => 1,
455
454
  'm4_include' => 1,
455
+ 'AM_PROG_INSTALL_SH' => 1,
456
456
  'AC_PROG_EGREP' => 1,
457
- '_AC_AM_CONFIG_HEADER_HOOK' => 1,
458
457
  'AC_PATH_MAGIC' => 1,
458
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
459
459
  'AC_LTDL_SYSSEARCHPATH' => 1,
460
460
  'AM_MAKE_INCLUDE' => 1,
461
461
  'LT_CMD_MAX_LEN' => 1,
@@ -486,34 +486,34 @@
486
486
  'LT_AC_PROG_RC' => 1,
487
487
  'AC_LIBTOOL_CXX' => 1,
488
488
  'LT_INIT' => 1,
489
- 'LT_SYS_DLOPEN_SELF' => 1,
490
489
  'LT_AC_PROG_GCJ' => 1,
491
- 'AM_DISABLE_STATIC' => 1,
492
- 'AM_DEP_TRACK' => 1,
490
+ 'LT_SYS_DLOPEN_SELF' => 1,
493
491
  '_LT_AC_PROG_CXXCPP' => 1,
492
+ 'AM_DEP_TRACK' => 1,
493
+ 'AM_DISABLE_STATIC' => 1,
494
494
  '_AC_PROG_LIBTOOL' => 1,
495
495
  '_AM_IF_OPTION' => 1,
496
- 'PKG_NOARCH_INSTALLDIR' => 1,
497
496
  'AC_PATH_TOOL_PREFIX' => 1,
498
- 'AC_LIBTOOL_F77' => 1,
497
+ 'PKG_NOARCH_INSTALLDIR' => 1,
499
498
  'm4_pattern_allow' => 1,
499
+ 'AC_LIBTOOL_F77' => 1,
500
500
  'AM_SET_LEADING_DOT' => 1,
501
- 'LT_AC_PROG_EGREP' => 1,
502
501
  '_LT_PROG_FC' => 1,
502
+ 'LT_AC_PROG_EGREP' => 1,
503
503
  '_AM_DEPENDENCIES' => 1,
504
504
  'AC_LIBTOOL_LANG_C_CONFIG' => 1,
505
505
  'LTOPTIONS_VERSION' => 1,
506
506
  '_LT_AC_SYS_COMPILER' => 1,
507
- '_AM_PROG_CC_C_O' => 1,
508
507
  'AM_PROG_NM' => 1,
508
+ '_AM_PROG_CC_C_O' => 1,
509
509
  'PKG_CHECK_MODULES' => 1,
510
510
  'AC_LIBLTDL_CONVENIENCE' => 1,
511
511
  'AC_DEPLIBS_CHECK_METHOD' => 1,
512
- 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
513
512
  'AC_LIBLTDL_INSTALLABLE' => 1,
513
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
514
514
  'AC_LTDL_ENABLE_INSTALL' => 1,
515
- 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
516
515
  'LT_PROG_GCJ' => 1,
516
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
517
517
  'AM_INIT_AUTOMAKE' => 1,
518
518
  'AC_DISABLE_STATIC' => 1,
519
519
  'LT_PATH_NM' => 1,
@@ -523,30 +523,30 @@
523
523
  '_LT_AC_LANG_RC_CONFIG' => 1,
524
524
  'LT_PROG_GO' => 1,
525
525
  'LT_SYS_MODULE_PATH' => 1,
526
- 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
527
526
  'LT_WITH_LTDL' => 1,
527
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
528
528
  'AC_LTDL_SHLIBPATH' => 1,
529
529
  'AM_PROG_AS' => 1,
530
530
  'AM_AUX_DIR_EXPAND' => 1,
531
- 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
532
531
  '_LT_AC_LANG_F77_CONFIG' => 1,
533
- '_AM_SET_OPTIONS' => 1,
532
+ 'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
534
533
  '_LT_COMPILER_OPTION' => 1,
535
- '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
534
+ '_AM_SET_OPTIONS' => 1,
536
535
  'AM_RUN_LOG' => 1,
537
- 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
538
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
536
+ '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
539
537
  'AC_LIBTOOL_PICMODE' => 1,
540
- 'LT_PATH_LD' => 1,
538
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
539
+ 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
541
540
  'AC_CHECK_LIBM' => 1,
541
+ 'LT_PATH_LD' => 1,
542
542
  'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
543
543
  '_AM_MANGLE_OPTION' => 1,
544
- 'AC_LTDL_SYMBOL_USCORE' => 1,
545
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
546
544
  'AC_CONFIG_MACRO_DIR_TRACE' => 1,
545
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
546
+ 'AC_LTDL_SYMBOL_USCORE' => 1,
547
547
  'AM_SET_DEPDIR' => 1,
548
- '_LT_CC_BASENAME' => 1,
549
548
  'PKG_PROG_PKG_CONFIG' => 1,
549
+ '_LT_CC_BASENAME' => 1,
550
550
  '_LT_LIBOBJ' => 1
551
551
  }
552
552
  ], 'Autom4te::Request' ),
@@ -608,8 +608,8 @@
608
608
  '_m4_warn' => 1,
609
609
  'AC_LIBTOOL_OBJDIR' => 1,
610
610
  'gl_FUNC_ARGZ' => 1,
611
- 'LTOBSOLETE_VERSION' => 1,
612
611
  'AM_SANITY_CHECK' => 1,
612
+ 'LTOBSOLETE_VERSION' => 1,
613
613
  'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
614
614
  'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
615
615
  'LT_LIB_M' => 1,
@@ -626,17 +626,17 @@
626
626
  '_LT_AC_LANG_F77' => 1,
627
627
  'AC_LIBTOOL_CONFIG' => 1,
628
628
  'AC_CONFIG_MACRO_DIR' => 1,
629
- '_AM_SUBST_NOTMAKE' => 1,
630
629
  'AC_LTDL_DLLIB' => 1,
630
+ '_AM_SUBST_NOTMAKE' => 1,
631
631
  '_AM_AUTOCONF_VERSION' => 1,
632
632
  'AM_DISABLE_SHARED' => 1,
633
633
  '_LT_PROG_ECHO_BACKSLASH' => 1,
634
634
  '_LTDL_SETUP' => 1,
635
- '_LT_AC_LANG_CXX' => 1,
636
635
  'AM_PROG_LIBTOOL' => 1,
637
- 'AC_LIB_LTDL' => 1,
638
- '_LT_AC_FILE_LTDLL_C' => 1,
636
+ '_LT_AC_LANG_CXX' => 1,
639
637
  'AM_PROG_LD' => 1,
638
+ '_LT_AC_FILE_LTDLL_C' => 1,
639
+ 'AC_LIB_LTDL' => 1,
640
640
  'AU_DEFUN' => 1,
641
641
  'AC_PROG_NM' => 1,
642
642
  'AC_LIBTOOL_DLOPEN' => 1,
@@ -662,35 +662,35 @@
662
662
  'AC_LTDL_OBJDIR' => 1,
663
663
  '_LT_PATH_TOOL_PREFIX' => 1,
664
664
  'AC_LIBTOOL_RC' => 1,
665
- 'AM_SILENT_RULES' => 1,
666
- 'AC_DISABLE_FAST_INSTALL' => 1,
667
665
  '_LT_AC_PROG_ECHO_BACKSLASH' => 1,
668
- '_LT_AC_SYS_LIBPATH_AIX' => 1,
669
- '_LT_AC_TRY_DLOPEN_SELF' => 1,
666
+ 'AC_DISABLE_FAST_INSTALL' => 1,
667
+ 'AM_SILENT_RULES' => 1,
670
668
  'include' => 1,
669
+ '_LT_AC_TRY_DLOPEN_SELF' => 1,
670
+ '_LT_AC_SYS_LIBPATH_AIX' => 1,
671
671
  'LT_AC_PROG_SED' => 1,
672
672
  'AM_ENABLE_SHARED' => 1,
673
673
  'LTDL_INSTALLABLE' => 1,
674
674
  '_LT_AC_LANG_GCJ_CONFIG' => 1,
675
675
  'AC_ENABLE_SHARED' => 1,
676
676
  'AX_CHECK_LINK_FLAG' => 1,
677
- 'AC_ENABLE_STATIC' => 1,
678
- 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
679
677
  '_LT_REQUIRED_DARWIN_CHECKS' => 1,
680
- 'AM_PROG_CC_C_O' => 1,
678
+ 'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
679
+ 'AC_ENABLE_STATIC' => 1,
681
680
  '_LT_AC_TAGVAR' => 1,
681
+ 'AM_PROG_CC_C_O' => 1,
682
682
  'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
683
683
  'AM_CONDITIONAL' => 1,
684
684
  'LT_LIB_DLLOAD' => 1,
685
- 'LTDL_INIT' => 1,
686
- '_LT_PROG_F77' => 1,
687
- '_LT_PROG_CXX' => 1,
688
685
  'LTVERSION_VERSION' => 1,
689
- 'AM_PROG_INSTALL_SH' => 1,
686
+ '_LT_PROG_CXX' => 1,
687
+ '_LT_PROG_F77' => 1,
688
+ 'LTDL_INIT' => 1,
690
689
  'm4_include' => 1,
690
+ 'AM_PROG_INSTALL_SH' => 1,
691
691
  'AC_PROG_EGREP' => 1,
692
- '_AC_AM_CONFIG_HEADER_HOOK' => 1,
693
692
  'AC_PATH_MAGIC' => 1,
693
+ '_AC_AM_CONFIG_HEADER_HOOK' => 1,
694
694
  'AC_LTDL_SYSSEARCHPATH' => 1,
695
695
  'AM_MAKE_INCLUDE' => 1,
696
696
  'LT_CMD_MAX_LEN' => 1,
@@ -720,30 +720,30 @@
720
720
  'LT_INIT' => 1,
721
721
  'LT_AC_PROG_GCJ' => 1,
722
722
  'LT_SYS_DLOPEN_SELF' => 1,
723
- 'AM_DISABLE_STATIC' => 1,
724
- 'AM_DEP_TRACK' => 1,
725
723
  '_LT_AC_PROG_CXXCPP' => 1,
724
+ 'AM_DEP_TRACK' => 1,
725
+ 'AM_DISABLE_STATIC' => 1,
726
726
  '_AC_PROG_LIBTOOL' => 1,
727
727
  '_AM_IF_OPTION' => 1,
728
728
  'AC_PATH_TOOL_PREFIX' => 1,
729
- 'AC_LIBTOOL_F77' => 1,
730
729
  'm4_pattern_allow' => 1,
730
+ 'AC_LIBTOOL_F77' => 1,
731
731
  'AM_SET_LEADING_DOT' => 1,
732
- 'LT_AC_PROG_EGREP' => 1,
733
732
  '_LT_PROG_FC' => 1,
733
+ 'LT_AC_PROG_EGREP' => 1,
734
734
  '_AM_DEPENDENCIES' => 1,
735
735
  'AC_LIBTOOL_LANG_C_CONFIG' => 1,
736
736
  'LTOPTIONS_VERSION' => 1,
737
737
  '_LT_AC_SYS_COMPILER' => 1,
738
- '_AM_PROG_CC_C_O' => 1,
739
738
  'AM_PROG_NM' => 1,
739
+ '_AM_PROG_CC_C_O' => 1,
740
740
  'AC_LIBLTDL_CONVENIENCE' => 1,
741
741
  'AC_DEPLIBS_CHECK_METHOD' => 1,
742
- 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
743
742
  'AC_LIBLTDL_INSTALLABLE' => 1,
743
+ 'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
744
744
  'AC_LTDL_ENABLE_INSTALL' => 1,
745
- 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
746
745
  'LT_PROG_GCJ' => 1,
746
+ 'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
747
747
  'AM_INIT_AUTOMAKE' => 1,
748
748
  'AC_DISABLE_STATIC' => 1,
749
749
  'LT_PATH_NM' => 1,
@@ -753,27 +753,27 @@
753
753
  '_LT_AC_LANG_RC_CONFIG' => 1,
754
754
  'LT_PROG_GO' => 1,
755
755
  'LT_SYS_MODULE_PATH' => 1,
756
- 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
757
756
  'LT_WITH_LTDL' => 1,
757
+ 'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
758
758
  'AC_LTDL_SHLIBPATH' => 1,
759
759
  'AM_PROG_AS' => 1,
760
760
  'AM_AUX_DIR_EXPAND' => 1,
761
- '_LT_AC_LANG_F77_CONFIG' => 1,
762
761
  'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
763
- '_AM_SET_OPTIONS' => 1,
762
+ '_LT_AC_LANG_F77_CONFIG' => 1,
764
763
  '_LT_COMPILER_OPTION' => 1,
765
- '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
764
+ '_AM_SET_OPTIONS' => 1,
766
765
  'AM_RUN_LOG' => 1,
767
- 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
768
- 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
766
+ '_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
769
767
  'AC_LIBTOOL_PICMODE' => 1,
770
- 'LT_PATH_LD' => 1,
768
+ 'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
769
+ 'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
771
770
  'AC_CHECK_LIBM' => 1,
771
+ 'LT_PATH_LD' => 1,
772
772
  'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
773
773
  '_AM_MANGLE_OPTION' => 1,
774
- 'AC_LTDL_SYMBOL_USCORE' => 1,
775
- 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
776
774
  'AC_CONFIG_MACRO_DIR_TRACE' => 1,
775
+ 'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
776
+ 'AC_LTDL_SYMBOL_USCORE' => 1,
777
777
  'AM_SET_DEPDIR' => 1,
778
778
  '_LT_CC_BASENAME' => 1,
779
779
  '_LT_LIBOBJ' => 1