6caeaf0291
Also add reverse dependency for Weston. Fix build error: make[3]: Entering directory '/home/tetsuya/buildroot/br/output/build/freerdp-b21ff842ef3de5837513042dc30488b12bd9cf9d' In file included from /home/tetsuya/buildroot/br/output/build/freerdp-b21ff842ef3de5837513042dc30488b12bd9cf9d/winpr/include/winpr/winsock.h:24:0, from /home/tetsuya/buildroot/br/output/build/freerdp-b21ff842ef3de5837513042dc30488b12bd9cf9d/winpr/libwinpr/winsock/winsock.c:24: /home/tetsuya/buildroot/br/output/build/freerdp-b21ff842ef3de5837513042dc30488b12bd9cf9d/winpr/include/winpr/wtypes.h:132:1: error: unknown type name ‘wchar_t’ typedef wchar_t UNICODE; Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
44 lines
1.1 KiB
Plaintext
44 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_FREERDP
|
|
bool "freerdp"
|
|
depends on BR2_USE_WCHAR
|
|
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"
|
|
depends on !BR2_USE_WCHAR
|