diff --git a/ChangeLog b/ChangeLog index 200ae1ee144c0a..9ebe712f79b494 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Wed Feb 28 21:15:00 2007 WATANABE Hirofumi + + * configure.in (ac_cv_func_fcntl): fcntl support for MinGW. + + * missing/flock.c: workaround for MinGW. + Wed Feb 28 20:51:32 2007 URABE Shyouhei * pack.c (pack_unpack): properly ignore non-base64 octets such as diff --git a/missing/flock.c b/missing/flock.c index 7a5a58aaa71b37..2219d176d1758a 100644 --- a/missing/flock.c +++ b/missing/flock.c @@ -1,6 +1,7 @@ #include "config.h" -#if defined HAVE_FCNTL && defined HAVE_FCNTL_H +#if defined _WIN32 +#elif defined HAVE_FCNTL && defined HAVE_FCNTL_H /* These are the flock() constants. Since this sytems doesn't have flock(), the values of the constants are probably not available. @@ -118,7 +119,7 @@ flock(int fd, int operation) return -1; } } -#elif !defined _WIN32 +#else int flock(int fd, int operation) {