Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-11 Thread Arun Sharma
On Tue, Sep 11, 2012 at 10:30 AM, Mike Frysinger wrote: >>> AX_* is sort of a reserved namespace as the large autoconf-archive >>> project utilizes it everywhere. maybe pick a different prefix ? >> >> Sure, any suggestion? > > libunwind doesn't seem to have a standard atm (other than to not use

Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-11 Thread Mike Frysinger
On Tue, Sep 11, 2012 at 9:00 AM, Cody P Schafer wrote: > On 09/10/2012 06:11 PM, Mike Frysinger wrote: >> On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: >>> +# AX_ARG_ENABLE(argument, help-text, if-not-present) >> >> dnl rather than # >> >>> +AC_DEFUN([AX_ARG_ENABLE], >> >> AX_* is sort of

Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-11 Thread Cody P Schafer
Whoops, missed the list. Resending. On 09/10/2012 06:11 PM, Mike Frysinger wrote: On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: +# AX_ARG_ENABLE(argument, help-text, if-not-present) dnl rather than # +AC_DEFUN([AX_ARG_ENABLE], AX_* is sort of a reserved namespace as the large aut

Re: [Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-10 Thread Mike Frysinger
On Mon, Sep 10, 2012 at 8:21 PM, Cody P Schafer wrote: > +# AX_ARG_ENABLE(argument, help-text, if-not-present) dnl rather than # > +AC_DEFUN([AX_ARG_ENABLE], AX_* is sort of a reserved namespace as the large autoconf-archive project utilizes it everywhere. maybe pick a different prefix ? > +

[Libunwind-devel] [PATCH 10/11] configure: introduce AX_ARG_ENABLE.

2012-09-10 Thread Cody P Schafer
Allows us to reuse the common convention of AC_ARG_ENABLE(arg, text, [enable_arg=$enablearg], [custom-if-not-found]). --- configure.in | 30 -- 1 file changed, 16 insertions(+), 14 deletions(-) diff --git a/configure.in b/configure.in index 66a6323..1405dfc 100644 ---