Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 16 Oct 2011 05:37:56 +0000 (UTC)
From:      David Schultz <das@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r226415 - in head/lib/msun: amd64 arm i387 ia64 mips powerpc sparc64
Message-ID:  <201110160537.p9G5bucm047292@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: das
Date: Sun Oct 16 05:37:56 2011
New Revision: 226415
URL: http://svn.freebsd.org/changeset/base/226415

Log:
  Use #include "fenv.h" instead of #include <fenv.h>.  This makes it
  more convenient to compile the math library by itself.
  
  Requested by:	bde

Modified:
  head/lib/msun/amd64/fenv.c
  head/lib/msun/arm/fenv.c
  head/lib/msun/i387/fenv.c
  head/lib/msun/ia64/fenv.c
  head/lib/msun/mips/fenv.c
  head/lib/msun/powerpc/fenv.c
  head/lib/msun/sparc64/fenv.c

Modified: head/lib/msun/amd64/fenv.c
==============================================================================
--- head/lib/msun/amd64/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/amd64/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -31,7 +31,7 @@
 #include <machine/fpu.h>
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"

Modified: head/lib/msun/arm/fenv.c
==============================================================================
--- head/lib/msun/arm/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/arm/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -27,7 +27,7 @@
  */
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"

Modified: head/lib/msun/i387/fenv.c
==============================================================================
--- head/lib/msun/i387/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/i387/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -31,7 +31,7 @@
 #include <machine/npx.h>
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"

Modified: head/lib/msun/ia64/fenv.c
==============================================================================
--- head/lib/msun/ia64/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/ia64/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -29,7 +29,7 @@
 #include <sys/types.h>
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"

Modified: head/lib/msun/mips/fenv.c
==============================================================================
--- head/lib/msun/mips/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/mips/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -27,7 +27,7 @@
  */
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"

Modified: head/lib/msun/powerpc/fenv.c
==============================================================================
--- head/lib/msun/powerpc/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/powerpc/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -27,7 +27,7 @@
  */
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"

Modified: head/lib/msun/sparc64/fenv.c
==============================================================================
--- head/lib/msun/sparc64/fenv.c	Sun Oct 16 05:37:20 2011	(r226414)
+++ head/lib/msun/sparc64/fenv.c	Sun Oct 16 05:37:56 2011	(r226415)
@@ -27,7 +27,7 @@
  */
 
 #define	__fenv_static
-#include <fenv.h>
+#include "fenv.h"
 
 #ifdef __GNUC_GNU_INLINE__
 #error "This file must be compiled with C99 'inline' semantics"



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