diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2006-01-08 12:15:39 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2006-01-08 12:15:39 +0000 |
commit | fcb88e73ce3953940ef28c097b2a615ca5970aee (patch) | |
tree | 053bf340321b974a8cac5eec505118216d9b319a /lib | |
parent | 56f6e30a8f5cb9bbf0371718022925584247f018 (diff) | |
download | xine-lib-fcb88e73ce3953940ef28c097b2a615ca5970aee.tar.gz xine-lib-fcb88e73ce3953940ef28c097b2a615ca5970aee.tar.bz2 |
*BUGFIX*
Used the same pludindir and path separator for native Win32 and CygWin.
Fixed build of the plugins using X11 on CygWin.
CVS patchset: 7833
CVS date: 2006/01/08 12:15:39
Diffstat (limited to 'lib')
-rw-r--r-- | lib/os_internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/os_internal.h b/lib/os_internal.h index ff2e28273..67008c260 100644 --- a/lib/os_internal.h +++ b/lib/os_internal.h @@ -17,7 +17,7 @@ #endif -#if defined(WIN32) +#if defined(WIN32) || defined(__CYGWIN__) # define XINE_PATH_SEPARATOR_STRING ";" # define XINE_PATH_SEPARATOR_CHAR ';' # define XINE_DIRECTORY_SEPARATOR_STRING "\\" |