summaryrefslogtreecommitdiff
path: root/meson_options.txt
diff options
context:
space:
mode:
authorIñigo Martínez <inigomartinez@gmail.com>2017-10-31 12:35:34 +0100
committerOndrej Holy <oholy@redhat.com>2017-10-31 18:24:59 +0100
commit5e2dff62c1ec332f3f8d7c0c1438835dc66a56b0 (patch)
tree1c84ef818471adb6a9ffab870c38c92400621a71 /meson_options.txt
parentd43a3b9ddb5cb1409613788934b82e23514383f9 (diff)
downloadgvfs-5e2dff62c1ec332f3f8d7c0c1438835dc66a56b0.tar.gz
build: Improve installation on system paths
Instead of being hardcoded, D-Bus, systemd and GIO modules paths can be checked by using the information in their correspondant pkg-config files. This patch uses the information on pkg-config files by default, and also allows the user to provide this information to avoid overwriting system files. https://bugzilla.gnome.org/show_bug.cgi?id=786149
Diffstat (limited to 'meson_options.txt')
-rw-r--r--meson_options.txt6
1 files changed, 4 insertions, 2 deletions
diff --git a/meson_options.txt b/meson_options.txt
index 540535a4..38b62dfb 100644
--- a/meson_options.txt
+++ b/meson_options.txt
@@ -1,5 +1,7 @@
-option('with-dbus-service-dir', type: 'string', value: '', description: 'choose directory for dbus service files [default=PREFIX/share/dbus-1/services]')
-option('with-systemduserunitdir', type: 'string', value: '', description: 'choose directory for systemd user units, or \'no\' to disable [default=PREFIX/lib/systemd/user]')
+option('with-dbus-service-dir', type: 'string', value: '', description: 'custom directory for dbus service files')
+option('with-gio-module-dir', type: 'string', value: '', description: 'custom directory for gio modules')
+option('with-systemduserunitdir', type: 'string', value: '', description: 'custom directory for systemd user units, or \'no\' to disable')
+option('with-tmpfilesdir', type: 'string', value: '', description: 'custom directory for tmpfiles.d config files, or \'no\' to disable')
option('enable-admin', type: 'boolean', value: true, description: 'build with admin backend')
option('enable-afc', type: 'boolean', value: true, description: 'build with afc backend and volume monitor')