Module Name:    src
Committed By:   christos
Date:           Sun Dec 27 19:50:31 UTC 2015

Modified Files:
        src/include: fenv.h

Log Message:
We need at least 68010 or coldfire for fenv.


To generate a diff of this commit:
cvs rdiff -u -r1.18 -r1.19 src/include/fenv.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/include/fenv.h
diff -u src/include/fenv.h:1.18 src/include/fenv.h:1.19
--- src/include/fenv.h:1.18	Thu Dec 24 09:13:59 2015
+++ src/include/fenv.h	Sun Dec 27 14:50:31 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: fenv.h,v 1.18 2015/12/24 14:13:59 christos Exp $	*/
+/*	$NetBSD: fenv.h,v 1.19 2015/12/27 19:50:31 christos Exp $	*/
 /*
  * Copyright (c) 2010 The NetBSD Foundation, Inc.
  * All rights reserved.
@@ -32,7 +32,8 @@
 #if !defined(__aarch64__) && !defined(__arm__) && !defined(__i386__) \
     && !defined(__hppa__) && !defined(__powerpc__) && !defined(__mips__) \
     && !defined(__or1k__) && !defined(__riscv__) && !defined(__sparc__) \
-    && !defined(__x86_64__) && !defined(__m68k__)
+    && !defined(__x86_64__)
+    && !(defined(__m68k__) && (defined(__mc68010__) || defined(__mcoldfire__)))
 # ifndef __TEST_FENV
 #  error	"fenv.h is currently not supported for this architecture"
 # endif

Reply via email to