Fix unmatched parenthesis introduce by previous commits
authorIan Romanick <ian.d.romanick@intel.com>
Thu, 4 Mar 2010 01:50:11 +0000 (17:50 -0800)
committerIan Romanick <ian.d.romanick@intel.com>
Thu, 4 Mar 2010 01:50:11 +0000 (17:50 -0800)
I wasn't careful enough when removing support for GCC versions earlier
than 3.3.0.  I could have sworn that I compile tested before pushing,
but apparently not.  FAIL.

Signed-off-by: Ian Romanick <ian.d.romanick@intel.com>
src/glx/indirect.h
src/glx/indirect_size.c
src/glx/indirect_size.h
src/mesa/glapi/gen/gl_XML.py
src/mesa/glapi/glapitemp.h
src/mesa/main/compiler.h

index 7064bfe279c834432dc3d8391545ac122fc30796..b09b61aae7630ba1eefa0b57cde7e9f2518ac31c 100644 (file)
@@ -37,7 +37,7 @@
  * \author Ian Romanick <idr@us.ibm.com>
  */
 
-#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
+#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
 #    define HIDDEN  __attribute__((visibility("hidden")))
 #  else
 #    define HIDDEN
index 5a8f27ba92e88fac348f58fe050221237d0c0104..0c136d26cdd2ceac5a661f57683e596c5e0acdbb 100644 (file)
@@ -41,7 +41,7 @@
 #    define FASTCALL
 #  endif
 
-#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
+#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
 #    define INTERNAL  __attribute__((visibility("internal")))
 #  else
 #    define INTERNAL
index 43f504a319a936b1d392006fcef2fceec5a2ce55..79b849b6839fac811a0ef26793b3015860dd187d 100644 (file)
@@ -48,7 +48,7 @@
 #    define FASTCALL
 #  endif
 
-#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
+#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
 #    define INTERNAL  __attribute__((visibility("internal")))
 #  else
 #    define INTERNAL
index b769ee2bb5aa7932f7dec42339ed8c29ec27555d..660c8cfb711d2c22e4f6b11dd8be3ee642cf3ac9 100644 (file)
@@ -224,7 +224,7 @@ class gl_print_base:
                """
 
                self.undef_list.append(S)
-               print """#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
+               print """#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
 #    define %s  __attribute__((visibility("%s")))
 #  else
 #    define %s
index f9b803e2abd5edcc2891716d8a2b40906081350a..67c691c3fbea3066b59d0ae95c86f2f37474aeef 100644 (file)
@@ -27,7 +27,7 @@
  */
 
 
-#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))) && defined(__ELF__)
+#  if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)) && defined(__ELF__)
 #    define HIDDEN  __attribute__((visibility("hidden")))
 #  else
 #    define HIDDEN
index 05e69e56a6b9c39a8d299595d0d7cfaceb256d22..81704ae2c1166cf1bb913bdd8f61837e0b087b04 100644 (file)
@@ -173,7 +173,7 @@ extern "C" {
  * We also need to define a USED attribute, so the optimizer doesn't 
  * inline a static function that we later use in an alias. - ajax
  */
-#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590)
+#if defined(__GNUC__) || (defined(__SUNPRO_C) && (__SUNPRO_C >= 0x590))
 #  define PUBLIC __attribute__((visibility("default")))
 #  define USED __attribute__((used))
 #else