diff -u xen-3.3-3.3.0/debian/changelog xen-3.3-3.3.0/debian/changelog --- xen-3.3-3.3.0/debian/changelog +++ xen-3.3-3.3.0/debian/changelog @@ -1,3 +1,10 @@ +xen-3.3 (3.3.0-1ubuntu11) karmic; urgency=low + + * debian/patches/fix-libxc-warning.diff: Fix an FTBFS by + conditionalizing out a spurious warning in libxc (LP: #393376). + + -- Evan Broder Mon, 29 Jun 2009 03:41:17 -0400 + xen-3.3 (3.3.0-1ubuntu10) karmic; urgency=low * debian/patches/use-python-2.6.diff: Pass --install-layout=deb for the diff -u xen-3.3-3.3.0/debian/patches/series xen-3.3-3.3.0/debian/patches/series --- xen-3.3-3.3.0/debian/patches/series +++ xen-3.3-3.3.0/debian/patches/series @@ -6,0 +7 @@ +fix-libxc-warning.diff only in patch2: unchanged: --- xen-3.3-3.3.0.orig/debian/patches/fix-libxc-warning.diff +++ xen-3.3-3.3.0/debian/patches/fix-libxc-warning.diff @@ -0,0 +1,14 @@ +Index: xen-3.3-3.3.0/tools/libxc/xc_core.c +=================================================================== +--- xen-3.3-3.3.0.orig/tools/libxc/xc_core.c 2009-06-29 03:40:03.000000000 -0400 ++++ xen-3.3-3.3.0/tools/libxc/xc_core.c 2009-06-29 03:40:29.000000000 -0400 +@@ -324,7 +324,8 @@ + struct xen_dumpcore_elfnote_none_desc none; + + elfnote_init(&elfnote); +- memset(&none, 0, sizeof(none)); ++ if ( sizeof(none) != 0 ) ++ memset(&none, 0, sizeof(none)); + + elfnote.descsz = sizeof(none); + elfnote.type = XEN_ELFNOTE_DUMPCORE_NONE;