home *** CD-ROM | disk | FTP | other *** search
- *** Makefile.rtr Sun Nov 29 18:53:22 1992
- --- Makefile Sun Nov 29 19:05:48 1992
- ***************
- *** 67,84 ****
- # Set RINT= on/with (they have rint):
- # SunOS 4.0.3c compiler
- # BSD4.4 (reno)
- ! RINT=
- ! #RINT=-DRINT
-
- # Set RE_COMP if you have the re_comp/re_exec regular expression routines
- # (most BSD based systems do).
- ! RE_COMP=-DRE_COMP
- ! #RE_COMP=
-
- # Set REGCMP if you have the regcmp/regex regular expression routines
- # (most System V based systems do)
- ! #REGCMP=-DREGCMP
- ! REGCMP=
-
- # This is the name of a pager like "more".
- # "pg" may be appropriate for SYSV.
- --- 67,84 ----
- # Set RINT= on/with (they have rint):
- # SunOS 4.0.3c compiler
- # BSD4.4 (reno)
- ! #RINT=
- ! RINT=-DRINT
-
- # Set RE_COMP if you have the re_comp/re_exec regular expression routines
- # (most BSD based systems do).
- ! #RE_COMP=-DRE_COMP
- ! RE_COMP=
-
- # Set REGCMP if you have the regcmp/regex regular expression routines
- # (most System V based systems do)
- ! REGCMP=-DREGCMP
- ! #REGCMP=
-
- # This is the name of a pager like "more".
- # "pg" may be appropriate for SYSV.
- ***************
- *** 102,109 ****
- FMOD=
-
- # If your system doesn't have notimeout() in curses define NONOTIMEOUT
- ! NO_NOTIMEOUT=
- ! #NO_NOTIMEOUT=-DNONOTIMEOUT
-
- # flags for lint
- LINTFLAGS=-abchxv
- --- 102,109 ----
- FMOD=
-
- # If your system doesn't have notimeout() in curses define NONOTIMEOUT
- ! #NO_NOTIMEOUT=
- ! NO_NOTIMEOUT=-DNONOTIMEOUT
-
- # flags for lint
- LINTFLAGS=-abchxv
- ***************
- *** 172,180 ****
- #LIB=-lm -lPW -lcurses
-
- # Use this for system V.2 (includes: HP-UX 7.05, UNIXPC)
- ! #CFLAGS= -O -DSYSV2
- ! #LDFLAGS=
- ! #LIB=-lm -lPW -lcurses
- # with gcc on a Sequent also use:
- #CC=att gcc
- #CFLAGS= -DSYSV2 -g -pipe -traditional
- --- 172,180 ----
- #LIB=-lm -lPW -lcurses
-
- # Use this for system V.2 (includes: HP-UX 7.05, UNIXPC)
- ! CFLAGS= -O -DSYSV2
- ! LDFLAGS=
- ! LIB=-lm -lPW -lcurses
- # with gcc on a Sequent also use:
- #CC=att gcc
- #CFLAGS= -DSYSV2 -g -pipe -traditional
- ***************
- *** 223,231 ****
- #CFLAGS= -O -DBSD42 -pipe
-
- # Use this for BSD 4.3
- ! CFLAGS= -O -DBSD43
- ! LDFLAGS=
- ! LIB=-lm -lcurses -ltermcap
-
- # Use this for SunOS 4.X if you have the System V package installed.
- # This will link with the System V curses which is preferable to the
- --- 223,231 ----
- #CFLAGS= -O -DBSD42 -pipe
-
- # Use this for BSD 4.3
- ! #CFLAGS= -O -DBSD43
- ! #LDFLAGS=
- ! #LIB=-lm -lcurses -ltermcap
-
- # Use this for SunOS 4.X if you have the System V package installed.
- # This will link with the System V curses which is preferable to the
- *** screen.c.orig Mon May 11 14:43:38 1992
- --- screen.c Thu Dec 3 05:44:55 1992
- ***************
- *** 14,19 ****
- --- 14,20 ----
-
-
- #include <curses.h>
- + #include <termio.h>
- #include "sc.h"
-
- #ifdef VMS
- ***************
- *** 517,524 ****
- --- 518,528 ----
- { struct ttysize size;
- if (ioctl(0, TIOCGSIZE, &size) == 0)
- {
- + static char COLUMNS[13];
- LINES = size.ts_lines;
- COLS = size.ts_cols;
- + sprintf( COLUMNS, "COLUMNS=%d", COLS );
- + putenv( COLUMNS );
- }
- }
- #endif
-