This commit is contained in:
Enrico Weigelt, metux IT consult
2026-01-05 17:16:49 +01:00
parent 3244e38cdd
commit 706310d1c9
3 changed files with 0 additions and 6 deletions

View File

@@ -186,7 +186,6 @@ conf_data.set('_XITYPEDEF_POINTER', '1')
conf_data.set('LISTEN_TCP', get_option('listen_tcp'))
conf_data.set('LISTEN_UNIX', get_option('listen_unix'))
conf_data.set('LISTEN_LOCAL', get_option('listen_local'))
if cc.has_header_symbol('sys/socket.h', 'SCM_RIGHTS')
conf_data.set('XTRANS_SEND_FDS', '1')

View File

@@ -60,8 +60,6 @@ option('listen_tcp', type: 'boolean', value: false,
description: 'Listen on TCP by default')
option('listen_unix', type: 'boolean', value: true,
description: 'Listen on Unix by default')
option('listen_local', type: 'boolean', value: true,
description: 'Listen on local by default')
option('int10', type: 'combo', choices: ['stub', 'x86emu', 'vm86', 'auto', 'false'],
value: 'auto',

View File

@@ -390,9 +390,6 @@ static const char *defaultNoListenList[] = {
#endif
#ifndef LISTEN_UNIX
"unix",
#endif
#ifndef LISTEN_LOCAL
"local",
#endif
NULL
};