sam-fans - fans of the sam editor
 help / color / mirror / Atom feed
* 9term fix for sunos 4.1.3
@ 1994-06-02 14:56 Arnold Robbins
  1994-06-02 19:18 ` Scott Schwartz
  1994-06-02 19:21 ` Scott Schwartz
  0 siblings, 2 replies; 3+ messages in thread
From: Arnold Robbins @ 1994-06-02 14:56 UTC (permalink / raw)
  To: sam-fans

This is what I had to do to compile 9term.1.5.1 on SunOS 4.1.3.

Arnold
---------------
; diff -c pty.c.orig pty.c
*** pty.c.orig	Thu Jun  2 01:35:31 1994
--- pty.c	Thu Jun  2 10:41:53 1994
***************
*** 414,420 ****
--- 414,422 ----
  void
  flushstream(void)
  {
+ #ifdef SOLARIS
  	ioctl(comm_fd, I_FLUSH, FLUSHW);
+ #endif
  }
  
  void


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 9term fix for sunos 4.1.3
  1994-06-02 14:56 9term fix for sunos 4.1.3 Arnold Robbins
@ 1994-06-02 19:18 ` Scott Schwartz
  1994-06-02 19:21 ` Scott Schwartz
  1 sibling, 0 replies; 3+ messages in thread
From: Scott Schwartz @ 1994-06-02 19:18 UTC (permalink / raw)
  To: Arnold Robbins; +Cc: sam-fans


| This is what I had to do to compile 9term.1.5.1 on SunOS 4.1.3.

An alternative fix is to 
	#include <stropts.h>
inside the #ifdef SUNOS near the top.

If you link with X11R6, you'll need to compile with -DXLIB_ILLEGAL_ACCESS
since something pokes around inside the display structure, and they 
decided to make it opaque now.


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: 9term fix for sunos 4.1.3
  1994-06-02 14:56 9term fix for sunos 4.1.3 Arnold Robbins
  1994-06-02 19:18 ` Scott Schwartz
@ 1994-06-02 19:21 ` Scott Schwartz
  1 sibling, 0 replies; 3+ messages in thread
From: Scott Schwartz @ 1994-06-02 19:21 UTC (permalink / raw)
  To: sam-fans


Another fix: 

diff -ur libtext/click.c libtext-/click.c
--- libtext/click.c	Sat Jun  5 23:30:14 1993
+++ libtext-/click.c	Wed Nov 10 17:17:44 1993
@@ -4,12 +4,12 @@
 #include <frame.h>
 #include <text.h>
 
-static Rune	l1[] =		{ '{', '[', '(', '<', '\253', 0};
+static Rune	l1[] =		{ '{', '[', '(', '<', 0253, 0};
 static Rune	l2[] =		{ '\n', 0};
 static Rune	l3[] =		{ '\'', '"', '`', 0};
 Rune		*left[]=	{ l1, l2, l3, 0};
 
-static Rune	r1[] =		{'}', ']', ')', '>', '\273', 0};
+static Rune	r1[] =		{'}', ']', ')', '>', 0273, 0};
 static Rune	r2[] =		{'\n', 0};
 static Rune	r3[] =		{'\'', '"', '`', 0};
 Rune		*right[]=	{ r1, r2, r3, 0};


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~1994-06-02 19:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1994-06-02 14:56 9term fix for sunos 4.1.3 Arnold Robbins
1994-06-02 19:18 ` Scott Schwartz
1994-06-02 19:21 ` Scott Schwartz

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).