e3c02d59e3
digit in version numbers, and upgrade to 3.1.0. Changes since 3.0.4: * XenAPI 1.0 support o XML configuration files for virtual machines; o VM life-cycle management operations; and o Secure on- or off-box XML-RPC with bindings for many languages * Basic save/restore/migrate support for HVM (e.g. Windows) VMs; * Dynamic memory control for HVM guests; * 32-on-64 PV guest support (run PAE PV VMs on a 64-bit Xen!); and * Blktap copy-on-write disk support. It also fixes some HVM bugs. Note that this package contains a backport of the pcnet emulation from xen-unstable, to make it useable. It gives better performances than the default realtek emulation.
32 lines
596 B
Text
32 lines
596 B
Text
$NetBSD: patch-aw,v 1.1.1.1 2007/06/14 19:42:12 bouyer Exp $
|
|
|
|
--- ioemu/audio/mixeng.c.orig 2006-10-04 04:28:03.000000000 +0200
|
|
+++ ioemu/audio/mixeng.c 2006-10-18 17:45:57.000000000 +0200
|
|
@@ -102,6 +102,7 @@
|
|
#undef SHIFT
|
|
|
|
t_sample *mixeng_conv[2][2][2][2] = {
|
|
+#if !defined(__NetBSD__)
|
|
{
|
|
{
|
|
{
|
|
@@ -146,9 +147,11 @@
|
|
}
|
|
}
|
|
}
|
|
+#endif /* !__NetBSD__ */
|
|
};
|
|
|
|
f_sample *mixeng_clip[2][2][2][2] = {
|
|
+#if !defined(__NetBSD__)
|
|
{
|
|
{
|
|
{
|
|
@@ -193,6 +196,7 @@
|
|
}
|
|
}
|
|
}
|
|
+#endif /* !__NetBSD__ */
|
|
};
|
|
|
|
/*
|