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