diff options
Diffstat (limited to 'dev-libs/chmlib/files/chmlib-0.40-clang16.patch')
-rw-r--r-- | dev-libs/chmlib/files/chmlib-0.40-clang16.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/dev-libs/chmlib/files/chmlib-0.40-clang16.patch b/dev-libs/chmlib/files/chmlib-0.40-clang16.patch new file mode 100644 index 000000000000..eb66b91d5556 --- /dev/null +++ b/dev-libs/chmlib/files/chmlib-0.40-clang16.patch @@ -0,0 +1,24 @@ +https://bugs.gentoo.org/871177 +https://github.com/jedwing/CHMLib/pull/17 + +From 5877959e3eb9a54e131608c52e2d6f4c89bc0189 Mon Sep 17 00:00:00 2001 +From: Florian Weimer <fweimer@redhat.com> +Date: Wed, 19 Apr 2023 09:47:03 +0200 +Subject: [PATCH] Avoid implicit function declarations, for C99 compatibility + +Define _LARGEFILE64_SOURCE so that <unistd.h> defines pread64. + +This avoids build failures with future compilers which do not +support implicit function declarations by default. +--- a/src/chm_lib.c ++++ b/src/chm_lib.c +@@ -48,6 +48,8 @@ + * * + ***************************************************************************/ + ++#define _LARGEFILE64_SOURCE /* for pread64 */ ++ + #include "chm_lib.h" + + #ifdef CHM_MT + |