Fix LT_WITH_LTDL: AU_ALIAS bug

2005-09-09 Thread Ralf Wildenhues
Hunting down bugs in m4 macros sucks. Using $# in macros sucks, too. Sorry for the cross-post. First: LT_WITH_LTDL needs to be documented correctly. Its predecessor AC_WITH_LTDL needed documentation as well. I accept patches. :) Second: Autoconf bug: AU_ALIAS mumbles with the number of argum

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-09-10 Thread Gary V. Vaughan
Hallo Ralf, Ralf Wildenhues wrote: > Hunting down bugs in m4 macros sucks. Using $# in macros sucks, too. :-( Can you document in HACKING that because of our use of AU_ALIAS to maintain backwards compatibility with earlier libtool interfaces we must not use $# in m4. Also, we could do with an

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-10-20 Thread Stepan Kasal
Hello, On Fri, Sep 09, 2005 at 02:09:01PM +0200, Ralf Wildenhues wrote: > Second: Autoconf bug: AU_ALIAS mumbles with the number of arguments: A modified version of Ralf's example: cat >configure.ac <<\EOF AC_INIT AC_DEFUN([FOO], [echo foo: $#]) AU_ALIAS([BAZ],[FOO]) FOO FOO() FOO(1) ec

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-10-24 Thread Ralf Wildenhues
Hi Stepan, Sorry for the delay. * Stepan Kasal wrote on Thu, Oct 20, 2005 at 10:19:24AM CEST: > On Fri, Sep 09, 2005 at 02:09:01PM +0200, Ralf Wildenhues wrote: > > Second: Autoconf bug: AU_ALIAS mumbles with the number of arguments: > > A modified version of Ralf's example: *snip* (see in patch

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-10-25 Thread Stepan Kasal
Hello, On Sat, Sep 10, 2005 at 04:17:52PM +0100, Gary V. Vaughan wrote: > :-( Can you document in HACKING that because of our use of AU_ALIAS to > maintain backwards compatibility with earlier libtool interfaces we must > not use $# in m4. actually, I'd prefer if you could put it this way: The

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-10-27 Thread Ralf Wildenhues
Hi Stepan, * Stepan Kasal wrote on Tue, Oct 25, 2005 at 01:16:06PM CEST: > On Sat, Sep 10, 2005 at 04:17:52PM +0100, Gary V. Vaughan wrote: > > :-( Can you document in HACKING that because of our use of AU_ALIAS to > > maintain backwards compatibility with earlier libtool interfaces we must > > n

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-11-04 Thread Ralf Wildenhues
Hello again, * Ralf Wildenhues wrote on Mon, Oct 24, 2005 at 05:56:41PM CEST: > * Stepan Kasal wrote on Thu, Oct 20, 2005 at 10:19:24AM CEST: > > On Fri, Sep 09, 2005 at 02:09:01PM +0200, Ralf Wildenhues wrote: > > > Second: Autoconf bug: AU_ALIAS mumbles with the number of arguments: > > > > A t

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-11-07 Thread Noah Misch
On Sat, Nov 05, 2005 at 07:40:31AM +0100, Ralf Wildenhues wrote: > * tests/tools.at (autoupdating AU_ALIAS): New test for AU_ALIAS > `$#' bug. > (autoupdate): Updated to match AU_ALIAS fix. This looks sound, as does the fix it tests.

Re: Fix LT_WITH_LTDL: AU_ALIAS bug

2005-11-09 Thread Paul Eggert
Thanks, Ralf; can you please install those two patches?