2018-04-20 00:25:51 +00:00
|
|
|
sysconfdir = get_option('sysconfdir')
|
|
|
|
|
2018-09-28 10:18:54 +00:00
|
|
|
dependencies = [
|
|
|
|
cairo,
|
|
|
|
client_protos,
|
|
|
|
gdk_pixbuf,
|
|
|
|
math,
|
|
|
|
pango,
|
|
|
|
pangocairo,
|
|
|
|
xkbcommon,
|
|
|
|
wayland_client,
|
|
|
|
wlroots,
|
|
|
|
]
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
'main.c',
|
|
|
|
'password.c',
|
|
|
|
'render.c',
|
|
|
|
'seat.c'
|
|
|
|
]
|
|
|
|
|
|
|
|
if libpam.found()
|
|
|
|
sources += ['pam.c']
|
|
|
|
dependencies += [libpam]
|
|
|
|
else
|
|
|
|
warning('The swaylock binary must be setuid when compiled without libpam')
|
|
|
|
warning('You must do this manually post-install: chmod a+s /path/to/swaylock')
|
|
|
|
sources += ['shadow.c']
|
2018-10-06 16:17:36 +00:00
|
|
|
if crypt.found()
|
|
|
|
dependencies += [crypt]
|
|
|
|
endif
|
2018-09-28 10:18:54 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
executable('swaylock',
|
|
|
|
sources,
|
2018-04-03 02:48:13 +00:00
|
|
|
include_directories: [sway_inc],
|
2018-09-28 10:18:54 +00:00
|
|
|
dependencies: dependencies,
|
2018-04-03 02:48:13 +00:00
|
|
|
link_with: [lib_sway_common, lib_sway_client],
|
2018-09-30 12:11:24 +00:00
|
|
|
install_rpath : rpathdir,
|
2018-04-03 02:48:13 +00:00
|
|
|
install: true
|
|
|
|
)
|
2018-04-20 00:25:51 +00:00
|
|
|
|
2018-08-30 07:58:57 +00:00
|
|
|
if is_freebsd
|
|
|
|
install_data(
|
|
|
|
'pam/swaylock.freebsd',
|
|
|
|
install_dir: sysconfdir + '/pam.d/',
|
|
|
|
rename: 'swaylock'
|
|
|
|
)
|
|
|
|
else
|
|
|
|
install_data(
|
|
|
|
'pam/swaylock.linux',
|
|
|
|
install_dir: sysconfdir + '/pam.d/',
|
|
|
|
rename: 'swaylock'
|
|
|
|
)
|
|
|
|
endif
|