svn commit: r282106 - head/lib/msun/tests

Garrett Cooper ngie at FreeBSD.org
Mon Apr 27 18:01:53 UTC 2015


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


More information about the svn-src-all mailing list