diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-06-22 04:42:26 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-06-22 04:42:26 +0000 |
commit | a84ac832b0efdfa55226a92cba5e2a0454b1dd04 (patch) | |
tree | 42548fe04e8821389ac609dc14fa3dd0a05aec97 /sys-apps/man/files | |
parent | Stable on x86 (diff) | |
download | gentoo-2-a84ac832b0efdfa55226a92cba5e2a0454b1dd04.tar.gz gentoo-2-a84ac832b0efdfa55226a92cba5e2a0454b1dd04.tar.bz2 gentoo-2-a84ac832b0efdfa55226a92cba5e2a0454b1dd04.zip |
Version bump.
(Portage version: 2.1.1_pre1-r1)
Diffstat (limited to 'sys-apps/man/files')
-rw-r--r-- | sys-apps/man/files/digest-man-1.6d | 3 | ||||
-rw-r--r-- | sys-apps/man/files/man-1.6d-headers.patch | 57 |
2 files changed, 60 insertions, 0 deletions
diff --git a/sys-apps/man/files/digest-man-1.6d b/sys-apps/man/files/digest-man-1.6d new file mode 100644 index 000000000000..8d7dd63c72eb --- /dev/null +++ b/sys-apps/man/files/digest-man-1.6d @@ -0,0 +1,3 @@ +MD5 36d3f65bcc10f0754a3234e00d92ad6d man-1.6d.tar.gz 270140 +RMD160 2c476a735c211acbb478d604b73a1becb54cb87b man-1.6d.tar.gz 270140 +SHA256 a6d03bdabe16542a5a51471b5d8e7eaa50ad782577c7b31d9c478382097cf4eb man-1.6d.tar.gz 270140 diff --git a/sys-apps/man/files/man-1.6d-headers.patch b/sys-apps/man/files/man-1.6d-headers.patch new file mode 100644 index 000000000000..7c5bf83a5e38 --- /dev/null +++ b/sys-apps/man/files/man-1.6d-headers.patch @@ -0,0 +1,57 @@ +--- src/makemsg.c ++++ src/makemsg.c +@@ -18,6 +18,7 @@ + * makemsg -c input message_catalog + */ + #include <stdio.h> ++#include <stdlib.h> + #include <unistd.h> + #ifdef __QNX__ + #include <unix.h> +--- gencat/gencat.c ++++ gencat/gencat.c +@@ -41,6 +41,7 @@ + */ + + #include <stdio.h> ++#include <stdlib.h> + #include <sys/types.h> + #ifdef SYSV + #include <sys/fcntl.h> +@@ -48,6 +49,10 @@ + #else + #include <strings.h> + #endif ++#ifdef __linux__ ++#include <string.h> ++#include <unistd.h> ++#endif + #include <sys/file.h> + #include <sys/stat.h> + #include "gencat.h" +--- gencat/genlib.c ++++ gencat/genlib.c +@@ -48,9 +48,11 @@ + */ + + #include <stdio.h> ++#include <stdlib.h> + #ifdef SYSV + #include <sys/types.h> + #include <unistd.h> ++#endif + + #ifndef __linux__ + #include <memory.h> +@@ -66,9 +68,10 @@ + { + memset(b, '\0', length); + } ++#else ++#include <string.h> + #endif + +-#endif + #include <sys/file.h> + #include <ctype.h> + #include "msgcat.h" |