2012-06-05 13:19:53 +02:00
|
|
|
config BR2_PACKAGE_FREERDP
|
|
|
|
bool "freerdp"
|
2015-02-23 07:17:52 +01:00
|
|
|
depends on BR2_USE_WCHAR
|
2015-03-10 22:14:08 +01:00
|
|
|
depends on !BR2_STATIC_LIBS # uses dlfcn.h
|
2015-04-04 14:23:53 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
2012-06-05 13:19:53 +02:00
|
|
|
select BR2_PACKAGE_OPENSSL
|
|
|
|
select BR2_PACKAGE_ZLIB
|
2015-05-20 00:35:33 +02:00
|
|
|
select BR2_PACKAGE_GST_PLUGINS_BASE if BR2_PACKAGE_GSTREAMER
|
|
|
|
select BR2_PACKAGE_GST_PLUGINS_BASE_PLUGIN_APP if BR2_PACKAGE_GSTREAMER
|
2012-06-05 13:19:53 +02:00
|
|
|
help
|
|
|
|
FreeRDP is a free implementation of the Remote Desktop
|
|
|
|
Protocol (RDP), released under the Apache license
|
|
|
|
|
2015-02-21 23:36:21 +01:00
|
|
|
This only installs the freerdp library.
|
|
|
|
|
2012-06-05 13:19:53 +02:00
|
|
|
http://www.freerdp.com/
|
2015-02-21 23:36:21 +01:00
|
|
|
|
2015-02-22 18:45:50 +01:00
|
|
|
Note: this also installs a key and certificate in
|
|
|
|
/etc/freerdp/keys/ . These are publicly-known, as they
|
|
|
|
are present in FreeRDP's source tree. It is strongly
|
|
|
|
suggested that you overwrite them with your own set,
|
|
|
|
either in an overlay rootfs or in a post-build script.
|
|
|
|
|
2015-02-21 23:36:21 +01:00
|
|
|
if BR2_PACKAGE_FREERDP
|
|
|
|
|
|
|
|
config BR2_PACKAGE_FREERDP_SERVER
|
|
|
|
bool "build server"
|
|
|
|
depends on BR2_PACKAGE_XORG7
|
|
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXDAMAGE
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXEXT
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXFIXES
|
|
|
|
|
|
|
|
config BR2_PACKAGE_FREERDP_CLIENT
|
|
|
|
bool "build client"
|
|
|
|
default y
|
|
|
|
depends on BR2_PACKAGE_XORG7
|
|
|
|
select BR2_PACKAGE_XLIB_LIBX11
|
|
|
|
select BR2_PACKAGE_XLIB_LIBXEXT
|
|
|
|
|
|
|
|
comment "freerdp server and client need X.Org"
|
|
|
|
depends on !BR2_PACKAGE_XORG7
|
|
|
|
|
|
|
|
endif
|
2015-02-23 07:17:52 +01:00
|
|
|
|
2015-04-04 14:23:53 +02:00
|
|
|
comment "freerdp needs a toolchain w/ wchar, dynamic library, threads"
|
|
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \
|
|
|
|
|| !BR2_TOOLCHAIN_HAS_THREADS
|