-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

According to Sam Steingold on 9/2/2009 4:04 PM:
>     AC_CACHE_CHECK([for FFI in CLISP], [cl_cv_clisp_ffi], [
>      CLISP_SET(cl_cv_clisp_ffi,['#+ffi "yes" #-ffi "no"'])])
> ...])
> 
> apparently, I need to quote '#+ffi "yes" #-ffi "no"' somehow...

Try:

    CLISP_SET([cl_cv_clisp_ffi],[['#+ffi "yes" #-ffi "no"']])])

A single quoted # in a macro argument is an m4 comment starter, and eats
until the next newline (including what you thought were the closing
brackets), explaining the unbalanced warning.  Notice how my correction
uses double-quoting, which says that your string containing # is a literal
(no further macro names occur within the string), and not a comment starter.

- --
Don't work too hard, make some time for fun as well!

Eric Blake             [email protected]
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAkqfFjYACgkQ84KuGfSFAYAoVACeOLAx1w8u2pXrTQve0inLInxt
NKIAoKlyolru1rW1U7PUBfwWpCT4Jn1p
=0NRG
-----END PGP SIGNATURE-----


_______________________________________________
Autoconf mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/autoconf

Reply via email to