summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan-Marek Glogowski <glogow@fbihome.de>2021-03-29 18:59:38 +0200
committerJan-Marek Glogowski <glogow@fbihome.de>2021-04-07 16:18:46 +0000
commitfaccfb6e7d692d5b562e5687034350b1873b426a (patch)
tree41fcfbfa22198e6727ffda4971c190caca0f501f
parente3db843328d13f622a77600bdce4670fe3d25464 (diff)
fix missing libnumbertext config
Change-Id: I248fc476349ba0a03627991b883e1a9e0354988d
-rw-r--r--config_host/config_libnumbertext.h.meson17
-rw-r--r--config_host/meson.build4
2 files changed, 21 insertions, 0 deletions
diff --git a/config_host/config_libnumbertext.h.meson b/config_host/config_libnumbertext.h.meson
new file mode 100644
index 000000000000..897eb3e0c376
--- /dev/null
+++ b/config_host/config_libnumbertext.h.meson
@@ -0,0 +1,17 @@
+/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
+/*
+ * This file is part of the LibreOffice project.
+ *
+ * This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/.
+ */
+
+#ifndef INCLUDED_CONFIG_LIBNUMBERTEXT_H
+#define INCLUDED_CONFIG_LIBNUMBERTEXT_H
+
+#mesondefine ENABLE_LIBNUMBERTEXT
+
+#endif
+
+/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
diff --git a/config_host/meson.build b/config_host/meson.build
index 48aebf52e1a7..538ce2e5ab86 100644
--- a/config_host/meson.build
+++ b/config_host/meson.build
@@ -249,3 +249,7 @@ configure_file(input: 'config_dconf.h.meson',
configure_file(input: 'config_skia.h.meson',
output: 'config_skia.h',
configuration: cdata)
+
+configure_file(input: 'config_libnumbertext.h.meson',
+ output: 'config_libnumbertext.h',
+ configuration: cdata)