Skip to content
Snippets Groups Projects
Commit b305e440 authored by Niels Möller's avatar Niels Möller
Browse files

Update check of GMP_NUMB_BITS declaration in assembly files.

Was broken by rename of configure variable GMP_NUMB_BITS -->
NUMB_BITS.
parent e7cc01a5
No related branches found
No related tags found
No related merge requests found
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> 2017-11-11 Niels Möller <nisse@lysator.liu.se>
* nettle.texinfo: Document nettle_get_hashes, nettle_get_ciphers * nettle.texinfo: Document nettle_get_hashes, nettle_get_ciphers
......
...@@ -498,7 +498,7 @@ EOF ...@@ -498,7 +498,7 @@ EOF
dnl Note double square brackets, for extra m4 quoting. dnl Note double square brackets, for extra m4 quoting.
tmp_bits=`grep GMP_NUMB_BITS "$srcdir/$asm_dir/$tmp_h" \ tmp_bits=`grep GMP_NUMB_BITS "$srcdir/$asm_dir/$tmp_h" \
| sed 's/^.*GMP_NUMB_BITS(\([[0-9]]*\)).*$/\1/'` | 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]) AC_MSG_WARN([skipping $tmp_h, because GMP_NUMB_BITS != $tmp_bits])
continue continue
fi fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment