gentoo-ebuilds/sci-libs/getdata/files/getdata-0.11.0-fix-gzseek64-not-found.patch
Brahmajit Das 202a693441
sci-libs/getdata: Fix error: call to undeclared function gzseek64
Closes: https://bugs.gentoo.org/898278
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/31476
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@gentoo.org>
2023-09-11 09:31:54 +02:00

12 lines
225 B
Diff

Refer: https://stackoverflow.com/a/42695228
Bug: https://bugs.gentoo.org/898278
--- a/src/gzip.c
+++ b/src/gzip.c
@@ -21,6 +21,7 @@
#include "internal.h"
#ifdef HAVE_ZLIB_H
+#define Z_LARGE64
#include <zlib.h>
#endif