The configure script fails to find cppunit for the test suite because it's looking for cppunit-config which doesn't exist anymore in current cppunit.
% make test
cppunit is not installed
|
AC_CHECK_PROG(CPPUNIT_CONFIG, cppunit-config, cppunit-config, no) |
Use pkg-config instead.
The configure script fails to find cppunit for the test suite because it's looking for
cppunit-configwhich doesn't exist anymore in current cppunit.libRETS/project/build/ac-macros/cppunit.m4
Line 16 in 200ff12
Use
pkg-configinstead.