diff options
author | demon <demon@FreeBSD.org> | 2005-05-10 08:45:26 +0000 |
---|---|---|
committer | demon <demon@FreeBSD.org> | 2005-05-10 08:45:26 +0000 |
commit | e9f2bd7b57ba8dfdd753d6b68d635f3d6051264c (patch) | |
tree | 1f249e8ea4c36946dc24359730e5d82f90cd9d84 /net/happystats | |
parent | edc867a0a557d87cc660ff688cd3ed56ad047acd (diff) | |
download | FreeBSD-ports-e9f2bd7b57ba8dfdd753d6b68d635f3d6051264c.zip FreeBSD-ports-e9f2bd7b57ba8dfdd753d6b68d635f3d6051264c.tar.gz |
Fix build with rrdtool 1.2.x.
Diffstat (limited to 'net/happystats')
-rw-r--r-- | net/happystats/files/patch-rrdgraph.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/net/happystats/files/patch-rrdgraph.c b/net/happystats/files/patch-rrdgraph.c new file mode 100644 index 0000000..4a52f9a --- /dev/null +++ b/net/happystats/files/patch-rrdgraph.c @@ -0,0 +1,19 @@ +--- rrdgraph.c.orig Sun Feb 8 20:18:11 2004 ++++ rrdgraph.c Tue May 10 12:44:14 2005 +@@ -13,6 +13,7 @@ + char **calcpr; + int xsize, ysize ; + /* int end ; */ ++ double ymin, ymax; + + short unit_sec ; + +@@ -237,7 +238,7 @@ + /* Create Graph from rrd file and config */ + optind = 0; + rrd_clear_error(); +- rc = rrd_graph(rrdargc,rrdcmd,&calcpr, &xsize, &ysize); ++ rc = rrd_graph(rrdargc,rrdcmd,&calcpr, &xsize, &ysize, NULL, &ymin, &ymax); + + + /* Check for Errors */ |