=?UTF-8?Q?Herm=C3=A8s=20B=C3=A9lusca=2DMa=C3=AF?==?UTF-8?Q?to=20?=: wpp: Fix path separator on Windows platforms.

Alexandre Julliard julliard at winehq.org
Thu Dec 27 13:02:29 CST 2012


Module: wine
Branch: master
Commit: 9dbd1969fca9c31155c6d85ea8129d249467926b
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=9dbd1969fca9c31155c6d85ea8129d249467926b

Author: Hermès Bélusca-Maïto <hermes.belusca at 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	":"




More information about the wine-cvs mailing list