From 000f603a24cab8960fac6907a56dc5f98bf7d61e Mon Sep 17 00:00:00 2001 From: Mike Gabriel Date: Mon, 12 Apr 2021 15:05:51 +0200 Subject: guest-session: Make path to lightdm-guest-session executable adaptable to the lightdm package this greeter is co-installed with. Fixes ArcticaProject/arctica-greeter#15. --- configure.ac | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9426e75..8b062dd 100644 --- a/configure.ac +++ b/configure.ac @@ -54,6 +54,21 @@ else AC_DEFINE_UNQUOTED([SD_BINARY], ["$SD_BINARY"], [Path to g-s-d]) fi +dnl customize path/name to/of lightdm-guest-session wrapper binary + +#AC_ARG_VAR([GUEST_WRAPPER_BINARY], +# [AC_HELP_STRING([GUEST_WRAPPER_BINARY=@<:@path-to-lightdm-guest-session@:>@], +# [Explicitly set full path to LightDM's lightdm-guest-session wrapper executable @<:@default=${libexecdir}/lightdm/lightdm-guest-session@:>@])] + +AC_ARG_VAR([GUEST_WRAPPER_BINARY], + [Explicitly set full path to LightDM's lightdm-guest-session wrapper executable @<:@default=${libexecdir}/lightdm/lightdm-guest-session@:>@] +) +if test -z "${GUEST_WRAPPER_BINARY}"; then + GUEST_WRAPPER_BINARY="${libexecdir}/lightdm/lightdm-guest-session" +fi +AC_MSG_NOTICE([Using guest wrapper executable: ${GUEST_WRAPPER_BINARY}]) +AC_SUBST(GUEST_WRAPPER_BINARY) + AC_CHECK_PROG(VALGRIND, valgrind, valgrind --trace-children=yes --num-callers=256) AC_SUBST(VALGRIND) -- cgit v1.2.3