Only use gcc visibility support with gcc4+.
authorTom Fogal <tfogal@alumni.unh.edu>
Wed, 19 Oct 2011 20:41:35 +0000 (14:41 -0600)
committerTom Fogal <tfogal@alumni.unh.edu>
Mon, 24 Oct 2011 16:22:52 +0000 (10:22 -0600)
I had a colleague hitting issues compiling with an old gcc3.2
system.  These patches got them through.

NOTE: This is a candidate for the 7.11 branch.

Reviewed-by: Brian Paul <brianp@vmware.com>
include/GL/gl.h
src/mesa/main/compiler.h

index 998a83ab1f1ffc785ed4253dbf1f1f9e29f844e4..e65e1bc8a8f4e99239442b5e99853cf9686115d3 100644 (file)
@@ -67,7 +67,7 @@
 #elif defined(__CYGWIN__) && defined(USE_OPENGL32) /* use native windows opengl32 */
 #  define GLAPI extern
 #  define GLAPIENTRY __stdcall
-#elif defined(__GNUC__)        || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
+#elif (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
 #  define GLAPI __attribute__((visibility("default")))
 #  define GLAPIENTRY
 #endif /* WIN32 && !CYGWIN */
index 89d6cda913c7e725b04e13be061e338a479fcfa6..921e3022288fdb5435e691df850ae92769e08dd7 100644 (file)
@@ -150,7 +150,7 @@ extern "C" {
  * inline a static function that we later use in an alias. - ajax
  */
 #ifndef PUBLIC
-#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
+#  if (defined(__GNUC__) && __GNUC__ >= 4) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
 #    define PUBLIC __attribute__((visibility("default")))
 #    define USED __attribute__((used))
 #  else