From: <at...@us...> - 2007-12-20 00:20:58
|
Revision: 553 http://cadcdev.svn.sourceforge.net/cadcdev/?rev=553&view=rev Author: atani Date: 2007-12-19 16:20:54 -0800 (Wed, 19 Dec 2007) Log Message: ----------- apply patch to use fnmatch.h for CYGWIN. Modified Paths: -------------- kos/utils/genromfs/genromfs.c Modified: kos/utils/genromfs/genromfs.c =================================================================== --- kos/utils/genromfs/genromfs.c 2007-12-13 19:35:40 UTC (rev 552) +++ kos/utils/genromfs/genromfs.c 2007-12-20 00:20:54 UTC (rev 553) @@ -71,7 +71,7 @@ #include <unistd.h> /* Userland prototypes of the Unix std system calls */ #include <fcntl.h> /* Flag value for file handling functions */ #include <time.h> -#ifdef _WIN32 +#if defined(_WIN32) && !defined(__CYGWIN__) # include <getopt.h> #else # include <fnmatch.h> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |