mirror of
https://github.com/gwenhael-le-moine/sway-patched-tray-menu.git
synced 2024-12-26 21:58:08 +01:00
commit
46dafbf74a
2 changed files with 16 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
|||
#define _POSIX_C_SOURCE 199309L
|
||||
#define _POSIX_C_SOURCE 200112L
|
||||
#include <limits.h>
|
||||
#include <string.h>
|
||||
#include <stdbool.h>
|
||||
|
|
17
meson.build
17
meson.build
|
@ -114,7 +114,13 @@ if scdoc.found()
|
|||
endforeach
|
||||
endif
|
||||
|
||||
add_project_arguments('-DSYSCONFDIR="/@0@"'.format(sysconfdir), language : 'c')
|
||||
# If prefix is '/usr', sysconfdir will be explicitly set to '/etc' by Meson to
|
||||
# enforce FHS compliance, so we should look for configs there as well.
|
||||
if prefix == '/usr'
|
||||
add_project_arguments('-DSYSCONFDIR="/@0@"'.format(sysconfdir), language : 'c')
|
||||
else
|
||||
add_project_arguments('-DSYSCONFDIR="/@0@/@1@"'.format(prefix, sysconfdir), language : 'c')
|
||||
endif
|
||||
|
||||
version = get_option('sway-version')
|
||||
if version != ''
|
||||
|
@ -157,10 +163,17 @@ subdir('swaynag')
|
|||
subdir('swaylock')
|
||||
|
||||
config = configuration_data()
|
||||
config.set('sysconfdir', sysconfdir)
|
||||
config.set('datadir', join_paths(prefix, datadir))
|
||||
config.set('prefix', prefix)
|
||||
|
||||
# If prefix is '/usr', sysconfdir will be explicitly set to '/etc' by Meson to
|
||||
# enforce FHS compliance, so we should look for configs there as well.
|
||||
if prefix == '/usr'
|
||||
config.set('sysconfdir', sysconfdir)
|
||||
else
|
||||
config.set('sysconfdir', join_paths(prefix, sysconfdir))
|
||||
endif
|
||||
|
||||
configure_file(
|
||||
configuration: config,
|
||||
input: 'config.in',
|
||||
|
|
Loading…
Reference in a new issue