Fix configure's "signed char" check
authorWayne Davison <wayne@opencoder.net>
Sat, 18 Jun 2022 17:19:57 +0000 (10:19 -0700)
committerWayne Davison <wayne@opencoder.net>
Sat, 18 Jun 2022 17:23:32 +0000 (10:23 -0700)
commit4f741addbd5fd59de2c2655e5a044d6c2fe44aa5
treecbc41c9cb8733bfd22b174b97486c5eedc2590c8
parent355b81d8bce3d91c4bc5e86e67d3fdb225eef99e
Fix configure's "signed char" check

When pedantic errors are enabled, SIGNED_CHAR_OK was no longer
being set correctly. This would cause the checksum code to use
"char" instead of "signed char", and if the default for a "char"
was unsigned, the checksum code would fail to compute the right
hash values.  Fixes bug #317.
configure.ac