CVSROOT: /cvs
Module name: ports
Changes by: [email protected] 2025/02/13 02:45:30
Modified files:
security/rhash/patches: patch-common_func_h
Log message:
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.