Alexandre Oliva <[EMAIL PROTECTED]> writes:
> On Feb 8, 2001, Tomas Berndtsson <[EMAIL PROTECTED]> wrote:
>
> > My autoconf version is 2.13. m4 is GNU m4 1.4.
> > I have the following in my configure.in:
>
> > AC_CHECK_FUNCS(dlopen, , AC_CHECK_LIB(dl,dlopen, ,
> > [AC_MSG_ERROR([
> > *** Zen does not function properly without dlopen, sorry.])]))
>
> You're missing quotes around [AC_CHECK_LIB(......)]
I don't see why I need that, but I tried, and it still didn't
work. This is what it looks like now:
AC_CHECK_FUNCS(dlopen, , [AC_CHECK_LIB(dl,dlopen, ,
[AC_MSG_ERROR([
*** Zen does not function properly without dlopen, sorry.])])])
which gave exactly the same error as before.
Tomas