# HG changeset patch # User Bram Moolenaar # Date 1539963906 -7200 # Node ID 6783403ff35e1849f998ab56324f59a9cc155782 # Parent 490af8a75db744ae154a13a0582ab9f47e48db4a patch 8.1.0486: can't build in MS-Windows commit https://github.com/vim/vim/commit/42a4ea10af687ca56b0810bfbb8884b37fc725b3 Author: Bram Moolenaar Date: Fri Oct 19 17:36:01 2018 +0200 patch 8.1.0486: can't build in MS-Windows Problem: Can't build in MS-Windows. Solution: Put mch_access() call inside #ifdef diff --git a/src/channel.c b/src/channel.c --- a/src/channel.c +++ b/src/channel.c @@ -4917,7 +4917,10 @@ get_job_options(typval_T *tv, jobopt_T * break; opt->jo_cwd = get_tv_string_buf_chk(item, opt->jo_cwd_buf); if (opt->jo_cwd == NULL || !mch_isdir(opt->jo_cwd) - || mch_access((char *)opt->jo_cwd, X_OK) != 0) +#ifndef WIN32 // Win32 directories don't have the concept of "executable" + || mch_access((char *)opt->jo_cwd, X_OK) != 0 +#endif + ) { EMSG2(_(e_invargval), "cwd"); return FAIL; diff --git a/src/version.c b/src/version.c --- a/src/version.c +++ b/src/version.c @@ -793,6 +793,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 486, +/**/ 485, /**/ 484,