Changeset: 915a8404c18a for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=915a8404c18a Modified Files: gdk/gdk_bbp.c Branch: Jun2016 Log Message:
Windows doesn't know F_OK and doesn't want access. diffs (18 lines): diff --git a/gdk/gdk_bbp.c b/gdk/gdk_bbp.c --- a/gdk/gdk_bbp.c +++ b/gdk/gdk_bbp.c @@ -76,6 +76,14 @@ #include "gdk_private.h" #include "gdk_storage.h" #include "mutils.h" + +#ifndef F_OK +#define F_OK 0 +#endif +#ifdef _MSC_VER +#define access(f, m) _access(f, m) +#endif + /* * The BBP has a fixed address, so re-allocation due to a growing BBP * caused by one thread does not disturb reads to the old entries by _______________________________________________ checkin-list mailing list [email protected] https://www.monetdb.org/mailman/listinfo/checkin-list
