diff options
author | bad <bad@pkgsrc.org> | 1998-12-28 23:31:37 +0000 |
---|---|---|
committer | bad <bad@pkgsrc.org> | 1998-12-28 23:31:37 +0000 |
commit | 7b2b9e5d0b94383f815b21ab92ba6a5e5da250d2 (patch) | |
tree | 34ae177d57c3aaf7920926c9eba0d8ba67224e39 /devel/mit-pthreads | |
parent | 2ea13db7c99bbedffe24a31c6f0d37515d8efa7d (diff) | |
download | pkgsrc-7b2b9e5d0b94383f815b21ab92ba6a5e5da250d2.tar.gz |
Need to include string.h.
Diffstat (limited to 'devel/mit-pthreads')
-rw-r--r-- | devel/mit-pthreads/patches/patch-ap | 16 | ||||
-rw-r--r-- | devel/mit-pthreads/patches/patch-aq | 14 | ||||
-rw-r--r-- | devel/mit-pthreads/patches/patch-be | 12 | ||||
-rw-r--r-- | devel/mit-pthreads/patches/patch-bf | 12 |
4 files changed, 47 insertions, 7 deletions
diff --git a/devel/mit-pthreads/patches/patch-ap b/devel/mit-pthreads/patches/patch-ap index b5225c533af..53f7ed27a4b 100644 --- a/devel/mit-pthreads/patches/patch-ap +++ b/devel/mit-pthreads/patches/patch-ap @@ -1,8 +1,16 @@ -$NetBSD: patch-ap,v 1.1 1998/12/28 22:22:00 bad Exp $ +$NetBSD: patch-ap,v 1.2 1998/12/28 23:31:37 bad Exp $ ---- pthreads/fd.c.orig Tue Jan 13 14:28:04 1998 -+++ pthreads/fd.c Sat Oct 24 22:24:28 1998 -@@ -702,7 +702,7 @@ +--- pthreads/fd.c.orig Sun Jul 7 05:58:47 1996 ++++ pthreads/fd.c Tue Dec 29 00:13:33 1998 +@@ -49,6 +49,7 @@ + #include <sys/stat.h> + #include <sys/uio.h> + #include <stdarg.h> ++#include <string.h> + #include <fcntl.h> + #include <errno.h> + #include <pthread/posix.h> +@@ -565,7 +566,7 @@ */ off_t lseek(int fd, off_t offset, int whence) { diff --git a/devel/mit-pthreads/patches/patch-aq b/devel/mit-pthreads/patches/patch-aq index 138a8176499..7c5f1646e2f 100644 --- a/devel/mit-pthreads/patches/patch-aq +++ b/devel/mit-pthreads/patches/patch-aq @@ -1,8 +1,16 @@ -$NetBSD: patch-aq,v 1.1 1998/12/28 22:22:01 bad Exp $ +$NetBSD: patch-aq,v 1.2 1998/12/28 23:31:37 bad Exp $ --- pthreads/fd_kern.c.orig Tue Oct 1 20:26:48 1996 -+++ pthreads/fd_kern.c Sun Dec 27 17:41:24 1998 -@@ -582,6 +582,7 @@ ++++ pthreads/fd_kern.c Tue Dec 29 00:15:02 1998 +@@ -51,6 +51,7 @@ + #include <sys/time.h> + #include <sys/uio.h> + #include <stdarg.h> ++#include <string.h> + #include <signal.h> + #include <fcntl.h> + #include <errno.h> +@@ -582,6 +583,7 @@ off_t __fd_kern_lseek(union fd_data fd_data, int f, off_t offset, int whence) { int fd = fd_data.i; diff --git a/devel/mit-pthreads/patches/patch-be b/devel/mit-pthreads/patches/patch-be new file mode 100644 index 00000000000..5994a81c2f0 --- /dev/null +++ b/devel/mit-pthreads/patches/patch-be @@ -0,0 +1,12 @@ +$NetBSD: patch-be,v 1.1 1998/12/28 23:31:37 bad Exp $ + +--- pthreads/specific.c.orig Sat Dec 10 20:32:15 1994 ++++ pthreads/specific.c Tue Dec 29 00:16:06 1998 +@@ -42,6 +42,7 @@ + #include <errno.h> + #include <pthread.h> + #include <stdlib.h> ++#include <string.h> + + static struct pthread_key key_table[PTHREAD_DATAKEYS_MAX]; + static pthread_mutex_t key_mutex = PTHREAD_MUTEX_INITIALIZER; diff --git a/devel/mit-pthreads/patches/patch-bf b/devel/mit-pthreads/patches/patch-bf new file mode 100644 index 00000000000..2d917ff4926 --- /dev/null +++ b/devel/mit-pthreads/patches/patch-bf @@ -0,0 +1,12 @@ +$NetBSD: patch-bf,v 1.1 1998/12/28 23:31:37 bad Exp $ + +--- tests/test_sock_2.c.orig Tue Dec 29 00:22:23 1998 ++++ tests/test_sock_2.c Tue Dec 29 00:21:53 1998 +@@ -10,6 +10,7 @@ + #include <pthread.h> + #include <errno.h> + #include <stdio.h> ++#include <string.h> + #include <sys/types.h> + #include <sys/socket.h> + #include <netinet/in.h> |