Bug 617115 - crashreporter fixes part. r=ted

This commit is contained in:
Alon Zakai 2011-05-27 10:01:03 -07:00
Родитель aedfa4682c
Коммит 1ad90d8d03
4 изменённых файлов: 10 добавлений и 0 удалений

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

@ -100,6 +100,8 @@ endif
ifeq ($(OS_TARGET),Android)
DIRS += fileid
# NDK5 workarounds
DEFINES += -D_STLP_CONST_CONSTRUCTOR_BUG -D_STLP_NO_MEMBER_TEMPLATES
endif
DIRS += client

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

@ -68,4 +68,9 @@ CPPSRCS = \
FORCE_STATIC_LIB = 1
FORCE_USE_PIC = 1
ifeq ($(OS_TARGET),Android)
# NDK5 workarounds
DEFINES += -D_STLP_CONST_CONSTRUCTOR_BUG -D_STLP_NO_MEMBER_TEMPLATES
endif
include $(topsrcdir)/config/rules.mk

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

@ -99,6 +99,8 @@
#include "common/linux/guid_creator.h"
#include "common/linux/eintr_wrapper.h"
#include "linux/sched.h"
#ifndef PR_SET_PTRACER
#define PR_SET_PTRACER 0x59616d61
#endif

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

@ -57,6 +57,7 @@
#endif
#include <stdio.h>
#include <unistd.h>
#include <ctype.h>
#if !defined(__ANDROID__)
#include <sys/ucontext.h>
#include <sys/user.h>