
On Mon, Mar 28, 2011 at 06:12:29PM +0800, Osier Yang wrote:
于 2011年03月28日 14:25, Daniel Veillard 写道:
Okay, I pushed new localization updates around and generated a first release candidate build for 0.9.0 at:
ftp://libvirt.org/libvirt/libvirt-0.9.0-rc1.tar.gz
I will regenerate a rc2 as soon as Eric pending patch queue and outgoing fd patches are in as I think they should really make 0.9.0 There may be more infrastrcucture patches from Dan too, I'm unsure and as usual pushing bug fixes are okay too,
thanks for giving it a try, it seems to work fine here at least for basic tasks,
Daniel
Problem exists of "./configure --with-audit", patch attached.
Regards Osier
Oops, right, ACK, please push :-) Daniel
From ab8984e482283ae9b53210822b857380da69c912 Mon Sep 17 00:00:00 2001 From: Osier Yang <jyang@redhat.com> Date: Mon, 28 Mar 2011 18:05:32 +0800 Subject: [PATCH] Fix syntax error in configure.ac MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit
Which will lead "./configure --with-audit=yes" breaks. --- configure.ac | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/configure.ac b/configure.ac index 9c0221c..1a3d3b6 100644 --- a/configure.ac +++ b/configure.ac @@ -1051,7 +1051,7 @@ AUDIT_LIBS= if test "$with_audit" != "no" ; then old_cflags="$CFLAGS" old_libs="$LIBS" - if test "$with_audit" != "check" && "$with_audit" != "yes" ; then + if test "$with_audit" != "check" && test "$with_audit" != "yes" ; then AUDIT_CFLAGS="-I$with_audit/include" AUDIT_LIBS="-L$with_audit/lib" fi -- 1.7.4
-- Daniel Veillard | libxml Gnome XML XSLT toolkit http://xmlsoft.org/ daniel@veillard.com | Rpmfind RPM search engine http://rpmfind.net/ http://veillard.com/ | virtualization library http://libvirt.org/