diff options
author | Qiang Yu <[email protected]> | 2018-08-06 11:41:33 +0800 |
---|---|---|
committer | Emil Velikov <[email protected]> | 2018-08-17 17:16:32 +0100 |
commit | 04bdbbcab3c4862bf3f54ce60fcc1d2007776f80 (patch) | |
tree | d078e5edb23a74a3aa5ac0e5ea371103b46ece7e /src/util/meson.build | |
parent | 0da417129e070193091452c8ffdec4df12070bc6 (diff) |
xmlconfig: read more config files from drirc.d/
Driver and application can put their drirc files in
${datadir}/drirc.d/ with name xxx.conf. Config files
will be read and applied in file name alphabetic order.
So there are three places for drirc listed in order:
1. /usr/share/drirc.d/
2. /etc/drirc
3. ~/.drirc
v4:
fix meson build
v3:
1. seperate driParseConfigFiles refine into another patch
2. fix entries[i] mem leak
v2:
drop /etc/drirc.d
Signed-off-by: Qiang Yu <[email protected]>
Acked-by: Michel Dänzer <[email protected]>
Reviewed-by: Emil Velikov <[email protected]>
Diffstat (limited to 'src/util/meson.build')
-rw-r--r-- | src/util/meson.build | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/meson.build b/src/util/meson.build index 51980e9214e..9740dafae30 100644 --- a/src/util/meson.build +++ b/src/util/meson.build @@ -123,6 +123,9 @@ libxmlconfig = static_library( '-DSYSCONFDIR="@0@"'.format( join_paths(get_option('prefix'), get_option('sysconfdir')) ), + '-DDATADIR="@0@"'.format( + join_paths(get_option('prefix'), get_option('datadir')) + ), ], build_by_default : false, ) |