|
@@ -1,6 +1,7 @@
|
|
|
config BR2_PACKAGE_QPDF
|
|
|
bool "qpdf"
|
|
|
depends on BR2_INSTALL_LIBSTDCPP
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_7 # C++11
|
|
|
select BR2_PACKAGE_ZLIB
|
|
|
select BR2_PACKAGE_JPEG
|
|
|
help
|
|
@@ -13,5 +14,6 @@ config BR2_PACKAGE_QPDF
|
|
|
|
|
|
http://qpdf.sourceforge.net/
|
|
|
|
|
|
-comment "qpdf needs a toolchain w/ C++"
|
|
|
- depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
+comment "qpdf needs a toolchain w/ C++, gcc >= 4.7"
|
|
|
+ depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
|
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_4_7
|