aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2011-10-27 09:44:42 +0200
committermarha <marha@users.sourceforge.net>2011-10-27 09:44:42 +0200
commite05025bd50cba8c6788e60128af8f07b78a57c2d (patch)
treeb3eadf15303fc76ab5bc17176383cb6fdc5c1b87 /tools
parentda589895573039c51b6c68af41745ba62a9f07b6 (diff)
downloadvcxsrv-e05025bd50cba8c6788e60128af8f07b78a57c2d.tar.gz
vcxsrv-e05025bd50cba8c6788e60128af8f07b78a57c2d.tar.bz2
vcxsrv-e05025bd50cba8c6788e60128af8f07b78a57c2d.zip
Made mhmake case sensitive for filenames
Diffstat (limited to 'tools')
-rw-r--r--tools/mhmake/src/fileinfo.cpp4
-rw-r--r--tools/mhmake/src/util.h2
2 files changed, 1 insertions, 5 deletions
diff --git a/tools/mhmake/src/fileinfo.cpp b/tools/mhmake/src/fileinfo.cpp
index f6468900d..939a83ce6 100644
--- a/tools/mhmake/src/fileinfo.cpp
+++ b/tools/mhmake/src/fileinfo.cpp
@@ -284,11 +284,7 @@ string &NormalizePathName(string &Name)
}
else
{
- #ifdef WIN32
- *pWr++ = tolower(Char);
- #else
*pWr++ = Char;
- #endif
}
Char=*pPtr++;
}
diff --git a/tools/mhmake/src/util.h b/tools/mhmake/src/util.h
index 333e36b00..a9bd76cfc 100644
--- a/tools/mhmake/src/util.h
+++ b/tools/mhmake/src/util.h
@@ -50,7 +50,7 @@
#define PLATFORM "linux"
#endif
-#define MHMAKEVER "3.0.7"
+#define MHMAKEVER "3.0.8"
class makecommand
{