bug 368206 - integrate breakpad exception handler/crash reporter on OS X. fix up static linking for thunderbird et. al and enable breakpad by default on OS X. r=bsmedberg

This commit is contained in:
ted.mielczarek@gmail.com 2007-05-07 08:32:41 -07:00
parent c74cf017ec
commit 01d4f5821b
3 changed files with 6 additions and 2 deletions

View File

@ -226,7 +226,6 @@ endif
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
ifdef BUILD_STATIC_LIBS
LIBS += -framework QuickTime -framework IOKit -lcrypto
ifdef USE_PREBINDING
BIN_FLAGS += -Wl,-headerpad -Wl,5a0c
endif

View File

@ -19,3 +19,7 @@ GARBAGE += nsStaticComponents.cpp
ifeq ($(OS_ARCH),IRIX)
LDFLAGS += -Wl,-LD_LAYOUT:lgot_buffer=80
endif
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
LIBS += -framework QuickTime -framework IOKit -lcrypto
endif

View File

@ -5531,7 +5531,8 @@ dnl ========================================================
dnl = Airbag crash reporting (on by default on supported platforms)
dnl ========================================================
if test "$OS_ARCH" = "WINNT" -a -z "$GNU_CC"; then
if test "$OS_ARCH" = "WINNT" -a -z "$GNU_CC" \
|| test "$OS_ARCH" = "Darwin"; then
MOZ_AIRBAG=1
fi