[Compiler-sig] Compiler Error Under BSDI 4.1

Fredrik Lundh fredrik@effbot.org
Mon, 30 Oct 2000 20:14:41 +0100


> Does anyone have a quick and dirty fix to let me get 2.0 compiled.

wrong mailing list: the compiler-sig is about developing compilers
and type analysis systems for python, not about compiling it...

> My c skills are way too rusty to attack this in the limited time I
> have available.

you'll find instructions here:

    http://www.deja.com/=dnc/getdoc.xp?AN=683926459&fmt=text

summary:

    You can fix this by editing './config.h' after running './configure',
    and commenting out the HAVE_LARGEFILE_SUPPORT line; changing
    this:

        #define HAVE_LARGEFILE_SUPPORT 1

    into something like this:

        /* #define HAVE_LARGEFILE_SUPPORT 1 */

    (You can just remove the line as well.)

see the post for more info.

</F>