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.
16 lines
526 B
Text
16 lines
526 B
Text
$NetBSD: patch-cq,v 1.1.1.1 2007/06/14 19:39:46 bouyer Exp $
|
|
|
|
--- ../xen/common/libelf/libelf-private.h.orig 2007-05-27 15:13:03.000000000 +0200
|
|
+++ ../xen/common/libelf/libelf-private.h 2007-05-27 15:14:20.000000000 +0200
|
|
@@ -33,6 +33,11 @@
|
|
#define bswap_16(x) BSWAP_16(x)
|
|
#define bswap_32(x) BSWAP_32(x)
|
|
#define bswap_64(x) BSWAP_64(x)
|
|
+#elif defined(__NetBSD__)
|
|
+#include <sys/bswap.h>
|
|
+#define bswap_16(x) bswap16(x)
|
|
+#define bswap_32(x) bswap32(x)
|
|
+#define bswap_64(x) bswap64(x)
|
|
#else
|
|
#include <byteswap.h>
|
|
#endif
|