This component makes use of autoconf internals in it configure.ac, which leads to a build failure with 2.72 since the internals have changed. As far as "AC_SYS_LARGEFILE" is called, there is no need to modify the CFLAGS as that is done by autoconf if necessary. The following patch should fix the issue: --- configure.ac.old 2024-01-04 14:55:20.296584666 +0100 +++ configure.ac 2024-01-04 14:56:04.891663709 +0100 @@ -27,11 +27,10 @@ # Check for library functions. AC_CHECK_FUNCS([memset strtoll]) # Check for LFS AC_SYS_LARGEFILE -CFLAGS="$CFLAGS -D_FILE_OFFSET_BITS=${ac_cv_sys_file_offset_bits}" dnl libparted # hack LIBS="$LIBS -ldl" PKG_CHECK_MODULES([PARTED], [libparted >= 2.4]) Reproducible: Always
fixed - thank you https://koji.fedoraproject.org/koji/taskinfo?taskID=112383141