mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Backed out bug 514188 - sync to breakpad revision 437. The Linux update broke stuff badly (bug 535071)
This commit is contained in:
commit
57f6ed3438
@ -78,7 +78,6 @@ DIRS += \
|
||||
google-breakpad/src/common/linux \
|
||||
google-breakpad/src/client \
|
||||
google-breakpad/src/client/linux/handler \
|
||||
google-breakpad/src/client/linux/minidump_writer \
|
||||
google-breakpad/src/tools/linux/dump_syms \
|
||||
$(NULL)
|
||||
endif
|
||||
|
@ -84,6 +84,7 @@ LIBS += \
|
||||
LOCAL_INCLUDES += -I$(srcdir)
|
||||
OS_CXXFLAGS += $(MOZ_GTK2_CFLAGS) $(MOZ_GTHREAD_CFLAGS)
|
||||
OS_LIBS += $(MOZ_GTK2_LIBS) $(MOZ_GTHREAD_LIBS)
|
||||
CPPSRCS += http_upload.cc
|
||||
FORCE_USE_PIC=1
|
||||
endif
|
||||
|
||||
@ -95,6 +96,7 @@ LIBS += \
|
||||
LOCAL_INCLUDES += -I$(srcdir)
|
||||
OS_CXXFLAGS += $(MOZ_GTK2_CFLAGS) $(MOZ_GTHREAD_CFLAGS)
|
||||
OS_LIBS += $(MOZ_GTK2_LIBS) $(MOZ_GTHREAD_LIBS)
|
||||
CPPSRCS += http_upload.cc
|
||||
FORCE_USE_PIC=1
|
||||
endif
|
||||
|
||||
@ -112,6 +114,9 @@ libs::
|
||||
endif
|
||||
|
||||
ifeq (,$(filter-out Linux SunOS,$(OS_ARCH)))
|
||||
export:: $(srcdir)/../google-breakpad/src/common/linux/http_upload.cc
|
||||
$(INSTALL) $^ .
|
||||
|
||||
libs:: $(topsrcdir)/toolkit/themes/winstripe/global/throbber/Throbber-small.gif
|
||||
$(INSTALL) $^ $(DIST)/bin
|
||||
endif
|
||||
|
@ -49,6 +49,8 @@ LOCAL_INCLUDES = -I$(srcdir)/../../..
|
||||
|
||||
CPPSRCS = \
|
||||
exception_handler.cc \
|
||||
minidump_generator.cc \
|
||||
linux_thread.cc \
|
||||
$(NULL)
|
||||
|
||||
# need static lib
|
||||
|
@ -1,60 +0,0 @@
|
||||
# ***** BEGIN LICENSE BLOCK *****
|
||||
# Version: MPL 1.1/GPL 2.0/LGPL 2.1
|
||||
#
|
||||
# The contents of this file are subject to the Mozilla Public License Version
|
||||
# 1.1 (the "License"); you may not use this file except in compliance with
|
||||
# the License. You may obtain a copy of the License at
|
||||
# http://www.mozilla.org/MPL/
|
||||
#
|
||||
# Software distributed under the License is distributed on an "AS IS" basis,
|
||||
# WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
|
||||
# for the specific language governing rights and limitations under the
|
||||
# License.
|
||||
#
|
||||
# The Original Code is Mozilla Breakpad integration
|
||||
#
|
||||
# The Initial Developer of the Original Code is
|
||||
# The Mozilla Foundation.
|
||||
# Portions created by the Initial Developer are Copyright (C) 2009
|
||||
# the Initial Developer. All Rights Reserved.
|
||||
#
|
||||
# Contributor(s):
|
||||
# Ted Mielczarek <ted.mielczarek@gmail.com>
|
||||
#
|
||||
# Alternatively, the contents of this file may be used under the terms of
|
||||
# either the GNU General Public License Version 2 or later (the "GPL"), or
|
||||
# the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
|
||||
# in which case the provisions of the GPL or the LGPL are applicable instead
|
||||
# of those above. If you wish to allow use of your version of this file only
|
||||
# under the terms of either the GPL or the LGPL, and not to allow others to
|
||||
# use your version of this file under the terms of the MPL, indicate your
|
||||
# decision by deleting the provisions above and replace them with the notice
|
||||
# and other provisions required by the GPL or the LGPL. If you do not delete
|
||||
# the provisions above, a recipient may use your version of this file under
|
||||
# the terms of any one of the MPL, the GPL or the LGPL.
|
||||
#
|
||||
# ***** END LICENSE BLOCK *****
|
||||
|
||||
DEPTH = ../../../../../../..
|
||||
topsrcdir = @top_srcdir@
|
||||
srcdir = @srcdir@
|
||||
VPATH = @srcdir@
|
||||
|
||||
include $(DEPTH)/config/autoconf.mk
|
||||
|
||||
MODULE = writer
|
||||
LIBRARY_NAME = minidump_writer_s
|
||||
XPI_NAME = crashreporter
|
||||
|
||||
LOCAL_INCLUDES = -I$(srcdir)/../../..
|
||||
|
||||
CPPSRCS = \
|
||||
linux_dumper.cc \
|
||||
minidump_writer.cc \
|
||||
$(NULL)
|
||||
|
||||
# need static lib
|
||||
FORCE_STATIC_LIB = 1
|
||||
FORCE_USE_PIC = 1
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
@ -65,3 +65,9 @@ FORCE_STATIC_LIB = 1
|
||||
FORCE_USE_PIC = 1
|
||||
|
||||
include $(topsrcdir)/config/rules.mk
|
||||
|
||||
# XXX, bug 417045, make -jN combines badly with -save-temps in
|
||||
# CFLAGS/CXXFLAGS (for stabs symbols with XCode3)
|
||||
ifeq (cocoa,$(MOZ_WIDGET_TOOLKIT))
|
||||
.NOTPARALLEL:
|
||||
endif
|
||||
|
@ -47,18 +47,18 @@ HOST_LIBRARY_NAME = host_breakpad_linux_common_s
|
||||
|
||||
LOCAL_INCLUDES = -I$(srcdir)/../..
|
||||
|
||||
# not compiling http_upload.cc currently
|
||||
# since it depends on libcurl
|
||||
CPPSRCS = \
|
||||
dump_symbols.cc \
|
||||
file_id.cc \
|
||||
guid_creator.cc \
|
||||
http_upload.cc \
|
||||
$(NULL)
|
||||
|
||||
HOST_CPPSRCS = \
|
||||
dump_symbols.cc \
|
||||
file_id.cc \
|
||||
guid_creator.cc \
|
||||
module.cc \
|
||||
stabs_reader.cc \
|
||||
$(NULL)
|
||||
|
||||
# need static lib
|
||||
|
@ -670,7 +670,6 @@ MAKEFILES_xulapp="
|
||||
toolkit/crashreporter/client/Makefile
|
||||
toolkit/crashreporter/google-breakpad/src/client/Makefile
|
||||
toolkit/crashreporter/google-breakpad/src/client/linux/handler/Makefile
|
||||
toolkit/crashreporter/google-breakpad/src/client/linux/minidump_writer/Makefile
|
||||
toolkit/crashreporter/google-breakpad/src/client/mac/handler/Makefile
|
||||
toolkit/crashreporter/google-breakpad/src/client/solaris/handler/Makefile
|
||||
toolkit/crashreporter/google-breakpad/src/client/windows/crash_generation/Makefile
|
||||
|
@ -151,7 +151,6 @@ endif
|
||||
ifeq ($(OS_ARCH),Linux)
|
||||
SHARED_LIBRARY_LIBS += \
|
||||
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/handler/$(LIB_PREFIX)exception_handler_s.$(LIB_SUFFIX) \
|
||||
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/linux/minidump_writer/$(LIB_PREFIX)minidump_writer_s.$(LIB_SUFFIX) \
|
||||
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/client/$(LIB_PREFIX)minidump_file_writer_s.$(LIB_SUFFIX) \
|
||||
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/$(LIB_PREFIX)breakpad_common_s.$(LIB_SUFFIX) \
|
||||
$(DEPTH)/toolkit/crashreporter/google-breakpad/src/common/linux/$(LIB_PREFIX)breakpad_linux_common_s.$(LIB_SUFFIX) \
|
||||
|
Loading…
Reference in New Issue
Block a user