summaryrefslogtreecommitdiff
path: root/svx
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-08 12:14:30 +0200
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2016-06-08 13:37:54 +0000
commit3498cd3e7b2c820fc3f3025eb4434666a444fda1 (patch)
tree1b02847e44dc773923f520a3062091fb5f56a8c0 /svx
parent1a9e0f420181316fbbaae14f1afb58a49c77cb3a (diff)
use a dynamic library for minidump shared code
This has the disadvantage to make the minidump_upload executable depend on LibreOffice libraries but there seems to be no other way to make the 7.1 SDK happy. Change-Id: I82c37f503ed29cb50711eae7db22063f49747a48 Reviewed-on: https://gerrit.libreoffice.org/26055 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Markus Mohrhard <markus.mohrhard@googlemail.com>
Diffstat (limited to 'svx')
-rw-r--r--svx/Library_svx.mk8
-rw-r--r--svx/source/dialog/crashreportdlg.cxx2
2 files changed, 1 insertions, 9 deletions
diff --git a/svx/Library_svx.mk b/svx/Library_svx.mk
index c026002c2750..f6500990f7d5 100644
--- a/svx/Library_svx.mk
+++ b/svx/Library_svx.mk
@@ -40,14 +40,6 @@ $(eval $(call gb_Library_add_defs,svx,\
$(eval $(call gb_Library_set_precompiled_header,svx,$(SRCDIR)/svx/inc/pch/precompiled_svx))
-ifeq ($(ENABLE_BREAKPAD),TRUE)
-
-$(eval $(call gb_Library_use_static_libraries,svx, \
- minidump \
-))
-
-endif
-
$(eval $(call gb_Library_use_libraries,svx,\
basegfx \
sb \
diff --git a/svx/source/dialog/crashreportdlg.cxx b/svx/source/dialog/crashreportdlg.cxx
index 8cb5c29f9324..973a59346a9c 100644
--- a/svx/source/dialog/crashreportdlg.cxx
+++ b/svx/source/dialog/crashreportdlg.cxx
@@ -55,7 +55,7 @@ IMPL_LINK_TYPED(CrashReportDialog, BtnHdl, Button*, pBtn, void)
std::string ini_path = CrashReporter::getIniFileName();
std::string response;
- bool bSuccess = readConfig(ini_path, response);
+ bool bSuccess = crashreport::readConfig(ini_path, response);
OUString aCrashID = OUString::createFromAscii(response.c_str());