mirror of
https://gitlab.gnome.org/GNOME/calls.git
synced 2024-11-12 19:41:18 +00:00
bf6d4c22f4
This adds a systemd unit file for running the Calls daemon, and adds a key to the xdg autostart file to instruct gnome-session to ignore starting when systemd is present. The expectation is that systemd distros will enable the Calls daemon as a user service and not rely on xdg autostart / gnome-session for running/managing the service. Systemd is better at managing services than gnome-session. Note: it's important to keep the xdg-autostart file around, some distros (pmOS on openrc, others) don't use systemd and will still need to rely on the xdg autostart mechanism for starting the Calls daemon. Co-authored-by: Guido Günther <agx@sigxcpu.org>
19 lines
588 B
Meson
19 lines
588 B
Meson
option('gtk_doc',
|
|
type: 'boolean', value: false,
|
|
description: 'Whether to generate the API reference for Calls')
|
|
|
|
option('tests',
|
|
type: 'boolean', value: true,
|
|
description: 'Whether to compile unit tests')
|
|
|
|
option('manpages',
|
|
type: 'boolean', value: true,
|
|
description: 'Whether to generate man pages')
|
|
|
|
option('gst_debug',
|
|
type: 'boolean', value: true,
|
|
description: 'Whether to use gstreamers debugging API')
|
|
|
|
option('systemd_user_unit_dir',
|
|
type: 'string', value: '',
|
|
description: 'Directory for systemd user units')
|