summaryrefslogtreecommitdiff
path: root/os
diff options
context:
space:
mode:
authorJon Turney <jon.turney@dronecode.org.uk>2019-04-18 17:06:41 +0100
committerAdam Jackson <ajax@nwnk.net>2019-05-02 15:42:58 +0000
commit655b1eb32e3f7f9ba587e878a691fbc9195e81f5 (patch)
tree389bf0570c2225b5b312170abebb05573f068e72 /os
parente5f4c7c80b3f15b1941c530e58fbded0fd06a97e (diff)
downloadxserver-655b1eb32e3f7f9ba587e878a691fbc9195e81f5.tar.gz
meson: Convert xquartz from autotools
Differences from autotools: * Autotools defined NO_ALLOCA for OSX builds. I don't think we need this anymore as Xalloc.h is no longer used anywhere in the xserver. * X11.bin is linked with -u,miDCInitialize, and then libserver_mi provided to satisfy (just) that. It's been that way since the commit which added it. We can't write the equivalent in meson due to linker argument ordering issues, but do we really need to? * An explicit -Dsecure-rpc=false is required for OSX, since in meson we don't do the checks that XTRANS_SECURE_RPC_FLAGS did for the existence of the specific RPC functions required.
Diffstat (limited to 'os')
-rw-r--r--os/meson.build2
1 files changed, 1 insertions, 1 deletions
diff --git a/os/meson.build b/os/meson.build
index f6313807a..39440a7c3 100644
--- a/os/meson.build
+++ b/os/meson.build
@@ -62,7 +62,7 @@ if get_option('secure-rpc')
if not (rpc_dep.found() or cc.has_header('rpc/rpc.h'))
error('secure-rpc requested, but neither libtirpc or libc RPC support were found')
endif
-
+ # XXX: also check if RPC library provides xdr_opaque_auth, authdes_(sec)create ???
srcs_os += 'rpcauth.c'
endif