[haiku-commits] r35440 - in haiku/trunk/src/system/libroot/posix/fenv: arm powerpc

  • From: aljen-mlists@xxxxx
  • To: haiku-commits@xxxxxxxxxxxxx
  • Date: Tue, 9 Feb 2010 15:10:07 +0100 (CET)

Author: aljen
Date: 2010-02-09 15:10:07 +0100 (Tue, 09 Feb 2010)
New Revision: 35440
Changeset: http://dev.haiku-os.org/changeset/35440/haiku

Modified:
   haiku/trunk/src/system/libroot/posix/fenv/arm/fenv.c
   haiku/trunk/src/system/libroot/posix/fenv/powerpc/fenv.c
Log:
Disabled fenv for ppc & arm platforms for now.


Modified: haiku/trunk/src/system/libroot/posix/fenv/arm/fenv.c
===================================================================
--- haiku/trunk/src/system/libroot/posix/fenv/arm/fenv.c        2010-02-09 
12:35:31 UTC (rev 35439)
+++ haiku/trunk/src/system/libroot/posix/fenv/arm/fenv.c        2010-02-09 
14:10:07 UTC (rev 35440)
@@ -26,6 +26,7 @@
  * $FreeBSD$
  */
 
+#if 0 // disabled for now
 #include <posix/fenv.h>
 
 /*
@@ -33,3 +34,5 @@
  * this as a default environment.
  */
 const fenv_t __fe_dfl_env = 0;
+#endif
+

Modified: haiku/trunk/src/system/libroot/posix/fenv/powerpc/fenv.c
===================================================================
--- haiku/trunk/src/system/libroot/posix/fenv/powerpc/fenv.c    2010-02-09 
12:35:31 UTC (rev 35439)
+++ haiku/trunk/src/system/libroot/posix/fenv/powerpc/fenv.c    2010-02-09 
14:10:07 UTC (rev 35440)
@@ -26,6 +26,8 @@
  * $FreeBSD$
  */
 
+#if 0 // disabled for now
 #include <posix/fenv.h>
 
 const fenv_t __fe_dfl_env = 0x00000000;
+#endif


Other related posts:

  • » [haiku-commits] r35440 - in haiku/trunk/src/system/libroot/posix/fenv: arm powerpc - aljen-mlists