1config BR2_PACKAGE_THRIFT 2 bool "thrift" 3 depends on BR2_INSTALL_LIBSTDCPP 4 depends on BR2_USE_WCHAR 5 depends on BR2_TOOLCHAIN_HAS_THREADS 6 select BR2_PACKAGE_BOOST 7 select BR2_PACKAGE_LIBEVENT 8 select BR2_PACKAGE_OPENSSL 9 select BR2_PACKAGE_ZLIB 10 help 11 The Apache Thrift software framework, for scalable 12 cross-language services development, combines a software 13 stack with a code generation engine to build services that 14 work efficiently and seamlessly between C++, Java, Python, 15 PHP, Ruby, Erlang, Perl, Haskell, C#, Cocoa, JavaScript, 16 Node.js, Smalltalk, OCaml and Delphi and other languages. 17 18 http://thrift.apache.org/ 19 20comment "thrift needs a toolchain w/ C++, wchar, threads" 21 depends on !BR2_USE_WCHAR || \ 22 !BR2_TOOLCHAIN_HAS_THREADS || !BR2_INSTALL_LIBSTDCPP 23