On 09/28/2011 11:34 AM, Arnout Vandecappelle (Essensium/Mind) wrote: > 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]>
With my autoconf and related tools (coming with ubuntu 11.04) I get a strange "fidone" line in "configure" after re-generating it: $ autoconf --version autoconf (GNU Autoconf) 2.67 $ ./scripts/autogen.sh $ grep fidone configure fidone This patch fixes the problem, therefore... Acked-by: Wolfgang Grandegger <[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 > ------------------------------------------------------------------------------ The demand for IT networking professionals continues to grow, and the demand for specialized networking skills is growing even more rapidly. Take a complimentary Learning@Cisco Self-Assessment and learn about Cisco certifications, training, and career opportunities. http://p.sf.net/sfu/cisco-dev2dev _______________________________________________ RTnet-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/rtnet-developers

