Changeset: 966914d000fa for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=966914d000fa Modified Files: clients/src/mapiclient/mclient.c Branch: Oct2010 Log Message:
No S_ISREG on Windows. diffs (13 lines): diff -r d1c83b93db1f -r 966914d000fa clients/src/mapiclient/mclient.c --- a/clients/src/mapiclient/mclient.c Mon Oct 18 11:33:24 2010 +0200 +++ b/clients/src/mapiclient/mclient.c Mon Oct 18 12:39:57 2010 +0200 @@ -80,6 +80,9 @@ #ifndef S_ISCHR #define S_ISCHR(m) (((m) & S_IFMT) == S_IFCHR) #endif +#ifndef S_ISREG +#define S_ISREG(m) (((m) & S_IFMT) == S_IFREG) +#endif #ifdef NATIVE_WIN32 #define strdup _strdup _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
