Re: Configuring for 64-bit integer date/time storage?

From: Peter Eisentraut <peter_e(at)gmx(dot)net>
To: Thomas Lockhart <thomas(at)fourpalms(dot)org>
Cc: PostgreSQL Hackers List <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Configuring for 64-bit integer date/time storage?
Date: 2002-03-26 17:59:07
Message-ID: Pine.LNX.4.30.0203261249420.714-100000@peter.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)gmx(dot)net

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Peter Eisentraut 2002-03-26 18:13:58 Re: Autoconf upgrade
Previous Message Marc G. Fournier 2002-03-26 17:55:59 Re: Autoconf upgrade