e6c4ce6cef
Add a patch to luafilesystem so that it builds correctly when large files are not supported. This allows to remove the dependency of luafilesystem on large file support on the toolchain. Packages such as cgilua, wsapi and xavante, which depend on luafilesystem, also get their dependency on large file support removed. Fixes bug #2359. Signed-off-by: Francois Perrad <francois.perrad@gadz.org> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
21 lines
434 B
Diff
21 lines
434 B
Diff
diff --git a/src/lfs.c b/src/lfs.c
|
|
index 85f01e3..ed49f50 100644
|
|
--- a/src/lfs.c
|
|
+++ b/src/lfs.c
|
|
@@ -22,13 +22,13 @@
|
|
|
|
#ifndef _WIN32
|
|
#ifndef _AIX
|
|
-#define _FILE_OFFSET_BITS 64 /* Linux, Solaris and HP-UX */
|
|
+//#define _FILE_OFFSET_BITS 64 /* Linux, Solaris and HP-UX */
|
|
#else
|
|
#define _LARGE_FILES 1 /* AIX */
|
|
#endif
|
|
#endif
|
|
|
|
-#define _LARGEFILE64_SOURCE
|
|
+//#define _LARGEFILE64_SOURCE
|
|
|
|
#include <errno.h>
|
|
#include <stdio.h>
|