diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2010-06-15 11:11:10 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2010-06-15 11:11:10 (GMT) |
commit | 0c6ee149829948582e5e5c1b96c8b3105b02672a (patch) | |
tree | b47b3252c432a415bf772add061e451f5782d6c7 /src/doxygen.cpp | |
parent | a1528245b280f1068daad8cd850ea345a3f8b568 (diff) | |
download | Doxygen-0c6ee149829948582e5e5c1b96c8b3105b02672a.zip Doxygen-0c6ee149829948582e5e5c1b96c8b3105b02672a.tar.gz Doxygen-0c6ee149829948582e5e5c1b96c8b3105b02672a.tar.bz2 |
Release-1.7.0
Diffstat (limited to 'src/doxygen.cpp')
-rw-r--r-- | src/doxygen.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/doxygen.cpp b/src/doxygen.cpp index 6a288ad..6b3720e 100644 --- a/src/doxygen.cpp +++ b/src/doxygen.cpp @@ -10537,7 +10537,10 @@ void generateOutput() } } - DotManager::instance()->run(); + if (Config_getBool("HAVE_DOT")) + { + DotManager::instance()->run(); + } if (Debug::isFlagSet(Debug::Time)) { |