57e51169e5
Fixes: http://autobuild.buildroot.net/results/e5d/e5dee5220cbda69e4085cbddc842c7512d500163/ http://autobuild.buildroot.net/results/edf/edf03933caa8dc35cc42bbdd14cd83c1fb952a4f/ http://autobuild.buildroot.net/results/4cf/4cf8b172f7d662aa46d359ed56572afbdccf1d85/ http://autobuild.buildroot.net/results/d39/d3922966e951f929615654e58c36bc05775fa22a/ And many more. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
45 lines
1.2 KiB
Plaintext
45 lines
1.2 KiB
Plaintext
config BR2_PACKAGE_FREERDP
|
|
bool "freerdp"
|
|
depends on BR2_USE_WCHAR
|
|
depends on !BR2_STATIC_LIBS # uses dlfcn.h
|
|
select BR2_PACKAGE_OPENSSL
|
|
select BR2_PACKAGE_ZLIB
|
|
help
|
|
FreeRDP is a free implementation of the Remote Desktop
|
|
Protocol (RDP), released under the Apache license
|
|
|
|
This only installs the freerdp library.
|
|
|
|
http://www.freerdp.com/
|
|
|
|
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.
|
|
|
|
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
|
|
|
|
comment "freerdp needs a toolchain w/ wchar, dynamic library"
|
|
depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS
|