svn commit: r366668 - in head/databases/rrdtool: . files
Niclas Zeising
zeising at FreeBSD.org
Sat Aug 30 19:01:17 UTC 2014
Author: zeising
Date: Sat Aug 30 19:01:16 2014
New Revision: 366668
URL: http://svnweb.freebsd.org/changeset/ports/366668
QAT: https://qat.redports.org/buildarchive/r366668/
Log:
Fix runtime on amd64
Sorry for the portrevision churn, forgot this with previous commit.
PR: 192630
Submitted by: Henry Hu <henry.hu.sh at gmail.com>
Added:
head/databases/rrdtool/files/patch-src__rrdupdate.c (contents, props changed)
Modified:
head/databases/rrdtool/Makefile
Modified: head/databases/rrdtool/Makefile
==============================================================================
--- head/databases/rrdtool/Makefile Sat Aug 30 18:55:24 2014 (r366667)
+++ head/databases/rrdtool/Makefile Sat Aug 30 19:01:16 2014 (r366668)
@@ -3,7 +3,7 @@
PORTNAME= rrdtool
PORTVERSION= 1.4.8
-PORTREVISION= 3
+PORTREVISION= 4
CATEGORIES= databases graphics
MASTER_SITES= http://oss.oetiker.ch/rrdtool/pub/
Added: head/databases/rrdtool/files/patch-src__rrdupdate.c
==============================================================================
--- /dev/null 00:00:00 1970 (empty, because file is newly added)
+++ head/databases/rrdtool/files/patch-src__rrdupdate.c Sat Aug 30 19:01:16 2014 (r366668)
@@ -0,0 +1,16 @@
+--- src/rrdupdate.c.orig 2014-08-12 20:19:23.000000000 -0400
++++ src/rrdupdate.c 2014-08-12 20:19:50.000000000 -0400
+@@ -15,7 +15,12 @@
+ #endif
+
+ #include "rrd.h"
+-#include "plbasename.h"
++
++#ifdef HAVE_LIBGEN_H
++# include <libgen.h>
++#else
++# include "plbasename.h"
++#endif
+
+ int main(
+ int argc,
More information about the svn-ports-head
mailing list