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