diff options
Diffstat (limited to 'src/Intrinsic.c')
-rw-r--r-- | src/Intrinsic.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Intrinsic.c b/src/Intrinsic.c index df5c56d..3a80cb3 100644 --- a/src/Intrinsic.c +++ b/src/Intrinsic.c @@ -873,6 +873,11 @@ static int AccessFile ( if (access_file (path, pathbuf, len_pathbuf, pathret)) return 1; +#if defined(WIN32) && defined(__MINGW32__) + /* don't try others */ + return 0; +#endif + /* try the places set in the environment */ drive = getenv ("_XBASEDRIVE"); #ifdef __UNIXOS2__ |