Only use Debugger() if building against carbon or cocoa toolkits.

Fixing OSX/X11 bustage.
Bug #249028 sr=darin
This commit is contained in:
cls%seawood.org 2004-09-18 16:35:28 +00:00
Родитель b0e8529dd5
Коммит 34ced1f8a8
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -65,7 +65,7 @@
#if defined(__GNUC__) && defined(__i386)
# define DebugBreak() { asm("int $3"); }
#elif defined(__APPLE__)
#elif defined(__APPLE__) && defined(TARGET_CARBON)
# include "MacTypes.h"
# define DebugBreak() { Debugger(); }
#else