autoconf
[Top][All Lists]
Advanced

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

Re: bug report


From: Alexandre Oliva
Subject: Re: bug report
Date: 05 Oct 2000 14:32:21 -0300
User-agent: Gnus/5.0807 (Gnus v5.8.7) XEmacs/21.1 (Channel Islands)

On Oct  5, 2000, Emmanuel Beffara <address@hidden> 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                  address@hidden, redhat.com}
CS PhD student at IC-Unicamp        address@hidden, gnu.org}
Free Software Evangelist    *Please* write to mailing lists, not to me



reply via email to

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