|
@@ -1,3 +1,6 @@
|
|
|
+comment "beecrypt needs a toolchain w/ threads"
|
|
|
+ depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+
|
|
|
config BR2_PACKAGE_BEECRYPT
|
|
|
bool "beecrypt"
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS
|
|
@@ -6,5 +9,21 @@ config BR2_PACKAGE_BEECRYPT
|
|
|
|
|
|
http://beecrypt.sf.net
|
|
|
|
|
|
-comment "beecrypt needs a toolchain w/ threads"
|
|
|
- depends on !BR2_TOOLCHAIN_HAS_THREADS
|
|
|
+if BR2_PACKAGE_BEECRYPT
|
|
|
+
|
|
|
+config BR2_PACKAGE_BEECRYPT_CPP
|
|
|
+ bool "C++ support"
|
|
|
+ depends on BR2_INSTALL_LIBSTDCPP
|
|
|
+ depends on BR2_USE_WCHAR # icu
|
|
|
+ depends on !BR2_arc # icu
|
|
|
+ depends on !BR2_BINFMT_FLAT # icu
|
|
|
+ select BR2_PACKAGE_ICU
|
|
|
+ help
|
|
|
+ Enable C++ support. This pulls in the (large) icu package.
|
|
|
+
|
|
|
+comment "C++ support needs a toolchain w/ wchar"
|
|
|
+ depends on !BR2_arc
|
|
|
+ depends on !BR2_BINFMT_FLAT
|
|
|
+ depends on BR2_INSTALL_LIBSTDCPP && !BR2_USE_WCHAR
|
|
|
+
|
|
|
+endif # BR2_PACKAGE_BEECRYPT
|