Check for GC in makefile breaks
Status: Alpha
Brought to you by:
jcofflan
The check
# Garbage Collector library
AC_CHECK_LIB(gc, main, , [AC_MSG_ERROR([Cannot find required library libgc])])
in configure.in of libxmlpl_cpp_runtime fails on openSUSE 10.2, even though the library is there and properly installed.
I removed the line completely, did autogen.sh again and built libxmlpl_cpp_runtime and it built without any problems. Might it be that this line is not needed at all?