diff --git a/mozilla/xpcom/base/nsDebugImpl.cpp b/mozilla/xpcom/base/nsDebugImpl.cpp index 7251c88e234..19eedd99bae 100644 --- a/mozilla/xpcom/base/nsDebugImpl.cpp +++ b/mozilla/xpcom/base/nsDebugImpl.cpp @@ -65,6 +65,9 @@ #if defined(__GNUC__) && defined(__i386) # define DebugBreak() { asm("int $3"); } +#elif defined(__APPLE__) +# include "MacTypes.h" +# define DebugBreak() { Debugger(); } #else # define DebugBreak() #endif