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