diff options
author | davem69 <davem69> | 2001-06-05 03:58:20 +0000 |
---|---|---|
committer | davem69 <davem69> | 2001-06-05 03:58:20 +0000 |
commit | e4f84b4936b72f17ee54b0b1e17bd94831f772a8 (patch) | |
tree | 9693e8e018ed58ab5a0b41c7fae8bf00a28927cd /src/mesa/main | |
parent | b20cea3902122565f843e689ef4f6ab139ed69cf (diff) |
Add USE_SPARC_ASM diagnostics to print_info.
Diffstat (limited to 'src/mesa/main')
-rw-r--r-- | src/mesa/main/context.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 4ff1941f13..ee6953ded8 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.139 2001/05/29 15:23:48 brianp Exp $ */ +/* $Id: context.c,v 1.140 2001/06/05 03:58:20 davem69 Exp $ */ /* * Mesa 3-D graphics library @@ -1795,6 +1795,11 @@ static void print_info( void ) #else fprintf(stderr, "Mesa x86-optimized: NO\n"); #endif +#if defined(USE_SPARC_ASM) + fprintf(stderr, "Mesa sparc-optimized: YES\n"); +#else + fprintf(stderr, "Mesa sparc-optimized: NO\n"); +#endif } |