This is the mail archive of the java-patches@gcc.gnu.org mailing list for the Java project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[patch] merge fdlibm.h from GNUD Classpath


Hi all,

this one also reduces the diff to GNU Classpath.

Ok, for main?

Andreas

2005-03-09 Andreas Tobler <a.tobler@schweiz.ch>

* java/lang/fdlibm.h: Merge an AIX define from GNU Classpath.
Index: java/lang/fdlibm.h
===================================================================
RCS file: /cvs/gcc/gcc/libjava/java/lang/fdlibm.h,v
retrieving revision 1.5
diff -u -r1.5 fdlibm.h
--- java/lang/fdlibm.h	8 Jul 2003 21:27:37 -0000	1.5
+++ java/lang/fdlibm.h	9 Mar 2005 19:05:02 -0000
@@ -11,6 +11,10 @@
  * ====================================================
  */
 
+/* AIX needs _XOPEN_SOURCE */
+#ifdef _AIX
+#define _XOPEN_SOURCE
+#endif
 
 #include <config.h>
 #include <stdlib.h>

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]