Tushar Teredesai wrote: > On 1/17/06, Bruce Dubbs <[EMAIL PROTECTED]> wrote: > >>Tushar Teredesai wrote: >> >>>On 1/17/06, Bruce Dubbs <[EMAIL PROTECTED]> wrote: >>> >>> >>>>It would be nice to do it in zip >>>>too, but I couldn't find an equivalent construct (didn't look a lot). >>> >>> >>>The var is similar to unzip's - LOCAL_ZIP. >> >>I don't understand your comment. I see that LOCAL_ZIP is a way to add >>defines to the makefiles, but what should be defined to adjust the max >>file limit in zip? >> > > I am guessing the same define as the one used in unzip. The define is > not processed in the unzip files but by glibc. See > <http://www.suse.de/~aj/linux_lfs.html> for more info.
I don't think so. In unzip, there is the construct: #if (defined(UNIX) && defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)) # define Z_OFF_T off_t /* 64bit offsets to support 2GB < zipfile size < 4GB */ #else # define Z_OFF_T long #endif There is no such construct in zip. The only files that mention off_t in zip are specific for atheos, beos, macos, and tandem. -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/blfs-dev FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
