From: "Arnout Vandecappelle (Essensium/Mind)" <[email protected]>
autoconf 2.68 doesn't produce a newline at the end of AS_IF(). Therefore, the 'done' of the for loop gets concatenated with the 'fi' of AS_IF(). Adding an explicit newline fixes it. Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <[email protected]> --- config/m4/bs.m4 | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/config/m4/bs.m4 b/config/m4/bs.m4 index 9f767e5..7d98ec4 100644 --- a/config/m4/bs.m4 +++ b/config/m4/bs.m4 @@ -113,6 +113,7 @@ BS_CHECK_KHEADER($ac_header, [AC_DEFINE_UNQUOTED(AS_TR_CPP(HAVE_$ac_header)) $2], [$3], [$4])dnl + done ])# BS_CHECK_KHEADERS -- 1.7.6.3 ------------------------------------------------------------------------------ All the data continuously generated in your IT infrastructure contains a definitive record of customers, application performance, security threats, fraudulent activity and more. Splunk takes this data and makes sense of it. Business sense. IT sense. Common sense. http://p.sf.net/sfu/splunk-d2dcopy1 _______________________________________________ RTnet-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rtnet-developers

