openbsd-ports/audio/jack/patches/patch-config_sysdeps_atomicity_h
jakemsr 781094ad81 maintainence update, plus
- fix build on alpha by not comparing a va_list to NULL.  problem
  noticed and fix tested by merdely@.
- fix possible 100% cpu usage in full-duplex mode
- fix net client/server
- add @bin markers to PLIST
2008-06-28 05:49:30 +00:00

19 lines
481 B
Plaintext

$OpenBSD: patch-config_sysdeps_atomicity_h,v 1.2 2008/06/28 05:49:30 jakemsr Exp $
--- config/sysdeps/atomicity.h.orig Thu Mar 13 16:39:46 2008
+++ config/sysdeps/atomicity.h Mon Jun 16 21:00:28 2008
@@ -15,6 +15,14 @@
#include <config/cpu/powerpc/atomicity.h>
+#elif defined(__mips__) || defined(__mips64__)
+
+#include <config/cpu/mips/atomicity.h>
+
+#elif defined(__alpha__)
+
+#include <config/cpu/alpha/atomicity.h>
+
#else
#include <config/cpu/generic/atomicity.h>