Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 27 Apr 2015 18:01:53 +0000 (UTC)
From:      Garrett Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r282106 - head/lib/msun/tests
Message-ID:  <201504271801.t3RI1r57002174@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon Apr 27 18:01:52 2015
New Revision: 282106
URL: https://svnweb.freebsd.org/changeset/base/282106

Log:
  Remove per-architecture checks for enabling HAVE_FENV_H
  
  The conditional came from NetBSD, where only select architectures have this
  header/support
  
  All architectures on FreeBSD have the necessary support though, so the
  conditional's completely unnecessary
  
  make tinderbox done on all architectures (including arm64, where the issue
  occurred before) this time
  
  X-MFC with: r282057, r282092
  MFC after: 6 days

Modified:
  head/lib/msun/tests/Makefile

Modified: head/lib/msun/tests/Makefile
==============================================================================
--- head/lib/msun/tests/Makefile	Mon Apr 27 17:55:57 2015	(r282105)
+++ head/lib/msun/tests/Makefile	Mon Apr 27 18:01:52 2015	(r282106)
@@ -6,11 +6,8 @@ TESTSRC=	${SRCTOP}/contrib/netbsd-tests/
 
 TESTSDIR=	${TESTSBASE}/lib/msun
 
-.if ${MACHINE} == "sparc" || ${MACHINE} == "i386" \
-	|| ${MACHINE} == "amd64" || ${MACHINE_CPUARCH} == "arm"	\
-	|| ${MACHINE} == "sparc64"
+# All architectures on FreeBSD have fenv.h
 CFLAGS+=	-DHAVE_FENV_H
-.endif
 
 .if ${MACHINE} == "amd64" || ${MACHINE} == "i386"
 CFLAGS+=	-D__HAVE_LONG_DOUBLE



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201504271801.t3RI1r57002174>