diff options
author | Ulrich Sibiller <uli42@gmx.de> | 2019-03-01 00:08:43 +0100 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2020-10-17 22:01:46 +0200 |
commit | 1215c36f77032ad4f08e1150d98101478a57cbf7 (patch) | |
tree | 7dac005aeb478348ac3f92f02c1d72c64dfb4a16 | |
parent | 94fcba361060b2e8da9eba395ffc5d4b7978ea47 (diff) | |
download | nx-libs-1215c36f77032ad4f08e1150d98101478a57cbf7.tar.gz nx-libs-1215c36f77032ad4f08e1150d98101478a57cbf7.tar.bz2 nx-libs-1215c36f77032ad4f08e1150d98101478a57cbf7.zip |
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
-rw-r--r-- | nx-X11/lib/configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/nx-X11/lib/configure.ac b/nx-X11/lib/configure.ac index 09204bba6..c616dab57 100644 --- a/nx-X11/lib/configure.ac +++ b/nx-X11/lib/configure.ac @@ -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]) |