diff options
Diffstat (limited to 'app-text/dvipng/files/dvipng-1.14-wait.patch')
-rw-r--r-- | app-text/dvipng/files/dvipng-1.14-wait.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/app-text/dvipng/files/dvipng-1.14-wait.patch b/app-text/dvipng/files/dvipng-1.14-wait.patch new file mode 100644 index 000000000000..d7f629fb372b --- /dev/null +++ b/app-text/dvipng/files/dvipng-1.14-wait.patch @@ -0,0 +1,18 @@ +Patch by MATSUI Tetsushi to fix compilation issue on OSX + +sys/wait.h seems to be the man-page include for waitpid on Linux, +Solaris and OSX + +https://bugs.gentoo.org/show_bug.cgi?id=369363 + +--- special.c ++++ 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> |