Re: Configuring for 64-bit integer date/time storage? - Mailing list pgsql-hackers

From Peter Eisentraut
Subject Re: Configuring for 64-bit integer date/time storage?
Date
Msg-id Pine.LNX.4.30.0203261249420.714-100000@peter.localdomain
Whole thread Raw
In response to Re: Configuring for 64-bit integer date/time storage?  (Thomas Lockhart <thomas@fourpalms.org>)
List pgsql-hackers
Thomas Lockhart writes:

> Did you catch the questions on dealing with HAVE_LONG_INT_64,
> HAVE_LONG_LONG_INT_64, and INT64_IS_BUSTED? I'd like to be able to
> enable/disable integer date/time storage in configure, so some notion of
> "do I have some kind of 64 bit integer?" seems to be desirable in
> configure itself.

Is this what you want?

if test "$enable_integer_datetimes" = yes; then if test "$HAVE_LONG_LONG_INT64" != yes && test "$HAVE_LONG_INT64" !=
yes;then   AC_MSG_ERROR([integer datetimes not available due to lack of 64-bit integer type]) fi
 
fi

-- 
Peter Eisentraut   peter_e@gmx.net



pgsql-hackers by date:

Previous
From: Thomas Lockhart
Date:
Subject: Re: Autoconf upgrade
Next
From: "Marc G. Fournier"
Date:
Subject: Re: Autoconf upgrade