diff options
author | 2015-10-04 13:08:18 +0100 | |
---|---|---|
committer | 2015-10-04 14:16:27 +0200 | |
commit | 0611258aeae3b2e311b1c8fbebd337c9567830fb (patch) | |
tree | c05f3f1ac6949a9db7d144ccf5ab1025e6d61105 | |
parent | 78cd32631e959e04b1a2f18be7b0757e21482438 (diff) | |
download | buildroot-0611258aeae3b2e311b1c8fbebd337c9567830fb.tar.gz buildroot-0611258aeae3b2e311b1c8fbebd337c9567830fb.tar.bz2 |
package/freerdp: needs C++
FreeRDP does not have a single C++ source file, however it insists on
having a C++ compiler. Removing that requirement is a bit too much
involving, so we just depend on it...
Fixes:
http://autobuild.buildroot.org/results/e5b/e5bee760d52e5ee433dcb6c8a7296f99312cfcf4/
Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/freerdp/Config.in | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/package/freerdp/Config.in b/package/freerdp/Config.in index b194515308..f8dbb687eb 100644 --- a/package/freerdp/Config.in +++ b/package/freerdp/Config.in @@ -1,5 +1,9 @@ config BR2_PACKAGE_FREERDP bool "freerdp" + # FreeRDP does not have a single C++ source file, however it + # insists on having a C++ compiler. Removing that requirement + # is a bit too much involving, so we just depend on it... + depends on BR2_INSTALL_LIBSTDCPP depends on BR2_USE_WCHAR depends on !BR2_STATIC_LIBS # uses dlfcn.h depends on BR2_TOOLCHAIN_HAS_THREADS @@ -79,6 +83,6 @@ config BR2_PACKAGE_FREERDP_CLIENT_WL endif -comment "freerdp needs a toolchain w/ wchar, dynamic library, threads" +comment "freerdp needs a toolchain w/ wchar, dynamic library, threads, C++" depends on !BR2_USE_WCHAR || BR2_STATIC_LIBS \ - || !BR2_TOOLCHAIN_HAS_THREADS + || !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP |