Re: [libvirt] [PATCH 2/2] Don't mix LDFLAGS and LIBS in the configure script.

2009-12-18 Thread Daniel Veillard
On Fri, Dec 18, 2009 at 10:48:28AM +, Daniel P. Berrange wrote: > On Thu, Dec 17, 2009 at 10:56:25PM +0100, Diego Elio 'Flameeyes' Petten? > wrote: > > If you pass libraries in the LDFLAGS variable, and then try AC_CHECK_FUNCS > > to find whether a function is present or not, it'll fail badly

Re: [libvirt] [PATCH 2/2] Don't mix LDFLAGS and LIBS in the configure script.

2009-12-18 Thread Daniel P. Berrange
On Thu, Dec 17, 2009 at 10:56:25PM +0100, Diego Elio 'Flameeyes' Petten? wrote: > If you pass libraries in the LDFLAGS variable, and then try AC_CHECK_FUNCS > to find whether a function is present or not, it'll fail badly when using > the --as-needed linker flag. > > Instead, pass the libraries th

[libvirt] [PATCH 2/2] Don't mix LDFLAGS and LIBS in the configure script.

2009-12-17 Thread Diego Elio 'Flameeyes' Pettenò
If you pass libraries in the LDFLAGS variable, and then try AC_CHECK_FUNCS to find whether a function is present or not, it'll fail badly when using the --as-needed linker flag. Instead, pass the libraries through the LIBS library, so that they are passed after the conftest.c source file and the t