diff options
author | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-08 12:14:30 +0200 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2016-06-08 13:37:54 +0000 |
commit | 3498cd3e7b2c820fc3f3025eb4434666a444fda1 (patch) | |
tree | 1b02847e44dc773923f520a3062091fb5f56a8c0 /desktop | |
parent | 1a9e0f420181316fbbaae14f1afb58a49c77cb3a (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 'desktop')
-rw-r--r-- | desktop/Executable_minidump_upload.mk | 5 | ||||
-rw-r--r-- | desktop/Library_crashreport.mk | 6 | ||||
-rw-r--r-- | desktop/Module_desktop.mk | 2 | ||||
-rw-r--r-- | desktop/source/minidump/minidump.cxx | 5 | ||||
-rw-r--r-- | desktop/source/minidump/minidump_upload.cxx | 3 |
5 files changed, 16 insertions, 5 deletions
diff --git a/desktop/Executable_minidump_upload.mk b/desktop/Executable_minidump_upload.mk index 2c0202371a63..959d4af8c7c1 100644 --- a/desktop/Executable_minidump_upload.mk +++ b/desktop/Executable_minidump_upload.mk @@ -10,11 +10,12 @@ $(eval $(call gb_Executable_Executable,minidump_upload)) $(eval $(call gb_Executable_use_libraries,minidump_upload,\ + crashreport \ sal \ )) -$(eval $(call gb_Executable_use_static_libraries,minidump_upload,\ - minidump \ +$(eval $(call gb_Executable_add_defs,minidump_upload,\ + -DUNICODE \ )) $(eval $(call gb_Executable_use_external,minidump_upload,curl)) diff --git a/desktop/Library_crashreport.mk b/desktop/Library_crashreport.mk index 5b14519dd6f3..ba2f3483a416 100644 --- a/desktop/Library_crashreport.mk +++ b/desktop/Library_crashreport.mk @@ -14,7 +14,10 @@ $(eval $(call gb_Library_set_include,crashreport,\ -I$(SRCDIR)/desktop/inc \ )) -$(eval $(call gb_Library_use_external,crashreport,breakpad)) +$(eval $(call gb_Library_use_externals,crashreport,\ + breakpad \ +curl \ +)) $(eval $(call gb_Library_add_defs,crashreport,\ -DCRASHREPORT_DLLIMPLEMENTATION \ @@ -38,6 +41,7 @@ $(eval $(call gb_Library_use_libraries,crashreport,\ $(eval $(call gb_Library_add_exception_objects,crashreport,\ desktop/source/app/crashreport \ + desktop/source/minidump/minidump \ )) diff --git a/desktop/Module_desktop.mk b/desktop/Module_desktop.mk index 22d3647c1386..e52c1b53d612 100644 --- a/desktop/Module_desktop.mk +++ b/desktop/Module_desktop.mk @@ -19,7 +19,7 @@ $(eval $(call gb_Module_add_targets,desktop,\ Library_sofficeapp \ $(if $(ENABLE_BREAKPAD), \ Library_crashreport \ - StaticLibrary_minidump) \ + ) \ $(if $(ENABLE_HEADLESS),,Library_spl) \ Package_branding \ $(if $(CUSTOM_BRAND_DIR),Package_branding_custom) \ diff --git a/desktop/source/minidump/minidump.cxx b/desktop/source/minidump/minidump.cxx index 0075ca9d2b1f..466169536f54 100644 --- a/desktop/source/minidump/minidump.cxx +++ b/desktop/source/minidump/minidump.cxx @@ -14,6 +14,7 @@ #include <iostream> #include <fstream> #include <sstream> +#include <string> #include <curl/curl.h> @@ -183,6 +184,8 @@ bool uploadContent(std::map<std::string, std::string>& parameters, std::string& return true; } +namespace crashreport { + bool readConfig(const std::string& iniPath, std::string& response) { std::ifstream file(iniPath); @@ -204,4 +207,6 @@ bool readConfig(const std::string& iniPath, std::string& response) return uploadContent(parameters, response); } +} + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ diff --git a/desktop/source/minidump/minidump_upload.cxx b/desktop/source/minidump/minidump_upload.cxx index 934f1add7268..ded2f1df0a43 100644 --- a/desktop/source/minidump/minidump_upload.cxx +++ b/desktop/source/minidump/minidump_upload.cxx @@ -10,6 +10,7 @@ #include <desktop/minidump.hxx> #include <iostream> +#include <string> int main(int argc, char** argv) { @@ -21,7 +22,7 @@ int main(int argc, char** argv) std::string iniPath(argv[1]); std::string response; - if (!readConfig(iniPath, response)) + if (!crashreport::readConfig(iniPath, response)) return EXIT_FAILURE; std::cout << "Response: " << response << std::endl; |