summaryrefslogtreecommitdiff
path: root/net/libunpipc/files
diff options
context:
space:
mode:
Diffstat (limited to 'net/libunpipc/files')
-rw-r--r--net/libunpipc/files/patch-aa18
-rw-r--r--net/libunpipc/files/patch-ab13
-rw-r--r--net/libunpipc/files/patch-ac11
-rw-r--r--net/libunpipc/files/patch-ad11
-rw-r--r--net/libunpipc/files/patch-ae38
5 files changed, 91 insertions, 0 deletions
diff --git a/net/libunpipc/files/patch-aa b/net/libunpipc/files/patch-aa
new file mode 100644
index 000000000000..e69a3263797c
--- /dev/null
+++ b/net/libunpipc/files/patch-aa
@@ -0,0 +1,18 @@
+--- Makefile.in.orig Fri Apr 11 18:42:26 1997
++++ Makefile.in Thu Sep 30 10:24:12 1999
+@@ -1,8 +1,13 @@
+ include ./Make.defines
+
++SUBDIRS = lib
++
+ all:
+- @echo "Nothing to make in this directory"
+- @echo "Please read the README file"
++ PWD=`pwd`; \
++ for dir in $(SUBDIRS) ; \
++ do \
++ cd $$PWD/$$dir && $(MAKE) && cd .. ;\
++ done
+
+ clean:
+ rm -f $(CLEANFILES)
diff --git a/net/libunpipc/files/patch-ab b/net/libunpipc/files/patch-ab
new file mode 100644
index 000000000000..f9dacef263a0
--- /dev/null
+++ b/net/libunpipc/files/patch-ab
@@ -0,0 +1,13 @@
+--- configure.orig Tue Sep 28 11:52:17 1999
++++ configure Tue Sep 28 11:52:24 1999
+@@ -2894,10 +2894,6 @@
+ LIB_OBJS="$LIB_OBJS signal.o"
+ LIB_OBJS="$LIB_OBJS signal_intr.o"
+ LIB_OBJS="$LIB_OBJS sleep_us.o"
+-if test $ac_cv_have_siginfo_t_struct = yes ; then
+- LIB_OBJS="$LIB_OBJS signal_rt.o"
+- LIB_OBJS="$LIB_OBJS signal_rt_intr.o"
+-fi
+ if test "$ac_cv_func_snprintf" = no ; then
+ LIB_OBJS="$LIB_OBJS snprintf.o"
+ fi
diff --git a/net/libunpipc/files/patch-ac b/net/libunpipc/files/patch-ac
new file mode 100644
index 000000000000..50453b6f7b72
--- /dev/null
+++ b/net/libunpipc/files/patch-ac
@@ -0,0 +1,11 @@
+--- lib/unpipc.h.orig Wed Aug 5 14:20:32 1998
++++ lib/unpipc.h Thu Sep 30 10:23:56 1999
+@@ -4,7 +4,7 @@
+ #ifndef __unpipc_h
+ #define __unpipc_h
+
+-#include "../config.h" /* configuration options for current OS */
++#include <unpipc_config.h> /* configuration options for current OS */
+ /* "../config.h" is generated by configure */
+
+ /* If anything changes in the following list of #includes, must change
diff --git a/net/libunpipc/files/patch-ad b/net/libunpipc/files/patch-ad
new file mode 100644
index 000000000000..9cbe815a923a
--- /dev/null
+++ b/net/libunpipc/files/patch-ad
@@ -0,0 +1,11 @@
+--- lib/Makefile.orig Thu Sep 30 10:33:02 1999
++++ lib/Makefile Thu Sep 30 10:33:09 1999
+@@ -1,7 +1,7 @@
+ include ../Make.defines
+
+ # Following required by Solaris 2.x for Posix version of sigwait().
+-CFLAGS += -D_POSIX_PTHREAD_SEMANTICS
++CFLAGS += -D_POSIX_PTHREAD_SEMANTICS -I..
+
+ all: ${LIB_OBJS}
+ ar rv ${LIBUNPIPC_NAME} $?
diff --git a/net/libunpipc/files/patch-ae b/net/libunpipc/files/patch-ae
new file mode 100644
index 000000000000..2368fc7b0665
--- /dev/null
+++ b/net/libunpipc/files/patch-ae
@@ -0,0 +1,38 @@
+--- lib/wrappthread.c.orig Thu Sep 30 11:03:00 1999
++++ lib/wrappthread.c Thu Sep 30 11:04:50 1999
+@@ -83,17 +83,6 @@
+ }
+
+ void
+-Pthread_kill(pthread_t tid, int signo)
+-{
+- int n;
+-
+- if ( (n = pthread_kill(tid, signo)) == 0)
+- return;
+- errno = n;
+- err_sys("pthread_kill error");
+-}
+-
+-void
+ Pthread_mutexattr_init(pthread_mutexattr_t *attr)
+ {
+ int n;
+@@ -274,17 +263,6 @@
+ return;
+ errno = n;
+ err_sys("pthread_key_create error");
+-}
+-
+-void
+-Pthread_setcancelstate(int state, int *oldstate)
+-{
+- int n;
+-
+- if ( (n = pthread_setcancelstate(state, oldstate)) == 0)
+- return;
+- errno = n;
+- err_sys("pthread_setcancelstate error");
+ }
+
+ void