Merge
authorcoleenp
Tue, 07 May 2013 14:30:11 -0700
changeset 17313 49fdddea1619
parent 17311 6ba3841cb7f9 (current diff)
parent 17312 847072c96771 (diff)
child 17318 7ce8d300e091
child 17326 a0625b7aa266
child 17360 863fe5b015b0
child 17365 b127267313d8
Merge
--- a/hotspot/src/cpu/sparc/vm/jni_sparc.h	Tue May 07 21:36:59 2013 +0200
+++ b/hotspot/src/cpu/sparc/vm/jni_sparc.h	Tue May 07 14:30:11 2013 -0700
@@ -23,7 +23,12 @@
  * questions.
  */
 
-#if defined(__GNUC__) && (__GNUC__ >= 4)
+// Note: please do not change these without also changing jni_md.h in the JDK
+// repository
+#ifndef __has_attribute
+  #define __has_attribute(x) 0
+#endif
+#if (defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2))) || __has_attribute(visibility)
   #define JNIEXPORT     __attribute__((visibility("default")))
   #define JNIIMPORT     __attribute__((visibility("default")))
 #else
--- a/hotspot/src/cpu/x86/vm/jni_x86.h	Tue May 07 21:36:59 2013 +0200
+++ b/hotspot/src/cpu/x86/vm/jni_x86.h	Tue May 07 14:30:11 2013 -0700
@@ -28,7 +28,13 @@
 
 #if defined(SOLARIS) || defined(LINUX) || defined(_ALLBSD_SOURCE)
 
-#if defined(__GNUC__) && (__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2)
+
+// Note: please do not change these without also changing jni_md.h in the JDK
+// repository
+#ifndef __has_attribute
+  #define __has_attribute(x) 0
+#endif
+#if (defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2))) || __has_attribute(visibility)
   #define JNIEXPORT     __attribute__((visibility("default")))
   #define JNIIMPORT     __attribute__((visibility("default")))
 #else
--- a/hotspot/src/cpu/zero/vm/jni_zero.h	Tue May 07 21:36:59 2013 +0200
+++ b/hotspot/src/cpu/zero/vm/jni_zero.h	Tue May 07 14:30:11 2013 -0700
@@ -25,7 +25,13 @@
  */
 
 
-#if defined(__GNUC__) && (__GNUC__ >= 4)
+
+// Note: please do not change these without also changing jni_md.h in the JDK
+// repository
+#ifndef __has_attribute
+  #define __has_attribute(x) 0
+#endif
+#if (defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2))) || __has_attribute(visibility)
   #define JNIEXPORT     __attribute__((visibility("default")))
   #define JNIIMPORT     __attribute__((visibility("default")))
 #else