summaryrefslogtreecommitdiffstats
path: root/m4/REQUIRE_PROG.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:46:09 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-17 07:46:09 +0000
commit043aa641ad4373e96fd748deb1e7fab3cb579a07 (patch)
treef8fde8a97ab5db152043f6c01043672114c0a4df /m4/REQUIRE_PROG.m4
parentReleasing progress-linux version 2.1.6-5~progress7.99u1. (diff)
downloadpacemaker-043aa641ad4373e96fd748deb1e7fab3cb579a07.tar.xz
pacemaker-043aa641ad4373e96fd748deb1e7fab3cb579a07.zip
Merging upstream version 2.1.7.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/REQUIRE_PROG.m4')
-rw-r--r--m4/REQUIRE_PROG.m418
1 files changed, 18 insertions, 0 deletions
diff --git a/m4/REQUIRE_PROG.m4 b/m4/REQUIRE_PROG.m4
new file mode 100644
index 0000000..118c07d
--- /dev/null
+++ b/m4/REQUIRE_PROG.m4
@@ -0,0 +1,18 @@
+# REQUIRE_PROG([variable], [prog-to-check-for])
+#
+# Error if a program can't be found on the path
+#
+dnl
+dnl Copyright 2023 the Pacemaker project contributors
+dnl
+dnl The version control history for this file may have further details.
+dnl
+dnl This source code is licensed under the GNU General Public License version 2
+dnl or later (GPLv2+) WITHOUT ANY WARRANTY.
+
+dnl Usage: REQUIRE_PROG([variable], [prog-to-check-for])
+AC_DEFUN([REQUIRE_PROG], [
+ AC_PATH_PROG([$1], [$2])
+ AS_IF([test x"$(eval echo "\${$1}")" != x""], [],
+ [AC_MSG_FAILURE([Could not find required build tool $2])])
+])