pkgsrc-wip/apvlv/patches/patch-aa
Leonardo Taccari 633e6f7d1d Update to apvlv-0.0.9.2
Changes (from NEWS):

0.0.9
=====

New features
 * Add command bar response when command is failed or command is not valid
 * Add double click action on pdf pages for select a word, a line or a page
   of text
 * Mouse Copy Support: add left drag to select area, and right click to
   popup menu to copy to clipboard
 * Key Copy Support: add select area by pressing 'v' or <C-v> and copy
   area by press 'y'
 * add 'wrapscan' options in $HOME/.apvlvrc


0.0.8
=====

New features
 * add DJVU format document viewing support
 * add poppler-data support in Windows version
 * add :w[rite] filename to save document
 * add zw to fitwidth and zh to fitheight
 * made the scrollbar as a option in $HOME/.apvlvrc

Bug fixes
 * If a pdf file is not entrypted, not ask password when can't open it
 * heightlight correcly after zoom in or zoom out
 * :z[oom] fitwidth or :z[oom] fitheight works
2010-01-24 12:42:23 +00:00

17 lines
393 B
Text

$NetBSD: patch-aa,v 1.2 2010/01/24 12:42:23 leot1990 Exp $
According to wait(2) to use wait4() <sys/resource.h> and <sys/wait.h> should
be included.
--- src/ApvlvUtil.cpp.orig 2010-01-20 05:52:51.000000000 +0100
+++ src/ApvlvUtil.cpp
@@ -30,7 +30,8 @@
#include <stdlib.h>
#ifndef WIN32
-#include <wait.h>
+#include <sys/resource.h>
+#include <sys/wait.h>
#endif
#include <gtk/gtk.h>