mirror of
https://gitlab.freedesktop.org/xorg/xserver.git
synced 2026-01-03 22:10:11 +01:00
meson: Use and prefer tirpc for Secure RPC authentication
Reviewed-by: Adam Jackson <ajax@redhat.com>
This commit is contained in:
parent
f72587ecc7
commit
514d2c243e
1 changed files with 5 additions and 0 deletions
|
|
@ -54,7 +54,11 @@ if get_option('xdmcp')
|
|||
srcs_os += 'xdmcp.c'
|
||||
endif
|
||||
|
||||
rpc_dep = []
|
||||
if get_option('secure-rpc')
|
||||
# prefer libtirpc (if available), otherwise assume RPC functions are
|
||||
# provided by libc.
|
||||
rpc_dep = dependency('libtirpc', required: false)
|
||||
srcs_os += 'rpcauth.c'
|
||||
endif
|
||||
|
||||
|
|
@ -73,6 +77,7 @@ libxserver_os = static_library('libxserver_os',
|
|||
common_dep,
|
||||
dl_dep,
|
||||
sha1_dep,
|
||||
rpc_dep,
|
||||
dependency('xau')
|
||||
],
|
||||
link_with: libxlibc,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue