|
@@ -1,9 +1,11 @@
|
|
config BR2_PACKAGE_CRYPTOPP
|
|
config BR2_PACKAGE_CRYPTOPP
|
|
bool "cryptopp"
|
|
bool "cryptopp"
|
|
|
|
+ depends on BR2_INSTALL_LIBSTDCPP
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on !BR2_STATIC_LIBS
|
|
depends on BR2_USE_WCHAR
|
|
depends on BR2_USE_WCHAR
|
|
help
|
|
help
|
|
A free C++ class library of cryptographic schemes
|
|
A free C++ class library of cryptographic schemes
|
|
|
|
|
|
-comment "cryptopp needs a toolchain w/ dynamic library, wchar"
|
|
|
|
- depends on BR2_STATIC_LIBS || !BR2_USE_WCHAR
|
|
|
|
|
|
+comment "cryptopp needs a toolchain w/ C++, dynamic library, wchar"
|
|
|
|
+ depends on !BR2_INSTALL_LIBSTDCPP || BR2_STATIC_LIBS || \
|
|
|
|
+ !BR2_USE_WCHAR
|