This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author David.Austin
Recipients David.Austin
Date 2010-08-13.12:15:05
SpamBayes Score 4.355231e-05
Marked as misclassified No
Message-id <1281701710.49.0.222431192126.issue9585@psf.upfronthosting.co.za>
In-reply-to
Content
On a Linux Xeon server (x86_64) largefile support is (incorrectly)
not included.

configure determines:
checking size of int... 4
checking size of long... 8
checking size of void *... 8
checking size of short... 2
checking size of float... 4
checking size of double... 8
.
.
.
checking size of off_t... 8

but gets it wrong:

checking whether to enable large file support... no

To me it seems that the logic sizeof_off_t > sizeof_long
is wrong.

(I changed to comparison off_t > int and it built
with largefile support and works fine.)

$ uname -a
Linux cpu3 2.6.31-14-server #48-Ubuntu SMP Fri Oct 16 15:07:34 UTC 2009 x86_64 GNU/Linux

Ubuntu Lucid
History
Date User Action Args
2010-08-13 12:15:11David.Austinsetrecipients: + David.Austin
2010-08-13 12:15:10David.Austinsetmessageid: <1281701710.49.0.222431192126.issue9585@psf.upfronthosting.co.za>
2010-08-13 12:15:08David.Austinlinkissue9585 messages
2010-08-13 12:15:06David.Austincreate