From d0f2c663bebacf7669f22d8f948edcb11533e269 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Mon, 29 May 2006 16:05:05 +0000 Subject: [PATCH] added Daniel B.'s build system patches --- ChangeLog | 7 +++++++ src/libvirt_sym.version | 4 ++++ tests/Makefile.am | 3 ++- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 1f9e3ebcf0..dc12123977 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Mon May 29 17:02:26 CEST 2006 Karel Zak + + * src/libvirt_sym.version: added in missing symbols referenced by python + bindings (patch by Daniel P. Berrange) + * tests/Makefile.am: fixed include dirs to make VPATH builds work + (patch by Daniel P. Berrange) + Mon May 29 16:33:39 CEST 2006 Karel Zak * src/virsh.c: improved vshCommandOptDomain(), added to the diff --git a/src/libvirt_sym.version b/src/libvirt_sym.version index aa23e5b099..0fe40693bc 100644 --- a/src/libvirt_sym.version +++ b/src/libvirt_sym.version @@ -8,7 +8,9 @@ virConnectNumOfDomains; virConnectOpen; virConnectOpenReadOnly; + virDomainCreate; virDomainCreateLinux; + virDomainDefineXML; virDomainDestroy; virDomainFree; virDomainGetID; @@ -26,10 +28,12 @@ virDomainRestore; virDomainResume; virDomainSave; + virDomainSetMemory; virDomainSetMaxMemory; virDomainShutdown; virDomainReboot; virDomainSuspend; + virDomainUndefine; virGetVersion; virCopyLastError; virConnSetErrorFunc; diff --git a/tests/Makefile.am b/tests/Makefile.am index c576a22881..b98e394f46 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -5,7 +5,8 @@ LIBVIRT = $(top_builddir)/src/.libs/libvirt.a INCLUDES = \ -I$(top_builddir)/include \ -I$(top_builddir)/src \ - -I@top_srcdir@/include \ + -I$(top_srcdir)/include \ + -I$(top_srcdir)/src \ @LIBXML_CFLAGS@ LDADDS = \