]> git.ipfire.org Git - thirdparty/nettle.git/commitdiff
Update check of GMP_NUMB_BITS declaration in assembly files. nettle_3.4rc2
authorNiels Möller <nisse@lysator.liu.se>
Sun, 12 Nov 2017 18:25:03 +0000 (19:25 +0100)
committerNiels Möller <nisse@lysator.liu.se>
Sun, 12 Nov 2017 18:25:03 +0000 (19:25 +0100)
Was broken by rename of configure variable GMP_NUMB_BITS -->
NUMB_BITS.

ChangeLog
configure.ac

index cad5744a758e71518894a5744c42f464a5e1d6bd..35674b42cd8ec2f7b053c53bd5f525e90490fafa 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-11-12  Niels Möller  <nisse@lysator.liu.se>
+
+       * configure.ac: Update check of GMP_NUMB_BITS declaration in
+       assembly files. Was broken by rename of configure variable
+       GMP_NUMB_BITS --> NUMB_BITS.
+
 2017-11-11  Niels Möller  <nisse@lysator.liu.se>
 
        * nettle.texinfo: Document nettle_get_hashes, nettle_get_ciphers
index c0dbae03a1c102c381c0bae881dd76bac97c250b..8668263c104642fbe88dcd4048f39746d1999521 100644 (file)
@@ -498,7 +498,7 @@ EOF
          dnl Note double square brackets, for extra m4 quoting.
          tmp_bits=`grep GMP_NUMB_BITS "$srcdir/$asm_dir/$tmp_h" \
             | sed 's/^.*GMP_NUMB_BITS(\([[0-9]]*\)).*$/\1/'`
-         if test "$tmp_bits" && test "$tmp_bits" != "${GMP_NUMB_BITS}" ; then
+         if test "$tmp_bits" && test "$tmp_bits" != "${NUMB_BITS}" ; then
             AC_MSG_WARN([skipping $tmp_h, because GMP_NUMB_BITS != $tmp_bits])
             continue
          fi