]> xenbits.xensource.com Git - libvirt.git/commitdiff
build: don't use gcrypt.h without gnutls support
authorEric Blake <eblake@redhat.com>
Tue, 26 Feb 2013 23:43:03 +0000 (16:43 -0700)
committerEric Blake <eblake@redhat.com>
Tue, 26 Feb 2013 23:43:03 +0000 (16:43 -0700)
Eugene Marcotte reported that if gcrypt-devel (a prereq of
gnutls-devel) is not present, then compilation fails due to
an unconditional use of <gcrypt.h>.

* src/libvirt.c (includes): Properly guard use of gcrypt.h.

src/libvirt.c

index 8a28e4a946bf72b67d7be69f6471d61442daf5f5..0a21deab3d10b8856231e66f405d39158bc6dac3 100644 (file)
@@ -2,7 +2,7 @@
  * libvirt.c: Main interfaces for the libvirt library to handle virtualization
  *           domains from a process running in domain 0
  *
- * Copyright (C) 2005-2006, 2008-2012 Red Hat, Inc.
+ * Copyright (C) 2005-2006, 2008-2013 Red Hat, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -31,7 +31,6 @@
 #include <unistd.h>
 #include <sys/wait.h>
 #include <time.h>
-#include <gcrypt.h>
 
 #include <libxml/parser.h>
 #include <libxml/xpath.h>
@@ -56,6 +55,7 @@
 #include "intprops.h"
 #include "virconf.h"
 #if WITH_GNUTLS
+# include <gcrypt.h>
 # include "rpc/virnettlscontext.h"
 #endif
 #include "vircommand.h"