From c2868192ddc4e1420a50389e18c05db20b0b1f32 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 30 Jan 2014 10:21:19 +1100 Subject: [PATCH] - (djm) [configure.ac] Only check for width-specified integer types in headers that actually exist. patch from Tom G. Christensen; ok dtucker@ --- ChangeLog | 7 ++++++- configure.ac | 16 +++++++++++----- 2 files changed, 17 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index 727c4a5a7..05e753423 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,9 @@ -20130129 +20140130 + - (djm) [configure.ac] Only check for width-specified integer types + in headers that actually exist. patch from Tom G. Christensen; + ok dtucker@ + +20140129 - (djm) [configure.ac] Fix broken shell test '==' vs '='; patch from Tom G. Christensen diff --git a/configure.ac b/configure.ac index 627ce5178..571362163 100644 --- a/configure.ac +++ b/configure.ac @@ -1,4 +1,4 @@ -# $Id: configure.ac,v 1.566 2014/01/29 10:01:33 djm Exp $ +# $Id: configure.ac,v 1.567 2014/01/29 23:21:20 djm Exp $ # # Copyright (c) 1999-2004 Damien Miller # @@ -15,7 +15,7 @@ # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. AC_INIT([OpenSSH], [Portable], [openssh-unix-dev@mindrot.org]) -AC_REVISION($Revision: 1.566 $) +AC_REVISION($Revision: 1.567 $) AC_CONFIG_SRCDIR([ssh.c]) AC_LANG([C]) @@ -3271,7 +3271,9 @@ if test "x$ac_cv_have_u_int64_t" = "xyes" ; then have_u_int64_t=1 fi -if test -z "$have_u_int64_t" ; then +if (test -z "$have_u_int64_t" && \ + test "x$ac_cv_header_sys_bitypes_h" = "xyes") +then AC_MSG_CHECKING([for u_int64_t type in sys/bitypes.h]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ u_int64_t a; a = 1]])], @@ -3301,7 +3303,9 @@ if test -z "$have_u_intxx_t" ; then fi fi -if test -z "$have_uintxx_t" ; then +if (test -z "$have_uintxx_t" && \ + test "x$ac_cv_header_stdint_h" = "xyes") +then AC_MSG_CHECKING([for uintXX_t types in stdint.h]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])], @@ -3312,7 +3316,9 @@ if test -z "$have_uintxx_t" ; then ]) fi -if test -z "$have_uintxx_t" ; then +if (test -z "$have_uintxx_t" && \ + test "x$ac_cv_header_inttypes_h" = "xyes") +then AC_MSG_CHECKING([for uintXX_t types in inttypes.h]) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ #include ]], [[ uint8_t a; uint16_t b; uint32_t c; a = b = c = 1;]])], -- 2.47.3