diff options
Diffstat (limited to 'emulators/qemu0/patches/patch-ef')
-rw-r--r-- | emulators/qemu0/patches/patch-ef | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/emulators/qemu0/patches/patch-ef b/emulators/qemu0/patches/patch-ef new file mode 100644 index 00000000000..af9e9071f79 --- /dev/null +++ b/emulators/qemu0/patches/patch-ef @@ -0,0 +1,16 @@ +$NetBSD: patch-ef,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) + +--- audio/audio.c.orig 2011-08-08 18:28:42 +0000 ++++ audio/audio.c +@@ -1162,7 +1162,7 @@ int AUD_read (SWVoiceIn *sw, void *buf, + return 0; + } + +- bytes = sw->hw->pcm_ops->read (sw, buf, size); ++ bytes = (*sw->hw->pcm_ops->read)(sw, buf, size); + return bytes; + } + |