diff options
author | adam <adam> | 2011-03-23 10:09:44 +0000 |
---|---|---|
committer | adam <adam> | 2011-03-23 10:09:44 +0000 |
commit | b9e9831a27841c7d767efb0c2b6d6b03e57cf224 (patch) | |
tree | 2e8e56bc9bbee1fb1f4648a4f1be1dd922cae0aa /graphics/dvipng/patches | |
parent | 216508b64b32f0e21b7283ab5df822b196fa3562 (diff) | |
download | pkgsrc-b9e9831a27841c7d767efb0c2b6d6b03e57cf224.tar.gz |
Changes 1.14:
This release changes raw PostScript processing to avoid the
non-rendering PostScript specials created by hyperref. A command-line
switch to turn off raw PostScript rendering has been added. Finally, a
few bugs has been fixed, such as correct decoding of the -T switch, a
CRLF bug when reading configuration files in Windows, and a few bugs
associated to subprocesses.
Diffstat (limited to 'graphics/dvipng/patches')
-rw-r--r-- | graphics/dvipng/patches/patch-special.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/graphics/dvipng/patches/patch-special.c b/graphics/dvipng/patches/patch-special.c new file mode 100644 index 00000000000..6438746924e --- /dev/null +++ b/graphics/dvipng/patches/patch-special.c @@ -0,0 +1,15 @@ +$NetBSD: patch-special.c,v 1.1 2011/03/23 10:09:45 adam Exp $ + +Fix #include + +--- special.c.orig 2011-03-23 09:08:08.000000000 +0000 ++++ special.c +@@ -26,7 +26,7 @@ + + #ifndef MIKTEX + #ifndef WIN32 +-#include <wait.h> ++#include <sys/wait.h> + #else /* WIN32 */ + #include <fcntl.h> + #include <io.h> |