Config.in 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. config BR2_PACKAGE_RRDTOOL
  2. bool "rrdtool"
  3. depends on BR2_USE_WCHAR # libglib2
  4. depends on BR2_TOOLCHAIN_HAS_THREADS # libglib2
  5. depends on BR2_USE_MMU # libglib2
  6. select BR2_PACKAGE_LIBGLIB2
  7. help
  8. RRDtool is the OpenSource industry standard, high performance
  9. data logging and graphing system for time series data.
  10. http://oss.oetiker.ch/rrdtool/
  11. if BR2_PACKAGE_RRDTOOL
  12. config BR2_PACKAGE_RRDTOOL_RRDGRAPH
  13. bool "rrd_graph"
  14. default y
  15. depends on BR2_TOOLCHAIN_HAS_SYNC_4 # pango -> harfbuzz
  16. depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_8 # pango -> harfbuzz
  17. depends on BR2_INSTALL_LIBSTDCPP # freetype support from pango
  18. select BR2_PACKAGE_CAIRO
  19. select BR2_PACKAGE_CAIRO_PDF
  20. select BR2_PACKAGE_CAIRO_PNG
  21. select BR2_PACKAGE_CAIRO_PS
  22. select BR2_PACKAGE_CAIRO_SVG
  23. select BR2_PACKAGE_PANGO
  24. help
  25. This enables the graphing capabilities ('rrdgraph').
  26. Without this it will only act as a database backend.
  27. comment "rrd_graph support needs a toolchain w/ C++, gcc >= 4.8"
  28. depends on !BR2_INSTALL_LIBSTDCPP || \
  29. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_8
  30. depends on BR2_TOOLCHAIN_HAS_SYNC_4
  31. endif
  32. comment "rrdtool needs a toolchain w/ wchar, threads"
  33. depends on BR2_USE_MMU
  34. depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS