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 [EMAIL PROTECTED] ---------------------------(end of broadcast)--------------------------- TIP 6: Have you searched our list archives? http://archives.postgresql.org