Files
ports/security/rhash
sthen eb7c107244 rhash changed its test for a compiler with __builtin_ctz from just using
a __GNUC__ version test, to this:

#if (defined(__GNUC__) && (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4))) || \
    (defined(__clang__) && __has_builtin(__builtin_ctz))

The __has_builtin fails on base-gcc, but also this extra check isn't
useful on base-clang archs either because __GNUC__ is defined to 4 there
anyway, so remove it.
2025-02-13 09:45:30 +00:00
..