Repository: incubator-guacamole-server Updated Branches: refs/heads/master d3fa5e7fb -> 69caa9936
GUACAMOLE-40: Test whether FreeRDP supports RD gateways and/or load balancing. Project: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/commit/af8ef9f5 Tree: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/tree/af8ef9f5 Diff: http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/diff/af8ef9f5 Branch: refs/heads/master Commit: af8ef9f526546acc6682cb8ea591f7dad7f849d8 Parents: 37fe354 Author: Michael Jumper <[email protected]> Authored: Sun Apr 9 23:17:01 2017 -0700 Committer: Michael Jumper <[email protected]> Committed: Sun Apr 9 23:17:01 2017 -0700 ---------------------------------------------------------------------- configure.ac | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-guacamole-server/blob/af8ef9f5/configure.ac ---------------------------------------------------------------------- diff --git a/configure.ac b/configure.ac index c9391ed..a61534a 100644 --- a/configure.ac +++ b/configure.ac @@ -609,6 +609,24 @@ then #include <winpr/collections.h>]) fi +# Support for RDP gateways +if test "x${have_freerdp}" = "xyes" +then + AC_CHECK_MEMBERS([rdpSettings.GatewayEnabled], + [AC_DEFINE([HAVE_FREERDP_GATEWAY_SUPPORT],, + [Whether FreeRDP supports RDP gateways])],, + [[#include <freerdp/freerdp.h>]]) +fi + +# Support for load balancing via connection brokers +if test "x${have_freerdp}" = "xyes" +then + AC_CHECK_MEMBERS([rdpSettings.LoadBalanceInfo], + [AC_DEFINE([HAVE_FREERDP_LOAD_BALANCER_SUPPORT],, + [Whether FreeRDP supports load balancers])],, + [[#include <freerdp/freerdp.h>]]) +fi + # Support for "PubSub" event system if test "x${have_freerdp}" = "xyes" then
