forked from pool/libvirt
26 lines
897 B
Diff
26 lines
897 B
Diff
commit d47ab3fe6115de6c54f999ba598fe58418840653
|
|
Author: Jim Fehlig <jfehlig@suse.com>
|
|
Date: Wed Nov 16 11:35:08 2011 -0700
|
|
|
|
Fix build with polkit0
|
|
|
|
I missed adding virNetServerGetDBusConn() to libvirtd_private.syms
|
|
in commit b8adfcc6, which didn't cause a problem in 0.9.6 but
|
|
results in this build error in 0.9.7
|
|
|
|
libvirtd-remote.o: In function `remoteDispatchAuthPolkit':
|
|
remote.c:(.text+0x188dd): undefined reference to `virNetServerGetDBusConn'
|
|
|
|
Index: libvirt-0.9.7/src/libvirt_private.syms
|
|
===================================================================
|
|
--- libvirt-0.9.7.orig/src/libvirt_private.syms
|
|
+++ libvirt-0.9.7/src/libvirt_private.syms
|
|
@@ -1217,6 +1217,7 @@ virNetServerAddSignalHandler;
|
|
virNetServerAutoShutdown;
|
|
virNetServerClose;
|
|
virNetServerFree;
|
|
+virNetServerGetDBusConn;
|
|
virNetServerIsPrivileged;
|
|
virNetServerNew;
|
|
virNetServerQuit;
|