Re: [libvirt] [PATCH 2/2] makefile: fix build on systems where gnutls is not in /usr/include

2016-05-24 Thread Pavel Hrdina
On Tue, May 24, 2016 at 11:16:17AM +0200, Michal Privoznik wrote: > On 23.05.2016 17:39, Michal Privoznik wrote: > > On 23.05.2016 17:06, Pavel Hrdina wrote: > >> On Mon, May 23, 2016 at 04:42:43PM +0200, Michal Privoznik wrote: > >>> On 23.05.2016 10:18, Pavel Hrdina wrote: > We need to appen

Re: [libvirt] [PATCH 2/2] makefile: fix build on systems where gnutls is not in /usr/include

2016-05-24 Thread Michal Privoznik
On 23.05.2016 17:39, Michal Privoznik wrote: > On 23.05.2016 17:06, Pavel Hrdina wrote: >> On Mon, May 23, 2016 at 04:42:43PM +0200, Michal Privoznik wrote: >>> On 23.05.2016 10:18, Pavel Hrdina wrote: We need to append GNUTLS_CFLAGS while building utils because virtcrypto is using it. T

Re: [libvirt] [PATCH 2/2] makefile: fix build on systems where gnutls is not in /usr/include

2016-05-23 Thread Michal Privoznik
On 23.05.2016 17:06, Pavel Hrdina wrote: > On Mon, May 23, 2016 at 04:42:43PM +0200, Michal Privoznik wrote: >> On 23.05.2016 10:18, Pavel Hrdina wrote: >>> We need to append GNUTLS_CFLAGS while building utils because virtcrypto >>> is using it. This fixes build on freebsd where gnutuls is in >>>

Re: [libvirt] [PATCH 2/2] makefile: fix build on systems where gnutls is not in /usr/include

2016-05-23 Thread Pavel Hrdina
On Mon, May 23, 2016 at 04:42:43PM +0200, Michal Privoznik wrote: > On 23.05.2016 10:18, Pavel Hrdina wrote: > > We need to append GNUTLS_CFLAGS while building utils because virtcrypto > > is using it. This fixes build on freebsd where gnutuls is in > > /usr/local/include. > > > > Signed-off-by:

Re: [libvirt] [PATCH 2/2] makefile: fix build on systems where gnutls is not in /usr/include

2016-05-23 Thread Michal Privoznik
On 23.05.2016 10:18, Pavel Hrdina wrote: > We need to append GNUTLS_CFLAGS while building utils because virtcrypto > is using it. This fixes build on freebsd where gnutuls is in > /usr/local/include. > > Signed-off-by: Pavel Hrdina > --- > src/Makefile.am | 2 +- > 1 file changed, 1 insertion(+

[libvirt] [PATCH 2/2] makefile: fix build on systems where gnutls is not in /usr/include

2016-05-23 Thread Pavel Hrdina
We need to append GNUTLS_CFLAGS while building utils because virtcrypto is using it. This fixes build on freebsd where gnutuls is in /usr/local/include. Signed-off-by: Pavel Hrdina --- src/Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile.am b/src/Make