Commit 1215c36f authored by Ulrich Sibiller's avatar Ulrich Sibiller Committed by Mike Gabriel

libNX_X11: set XTRANS_SEND_FDS=0

NX does not support passing around FDs for local connections. This will not cause any change in the resulting code as this variable had been unset by default. Fixes ArcticaProject/nx-libs#784
parent 94fcba36
......@@ -81,7 +81,10 @@ NX_XTRANS_SECURE_RPC_FLAGS
# to correct user/group."
#
# -> we want to always fail in that scenario.
AC_DEFINE(FAIL_HARD,1,[Fail if the xtrans socket directory has wrong permissions])
AC_DEFINE(FAIL_HARD,1,[Fail if the xtrans socket directory cannot be chowned/chmod'ed])
# Actually disable all of the FD passing code, NX does not support it.
AC_DEFINE(XTRANS_SEND_FDS,0,[Disable xtrans FD passing code.])
# Check for dlopen
AC_MSG_CHECKING([if run-time linking is supported])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment