summaryrefslogtreecommitdiffstats
path: root/Utilities/cmlibrhash/librhash/rhash.c
Commit message (Collapse)AuthorAgeFilesLines
* librhash: Avoid incorrect int8_t definition with PGI on Linux ppc64leBrad King2018-08-091-0/+2
| | | | | `sys/types.h` defines `int8_t` incorrectly as `char` which is unsigned. Adjust ordering so `inttypes.h` defines it as `signed char` first.
* librhash: Remove source fragments not needed for CMakeBrad King2016-11-101-53/+6
| | | | | | | | | We only need a subset of the hash algorithms supported by librhash. Add preprocessor conditionals to remove source fragments that we do not need. Write an alternative algorithm enumeration that matches the indexing on our reduced array. Also remove a few fragments outright.
* Merge branch 'upstream-librhash' into import-librhashBrad King2016-11-031-0/+919
* upstream-librhash: librhash 2016-11-01 (d839a1a8)