Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-21 Thread Eric Blake
On 07/21/2012 09:51 AM, Eric Blake wrote: > On 07/13/2012 04:40 PM, Eric Blake wrote: > > My plan for autoconf is to implement AC_CONFIG_MACRO_DIRS, which can be > invoked multiple times and also takes a whitespace-separated list in a > single call, but which will basically then call A

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-21 Thread Stefano Lattarini
On 07/21/2012 05:51 PM, Eric Blake wrote: > On 07/13/2012 04:40 PM, Eric Blake wrote: > > My plan for autoconf is to implement AC_CONFIG_MACRO_DIRS, which can be > invoked multiple times and also takes a whitespace-separated list in a > single call, but which will basically then call A

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-21 Thread Eric Blake
On 07/13/2012 04:40 PM, Eric Blake wrote: My plan for autoconf is to implement AC_CONFIG_MACRO_DIRS, which can be invoked multiple times and also takes a whitespace-separated list in a single call, but which will basically then call AC_CONFIG_MACRO_DIR once per unique entry (th

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-14 Thread Stefano Lattarini
On 07/14/2012 12:40 AM, Eric Blake wrote: > > Not this week, unfortunately; but I'll advance it to the front of my > todo queue next week given your desire to use it. > Thanks! Stefano

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-13 Thread Eric Blake
On 07/13/2012 04:29 PM, Stefano Lattarini wrote: > Hello autoconfers. > >>> My plan for autoconf is to implement AC_CONFIG_MACRO_DIRS, which can be >>> invoked multiple times and also takes a whitespace-separated list in a >>> single call, but which will basically then call AC_CONFIG_MACRO_DIR on

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-13 Thread Stefano Lattarini
Hello autoconfers. On 07/04/2012 06:55 PM, Stefano Lattarini wrote: > Hi Eric. > > On 07/04/2012 06:42 PM, Eric Blake wrote: >> On 07/04/2012 09:24 AM, Stefano Lattarini wrote: >>> It can be done either passing several arguments to a single invocation: >>> >>> AC_CONFIG_MACRO_DIR([dir1 dir2])

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-04 Thread Stefano Lattarini
Hi Eric. On 07/04/2012 06:42 PM, Eric Blake wrote: > On 07/04/2012 09:24 AM, Stefano Lattarini wrote: >> It can be done either passing several arguments to a single invocation: >> >> AC_CONFIG_MACRO_DIR([dir1 dir2]) > > I would recommend against this, > >> >> or issuing more invocations: >>

Re: [PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-04 Thread Eric Blake
On 07/04/2012 09:24 AM, Stefano Lattarini wrote: > It can be done either passing several arguments to a single invocation: > > AC_CONFIG_MACRO_DIR([dir1 dir2]) I would recommend against this, > > or issuing more invocations: > > AC_CONFIG_MACRO_DIR([dir1]) > AC_CONFIG_MACRO_DIR([di

[PATCH 1/2] aclocal: multiple local m4 macro dirs with AC_CONFIG_MACRO_DIR

2012-07-04 Thread Stefano Lattarini
It can be done either passing several arguments to a single invocation: AC_CONFIG_MACRO_DIR([dir1 dir2]) or issuing more invocations: AC_CONFIG_MACRO_DIR([dir1]) AC_CONFIG_MACRO_DIR([dir2]) This will allow projects to use several m4 macro local dirs. This is especially important fo