From: Jarkko Hietaniemi Date: Fri, 3 Sep 1999 21:17:30 +0000 (+0000) Subject: Turn on USE_64_BIT_OFFSETS implicitly. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4564133c4016aec0d37d61c0a6d6d493c6a4db44;p=p5sagit%2Fp5-mst-13.2.git Turn on USE_64_BIT_OFFSETS implicitly. p4raw-id: //depot/cfgperl@4069 --- diff --git a/perl.h b/perl.h index 613f84f..e16b37e 100644 --- a/perl.h +++ b/perl.h @@ -1406,10 +1406,16 @@ typedef union any ANY; #endif #if defined(USE_64_BIT_FILES) || defined(USE_LARGE_FILES) -# define USE_64_BIT_OFFSETS +# define USE_64_BIT_OFFSETS /* Explicit */ # define USE_64_BIT_STDIO #endif +#if LSEEKSIZE == 8 && !defined(USE_64_BIT_OFFSETS) +# define USE_64_BIT_OFFSETS /* Implicit */ +#endif + +/* Do we need FSEEKSIZE? */ + /* I couldn't find any -Ddefine or -flags in IRIX 6.5 that would * have done the necessary symbol renaming using cpp. --jhi */ #ifdef __sgi