From: Aida JonikienÄ— aidas957@gmail.com
autoconf 2.72 disabled the time size increase when LARGEFILE macro is being used: https://git.savannah.gnu.org/cgit/autoconf.git/commit/?id=cf09f48841b66fe76f...
That change can cause 32-bit Wine to return EOVERFLOW when running stat() on a file in certain edge cases (which causes some files to be skipped leading to applications failing to run properly).
This change was tested with both autoconf 2.71 and 2.72 to make sure nothing broke there. --- configure.ac | 1 + 1 file changed, 1 insertion(+)
diff --git a/configure.ac b/configure.ac index b2ec7c4c7c8..9822605437e 100644 --- a/configure.ac +++ b/configure.ac @@ -404,6 +404,7 @@ AC_SUBST(OPENGL_LIBS,"") dnl **** Check for header files ****
AC_SYS_LARGEFILE() +m4_ifdef([AC_SYS_YEAR2038], [AC_SYS_YEAR2038()])
AC_CHECK_HEADERS(\ CL/cl.h \