From: Brian Paul Date: Wed, 4 Apr 2001 13:38:51 +0000 (+0000) Subject: Updated bug report info in _mesa_problem() X-Git-Tag: 062012170305~27265 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bb0830da9e35666f26bb0e5e530d18d8b9ec8e71;p=profile%2Fivi%2Fmesa.git Updated bug report info in _mesa_problem() --- diff --git a/src/mesa/main/context.c b/src/mesa/main/context.c index 6a97bb8..256257b 100644 --- a/src/mesa/main/context.c +++ b/src/mesa/main/context.c @@ -1,4 +1,4 @@ -/* $Id: context.c,v 1.131 2001/03/28 17:20:20 brianp Exp $ */ +/* $Id: context.c,v 1.132 2001/04/04 13:38:51 brianp Exp $ */ /* * Mesa 3-D graphics library @@ -1885,7 +1885,11 @@ _mesa_get_dispatch(GLcontext *ctx) void _mesa_problem( const GLcontext *ctx, const char *s ) { fprintf( stderr, "Mesa implementation error: %s\n", s ); - fprintf( stderr, "Report to Mesa bug database at www.mesa3d.org\n" ); +#ifdef XF86DRI + fprintf( stderr, "Please report to the DRI bug database at dri.sourceforge.net\n"); +#else + fprintf( stderr, "Please report to the Mesa bug database at www.mesa3d.org\n" ); +#endif (void) ctx; }