summaryrefslogtreecommitdiffstats
path: root/src/portable.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <dimitri@stack.nl>2007-09-02 19:15:32 (GMT)
committerDimitri van Heesch <dimitri@stack.nl>2007-09-02 19:15:32 (GMT)
commit8e4a092e4d51347f8f6c61d87154ee74edb13d20 (patch)
tree05d18b9500cfc4e613b19d0154b89ed18542a3ae /src/portable.cpp
parent4a93397673029e3cfd4c9e2d0501a109f858b87c (diff)
downloadDoxygen-8e4a092e4d51347f8f6c61d87154ee74edb13d20.zip
Doxygen-8e4a092e4d51347f8f6c61d87154ee74edb13d20.tar.gz
Doxygen-8e4a092e4d51347f8f6c61d87154ee74edb13d20.tar.bz2
Release-1.5.3-20070902
Diffstat (limited to 'src/portable.cpp')
-rw-r--r--src/portable.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/portable.cpp b/src/portable.cpp
index dc276d1..174fa20 100644
--- a/src/portable.cpp
+++ b/src/portable.cpp
@@ -22,7 +22,9 @@ extern char **environ;
#endif
#include "portable.h"
-//#include "debug.h"
+#ifndef NODEBUG
+#include "debug.h"
+#endif
//#include "doxygen.h"
static double sysElapsedTime;
@@ -43,7 +45,9 @@ int portable_system(const char *command,const char *args,bool commandHasConsole
}
fullCmd += " ";
fullCmd += args;
- //Debug::print(Debug::ExtCmd,0,"Executing external command `%s`\n",fullCmd.data());
+#ifndef NODEBUG
+ Debug::print(Debug::ExtCmd,0,"Executing external command `%s`\n",fullCmd.data());
+#endif
#if !defined(_WIN32) || defined(__CYGWIN__)
commandHasConsole=commandHasConsole;