diff options
author | sem <sem@FreeBSD.org> | 2006-01-18 17:37:03 +0000 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2006-01-18 17:37:03 +0000 |
commit | 9e83bee55e803a30904a43811b1a46371fcb7461 (patch) | |
tree | eb04ae41e9eace1407410ee78e899b53286e11fd /net-mgmt/cacti/Makefile | |
parent | bbf526ae0673da2313e9c91c7b6aa91598b00a85 (diff) | |
download | FreeBSD-ports-9e83bee55e803a30904a43811b1a46371fcb7461.zip FreeBSD-ports-9e83bee55e803a30904a43811b1a46371fcb7461.tar.gz |
- Add four vendor patches:
1. Device Filter Clear Issue
This patch fixes an issue where attempting to clear a filter
would result in the filter still being active.
2. Invalid SQL When Creating Graphs
This patch fixes an problem where an invalid SQL statement
would be executed when generating graphs.
3. Additional Error Checking for Nth Percentile
This adds more checking concerning rrd fetch returning an empty
set on a non-existant rrd file, resulting in a php warning about
invalid index.
4. MySQL 5.x Strict Mode Compatibility
Allows MySQL 5.x to utilize the default "strict" sql_mode.
As an added benefit, this patch also automatically calculates
the maximum speed of your interface graphs preventing gigabit
interfaces from being overrun.
Reminded by: demon
Diffstat (limited to 'net-mgmt/cacti/Makefile')
-rw-r--r-- | net-mgmt/cacti/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/net-mgmt/cacti/Makefile b/net-mgmt/cacti/Makefile index 8b45ed4..e0b7cf0 100644 --- a/net-mgmt/cacti/Makefile +++ b/net-mgmt/cacti/Makefile @@ -7,7 +7,7 @@ PORTNAME= cacti PORTVERSION= 0.8.6h -PORTREVISION= 0 +PORTREVISION= 4 CATEGORIES= net www MASTER_SITES= http://www.cacti.net/downloads/ @@ -16,7 +16,10 @@ COMMENT= Web-driven graphing interface for RRDTool # Vendor's patches PATCH_SITES= http://www.cacti.net/downloads/patches/${PORTVERSION}/ -PATCHFILES= +PATCHFILES= fix_search_session_clear_issue.patch \ + fix_sql_syntax_related_to_default_rra_id.patch \ + nth_percentile_empty_return_set_issue.patch \ + mysql_5x_strict.patch PATCH_DIST_STRIP=-p1 |