With cygwin, use ":" as DIR_SEP (patch from Philip Aston <paston@bea.com>).

merge-requests/1/head
Henning Geinitz 2006-02-04 20:52:53 +00:00
rodzic 1695dd4278
commit 5168206e4b
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -4,6 +4,8 @@
19200 (now in niash.desc), added Xerox 4800 One Touch.
* include/sane/sanei_usb.h sanei/sanei_usb.c: Workaround for
compilation problem on Windows/cygwin.
* backend/dll.c: With cygwin, use ":" as DIR_SEP (patch from
Philip Aston <paston@bea.com>).
2006-02-04 Ullrich Sigwanz <usigwanz@freesurf.ch>

Wyświetl plik

@ -108,6 +108,8 @@
#if defined(HAVE_OS2_H)
# define DIR_SEP ";"
#elif defined(__CYGWIN__)
# define DIR_SEP ":"
#elif defined(HAVE_WINDOWS_H)
# define DIR_SEP ";"
#else