[Cppunit-devel] Probably a bug in a cppunit tutorial?
Brought to you by:
blep
From: CppUnit d. m. l. <cpp...@li...> - 2006-12-07 12:12:20
|
Hi Folks, i guess I found a bug at URL: http://cppunit.sourceforge.net/doc/lastest/money_example.html in Section: Setting up your project (Unix) Makefile.am > ... > MoneyApp_LDFLAGS = $(CPPUNIT_LIBS) > MoneyApp_LDFLAGS = -ldl >.... should more likely : > MoneyApp_LDFLAGS = $(CPPUNIT_LIBS) -ldl I cost's me some hours of investigation, because totally new to autoconf and friends, after fixing the above the makefile append the library cppunit correctly. Using: ubuntu 5.10, kernel 2.6.12, aclocal 1-1.6, autoconf (GNU Autoconf) 2.59, automake (GNU automake) 1.4-p6 |