From: Tom Yu Date: Mon, 21 Sep 2015 21:20:06 +0000 (-0400) Subject: Fail during configure if stdint.h missing X-Git-Tag: krb5-1.15-beta1~361 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=33441e6376d5b1606089a3621798493027816010;p=thirdparty%2Fkrb5.git Fail during configure if stdint.h missing We now require stdint.h to build this software. Gracefully fail during configure time if stdint.h is missing. ticket: 8221 target_version: 1.14 tags: pullup --- diff --git a/src/configure.in b/src/configure.in index b2b1d70828..fd06dcb928 100644 --- a/src/configure.in +++ b/src/configure.in @@ -22,6 +22,9 @@ AC_SUBST(KRB5_VERSION) AC_REQUIRE_CPP +AC_CHECK_HEADER([stdint.h], [], + [AC_MSG_ERROR([stdint.h is required])]) + AC_CACHE_CHECK([whether integers are two's complement], [krb5_cv_ints_twos_compl], [AC_COMPILE_IFELSE(