Re: bug#13462: error: file 'build-aux/funclib.sh' not found

2013-01-18 Thread Peter Rosin
On 2013-01-16 18:00, Peter Rosin wrote: > Hi! > > If I, in a dirty git checkout (added an insignificant newline) as > of today, do this > > ./bootstrap -fc > cd .. > mkdir foo > cd foo > ../libtool/configure > make > make check > > all is fine. If I then

Re: bug#13414: Valid DLL def file mangled by libtool

2013-01-18 Thread Peter Rosin
Hi Martin, Erik, On 2013-01-12 01:26, Peter Rosin wrote: > Hi Martin, > > Thanks for the report. > > On 2013-01-11 12:34, Martin Doucha wrote: >> Hi, >> I'd like to report a bug in libtool 2.4 (including the latest git revision) >> which mangles valid DLL def files under MinGW and makes the lin

[PATCH 1/2] libtool: allow tabs in $cmds variables

2013-01-18 Thread Peter Rosin
build-aux/ltmain.in (func_execute_cmds, func_mode_link): Don't collapse tabs and surrounding whitespace into a single space when executing a tilde-separated cmds construct, instead keep any tabs intact. m4/libtool.m4: Convert indenting tabs to spaces for all *_cmds variables affected by the above.

[PATCH 2/2] libtool: factor out the dll .def file test and improve it

2013-01-18 Thread Peter Rosin
Resolves bug#13414. Problem reported by Erik van Pienbroek and Martin Doucha. build-aux/ltmain.in (func_mode_link): Factor out the test if a given symbol file is a module-definition (.def) file into... (func_dll_def_p): ...this function, which also improves the check. m4/libtool.m4 (_LT_LINKER_SHL

Re: bug#13414: Valid DLL def file mangled by libtool

2013-01-18 Thread Gary V. Vaughan
Hi Peter, Thanks for working on this. On 19 Jan 2013, at 05:55, Peter Rosin wrote: > On 2013-01-12 01:26, Peter Rosin wrote: >> On 2013-01-11 12:34, Martin Doucha wrote: >>> I'd like to report a bug in libtool 2.4 (including the latest git revision) >>> which mangles valid DLL def files under M