diff options
Diffstat (limited to 'gettext-tools/lib/classpath.c')
-rw-r--r-- | gettext-tools/lib/classpath.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gettext-tools/lib/classpath.c b/gettext-tools/lib/classpath.c index 1cbc14b..ccb66de 100644 --- a/gettext-tools/lib/classpath.c +++ b/gettext-tools/lib/classpath.c @@ -1,5 +1,5 @@ /* Java CLASSPATH handling. - Copyright (C) 2001-2003 Free Software Foundation, Inc. + Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc. Written by Bruno Haible <haible@clisp.cons.org>, 2001. This program is free software; you can redistribute it and/or modify @@ -36,7 +36,7 @@ #endif /* Separator in PATH like lists of pathnames. */ -#if defined _WIN32 || defined __WIN32__ || defined __EMX__ || defined __DJGPP__ +#if ((defined _WIN32 || defined __WIN32__) && !defined __CYGWIN__) || defined __EMX__ || defined __DJGPP__ /* Win32, OS/2, DOS */ # define PATH_SEPARATOR ';' #else |