patch-CPU_run_c 321 B

12345678910111213141516
  1. $OpenBSD: patch-CPU_run_c,v 1.3 2012/08/20 15:08:45 ajacoutot Exp $
  2. Fix build on OpenBSD's mips architectures.
  3. --- CPU/run.c.orig Sat Jan 9 06:22:52 2010
  4. +++ CPU/run.c Mon Aug 20 16:55:19 2012
  5. @@ -31,7 +31,7 @@
  6. */
  7. -#ifdef mips
  8. +#if defined(mips) && !defined(__OpenBSD__)
  9. #define _IEEE 1
  10. #include <nan.h>
  11. #else