781094ad81
- 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
19 lines
481 B
Plaintext
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>
|