summaryrefslogtreecommitdiffstats
path: root/src/portable.cpp
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2007-09-02 19:15:32 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2007-09-02 19:15:32 (GMT)
commit6bedd287437d2091820129533cb44f56609d0991 (patch)
tree05d18b9500cfc4e613b19d0154b89ed18542a3ae /src/portable.cpp
parent115c6c02c3b246c525721aef9b1a43aeeb4666d5 (diff)
downloadDoxygen-6bedd287437d2091820129533cb44f56609d0991.zip
Doxygen-6bedd287437d2091820129533cb44f56609d0991.tar.gz
Doxygen-6bedd287437d2091820129533cb44f56609d0991.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;