summaryrefslogtreecommitdiff
path: root/include
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 /include
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 'include')
-rw-r--r--include/desktop/minidump.hxx8
1 files changed, 7 insertions, 1 deletions
diff --git a/include/desktop/minidump.hxx b/include/desktop/minidump.hxx
index bdd91b26dce9..63336cae5595 100644
--- a/include/desktop/minidump.hxx
+++ b/include/desktop/minidump.hxx
@@ -12,7 +12,13 @@
#include <string>
-bool readConfig(const std::string& iniPath, std::string& response);
+#include <desktop/dllapi.h>
+
+namespace crashreport {
+
+CRASHREPORT_DLLPUBLIC bool readConfig(const std::string& iniPath, std::string& response);
+
+}
#endif