From: Remi Gacogne Date: Fri, 13 Jan 2023 09:25:41 +0000 (+0100) Subject: m4: Fix interleaved output during `FORTIFY_SOURCE` detection X-Git-Tag: dnsdist-1.8.0-rc1~110^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4f891ed6bec4a818beecb03833411d6592bd7432;p=thirdparty%2Fpdns.git m4: Fix interleaved output during `FORTIFY_SOURCE` detection --- diff --git a/m4/pdns_d_fortify_source.m4 b/m4/pdns_d_fortify_source.m4 index fec605ea40..826ed46973 100644 --- a/m4/pdns_d_fortify_source.m4 +++ b/m4/pdns_d_fortify_source.m4 @@ -19,7 +19,6 @@ dnl . dnl AC_DEFUN([AC_CC_D_FORTIFY_SOURCE],[ - AC_MSG_CHECKING([whether FORTIFY_SOURCE is supported]) AC_ARG_ENABLE([fortify-source], AS_HELP_STRING([--enable-fortify-source], [enable FORTIFY_SOURCE support @<:@default=2@:>@]), [enable_fortify_source=$enableval], @@ -65,5 +64,6 @@ AC_DEFUN([AC_CC_D_FORTIFY_SOURCE],[ ], []) + AC_MSG_CHECKING([whether FORTIFY_SOURCE is supported]) AC_MSG_RESULT([$enable_fortify_source]) ])