From 0bb8253b38dc8638a46b66ba909c1bfd1054e1ef Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Fri, 4 Nov 2022 09:13:50 +0000 Subject: gentoo auto-resync : 04:11:2022 - 09:13:50 --- .../files/raptor-2.0.15-configure-clang16.patch | 28 ++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 media-libs/raptor/files/raptor-2.0.15-configure-clang16.patch (limited to 'media-libs/raptor/files') diff --git a/media-libs/raptor/files/raptor-2.0.15-configure-clang16.patch b/media-libs/raptor/files/raptor-2.0.15-configure-clang16.patch new file mode 100644 index 000000000000..ab62fd9bff0c --- /dev/null +++ b/media-libs/raptor/files/raptor-2.0.15-configure-clang16.patch @@ -0,0 +1,28 @@ +https://github.com/dajobe/raptor/pull/55 + +From b7c252e1d5601321a5a6f6627745753b5c704762 Mon Sep 17 00:00:00 2001 +From: Sam James +Date: Fri, 4 Nov 2022 01:53:32 +0000 +Subject: [PATCH] configure.ac: fix -Wimplicit-function-declaration in + HAVE___FUNCTION__ test + +This breaks with Clang 16 which makes such errors fatal: +``` +error: call to undeclared library function 'printf' with type 'int (const char *, ...)'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] +error: call to undeclared library function 'printf' with type 'int (const char *, ...)'; ISO C99 and later do not support implicit function declarations [-Werror,-Wimplicit-function-declaration] +``` + +Signed-off-by: Sam James +--- a/configure.ac ++++ b/configure.ac +@@ -335,7 +335,8 @@ AC_C_BIGENDIAN + AC_C_INLINE + + AC_MSG_CHECKING(whether __FUNCTION__ is available) +-AC_COMPILE_IFELSE([AC_LANG_SOURCE([int main() { printf(__FUNCTION__); }])], ++AC_COMPILE_IFELSE([AC_LANG_SOURCE([#include ++int main() { printf(__FUNCTION__); }])], + [AC_DEFINE([HAVE___FUNCTION__], [1], [Is __FUNCTION__ available]) + AC_MSG_RESULT(yes)], + [AC_MSG_RESULT(no)]) + -- cgit v1.2.3