Kaydet (Commit) a02a4272 authored tarafından Tor Lillqvist's avatar Tor Lillqvist

Don't do the undef-redef dance for "MINIMAL_PROFILEDISCOVER"

üst f25034d5
......@@ -26,30 +26,32 @@
*
************************************************************************/
// Turn off DEBUG Assertions
#ifdef _DEBUG
#define _DEBUG_WAS_DEFINED _DEBUG
#ifndef MOZILLA_ENABLE_DEBUG
#undef _DEBUG
#ifndef MINIMAL_PROFILEDISCOVER
// Turn off DEBUG Assertions
#ifdef _DEBUG
#define _DEBUG_WAS_DEFINED _DEBUG
#ifndef MOZILLA_ENABLE_DEBUG
#undef _DEBUG
#endif
#else
#undef _DEBUG_WAS_DEFINED
#ifdef MOZILLA_ENABLE_DEBUG
#define _DEBUG 1
#endif
#endif
#else
#undef _DEBUG_WAS_DEFINED
#ifdef MOZILLA_ENABLE_DEBUG
#define _DEBUG 1
#endif
#endif
// and turn off the additional virtual methods which are part of some interfaces when compiled
// with debug
#ifdef DEBUG
#define DEBUG_WAS_DEFINED DEBUG
#ifndef MOZILLA_ENABLE_DEBUG
#undef DEBUG
#endif
#else
#undef DEBUG_WAS_DEFINED
#ifdef MOZILLA_ENABLE_DEBUG
#define DEBUG 1
// and turn off the additional virtual methods which are part of some interfaces when compiled
// with debug
#ifdef DEBUG
#define DEBUG_WAS_DEFINED DEBUG
#ifndef MOZILLA_ENABLE_DEBUG
#undef DEBUG
#endif
#else
#undef DEBUG_WAS_DEFINED
#ifdef MOZILLA_ENABLE_DEBUG
#define DEBUG 1
#endif
#endif
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment