[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Commits] r17518 - in /fsf/trunk/ports: ./ sysdeps/hppa/hppa1.1/ sysdeps/m68k/m680x0/fpu/ sysdeps/tile/



Author: eglibc
Date: Sat Mar 10 00:58:27 2012
New Revision: 17518

Log:
Import glibc-ports-mainline for 2012-03-10

Modified:
    fsf/trunk/ports/ChangeLog.hppa
    fsf/trunk/ports/ChangeLog.m68k
    fsf/trunk/ports/ChangeLog.tile
    fsf/trunk/ports/sysdeps/hppa/hppa1.1/s_signbit.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_acos.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_pow.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/math_private.h
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c
    fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_nextafterl.c
    fsf/trunk/ports/sysdeps/tile/math_private.h

Modified: fsf/trunk/ports/ChangeLog.hppa
==============================================================================
--- fsf/trunk/ports/ChangeLog.hppa (original)
+++ fsf/trunk/ports/ChangeLog.hppa Sat Mar 10 00:58:27 2012
@@ -1,3 +1,7 @@
+2012-03-09  Richard Henderson  <rth@xxxxxxxxxxx>
+
+	* sysdeps/hppa/hppa1.1/s_signbit.c: Use <> to include math_private.h.
+
 2012-03-09  Paul Eggert  <eggert@xxxxxxxxxxx>
 
 	[BZ #13673]

Modified: fsf/trunk/ports/ChangeLog.m68k
==============================================================================
--- fsf/trunk/ports/ChangeLog.m68k (original)
+++ fsf/trunk/ports/ChangeLog.m68k Sat Mar 10 00:58:27 2012
@@ -1,3 +1,15 @@
+2012-03-09  Richard Henderson  <rth@xxxxxxxxxxx>
+
+	* sysdeps/m68k/m680x0/fpu/math_private.h: Use include_next to
+	chain math_private.h.
+
+	* m68k/m680x0/fpu/e_acos.c: Use <> to include math_private.h.
+	* m68k/m680x0/fpu/e_atan2.c, m68k/m680x0/fpu/e_fmod.c: Likewise.
+	* m68k/m680x0/fpu/e_pow.c, m68k/m680x0/fpu/e_scalb.c: Likewise.
+	* m68k/m680x0/fpu/s_fpclassifyl.c, m68k/m680x0/fpu/s_llrint.c: Likewise.
+	* m68k/m680x0/fpu/s_llrintf.c, m68k/m680x0/fpu/s_llrintl.c: Likewise.
+	* m68k/m680x0/fpu/s_nextafterl.c: Likewise.
+
 2012-03-09  Paul Eggert  <eggert@xxxxxxxxxxx>
 
 	[BZ #13673]

Modified: fsf/trunk/ports/ChangeLog.tile
==============================================================================
--- fsf/trunk/ports/ChangeLog.tile (original)
+++ fsf/trunk/ports/ChangeLog.tile Sat Mar 10 00:58:27 2012
@@ -1,3 +1,8 @@
+2012-03-09  Richard Henderson  <rth@xxxxxxxxxxx>
+
+	* sysdeps/tile/math_private.h: Use include_next to
+	chain math_private.h.
+
 2012-03-09  Paul Eggert  <eggert@xxxxxxxxxxx>
 
 	[BZ #13673]

Modified: fsf/trunk/ports/sysdeps/hppa/hppa1.1/s_signbit.c
==============================================================================
--- fsf/trunk/ports/sysdeps/hppa/hppa1.1/s_signbit.c (original)
+++ fsf/trunk/ports/sysdeps/hppa/hppa1.1/s_signbit.c Sat Mar 10 00:58:27 2012
@@ -19,7 +19,7 @@
 
 #include <math.h>
 
-#include "math_private.h"
+#include <math_private.h>
 
 int
 __signbit (double x)

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_acos.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_acos.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_acos.c Sat Mar 10 00:58:27 2012
@@ -16,7 +16,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 #ifndef	FUNC

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_atan2.c Sat Mar 10 00:58:27 2012
@@ -16,7 +16,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 #ifndef SUFF

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_fmod.c Sat Mar 10 00:58:27 2012
@@ -16,7 +16,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 #ifndef FUNC

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_pow.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_pow.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_pow.c Sat Mar 10 00:58:27 2012
@@ -16,7 +16,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 #ifndef SUFF

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/e_scalb.c Sat Mar 10 00:58:27 2012
@@ -17,7 +17,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 #ifndef SUFF

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/math_private.h
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/math_private.h (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/math_private.h Sat Mar 10 00:58:27 2012
@@ -15,5 +15,5 @@
   }							\
 while (0)
 
-#include <math/math_private.h>
+#include_next <math_private.h>
 #endif

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_fpclassifyl.c Sat Mar 10 00:58:27 2012
@@ -20,7 +20,7 @@
 
 #include <math.h>
 
-#include "math_private.h"
+#include <math_private.h>
 
 
 int

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrint.c Sat Mar 10 00:58:27 2012
@@ -19,7 +19,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 long long int

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintf.c Sat Mar 10 00:58:27 2012
@@ -19,7 +19,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 long long int

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_llrintl.c Sat Mar 10 00:58:27 2012
@@ -19,7 +19,7 @@
    <http://www.gnu.org/licenses/>.  */
 
 #include <math.h>
-#include "math_private.h"
+#include <math_private.h>
 #include "mathimpl.h"
 
 long long int

Modified: fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_nextafterl.c
==============================================================================
--- fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_nextafterl.c (original)
+++ fsf/trunk/ports/sysdeps/m68k/m680x0/fpu/s_nextafterl.c Sat Mar 10 00:58:27 2012
@@ -26,8 +26,8 @@
  *   Special cases:
  */
 
-#include "math.h"
-#include "math_private.h"
+#include <math.h>
+#include <math_private.h>
 
 long double __nextafterl(long double x, long double y)
 {

Modified: fsf/trunk/ports/sysdeps/tile/math_private.h
==============================================================================
--- fsf/trunk/ports/sysdeps/tile/math_private.h (original)
+++ fsf/trunk/ports/sysdeps/tile/math_private.h Sat Mar 10 00:58:27 2012
@@ -1,6 +1,6 @@
 #ifndef _MATH_PRIVATE_H
 
-#include <math/math_private.h>
+#include_next <math_private.h>
 
 /* We have no exception support, so feraiseexcept() must be a no-op.
    And since we don't define FE_INVALID, FE_DIVBYZERO, etc., we

_______________________________________________
Commits mailing list
Commits@xxxxxxxxxx
http://eglibc.org/cgi-bin/mailman/listinfo/commits