summaryrefslogtreecommitdiff
path: root/config_host
diff options
context:
space:
mode:
authorLuboš Luňák <l.lunak@collabora.com>2022-04-28 18:17:12 +0200
committerLuboš Luňák <l.lunak@collabora.com>2022-04-29 06:55:04 +0200
commit2e33af67e04da39116a1dc9fda96d961ae0a4bd5 (patch)
tree9ea840a863d03e8a31f973c7a65bd0c5d85ddaa6 /config_host
parent83d0f2eebae41d431d9a5bfd1a918523977752d0 (diff)
move HAVE_EXPORT_VALIDATION from config_features.h
So that so much stuff doesn't get rebuilt on --with-java change. Change-Id: I87388590a4fd218fd22e68ba0edd290831f6f0fb Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133570 Tested-by: Jenkins Reviewed-by: Luboš Luňák <l.lunak@collabora.com>
Diffstat (limited to 'config_host')
-rw-r--r--config_host/config_features.h.in13
-rw-r--r--config_host/config_validation.h.in14
2 files changed, 14 insertions, 13 deletions
diff --git a/config_host/config_features.h.in b/config_host/config_features.h.in
index de3e9d58f7d2..867258e262db 100644
--- a/config_host/config_features.h.in
+++ b/config_host/config_features.h.in
@@ -77,19 +77,6 @@
#define HAVE_FEATURE_READONLY_INSTALLSET 0
/*
- * Whether to use validation on files.
- */
-#define HAVE_EXPORT_VALIDATION 0
-
-/*
- * Whether to use export validation of binary formats (doc, xls, ppt)
- *
- * Requires installed Microsoft Office Binary File Format Validator
- * https://www.microsoft.com/en-us/download/details.aspx?id=26794
- */
-#define HAVE_BFFVALIDATOR 0
-
-/*
* Whether we support breakpad as crash reporting lib.
*/
#define HAVE_FEATURE_BREAKPAD 0
diff --git a/config_host/config_validation.h.in b/config_host/config_validation.h.in
new file mode 100644
index 000000000000..892dd1262c90
--- /dev/null
+++ b/config_host/config_validation.h.in
@@ -0,0 +1,14 @@
+#pragma once
+
+/*
+ * Whether to use validation on files.
+ */
+#define HAVE_EXPORT_VALIDATION 0
+
+/*
+ * Whether to use export validation of binary formats (doc, xls, ppt)
+ *
+ * Requires installed Microsoft Office Binary File Format Validator
+ * https://www.microsoft.com/en-us/download/details.aspx?id=26794
+ */
+#define HAVE_BFFVALIDATOR 0