From: Keith Whitwell Date: Tue, 28 Oct 2008 16:28:56 +0000 (+0000) Subject: gallium: recognize DEBUG as well as DBG for debugging X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=52e6fbb655f138f70670abdd365258873a78dabf;p=mesa.git gallium: recognize DEBUG as well as DBG for debugging --- diff --git a/src/gallium/include/pipe/p_debug.h b/src/gallium/include/pipe/p_debug.h index cb6196aa9fb..3b00fb9aa89 100644 --- a/src/gallium/include/pipe/p_debug.h +++ b/src/gallium/include/pipe/p_debug.h @@ -49,7 +49,7 @@ extern "C" { #endif -#ifdef DBG +#if defined(DBG) || defined(DEBUG) #ifndef DEBUG #define DEBUG 1 #endif