Re: [libvirt] [PATCH] Make sure AC_ARG_WITH is always executed

2014-01-08 Thread Guido Günther
On Tue, Jan 07, 2014 at 04:19:14PM -0700, Eric Blake wrote: > On 01/07/2014 04:10 PM, Guido Günther wrote: > > --- > > I'm not sure whether it's good autoconf style to have AC_ARG_WITH in a > > conditional so this patch moves it out. > > Much of the code within AC_ARG_WITH gets executed unconditio

Re: [libvirt] [PATCH] Make sure AC_ARG_WITH is always executed

2014-01-07 Thread Eric Blake
On 01/07/2014 04:10 PM, Guido Günther wrote: > --- > I'm not sure whether it's good autoconf style to have AC_ARG_WITH in a > conditional so this patch moves it out. Much of the code within AC_ARG_WITH gets executed unconditionally (because it gets hoisted to earlier parts of the configure than wh

[libvirt] [PATCH] Make sure AC_ARG_WITH is always executed

2014-01-07 Thread Guido Günther
--- I'm not sure whether it's good autoconf style to have AC_ARG_WITH in a conditional so this patch moves it out. Cheers, -- Guido configure.ac | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.ac b/configure.ac index 97752f4..d02b9d2 100644 --- a/configure.ac +++