From: Tim Rice Date: Tue, 24 May 2022 17:21:25 +0000 (-0700) Subject: configure.ac: Add missing AC_DEFINE for caph_cache_tzdata test causing X-Git-Tag: V_9_1_P1~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2487163630f28be28b7e2396b4bd6511b98f1d3e;p=thirdparty%2Fopenssh-portable.git configure.ac: Add missing AC_DEFINE for caph_cache_tzdata test causing HAVE_CAPH_CACHE_TZDATA to be missing from config.h.in. Spotted by Bryan Drewery --- diff --git a/configure.ac b/configure.ac index f25a638ea..e7459ee1a 100644 --- a/configure.ac +++ b/configure.ac @@ -514,7 +514,11 @@ AC_MSG_CHECKING([for caph_cache_tzdata]) AC_LINK_IFELSE( [AC_LANG_PROGRAM([[ #include ]], [[caph_cache_tzdata();]])], - [ AC_MSG_RESULT([yes]) ], + [ + AC_MSG_RESULT([yes]) + AC_DEFINE([HAVE_CAPH_CACHE_TZDATA], [1], + [Define if you have caph_cache_tzdata]) + ], [ AC_MSG_RESULT([no]) ] )