From fb0c97485d90a37ecd870810d2152c7442a9e84c Mon Sep 17 00:00:00 2001 From: Niels De Graef Date: Thu, 30 Apr 2020 19:52:28 +0000 Subject: data: switch gdm.service.in to use cmake format We're going to be switching to meson, and meson doesn't deal too well with an @ in the configuration file that's not part of a substitution variable. This commit switches the gdm service over to use a cmake style of substitution variables, so we can later tell meson to use configure in cmake mode and workaround the @ confusion. --- pam_gdm/meson.build | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 pam_gdm/meson.build (limited to 'pam_gdm') diff --git a/pam_gdm/meson.build b/pam_gdm/meson.build new file mode 100644 index 00000000..f47d8e6a --- /dev/null +++ b/pam_gdm/meson.build @@ -0,0 +1,16 @@ +pam_gdm_deps = [ + libpam_dep, +] + +if keyutils_dep.found() + pam_gdm_deps += keyutils_dep +endif + +pam_gdm = library('pam_gdm', + 'pam_gdm.c', + dependencies: pam_gdm_deps, + include_directories: config_h_dir, + name_prefix: '', + install: true, + install_dir: pam_mod_dir, +) -- cgit v1.2.1