pkg://ircii-EPIC-3.004+SrfRoG-1.src.rpm:689475/ircii-EPIC-3.004+SrfRoG.patch
info downloads
diff -urN ircii-EPIC-3.004+SrfRoG-orig/include/irc_std.h ircii-EPIC-3.004+SrfRoG/include/irc_std.h
--- ircii-EPIC-3.004+SrfRoG-orig/include/irc_std.h Thu Jul 4 22:08:42 1996
+++ ircii-EPIC-3.004+SrfRoG/include/irc_std.h Fri Jun 26 20:32:02 1998
@@ -14,6 +14,7 @@
#define __irc_std_h
#include "defs.h"
+#include "sys/param.h"
/* some systems like to define these themselves. blah. */
#undef _
diff -urN ircii-EPIC-3.004+SrfRoG-orig/source/term.c ircii-EPIC-3.004+SrfRoG/source/term.c
--- ircii-EPIC-3.004+SrfRoG-orig/source/term.c Thu May 9 05:50:00 1996
+++ ircii-EPIC-3.004+SrfRoG/source/term.c Fri Jun 26 20:29:06 1998
@@ -123,6 +123,7 @@
#include "window.h"
#include "screen.h"
#include "output.h"
+#include "termbits.h"
#ifndef STTY_ONLY
extern char *tgetstr();
diff -urN ircii-EPIC-3.004+SrfRoG-orig/source/wserv.c ircii-EPIC-3.004+SrfRoG/source/wserv.c
--- ircii-EPIC-3.004+SrfRoG-orig/source/wserv.c Fri Oct 4 04:36:10 1996
+++ ircii-EPIC-3.004+SrfRoG/source/wserv.c Fri Jun 26 20:50:21 1998
@@ -16,6 +16,7 @@
#endif
#include "defs.h"
+#include "sys/un.h"
#ifdef HAVE_SYS_UN_H
@@ -90,9 +91,6 @@
* stuff.. And initalise the term settings for the window.
*/
addr->sun_family = AF_UNIX;
-#ifdef SUN_LEN
- addr->sun_len = strlen(path) + 1;
-#endif
strcpy(addr->sun_path, path);
s = socket(AF_UNIX, SOCK_STREAM, 0);