This line in debian/rules:
make DEBUGFLAGS=-g OPTFLAGS=$(OPTFLAGS)
leaves off this part of the OPTFLAGS, which is defined in the original
Makefile:
-D_FILE_OFFSET_BITS=64
Adding this definition to OPTFLAGS will allow large file systems to be
examined.
Here's a patch which seems to work:
--- debian/rules-save 2005-03-25 14:51:17.000000000 -0800
+++ debian/rules 2005-03-25 14:51:29.712715620 -0800
@@ -22,9 +22,9 @@
ARCH = $(shell dpkg --print-gnu-build-architecture)
ifeq ($(ARCH),alpha)
-OPTFLAGS="-fomit-frame-pointer -fno-strict-aliasing"
+OPTFLAGS="-fomit-frame-pointer -fno-strict-aliasing -D_FILE_OFFSET_BITS=64"
else
-OPTFLAGS="-O2 -fomit-frame-pointer"
+OPTFLAGS="-O2 -fomit-frame-pointer -D_FILE_OFFSET_BITS=64"
endif
build:
--
Kevin Dalley
[EMAIL PROTECTED]
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]