diff options
| author | Bruce Momjian | 1998-08-25 02:23:58 +0000 |
|---|---|---|
| committer | Bruce Momjian | 1998-08-25 02:23:58 +0000 |
| commit | a06ba33cfd21a2b38b3ebb007d2d32b991ac8405 (patch) | |
| tree | d9e985c09540e3777442ad55b652c5f78a18cc93 /src/configure.in | |
| parent | 28d90a5f8b3e383f1bc285ff9a21564abde490f9 (diff) | |
int64 fix
Diffstat (limited to 'src/configure.in')
| -rw-r--r-- | src/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/configure.in b/src/configure.in index b81d129ef33..90cf29dada9 100644 --- a/src/configure.in +++ b/src/configure.in @@ -522,7 +522,7 @@ AC_TRY_RUN([#include <stdlib.h> #endif main() { double d = DBL_MIN; if (d != DBL_MIN) exit(-1); else exit(0); }], AC_MSG_RESULT(yes), - [AC_MSG_RESULT(no) AC_DEFINE(HAVE_DBL_MIN_PROBLEM)], + [AC_DEFINE(HAVE_DBL_MIN_PROBLEM) AC_MSG_RESULT(no)], AC_MSG_RESULT(assuming ok on target machine)) dnl Check to see if we have a working 64-bit integer type. @@ -559,7 +559,7 @@ int does_int64_work() main() { exit(! does_int64_work()); }], - [AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_INT_64)], + [AC_DEFINE(HAVE_LONG_INT_64) AC_MSG_RESULT(yes)], AC_MSG_RESULT(no), AC_MSG_RESULT(assuming not on target machine)) @@ -596,7 +596,7 @@ int does_int64_work() main() { exit(! does_int64_work()); }], - [AC_MSG_RESULT(yes) AC_DEFINE(HAVE_LONG_LONG_INT_64)], + [AC_DEFINE(HAVE_LONG_LONG_INT_64) AC_MSG_RESULT(yes)], AC_MSG_RESULT(no), AC_MSG_RESULT(assuming not on target machine)) |
