Author: hbelusca
Date: Sat Dec 29 20:16:21 2012
New Revision: 58044
URL:
http://svn.reactos.org/svn/reactos?rev=58044&view=rev
Log:
[WPP]
Apply Wine commit "wpp: Fix path separator on Windows platforms." by Hermès
Bélusca-Maïto (9dbd1969fca9c31155c6d85ea8129d249467926b)
Indeed, Windows systems use ':' as part of paths and therefore, use another
separator character.
This enables compiling ReactOS from source files located in a different disk partition as
the generated (output) files.
CORE-6442 #resolve #comment Committed in r58044.
Modified:
trunk/reactos/tools/wpp/preproc.c
Modified: trunk/reactos/tools/wpp/preproc.c
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/wpp/preproc.c?rev=58…
==============================================================================
--- trunk/reactos/tools/wpp/preproc.c [iso-8859-1] (original)
+++ trunk/reactos/tools/wpp/preproc.c [iso-8859-1] Sat Dec 29 20:16:21 2012
@@ -447,7 +447,7 @@
* Include management
*-------------------------------------------------------------------------
*/
-#if defined(_Windows) || defined(__MSDOS__)
+#if defined(_WIN32) || defined(__MSDOS__)
#define INCLUDESEPARATOR ";"
#else
#define INCLUDESEPARATOR ":"