From 19b65b990b249716353a4649ac8314107c75c8a5 Mon Sep 17 00:00:00 2001 From: miod Date: Fri, 6 Sep 2024 06:31:11 +0000 Subject: [PATCH] Repair build with gcc. --- sbin/unwind/libunbound/config.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sbin/unwind/libunbound/config.h b/sbin/unwind/libunbound/config.h index bfa7d8c0821..25bb0ba97c6 100644 --- a/sbin/unwind/libunbound/config.h +++ b/sbin/unwind/libunbound/config.h @@ -2,7 +2,11 @@ /* config.h.in. Generated from configure.ac by autoheader. */ /* apply the fallthrough attribute. */ +#if defined(__clang__) #define ATTR_FALLTHROUGH __attribute__((fallthrough)); +#else +#define ATTR_FALLTHROUGH +#endif /* apply the noreturn attribute to a function that exits the program */ #define ATTR_NORETURN __attribute__((__noreturn__)) -- 2.20.1