autoconf
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: breaking long AC_CHECK_FUNCS lines?


From: Eric Sunshine
Subject: Re: breaking long AC_CHECK_FUNCS lines?
Date: Mon, 23 Dec 2002 18:09:45 -0500

Hello,

On Mon, 23 Dec 2002 14:52:13 -0800, Dan Kegel wrote:
> I found the following in kaffe's configure.in:
> AC_CHECK_FUNCS([dnl
> strerror hstrerror dnl
> ])
> This appears to no longer work with autoconf 2.53; it causes
> seriously confused output.  Replacing this idiom with the single-line idiom
> seems to work better, but is hard to read.  What's the
> proper way to break lines in that situation?

Using backslashes works.  For instance:

AC_CHECK_FUNCS([ \
sterror floor \
putenv strchr \
strcasecmp \
])

-- ES



reply via email to

[Prev in Thread] Current Thread [Next in Thread]