Re: Build problems on Windows

2013-04-30 Thread Eli Zaretskii
> Date: Tue, 30 Apr 2013 10:58:05 +0200 > From: Erik Carstensen > > When building master, I'm getting compiler and linker errors for _S_ISDIR > not being defined. What version of MinGW do you have? My MinGW headers define both _S_ISDIR and S_ISDIR. I used the former for the MSVC compiler, whic

Re: Bug: make fails to execute .BAT files with space in the path, with SHELL=cmd.exe

2013-04-30 Thread Eli Zaretskii
> Date: Tue, 30 Apr 2013 11:23:41 +0200 > From: Erik Carstensen > > > Alas, this won't help you for long, because the next release of Make > > will not invoke cmd.exe just because the command line has quotes. > > Such commands are also short-circuited in the development sources. > > > > Oh. Thi

Re: Bug: make fails to execute .BAT files with space in the path, with SHELL=cmd.exe

2013-04-30 Thread Erik Carstensen
On Mon, Apr 29, 2013 at 4:40 AM, Eli Zaretskii wrote: > > Alas, this won't help you for long, because the next release of Make > will not invoke cmd.exe just because the command line has quotes. > Such commands are also short-circuited in the development sources. > Oh. This seems to change make

Build problems on Windows

2013-04-30 Thread Erik Carstensen
When building master, I'm getting compiler and linker errors for _S_ISDIR not being defined. This patch seems to fix the problem: --- a/dir.c +++ b/dir.c @@ -1212,7 +1212,7 @@ local_stat (const char *path, struct stat *buf) strncpy (parent, path, plen - 2); parent[plen - 2] = '\0';