Files
reiser4progs/autoconf-2.72.patch

25 lines
777 B
Diff

From: Jan Engelhardt <ej@inai.de>
Date: 2024-05-16 13:22:58.758243293 +0200
AC 2.72 changed the internals of AC_SYS_LARGEFILE. Just always build with largfile.
See also https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7643b42096da1f4403a501a4a5930dec2d1c88c2
---
configure.ac | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
Index: reiser4progs-2.0.5/configure.ac
===================================================================
--- reiser4progs-2.0.5.orig/configure.ac
+++ reiser4progs-2.0.5/configure.ac
@@ -412,8 +412,7 @@ fi
# Check for large file
AC_SYS_LARGEFILE
-if test x${ac_cv_sys_file_offset_bits} = xno; then
- AC_MSG_WARN(Can't detect right _FILE_OFFSET_BITS. Will be forced to 64bit.)
+if true; then
ac_cv_sys_file_offset_bits=64
fi