mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
This patch generalizes the utmp support, to not only support libutempter, but also ulog (and in the future, even more interfaces). * Rename config option main.utempter to main.utmp-helper * Add meson option -Dutmp-backend=none|libutempter|ulog|auto * Rename meson option -Ddefault-utempter-path to -Dutmp-default-helper-path * utmp is no longer detected at compile time, but at runtime instead. Meson will configure the following pre-processor macros, based on the selected utmp backend: * UTMP_ADD - argument to pass to utmp helper when adding a record (starting foot) * UTMP_DEL - argument to pass to utmp helper when removing a record (exiting foot) * UTMP_DEL_HAVE_ARGUMENT - if defined, UTMP_DEL expects an extra argument ($WAYLAND_DISPLAY) * UTMP_DEFAULT_HELPER_PATH - path to the default utmp helper binary The documentation has been updated to mention which arguments are passed to the helper binary. Closes #1314
28 lines
1.7 KiB
Meson
28 lines
1.7 KiB
Meson
option('docs', type: 'feature',
|
|
description: 'Build and install documentation (man pages, example foot.ini, readme, changelog, license etc).')
|
|
|
|
option('themes', type: 'boolean', value: true,
|
|
description: 'Install themes (predefined color schemes)')
|
|
|
|
option('ime', type: 'boolean', value: true,
|
|
description: 'IME (Input Method Editor) support')
|
|
|
|
option('grapheme-clustering', type: 'feature',
|
|
description: 'Enables grapheme clustering using libutf8proc. Requires fcft with harfbuzz support to be useful.')
|
|
|
|
option('tests', type: 'boolean', value: true, description: 'Build tests')
|
|
|
|
option('terminfo', type: 'feature', value: 'enabled', description: 'Build and install foot\'s terminfo files.')
|
|
option('default-terminfo', type: 'string', value: 'foot',
|
|
description: 'Default value of the "term" option in foot.ini.')
|
|
|
|
option('custom-terminfo-install-location', type: 'string', value: '',
|
|
description: 'Path to foot\'s terminfo, relative to ${prefix}. If set, foot will set $TERMINFO to this value in the client process.')
|
|
|
|
option('systemd-units-dir', type: 'string', value: '',
|
|
description: 'Where to install the systemd service files (absolute path). Default: ${systemduserunitdir}')
|
|
|
|
option('utmp-backend', type: 'combo', value: 'auto', choices: ['none', 'libutempter', 'ulog', 'auto'],
|
|
description: 'Which utmp logging backend to use. This affects how (with what arguments) the utmp helper binary (see \utmp-default-helper-path\')is called. Default: auto (linux=libutempter, freebsd=ulog, others=none)')
|
|
option('utmp-default-helper-path', type: 'string', value: 'auto',
|
|
description: 'Default path to the utmp helper binary. Default: auto-detect')
|