=== modified file 'configure.ac' --- configure.ac 2012-03-04 12:44:55 +0000 +++ configure.ac 2012-03-23 08:48:44 +0000 @@ -207,6 +207,21 @@ echo "using your package manager." exit 1 fi + + # check for the dot binary and abort if it is not found + AC_CHECK_PROG(is_dot_found, dot, "yes", "no") + if test "x$is_dot_found" != "xyes"; then + echo + echo "ERROR: dot binary not found" + echo + echo "dot is required by doxygen in order to generate the library documentation." + echo + echo "dot is part of Graphviz, a set of tools for creating graphs." + echo + echo "Go get it from http://graphviz.org/ or use your package manager " + echo "to install it on your system." + exit 1 + fi fi