Commit a19b1dc7 authored by Bruce Momjian's avatar Bruce Momjian

Cleanup of configure.in

parent 01b16f88
...@@ -573,7 +573,7 @@ main() { ...@@ -573,7 +573,7 @@ main() {
AC_MSG_RESULT(no), AC_MSG_RESULT(no),
AC_MSG_RESULT(assuming not on target machine)) AC_MSG_RESULT(assuming not on target machine))
AC_MSG_CHECKING(whether 'long long int' is 64 bits) AC_MSG_CHECKING(whether 'long long int' is 64 bits using %Ld)
AC_TRY_RUN([#include <stdio.h> AC_TRY_RUN([#include <stdio.h>
typedef long long int int64; typedef long long int int64;
#define INT64_FORMAT "%Ld" #define INT64_FORMAT "%Ld"
...@@ -610,6 +610,7 @@ main() { ...@@ -610,6 +610,7 @@ main() {
AC_MSG_RESULT(no), AC_MSG_RESULT(no),
AC_MSG_RESULT(assuming not on target machine)) AC_MSG_RESULT(assuming not on target machine))
AC_MSG_CHECKING(whether 'long long int' is 64 bits using %qd)
AC_TRY_RUN([#include <stdio.h> AC_TRY_RUN([#include <stdio.h>
typedef long long int int64; typedef long long int int64;
#define INT64_FORMAT "%qd" #define INT64_FORMAT "%qd"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment