RE: Build error Python 2.4.1 - stat problem?

2005-05-25 Thread Brandt, Servatius
Hello, I found the solution of my problems. The configure script decided to switch on large file support, but the #defines set in pyconfig.h caused an inconsistency between the stat function calls (32 bit versions) and the stat structures used (64 bit versions). After I switched off the large fi

RE: Build error Python 2.4.1 - stat problem?

2005-05-25 Thread Brandt, Servatius
Donn Cave wrote: >In article <[EMAIL PROTECTED]>, > <[EMAIL PROTECTED]> wrote: >... >> I used the python executable from the build directory to run the >> following program: >> >> import os >> >> def main(): >> if not (os.path.exists("/")): >> print "/ does not exist"