1
0
mirror of https://github.com/systemd/systemd.git synced 2025-01-09 01:18:19 +03:00

Add meson option to disable urlify.

Useful for systems that don't use a version of less with hyperlink
support.
This commit is contained in:
James Hilliard 2021-07-11 04:39:33 -06:00 committed by Zbigniew Jędrzejewski-Szmek
parent 95b63c755b
commit e5d86ebed5
3 changed files with 7 additions and 0 deletions

View File

@ -278,6 +278,7 @@ conf.set_quoted('USER_PRESET_DIR', userpresetdir)
conf.set_quoted('VENDOR_KEYRING_PATH', join_paths(rootlibexecdir, 'import-pubring.gpg'))
conf.set('ANSI_OK_COLOR', 'ANSI_' + get_option('ok-color').underscorify().to_upper())
conf.set10('ENABLE_URLIFY', get_option('urlify'))
conf.set10('ENABLE_FEXECVE', get_option('fexecve'))
conf.set10('MEMORY_ACCOUNTING_DEFAULT', memory_accounting_default)
conf.set('STATUS_UNIT_FORMAT_DEFAULT', 'STATUS_UNIT_FORMAT_' + status_unit_format_default.to_upper())

View File

@ -444,6 +444,8 @@ option('ok-color', type : 'combo',
'highlight-cyan', 'highlight-white'],
value : 'green',
description: 'color of the "OK" status message')
option('urlify', type : 'boolean', value : 'true',
description : 'enable pager Hyperlink ANSI sequence support')
option('fexecve', type : 'boolean', value : 'false',
description : 'use fexecve() to spawn children')

View File

@ -19,6 +19,7 @@
#include "util.h"
bool urlify_enabled(void) {
#if ENABLE_URLIFY
static int cached_urlify_enabled = -1;
if (cached_urlify_enabled < 0) {
@ -32,6 +33,9 @@ bool urlify_enabled(void) {
}
return cached_urlify_enabled;
#else
return 0;
#endif
}
int terminal_urlify(const char *url, const char *text, char **ret) {