View | Details | Raw Unified | Return to bug 159403
Collapse All | Expand All

(-)libvirt/Makefile (-1 / +1 lines)
Lines 6-12 Link Here
6
#
6
#
7
7
8
PORTNAME=	libvirt
8
PORTNAME=	libvirt
9
PORTVERSION=	0.9.3
9
PORTVERSION=	0.9.4
10
CATEGORIES=	devel
10
CATEGORIES=	devel
11
MASTER_SITES=	http://libvirt.org/sources/
11
MASTER_SITES=	http://libvirt.org/sources/
12
12
(-)libvirt/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (libvirt-0.9.3.tar.gz) = 4d673be9aa7b5618c0fef3cfdbbbeff02df1c83e26680fe40defad2b32a56ae3
1
SHA256 (libvirt-0.9.4.tar.gz) = e76c026646ae4885b162bf711b854f36195f93538d6fcbee48479c2354a342af
2
SIZE (libvirt-0.9.3.tar.gz) = 15958983
2
SIZE (libvirt-0.9.4.tar.gz) = 16643543
(-)libvirt/pkg-plist (+2 lines)
Lines 151-161 Link Here
151
share/gtk-doc/html/libvirt/style.css
151
share/gtk-doc/html/libvirt/style.css
152
share/gtk-doc/html/libvirt/up.png
152
share/gtk-doc/html/libvirt/up.png
153
%%DATADIR%%/cpu_map.xml
153
%%DATADIR%%/cpu_map.xml
154
%%DATADIR%%/schemas/basictypes.rng
154
%%DATADIR%%/schemas/capability.rng
155
%%DATADIR%%/schemas/capability.rng
155
%%DATADIR%%/schemas/domain.rng
156
%%DATADIR%%/schemas/domain.rng
156
%%DATADIR%%/schemas/domainsnapshot.rng
157
%%DATADIR%%/schemas/domainsnapshot.rng
157
%%DATADIR%%/schemas/interface.rng
158
%%DATADIR%%/schemas/interface.rng
158
%%DATADIR%%/schemas/network.rng
159
%%DATADIR%%/schemas/network.rng
160
%%DATADIR%%/schemas/networkcommon.rng
159
%%DATADIR%%/schemas/nodedev.rng
161
%%DATADIR%%/schemas/nodedev.rng
160
%%DATADIR%%/schemas/nwfilter.rng
162
%%DATADIR%%/schemas/nwfilter.rng
161
%%DATADIR%%/schemas/secret.rng
163
%%DATADIR%%/schemas/secret.rng
(-)libvirt/files/patch-libvirtd.h (-32 lines)
Removed Link Here
1
--- ./daemon/libvirtd.h
2
+++ ./daemon/libvirtd.h
3
@@ -38,7 +38,9 @@
4
 # include "logging.h"
5
 # include "threads.h"
6
 # include "network.h"
7
-# include "virnetsaslcontext.h"
8
+# if HAVE_SASL
9
+#  include "virnetsaslcontext.h"
10
+# endif
11
 # include "virnetserverprogram.h"
12
 
13
 # if WITH_DTRACE
14
@@ -70,7 +72,9 @@ struct daemonClientPrivate {
15
 
16
     int domainEventCallbackID[VIR_DOMAIN_EVENT_ID_LAST];
17
 
18
+# if HAVE_SASL
19
     virNetSASLSessionPtr sasl;
20
+# endif
21
 
22
     /* This is only valid if a remote open call has been made on this
23
      * connection, otherwise it will be NULL.  Also if remote close is
24
@@ -81,7 +85,9 @@ struct daemonClientPrivate {
25
     daemonClientStreamPtr streams;
26
 };
27
 
28
+# if HAVE_SASL
29
 extern virNetSASLContextPtr saslCtxt;
30
+# endif
31
 extern virNetServerProgramPtr remoteProgram;
32
 extern virNetServerProgramPtr qemuProgram;

Return to bug 159403