build: use configuration data for SYSCONFDIR and SWAYLOCK_VERSION
This commit is contained in:
parent
ee8d4ff655
commit
84598b08f2
16
meson.build
16
meson.build
@ -23,15 +23,8 @@ add_project_arguments(
|
|||||||
|
|
||||||
cc = meson.get_compiler('c')
|
cc = meson.get_compiler('c')
|
||||||
|
|
||||||
sysconfdir = get_option('sysconfdir')
|
|
||||||
prefix = get_option('prefix')
|
|
||||||
is_freebsd = host_machine.system().startswith('freebsd')
|
is_freebsd = host_machine.system().startswith('freebsd')
|
||||||
|
|
||||||
add_project_arguments(
|
|
||||||
'-DSYSCONFDIR="/@0@"'.format(join_paths(prefix, sysconfdir)),
|
|
||||||
language : 'c',
|
|
||||||
)
|
|
||||||
|
|
||||||
if is_freebsd
|
if is_freebsd
|
||||||
add_project_arguments('-D_C11_SOURCE', language: 'c')
|
add_project_arguments('-D_C11_SOURCE', language: 'c')
|
||||||
endif
|
endif
|
||||||
@ -51,15 +44,14 @@ git = find_program('git', required: false)
|
|||||||
scdoc = find_program('scdoc', required: get_option('man-pages'))
|
scdoc = find_program('scdoc', required: get_option('man-pages'))
|
||||||
wayland_scanner_prog = find_program(wayland_scanner.get_variable('wayland_scanner'), native: true)
|
wayland_scanner_prog = find_program(wayland_scanner.get_variable('wayland_scanner'), native: true)
|
||||||
|
|
||||||
version = '"@0@"'.format(meson.project_version())
|
version = meson.project_version()
|
||||||
if git.found()
|
if git.found()
|
||||||
git_commit_hash = run_command([git, 'describe', '--always', '--tags'], check: false)
|
git_commit_hash = run_command([git, 'describe', '--always', '--tags'], check: false)
|
||||||
git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: false)
|
git_branch = run_command([git, 'rev-parse', '--abbrev-ref', 'HEAD'], check: false)
|
||||||
if git_commit_hash.returncode() == 0 and git_branch.returncode() == 0
|
if git_commit_hash.returncode() == 0 and git_branch.returncode() == 0
|
||||||
version = '"@0@ (" __DATE__ ", branch \'@1@\')"'.format(git_commit_hash.stdout().strip(), git_branch.stdout().strip())
|
version = '@0@ (" __DATE__ ", branch \'@1@\')'.format(git_commit_hash.stdout().strip(), git_branch.stdout().strip())
|
||||||
endif
|
endif
|
||||||
endif
|
endif
|
||||||
add_project_arguments('-DSWAYLOCK_VERSION=@0@'.format(version), language: 'c')
|
|
||||||
|
|
||||||
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
|
wl_protocol_dir = wayland_protos.get_variable('pkgdatadir')
|
||||||
|
|
||||||
@ -89,6 +81,8 @@ foreach xml : client_protocols
|
|||||||
endforeach
|
endforeach
|
||||||
|
|
||||||
conf_data = configuration_data()
|
conf_data = configuration_data()
|
||||||
|
conf_data.set_quoted('SYSCONFDIR', get_option('prefix') / get_option('sysconfdir'))
|
||||||
|
conf_data.set_quoted('SWAYLOCK_VERSION', version)
|
||||||
conf_data.set10('HAVE_GDK_PIXBUF', gdk_pixbuf.found())
|
conf_data.set10('HAVE_GDK_PIXBUF', gdk_pixbuf.found())
|
||||||
|
|
||||||
subdir('include')
|
subdir('include')
|
||||||
@ -138,7 +132,7 @@ executable('swaylock',
|
|||||||
|
|
||||||
install_data(
|
install_data(
|
||||||
'pam/swaylock',
|
'pam/swaylock',
|
||||||
install_dir: sysconfdir + '/pam.d/'
|
install_dir: get_option('sysconfdir') / 'pam.d'
|
||||||
)
|
)
|
||||||
|
|
||||||
if scdoc.found()
|
if scdoc.found()
|
||||||
|
Loading…
Reference in New Issue
Block a user