|
@@ -16,6 +16,7 @@ config BR2_PACKAGE_RRDTOOL_RRDGRAPH
|
|
|
bool "rrd_graph"
|
|
|
default y
|
|
|
depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz
|
|
|
+ depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # pango -> harfbuzz
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # freetype support from pango
|
|
|
select BR2_PACKAGE_CAIRO
|
|
|
select BR2_PACKAGE_CAIRO_PDF
|
|
@@ -27,8 +28,10 @@ config BR2_PACKAGE_RRDTOOL_RRDGRAPH
|
|
|
This enables the graphing capabilities ('rrdgraph').
|
|
|
Without this it will only act as a database backend.
|
|
|
|
|
|
-comment "rrd_graph support needs a toolchain w/ C++"
|
|
|
- depends on !BR2_INSTALL_LIBSTDCPP
|
|
|
+comment "rrd_graph support needs a toolchain w/ C++, gcc >= 4.8"
|
|
|
+ depends on !BR2_INSTALL_LIBSTDCPP || \
|
|
|
+ !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
|
|
|
+ depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
|
|
|
|
|
endif
|
|
|
|