From 328a8f8f0dd777bb9a124e6701bf1595b5aff96e Mon Sep 17 00:00:00 2001 From: Bill Spitzak Date: Tue, 4 Apr 2000 17:57:05 +0000 Subject: Fixes for Cygwin POSIX emulation layer from Norman Vine. Requires the symbol __CYGWIN__ to be defined, appears to disable the special meaning of backslash and colon in file names. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1056 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/scandir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/scandir.c') diff --git a/src/scandir.c b/src/scandir.c index b4c23bc0e..5eabafa41 100644 --- a/src/scandir.c +++ b/src/scandir.c @@ -16,7 +16,7 @@ License along with this library; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifdef WIN32 +#if defined(WIN32) && !defined(__CYGWIN__) #include "scandir_win32.c" #else -- cgit v1.2.3