diff options
author | marha <marha@users.sourceforge.net> | 2013-09-12 11:38:41 +0200 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-09-12 11:40:36 +0200 |
commit | 5a54fa6e45ee10cf58ee1b6d2eb5522a24bb8745 (patch) | |
tree | 02781984e9417bc04a726fcb7ac6cf17f8169920 /tools/mhmake/src/curdir.cpp | |
parent | af858aeb7348909e334cfd0db0070e1661df00fc (diff) | |
download | vcxsrv-5a54fa6e45ee10cf58ee1b6d2eb5522a24bb8745.tar.gz vcxsrv-5a54fa6e45ee10cf58ee1b6d2eb5522a24bb8745.tar.bz2 vcxsrv-5a54fa6e45ee10cf58ee1b6d2eb5522a24bb8745.zip |
Some minor modifications
Ignore pipe symbols when in dependency list
Solved some linking problems in linux
Solved problem calling svn info when using svn version from cygwin
Diffstat (limited to 'tools/mhmake/src/curdir.cpp')
-rw-r--r-- | tools/mhmake/src/curdir.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/mhmake/src/curdir.cpp b/tools/mhmake/src/curdir.cpp index b87dc4f6f..d2b43ab52 100644 --- a/tools/mhmake/src/curdir.cpp +++ b/tools/mhmake/src/curdir.cpp @@ -23,9 +23,12 @@ #include "fileinfo.h"
#include "curdir.h"
#include "util.h"
+#include "mhmakeparser.hpp"
fileinfos g_FileInfos; // declare here since it is important that it is constructed before m_pcurrentdir
curdir::initcurdir curdir::m_pCurrentDir;
+loadedmakefile::loadedmakefile_statics loadedmakefile::sm_Statics; // Declare this here because this constructor is using g_FileInfos and m_pCurrentDir
+LOADEDMAKEFILES g_LoadedMakefiles; // Declare it here otherwize problems in the destructor (still using items from g_FileInfos)
///////////////////////////////////////////////////////////////////////////////
curdir::initcurdir::initcurdir()
|