Disable crash handler in Mac OS

This commit is contained in:
Eduardo Bart
2013-02-05 19:09:20 -02:00
parent d4fb6127fc
commit f0ac63eb5c
4 changed files with 6 additions and 4 deletions

View File

@@ -23,6 +23,8 @@
#ifndef CRASHHANDLER_H
#define CRASHHANDLER_H
#ifdef CRASH_HANDLER
void installCrashHandler();
#endif
#endif

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
#ifndef WIN32
#if !defined(WIN32) && defined(CRASH_HANDLER)
#include "crashhandler.h"
#include <framework/global.h>

View File

@@ -20,7 +20,7 @@
* THE SOFTWARE.
*/
#ifdef WIN32
#if defined(WIN32) && defined(CRASH_HANDLER)
#include "crashhandler.h"
#include <framework/global.h>