meson: Add configuration of listening on tcp, unix and local
bugzilla: https://bugs.kde.org/show_bug.cgi?id=395419 bugzilla: https://bugs.archlinux.org/task/59025 Signed-off-by: Laurent Carlier <lordheavym@gmail.com> Reviewed-by: Aaron Plattner <aplattner@nvidia.com> Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
		
							parent
							
								
									c41d4ff48f
								
							
						
					
					
						commit
						2f39b2a078
					
				|  | @ -153,10 +153,10 @@ conf_data.set('BUSFAULT', conf_data.get('HAVE_SIGACTION')) | |||
| conf_data.set('_XTYPEDEF_POINTER', '1') | ||||
| 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')) | ||||
| # XXX: Configurable? | ||||
| conf_data.set('LISTEN_TCP', '1') | ||||
| conf_data.set('LISTEN_UNIX', '1') | ||||
| conf_data.set('LISTEN_LOCAL', '1') | ||||
| conf_data.set('XTRANS_SEND_FDS', '1') | ||||
| 
 | ||||
| conf_data.set('TCPCONN', '1') | ||||
|  |  | |||
|  | @ -45,6 +45,13 @@ option('vendor_name_short', type: 'string', value: 'X.Org') | |||
| option('vendor_web', type: 'string', value: 'http://wiki.x.org') | ||||
| option('os_vendor', type: 'string', value: '') | ||||
| 
 | ||||
| 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', | ||||
|        description: 'Xorg int10 backend (default: usually x86emu)') | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue