summaryrefslogtreecommitdiffstats
path: root/m4/libo_pkg_version.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 16:51:28 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-27 16:51:28 +0000
commit940b4d1848e8c70ab7642901a68594e8016caffc (patch)
treeeb72f344ee6c3d9b80a7ecc079ea79e9fba8676d /m4/libo_pkg_version.m4
parentInitial commit. (diff)
downloadlibreoffice-940b4d1848e8c70ab7642901a68594e8016caffc.tar.xz
libreoffice-940b4d1848e8c70ab7642901a68594e8016caffc.zip
Adding upstream version 1:7.0.4.upstream/1%7.0.4upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r--m4/libo_pkg_version.m448
1 files changed, 48 insertions, 0 deletions
diff --git a/m4/libo_pkg_version.m4 b/m4/libo_pkg_version.m4
new file mode 100644
index 000000000..c004b92b2
--- /dev/null
+++ b/m4/libo_pkg_version.m4
@@ -0,0 +1,48 @@
+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/.
+#
+
+m4_define([_libo_define_pkg_version], [
+ save_IFS="$IFS"
+ IFS=.
+ echo "$ver" | while read major minor micro; do
+ AC_DEFINE_UNQUOTED([$1_VERSION_MAJOR], [$major])
+ AC_DEFINE_UNQUOTED([$1_VERSION_MINOR], [$minor])
+ AC_DEFINE_UNQUOTED([$1_VERSION_MICRO], [$micro])
+ done
+ IFS="$save_IFS"
+])
+
+m4_define([_libo_define_pkg_version_direct], [
+ AC_DEFINE([$1_VERSION_MAJOR], [$2])
+ AC_DEFINE([$1_VERSION_MINOR], [$3])
+ AC_DEFINE([$1_VERSION_MICRO], [$4])
+])
+
+# libo_PKG_VERSION(VARIABLE-STEM, MODULE, BUNDLED-VERSION)
+AC_DEFUN([libo_PKG_VERSION], [
+ AS_IF([test -n "$SYSTEM_$1"], [
+ AC_REQUIRE([PKG_PROG_PKG_CONFIG])
+ AC_MSG_CHECKING([for $1 version])
+ AS_IF([test -n "$PKG_CONFIG"], [
+ ver=`$PKG_CONFIG --modversion "$2"`
+ AS_IF([test -n "$ver"], [
+ AC_MSG_RESULT([$ver])
+ _libo_define_pkg_version([$1], [$ver])
+ ], [
+ AC_MSG_ERROR([not found])
+ ])
+ ], [
+ AC_MSG_ERROR([not found])
+ ])
+ ], [
+ _libo_define_pkg_version_direct([$1], m4_translit([$3], [.], [,]))
+ ])
+])
+
+dnl vim:set shiftwidth=4 softtabstop=4 expandtab: