bug-autoconf
[Top][All Lists]
Advanced

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

Re: AC_CHECK_FUNC and AC_LIBOBJ in 2.59


From: Stepan Kasal
Subject: Re: AC_CHECK_FUNC and AC_LIBOBJ in 2.59
Date: Wed, 20 Apr 2005 08:02:54 +0200
User-agent: Mutt/1.4.1i

Hello,

On Tue, Apr 19, 2005 at 05:46:21PM +0200, Anton Ertl wrote:
> The fix is to use proper quoting:
> 
> AC_CHECK_FUNC(_sync_cache_range,[true],[AC_LIBOBJ(../arch/power/_sync_cache_range)])

yes.  But I don't understand why you quote [true].

Full quoting would look like:
AC_CHECK_FUNC([_sync_cache_range], [true], 
[AC_LIBOBJ([../arch/power/_sync_cache_range])])

while when you omit quotes for simple words, you have:

AC_CHECK_FUNC(_sync_cache_range, true, 
[AC_LIBOBJ(../arch/power/_sync_cache_range)])

(I added spaces after commas to improve readability; it has no significance.)

Happy m4,
        Stepan Kasal




reply via email to

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