aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-10-02 07:58:23 +0000
committerEric Andersen <andersen@codepoet.org>2001-10-02 07:58:23 +0000
commit5c72104a85dfe5c0934c85e29e9c11f741a5fe39 (patch)
tree550b745fdc81e57534610052f88a15bf2487ea26
parentc9fc633f9ed09143a63f62f26b0afb619a31273c (diff)
downloadbusybox-w32-5c72104a85dfe5c0934c85e29e9c11f741a5fe39.tar.gz
busybox-w32-5c72104a85dfe5c0934c85e29e9c11f741a5fe39.tar.bz2
busybox-w32-5c72104a85dfe5c0934c85e29e9c11f741a5fe39.zip
Fix large file support -- 2+ gig files should now actually
work this time... -Erik
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 67cdb315b..1ba43f1ba 100644
--- a/Makefile
+++ b/Makefile
@@ -125,7 +125,7 @@ ARFLAGS = -r
125 125
126ifeq ($(strip $(DOLFS)),true) 126ifeq ($(strip $(DOLFS)),true)
127 # For large file summit support 127 # For large file summit support
128 CFLAGS+=-D_FILE_OFFSET_BITS=64 128 CFLAGS+=-D_FILE_OFFSET_BITS=64 -D__USE_FILE_OFFSET64
129endif 129endif
130ifeq ($(strip $(DODMALLOC)),true) 130ifeq ($(strip $(DODMALLOC)),true)
131 # For testing mem leaks with dmalloc 131 # For testing mem leaks with dmalloc