diff options
author | Brian Paul <[email protected]> | 2002-01-04 14:35:46 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2002-01-04 14:35:46 +0000 |
commit | 8d0499b75ed783fe52094d841b533b559aa3f2b1 (patch) | |
tree | d1343914924766a74f3579463fa618a4705b9c3c /src/mesa/x86 | |
parent | 735d92029c2c40e3d884b707d371a2aca08d5b16 (diff) |
fix bug 498555 - test for __GNUC__
Diffstat (limited to 'src/mesa/x86')
-rw-r--r-- | src/mesa/x86/assyntax.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mesa/x86/assyntax.h b/src/mesa/x86/assyntax.h index b9bb1f7ea08..442d21b2a7d 100644 --- a/src/mesa/x86/assyntax.h +++ b/src/mesa/x86/assyntax.h @@ -1,4 +1,4 @@ -/* $Id: assyntax.h,v 1.16 2000/10/23 00:16:28 gareth Exp $ */ +/* $Id: assyntax.h,v 1.17 2002/01/04 14:35:46 brianp Exp $ */ #ifndef __ASSYNTAX_H__ #define __ASSYNTAX_H__ @@ -244,7 +244,7 @@ #endif /* ACK_ASSEMBLER */ -#if defined(__QNX__) || defined(Lynx) || (defined(SYSV) || defined(SVR4)) && !defined(ACK_ASSEMBLER) || defined(__ELF__) || defined(__GNU__) +#if defined(__QNX__) || defined(Lynx) || (defined(SYSV) || defined(SVR4)) && !defined(ACK_ASSEMBLER) || defined(__ELF__) || defined(__GNU__) || defined(__GNUC__) #define GLNAME(a) a #else #define GLNAME(a) CONCAT(_,a) |