diff options
author | wiz <wiz@pkgsrc.org> | 2013-08-23 11:31:29 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2013-08-23 11:31:29 +0000 |
commit | 8730b4684ac15213192c1dbd476a656288417bfd (patch) | |
tree | 509149d010847326455071201315f1fb024ca787 /sysutils/ncdu/patches | |
parent | 4a4bc9c18aba4c3bbf143201b369805bfffca5b5 (diff) | |
download | pkgsrc-8730b4684ac15213192c1dbd476a656288417bfd.tar.gz |
Import ncdu-1.10 as sysutils/ncdu, packaged for wip by slitvinov.
ncdu (NCurses Disk Usage) is a curses-based version of the well-known
'du', and provides a fast way to see what directories are using
your disk space.
Diffstat (limited to 'sysutils/ncdu/patches')
-rw-r--r-- | sysutils/ncdu/patches/patch-arg | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/sysutils/ncdu/patches/patch-arg b/sysutils/ncdu/patches/patch-arg new file mode 100644 index 00000000000..4156dd31318 --- /dev/null +++ b/sysutils/ncdu/patches/patch-arg @@ -0,0 +1,16 @@ +$NetBSD: patch-arg,v 1.1 2013/08/23 11:31:29 wiz Exp $ + +Fix +src/util.c: In function 'ncprint': +src/util.c:172:3: error: 'va_list' undeclared (first use in this function) + +--- src/util.c.orig 2013-01-18 09:12:16.000000000 +0000 ++++ src/util.c +@@ -28,6 +28,7 @@ + #include <string.h> + #include <stdlib.h> + #include <ncurses.h> ++#include <stdarg.h> + #include <locale.h> + + int winrows, wincols; |