diff options
author | roy <roy@pkgsrc.org> | 2020-03-23 17:15:57 +0000 |
---|---|---|
committer | roy <roy@pkgsrc.org> | 2020-03-23 17:15:57 +0000 |
commit | 2f2bd5217f50a67c0a8a9e3aa880c4a47ac24635 (patch) | |
tree | 4fcfcced3380e9db0efcf2f81787a9ef39a9c80f /www | |
parent | cb4023d7e3705df0a2ac4565829d7df6dd9041db (diff) | |
download | pkgsrc-2f2bd5217f50a67c0a8a9e3aa880c4a47ac24635.tar.gz |
goaccess: Add support for Tokyo Cabinet to persist data
Diffstat (limited to 'www')
-rw-r--r-- | www/goaccess/patches/patch-src_tcbtdb.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/www/goaccess/patches/patch-src_tcbtdb.c b/www/goaccess/patches/patch-src_tcbtdb.c new file mode 100644 index 00000000000..c6472e42362 --- /dev/null +++ b/www/goaccess/patches/patch-src_tcbtdb.c @@ -0,0 +1,14 @@ +$NetBSD: patch-src_tcbtdb.c,v 1.1 2020/03/23 17:15:57 roy Exp $ + +va_list requires stdarg.h + +--- src/tcbtdb.c.orig 2020-03-23 16:42:43.613997461 +0000 ++++ src/tcbtdb.c 2020-03-23 16:43:08.793204575 +0000 +@@ -37,6 +37,7 @@ + #include <tcutil.h> + #include <fcntl.h> + #include <sys/types.h> ++#include <stdarg.h> + #include <unistd.h> + + #include "tcbtdb.h" |