autoconf
[Top][All Lists]
Advanced

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

Re: AC_CHECK_LIB


From: Pavel Roskin
Subject: Re: AC_CHECK_LIB
Date: Fri, 27 Oct 2000 14:09:34 -0400 (EDT)

Hello, Paul!

> I am currently using:
> 
> AC_CHECK_LIB(c, dlopen, LIBDL="", AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl"))

Whenever you supply macros in arguments quote those arguments:

AC_CHECK_LIB(c, dlopen, LIBDL="", [AC_CHECK_LIB(dl, dlopen, LIBDL="-ldl")])

It appears that autoconf actually needs some kind of security net
here. It's not the first time that such problems are reported.

Regards,
Pavel Roskin




reply via email to

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