Module: wine Branch: master Commit: 9dbd1969fca9c31155c6d85ea8129d249467926b URL: http://source.winehq.org/git/wine.git/?a=commit;h=9dbd1969fca9c31155c6d85ea8...
Author: Hermès Bélusca-Maïto hermes.belusca@sfr.fr Date: Thu Dec 27 00:40:23 2012 +0100
wpp: Fix path separator on Windows platforms.
---
libs/wpp/preproc.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/libs/wpp/preproc.c b/libs/wpp/preproc.c index 233d260..fd99167 100644 --- a/libs/wpp/preproc.c +++ b/libs/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 ":"