aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Richardson <arichardson@FreeBSD.org>2023-12-12 05:10:14 +0000
committerJessica Clarke <jrtc27@FreeBSD.org>2024-05-02 20:11:52 +0000
commitf16e205c6fb913b4bca4495bde46a1bdf6339a8c (patch)
tree6b0f648c833d5195841827f980464d7c56b8b3f6
parentdbbbe6f393ddc1a6366bc3a24bc9c358b9eb9732 (diff)
downloadsrc-f16e205c6fb913b4bca4495bde46a1bdf6339a8c.tar.gz
src-f16e205c6fb913b4bca4495bde46a1bdf6339a8c.zip
jevents: fix bootstrapping on Linux with Clang 16
The glibc fts_open() callback type does not have the second const qualifier and it appears that Clang 16 errors by default for mismatched function pointer types. Add an ifdef to handle this case. Reviewed By: imp, emaste Differential Revision: https://reviews.freebsd.org/D43000 (cherry picked from commit 60e845ceef25533bfb60450549bea56a17b1e467)
-rw-r--r--lib/libpmc/pmu-events/jevents.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libpmc/pmu-events/jevents.c b/lib/libpmc/pmu-events/jevents.c
index ff7d3b226932..590b465af400 100644
--- a/lib/libpmc/pmu-events/jevents.c
+++ b/lib/libpmc/pmu-events/jevents.c
@@ -1355,7 +1355,11 @@ err_out:
#include <fts.h>
static int
+#ifdef __GLIBC__
+fts_compare(const FTSENT **a, const FTSENT **b)
+#else
fts_compare(const FTSENT * const *a, const FTSENT * const *b)
+#endif
{
return (strcmp((*a)->fts_name, (*b)->fts_name));
}