src/cpu/x86/vm/jni_x86.h

Print this page

        

*** 26,36 **** #ifndef _JAVASOFT_JNI_MD_H_ #define _JAVASOFT_JNI_MD_H_ #if defined(SOLARIS) || defined(LINUX) || defined(_ALLBSD_SOURCE) ! #if defined(__GNUC__) && (__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2) #define JNIEXPORT __attribute__((visibility("default"))) #define JNIIMPORT __attribute__((visibility("default"))) #else #define JNIEXPORT #define JNIIMPORT --- 26,39 ---- #ifndef _JAVASOFT_JNI_MD_H_ #define _JAVASOFT_JNI_MD_H_ #if defined(SOLARIS) || defined(LINUX) || defined(_ALLBSD_SOURCE) ! #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 #define JNIEXPORT #define JNIIMPORT