Jelajahi Sumber

Apparently the visibility attribute only exists in gcc3 and up.

Ryan C. Gordon 20 tahun lalu
induk
melakukan
cbf1dc67f3
1 mengubah file dengan 1 tambahan dan 1 penghapusan
  1. 1 1
      physfs.h

+ 1 - 1
physfs.h

@@ -153,7 +153,7 @@ extern "C" {
 #ifndef DOXYGEN_SHOULD_IGNORE_THIS
 #if (defined _MSC_VER)
 #define __EXPORT__ __declspec(dllexport)
-#elif (defined __GNUC__)
+#elif (__GNUC__ >= 3)
 #define __EXPORT__ __attribute__((visibility("default")))
 #else
 #define __EXPORT__