aboutsummaryrefslogtreecommitdiffstats
path: root/databases
diff options
context:
space:
mode:
authorwen <wen@FreeBSD.org>2009-10-31 13:16:29 +0800
committerwen <wen@FreeBSD.org>2009-10-31 13:16:29 +0800
commitda3dd3995e6c02cbcc4880ff14ec59e5894130df (patch)
treea4f74423d1389c62ec545e6352e486daf8a8495f /databases
parentb4a74a79bd6ee8b86440d1bcc72acc39825190fb (diff)
downloadfreebsd-ports-gnome-da3dd3995e6c02cbcc4880ff14ec59e5894130df.tar.gz
freebsd-ports-gnome-da3dd3995e6c02cbcc4880ff14ec59e5894130df.tar.zst
freebsd-ports-gnome-da3dd3995e6c02cbcc4880ff14ec59e5894130df.zip
- Remove the unneeded patch.
Approved by: miwi,jadawin(mentors,implicit)
Diffstat (limited to 'databases')
-rw-r--r--databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c b/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c
deleted file mode 100644
index 358957220aaf..000000000000
--- a/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c
+++ /dev/null
@@ -1,17 +0,0 @@
---- src/_rrdtoolmodule.c.orig Tue May 10 15:02:49 2005
-+++ src/_rrdtoolmodule.c Tue May 10 15:06:59 2005
-@@ -232,11 +232,13 @@
- PyObject *r;
- char **argv, **calcpr;
- int argc, xsize, ysize, i;
-+ double ymin, ymax;
-
- if (create_args("graph", args, &argc, &argv) < 0)
- return NULL;
-
-- if (rrd_graph(argc, argv, &calcpr, &xsize, &ysize) == -1) {
-+ if (rrd_graph(argc, argv, &calcpr, &xsize, &ysize, NULL,
-+ &ymin, &ymax) == -1) {
- PyErr_SetString(ErrorObject, rrd_get_error());
- rrd_clear_error();
- r = NULL;