diff options
author | ohauer <ohauer@FreeBSD.org> | 2014-03-17 05:23:06 +0800 |
---|---|---|
committer | ohauer <ohauer@FreeBSD.org> | 2014-03-17 05:23:06 +0800 |
commit | 8f6699f5c9d582452dc06269bb65bea8e8e4838f (patch) | |
tree | 6f99120e7ab1e30343f68ac56850eb29707bd2e9 /net-mgmt | |
parent | b094dac6dfdcc3721c3c74dd3d6e30afcb269bb2 (diff) | |
download | freebsd-ports-gnome-8f6699f5c9d582452dc06269bb65bea8e8e4838f.tar.gz freebsd-ports-gnome-8f6699f5c9d582452dc06269bb65bea8e8e4838f.tar.zst freebsd-ports-gnome-8f6699f5c9d582452dc06269bb65bea8e8e4838f.zip |
- fix build on FreeBSD 10
- bump PORTREVISION
PR: ports/187433
Submitted by: Daniel Siechniewicz <daniel@nulldowntime.com>
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/mk-livestatus/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/mk-livestatus/files/patch-src__LogCache.cc | 13 |
2 files changed, 14 insertions, 0 deletions
diff --git a/net-mgmt/mk-livestatus/Makefile b/net-mgmt/mk-livestatus/Makefile index 60e8154b2448..af312e505953 100644 --- a/net-mgmt/mk-livestatus/Makefile +++ b/net-mgmt/mk-livestatus/Makefile @@ -3,6 +3,7 @@ PORTNAME= mk-livestatus PORTVERSION= 1.2.4 +PORTREVISION= 1 CATEGORIES= net-mgmt MASTER_SITES= http://mathias-kettner.de/download/ \ LOCAL/ohauer diff --git a/net-mgmt/mk-livestatus/files/patch-src__LogCache.cc b/net-mgmt/mk-livestatus/files/patch-src__LogCache.cc new file mode 100644 index 000000000000..94b003d410b0 --- /dev/null +++ b/net-mgmt/mk-livestatus/files/patch-src__LogCache.cc @@ -0,0 +1,13 @@ +PR ports/187433: fix build on FreeBSD 10 +======================================== + +--- ./src/LogCache.cc.orig 2014-03-16 19:32:30.000000000 +0100 ++++ ./src/LogCache.cc 2014-03-16 19:33:20.000000000 +0100 +@@ -25,6 +25,7 @@ + #include <time.h> + #include <sys/types.h> + #include <dirent.h> ++#include <pthread.h> + #include <unistd.h> + #include <stddef.h> + #include <stdarg.h> |