diff options
author | Damien Miller <djm@mindrot.org> | 2000-04-03 07:57:06 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-04-03 07:57:06 +0200 |
commit | 70494d18eea315a70a7b7604080b8815d492b262 (patch) | |
tree | 06f98134de091ccf6f606e3aeb7de6047ca4eb32 /configure.in | |
parent | remove debugging junk (diff) | |
download | openssh-70494d18eea315a70a7b7604080b8815d492b262.tar.xz openssh-70494d18eea315a70a7b7604080b8815d492b262.zip |
- Disable tests and typedefs for 64 bit types. They are currently unused.V_1_2_3_TEST2
Diffstat (limited to '')
-rw-r--r-- | configure.in | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/configure.in b/configure.in index 6c9ea3129..1a2fcd2ca 100644 --- a/configure.in +++ b/configure.in @@ -304,7 +304,7 @@ AC_CHECK_SIZEOF(long long int, 8) AC_MSG_CHECKING([for intXX_t types]) AC_TRY_COMPILE( [#include <sys/types.h>], - [int8_t a; int16_t b; int32_t c; int64_t d; a = b = c = d = 1;], + [int8_t a; int16_t b; int32_t c; a = b = c = 1;], [ AC_DEFINE(HAVE_INTXX_T) AC_MSG_RESULT(yes) @@ -316,7 +316,7 @@ AC_TRY_COMPILE( AC_MSG_CHECKING([for u_intXX_t types]) AC_TRY_COMPILE( [#include <sys/types.h>], - [u_int8_t a; u_int16_t b; u_int32_t c; u_int64_t d; a = b = c = d = 1;], + [u_int8_t a; u_int16_t b; u_int32_t c; a = b = c = 1;], [ AC_DEFINE(HAVE_U_INTXX_T) AC_MSG_RESULT(yes) @@ -332,9 +332,9 @@ then AC_TRY_COMPILE( [#include <sys/bitypes.h>], [ - int8_t a; int16_t b; int32_t c; int64_t d; - u_int8_t e; u_int16_t f; u_int32_t g; u_int64_t h; - a = b = c = d = e = f = g = h = 1; + int8_t a; int16_t b; int32_t c; + u_int8_t e; u_int16_t f; u_int32_t g; + a = b = c = e = f = g = 1; ], [ AC_DEFINE(HAVE_U_INTXX_T) @@ -349,7 +349,7 @@ if test -z "$have_u_intxx_t" ; then AC_MSG_CHECKING([for uintXX_t types]) AC_TRY_COMPILE( [#include <sys/types.h>], - [uint8_t a; uint16_t b; uint32_t c; uint64_t d; a = b = c = d = 1;], + [uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;], [ AC_DEFINE(HAVE_UINTXX_T) AC_MSG_RESULT(yes) |