summaryrefslogtreecommitdiffstats
path: root/m4/libo_enable_vclplug.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 09:06:44 +0000
commited5640d8b587fbcfed7dd7967f3de04b37a76f26 (patch)
tree7a5f7c6c9d02226d7471cb3cc8fbbf631b415303 /m4/libo_enable_vclplug.m4
parentInitial commit. (diff)
downloadlibreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.tar.xz
libreoffice-ed5640d8b587fbcfed7dd7967f3de04b37a76f26.zip
Adding upstream version 4:7.4.7.upstream/4%7.4.7upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/libo_enable_vclplug.m4')
-rw-r--r--m4/libo_enable_vclplug.m427
1 files changed, 27 insertions, 0 deletions
diff --git a/m4/libo_enable_vclplug.m4 b/m4/libo_enable_vclplug.m4
new file mode 100644
index 000000000..89b065f8f
--- /dev/null
+++ b/m4/libo_enable_vclplug.m4
@@ -0,0 +1,27 @@
+dnl -*- Mode: Autoconf; tab-width: 4; indent-tabs-mode: nil; fill-column: 102 -*-
+#
+# 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/.
+#
+AC_DEFUN([libo_ENABLE_VCLPLUG],[
+dnl The $1 of enable_var is taken from the libo_ENABLE_VCLPLUG, so concat
+dnl needs extra quoting and enable_var has no "magic" argument.
+m4_pushdef([concat],[$][1][$][2])
+m4_pushdef([enable_var],[concat(ENABLE_,m4_toupper($1))])
+
+enable_var=
+if test "$test_$1" != no -a "$enable_$1" = yes; then
+ enable_var=TRUE
+ AC_DEFINE(enable_var)
+ R="$R $1"
+fi
+AC_SUBST(enable_var)
+
+m4_popdef([enable_var])
+m4_popdef([concat])
+])
+
+dnl vim:set shiftwidth=4 softtabstop=4 expandtab: