1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

* configure.in (ac_cv_func_fcntl): fcntl support for MinGW.

* missing/flock.c: workaround for MinGW.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_1_8@11943 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
eban 2007-02-28 12:47:35 +00:00
parent 8cebdae652
commit e87f0fc477
3 changed files with 10 additions and 2 deletions

View file

@ -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.
@ -122,7 +123,7 @@ flock(fd, operation)
return -1;
}
}
#elif !defined _WIN32
#else
int
flock(fd, operation)
int fd;