diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:19:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:19:27 +0000 |
commit | e0023883c6d2e6745a19e4b48e186ed156c1fca8 (patch) | |
tree | 1a48b8056ec984385d0d862b683535d04d6ed215 /m4/man-arg-systemdsystemunitdir.m4 | |
parent | Initial commit. (diff) | |
download | man-db-5d0331d786a117e7cc433c16df2c02865e22502e.tar.xz man-db-5d0331d786a117e7cc433c16df2c02865e22502e.zip |
Adding upstream version 2.11.2.upstream/2.11.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/man-arg-systemdsystemunitdir.m4')
-rw-r--r-- | m4/man-arg-systemdsystemunitdir.m4 | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/m4/man-arg-systemdsystemunitdir.m4 b/m4/man-arg-systemdsystemunitdir.m4 new file mode 100644 index 0000000..3321414 --- /dev/null +++ b/m4/man-arg-systemdsystemunitdir.m4 @@ -0,0 +1,24 @@ +# man-arg-systemdsystemunitdir.m4 serial 3 +dnl MAN_ARG_SYSTEMDSYSTEMUNITDIR +dnl Add a --with-systemdsystemunitdir option. + +AC_DEFUN([MAN_ARG_SYSTEMDSYSTEMUNITDIR], +[ +AC_REQUIRE([AC_CANONICAL_HOST]) +AC_ARG_WITH([systemdsystemunitdir], +[AS_HELP_STRING([--with-systemdsystemunitdir=DIR], [Directory for systemd service files (disable with "no")])], + [], [dnl + # The default is not prefix-sensitive, since systemd's prefix is not + # necessarily the same as man-db's. + case $host_os in + linux*) + m4_pushdef([AC_ARG_VAR])dnl No need for precious variable handling. + PKG_CHECK_VAR([with_systemdsystemunitdir], [systemd], [systemdsystemunitdir], + [], [with_systemdsystemunitdir=/lib/systemd/system]) + m4_popdef([AC_ARG_VAR]) + ;; + *) with_systemdsystemunitdir=no ;; + esac]) +AC_SUBST([systemdsystemunitdir], [$with_systemdsystemunitdir]) +AM_CONDITIONAL([INSTALL_SYSTEMD_TIMER], [test "$with_systemdsystemunitdir" != "no"]) +]) |