From 2fb2a00e74adc371e306c1084ad8d8fb2a0e56b4 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Herm=C3=A8s=20B=C3=A9lusca-Ma=C3=AFto?= Date: Sat, 29 Dec 2012 20:16:21 +0000 Subject: [PATCH] =?utf8?q?[WPP]=20Apply=20Wine=20commit=20"wpp:=20Fix=20pa?= =?utf8?q?th=20separator=20on=20Windows=20platforms."=20by=20Herm=C3=A8s?= =?utf8?q?=20B=C3=A9lusca-Ma=C3=AFto=20(9dbd1969fca9c31155c6d85ea8129d2494?= =?utf8?q?67926b)=20Indeed,=20Windows=20systems=20use=20':'=20as=20part=20?= =?utf8?q?of=20paths=20and=20therefore,=20use=20another=20separator=20char?= =?utf8?q?acter.=20This=20enables=20compiling=20ReactOS=20from=20source=20?= =?utf8?q?files=20located=20in=20a=20different=20disk=20partition=20as=20t?= =?utf8?q?he=20generated=20(output)=20files.?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit CORE-6442 #resolve #comment Committed in r58044. svn path=/trunk/; revision=58044 --- reactos/tools/wpp/preproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/tools/wpp/preproc.c b/reactos/tools/wpp/preproc.c index 99934d69944..2575b006d84 100644 --- a/reactos/tools/wpp/preproc.c +++ b/reactos/tools/wpp/preproc.c @@ -447,7 +447,7 @@ pp_entry_t *pp_add_macro(char *id, marg_t *args[], int nargs, mtext_t *exp) * Include management *------------------------------------------------------------------------- */ -#if defined(_Windows) || defined(__MSDOS__) +#if defined(_WIN32) || defined(__MSDOS__) #define INCLUDESEPARATOR ";" #else #define INCLUDESEPARATOR ":" -- 2.17.1