Re: installing from source in Windows

From: Craig Ringer <craig(at)postnewspapers(dot)com(dot)au>
To: "Turner, John J" <JJTurner(at)statestreet(dot)com>, "List, Postgres" <pgsql-general(at)postgresql(dot)org>
Subject: Re: installing from source in Windows
Date: 2010-10-18 05:39:04
Message-ID: 4CBBDD78.9000903@postnewspapers.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 10/18/2010 12:29 PM, Turner, John J wrote:
>
> Craig, thanks for having a go at it - and thanks for all the help thus
> far!

OK. According to your config.log, configure tests "long int" and
determines it's only 32 bits, so tries "long long int" and determines
that it's 64 bits wide. So there is a 64-bit type available. This sets
HAVE_LONG_LONG_INT_64=1 .

That should cause this test in c.h to pass:

#ifdef HAVE_LONG_INT_64
// blah blah
#elif defined(HAVE_LONG_LONG_INT_64)
// blah blah
#else
/* neither HAVE_LONG_INT_64 nor HAVE_LONG_LONG_INT_64 */
#error must have a working 64-bit integer datatype
#endif

... but the error you're getting suggests that it doesn't.

Have you re-tried all this on a clean source tree, running under the
msys shell from start to finish?

--
Craig Ringer

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Radosław Smogura 2010-10-18 06:42:19 Re: Automated Database Backups
Previous Message AI Rumman 2010-10-18 04:58:24 How to find which query are doing seq_scan