After I executed configure, I got this output:Configured for `i686-pc-linux-gnu'. Compilation level: 3 (build all layers) Using FlateDecode filter? yes Using JBIG2 decoder filter? no With unit tests support? no Program to build html manuals makeinfo Build project management resources? no Layers with debug mode enabled all disabled Generate code coverage information no which indicated that it's configured without unit test support and debug mode disabled.So, it says "nothing to be done" when I "make check". What to do ? You should install the check library (http://check.sf.net) in order to be able to run the unit tests with make check. Just download the check sources, compile and install.
Check is available in multiple distributions, so probably don't need to compile and install it by hand.
In an APT-based distro try (as root): $> apt-get install check If using RHEL or similar with YUM, try (as root): $> yum install check-devel Cheers, -Aleksander
