> From: Juanma Barranquero <lek...@gmail.com> > Date: Sat, 28 Jan 2012 14:56:23 +0100 > > On Sat, Jan 28, 2012 at 14:28, Eli Zaretskii <e...@gnu.org> wrote: > > > What if you build with -lmsvcr71 on the GCC command line? Does the > > resulting program works correctly then, in that "*.c" results in an > > un-globbed *.c wind up in argv[1], whereas *.c without quotes results > > in the list of *.c files in argv[]? > > Yes. > > C:\emacs\trunk\src> ..\..\echocmd.exe "*.c" > `..\..\echocmd.exe "*.c"' > 0: `..\..\echocmd.exe' > 1: `*.c' > > C:\emacs\trunk\src> ..\..\echocmd.exe *.c > `..\..\echocmd.exe *.c' > 0: `..\..\echocmd.exe' > 1: `alloc.c' > [...] > 113: `xterm.c'
Thanks. I guess I will have to somehow rebuild at least find.exe linking it to msvcr71.dll. Hmm...