summaryrefslogtreecommitdiff
path: root/emulators/qemu0/patches/patch-ei
diff options
context:
space:
mode:
Diffstat (limited to 'emulators/qemu0/patches/patch-ei')
-rw-r--r--emulators/qemu0/patches/patch-ei16
1 files changed, 16 insertions, 0 deletions
diff --git a/emulators/qemu0/patches/patch-ei b/emulators/qemu0/patches/patch-ei
new file mode 100644
index 00000000000..ac6a1ecefd9
--- /dev/null
+++ b/emulators/qemu0/patches/patch-ei
@@ -0,0 +1,16 @@
+$NetBSD: patch-ei,v 1.1 2012/06/07 21:35:37 ryoon Exp $
+
+Avoid conflicts with SSP read() macro in NetBSD's <ssp/unistd.h>
+(PR lib/43832: ssp causes common names to be defines)
+
+--- rwhandler.c.orig 2011-08-08 18:28:42 +0000
++++ rwhandler.c
+@@ -13,7 +13,7 @@ static void name(void *opaque, type addr
+ static uint32_t name(void *opaque, type addr) \
+ { \
+ struct ReadWriteHandler *handler = opaque; \
+- return handler->read(handler, addr, len); \
++ return (*handler->read)(handler, addr, len); \
+ }
+
+ RWHANDLER_WRITE(cpu_io_memory_simple_writeb, 1, target_phys_addr_t);