On Oct  5, 2000, Emmanuel Beffara <[EMAIL PROTECTED]> wrote:

>       AC_DEFINE(AC_CHECK_TOTO,
>         AC_TRY_COMPILE([#include <toto.h>], [toto()],
>           TOTO=true, TOTO=false))

You're missing quoting.  Enclose macro arguments in `[]'s.

        AC_DEFINE(AC_CHECK_TOTO,
         [AC_TRY_COMPILE([#include <toto.h>], [toto()],
            TOTO=true, TOTO=false)])
         ^                        ^

-- 
Alexandre Oliva   Enjoy Guarana', see http://www.ic.unicamp.br/~oliva/
Red Hat GCC Developer                  aoliva@{cygnus.com, redhat.com}
CS PhD student at IC-Unicamp        oliva@{lsd.ic.unicamp.br, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me

Reply via email to