a870a15461
- Introduce virtlockd daemon - parallels: add disk and network device support - Add virDomainSendProcessSignal API - Introduce virDomainFSTrim() public API - add fuse support for libvirt lxc - Add Gluster protocol as supported network disk backend - various snapshot improvements - Add upstream patches to fix bugs in 1.0.1 66ff2ddc-virtlockd-systemd-file-perms.patch, 462a6962-script-fixes1.patch, cb854b8f-script-fixes2.patch, 5ec4b22b-script-fixes3.patch, a1fd56cb-script-fixes4.patch, 68e7bc45-libxl-link-fix.patch - Rework SUSE patches for the various init scripts Dropped use-init-script-redhat.patch and added libvirtd-init-script.patch, libvirt-guests-init-script.patch, and virtlockd-init-script.patch - Drop upstream patches: 371ddc98-xen-sysctl-9.patch, 416eca18-xenstore-header-fix.patch, f644361b-virCommand-env.patch, 2b32735a-virCommand-env.patch, 9785f2b6-fix-xen-sysctl9.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/libvirt?expand=0&rev=238
25 lines
903 B
Diff
25 lines
903 B
Diff
commit 68e7bc4561783d742d1e266b7f1f0e3516d5117e
|
|
Author: Jim Fehlig <jfehlig@suse.com>
|
|
Date: Mon Jan 7 10:15:56 2013 -0700
|
|
|
|
build: Add libxenctrl to LIBXL_LIBS
|
|
|
|
Commit dfa1e1dd removed libxenctrl from LIBXL_LIBS, but the libxl
|
|
driver uses a symbol from this library. Explicitly link with
|
|
libxenctrl instead of relying on the build system to support
|
|
implicit DSO linking.
|
|
|
|
Index: libvirt-1.0.1/configure.ac
|
|
===================================================================
|
|
--- libvirt-1.0.1.orig/configure.ac
|
|
+++ libvirt-1.0.1/configure.ac
|
|
@@ -727,7 +727,7 @@ if test "$with_libxl" != "no" ; then
|
|
LIBS="$LIBS $LIBXL_LIBS"
|
|
AC_CHECK_LIB([xenlight], [libxl_ctx_alloc], [
|
|
with_libxl=yes
|
|
- LIBXL_LIBS="$LIBXL_LIBS -lxenlight"
|
|
+ LIBXL_LIBS="$LIBXL_LIBS -lxenlight -lxenctrl"
|
|
],[
|
|
if test "$with_libxl" = "yes"; then
|
|
fail=1
|