summaryrefslogtreecommitdiff
path: root/mbone/sdr/patches
diff options
context:
space:
mode:
authoris <is>1997-11-18 17:05:15 +0000
committeris <is>1997-11-18 17:05:15 +0000
commit9016e35e6cc9c47cb39fdc3696410f93fa4278e0 (patch)
treeb12c0274b3b4a438691755cbf3d35d5363a2803d /mbone/sdr/patches
parent858e42e6be1025065c915dac1446b7a5d4010334 (diff)
downloadpkgsrc-9016e35e6cc9c47cb39fdc3696410f93fa4278e0.tar.gz
Initial MBONE tools directory, bootstrapped from FreeBSD ports collection,
sdr only.
Diffstat (limited to 'mbone/sdr/patches')
-rw-r--r--mbone/sdr/patches/patch-aa12
-rw-r--r--mbone/sdr/patches/patch-ab11
-rw-r--r--mbone/sdr/patches/patch-ac40
-rw-r--r--mbone/sdr/patches/patch-ad19
-rw-r--r--mbone/sdr/patches/patch-ae19
5 files changed, 101 insertions, 0 deletions
diff --git a/mbone/sdr/patches/patch-aa b/mbone/sdr/patches/patch-aa
new file mode 100644
index 00000000000..b972507313e
--- /dev/null
+++ b/mbone/sdr/patches/patch-aa
@@ -0,0 +1,12 @@
+*** src/sdr.h.orig Thu Sep 5 14:28:29 1996
+--- src/sdr.h Thu Sep 5 14:28:35 1996
+***************
+*** 21,27 ****
+ #endif
+ #include <tcl.h>
+ #include <tk.h>
+- #include <malloc.h>
+ #include <string.h>
+ #include <fcntl.h>
+ #include <errno.h>
+--- 21,26 ----
diff --git a/mbone/sdr/patches/patch-ab b/mbone/sdr/patches/patch-ab
new file mode 100644
index 00000000000..270999c42e0
--- /dev/null
+++ b/mbone/sdr/patches/patch-ab
@@ -0,0 +1,11 @@
+--- src/qfdes/qfDES-memory.c.orig Thu Oct 31 14:39:50 1996
++++ src/qfdes/qfDES-memory.c Thu Oct 31 14:41:52 1996
+@@ -12,7 +12,7 @@
+
+ #include <stdio.h>
+ #include <memory.h>
+-#include <malloc.h>
++#include <stdlib.h>
+ #include <ctype.h>
+ #include "qfDES.h"
+
diff --git a/mbone/sdr/patches/patch-ac b/mbone/sdr/patches/patch-ac
new file mode 100644
index 00000000000..3d7ce87d727
--- /dev/null
+++ b/mbone/sdr/patches/patch-ac
@@ -0,0 +1,40 @@
+--- src/sdr.h.orig Wed May 21 22:06:02 1997
++++ src/sdr.h Wed May 21 22:10:05 1997
+@@ -8,9 +8,6 @@
+ #include <winsock.h>
+ #else
+ #include <sys/socket.h>
+-#include <netinet/in.h>
+-#include <arpa/inet.h>
+-#include <net/if.h>
+ #include <sys/ioctl.h>
+ #include <netdb.h>
+ #include <pwd.h>
+@@ -18,6 +15,9 @@
+ #include <sys/types.h>
+ #include <sys/stat.h>
+ #include <ctype.h>
++#include <netinet/in.h>
++#include <net/if.h>
++#include <arpa/inet.h>
+ #include <arpa/nameser.h>
+ #include <resolv.h>
+ #ifdef AIX41
+@@ -146,10 +146,17 @@
+ };
+
+ struct sap_header {
++#if BYTE_ORDER == BIG_ENDIAN
+ u_int version:3;
+ u_int type:3;
+ u_int enc:1;
+ u_int compress:1;
++#else
++ u_int compress:1;
++ u_int enc:1;
++ u_int type:3;
++ u_int version:3;
++#endif
+ u_int authlen:8;
+ u_int msgid:16;
+ u_int src;
diff --git a/mbone/sdr/patches/patch-ad b/mbone/sdr/patches/patch-ad
new file mode 100644
index 00000000000..968741876fe
--- /dev/null
+++ b/mbone/sdr/patches/patch-ad
@@ -0,0 +1,19 @@
+*** src/Makefile.template.orig Sat Nov 23 16:41:26 1996
+--- src/Makefile.template Sat Nov 23 16:41:35 1996
+***************
+*** 97,103 ****
+ $(SDR_UI_FILES): tcl2c
+
+ parsed_plugins.tcl: ../src/plugin2tcl.tcl
+! tclsh7.5 ../src/plugin2tcl.tcl
+
+ libs.tcl: $(TK_LIBRARY_FILES)
+ cat $(TK_LIBRARY_FILES) | sed '/^[ ]*source[ ]/d' > libs.tcl
+--- 97,103 ----
+ $(SDR_UI_FILES): tcl2c
+
+ parsed_plugins.tcl: ../src/plugin2tcl.tcl
+! tclsh8.0 ../src/plugin2tcl.tcl
+
+ libs.tcl: $(TK_LIBRARY_FILES)
+ cat $(TK_LIBRARY_FILES) | sed '/^[ ]*source[ ]/d' > libs.tcl
diff --git a/mbone/sdr/patches/patch-ae b/mbone/sdr/patches/patch-ae
new file mode 100644
index 00000000000..06004bd9c47
--- /dev/null
+++ b/mbone/sdr/patches/patch-ae
@@ -0,0 +1,19 @@
+--- src/iohandler.c.orig Tue Oct 29 06:52:25 1996
++++ src/iohandler.c Tue Sep 9 15:36:34 1997
+@@ -131,7 +131,7 @@
+ }
+ sockproc[fd] = callback;
+ #else
+- Tcl_CreateFileHandler(Tcl_GetFile((ClientData)fd, TCL_UNIX_FD),
++ Tcl_CreateFileHandler(fd,
+ mask, callback, (ClientData)fd);
+ #endif
+ }
+@@ -144,6 +144,6 @@
+ (void) WSAAsyncSelect(fd, sockwin, 0, 0);
+ }
+ #else
+- Tcl_DeleteFileHandler(Tcl_GetFile((ClientData)fd, TCL_UNIX_FD));
++ Tcl_DeleteFileHandler(fd);
+ #endif
+ }