diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 20:11:01 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-06-02 20:11:01 +0000 |
commit | 6d77b5a7199f64535f14900a24735830c20b7487 (patch) | |
tree | 77efd33f146da27bb5592a004394a02bb6537986 | |
parent | fc6a32e8de76dc96c5fb6cf8872a44ed22ac5bac (diff) |
Use old curses library for now
-rw-r--r-- | usr.bin/tn3270/sys_curses/termout.c | 4 | ||||
-rw-r--r-- | usr.bin/tn3270/tn3270/Makefile | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/usr.bin/tn3270/sys_curses/termout.c b/usr.bin/tn3270/sys_curses/termout.c index cecebf8c449..d603708e2c1 100644 --- a/usr.bin/tn3270/sys_curses/termout.c +++ b/usr.bin/tn3270/sys_curses/termout.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)termout.c 4.3 (Berkeley) 4/26/91";*/ -static char rcsid[] = "$Id: termout.c,v 1.3 1995/12/14 13:57:47 deraadt Exp $"; +static char rcsid[] = "$Id: termout.c,v 1.4 1996/06/02 20:10:59 tholo Exp $"; #endif /* not lint */ #if defined(unix) @@ -43,7 +43,7 @@ static char rcsid[] = "$Id: termout.c,v 1.3 1995/12/14 13:57:47 deraadt Exp $"; #include <stdio.h> #include <stdlib.h> #include <string.h> -#include <curses.h> +#include <ocurses.h> #if defined(ultrix) /* Some version of this OS has a bad definition for nonl() */ #undef nl diff --git a/usr.bin/tn3270/tn3270/Makefile b/usr.bin/tn3270/tn3270/Makefile index 030b1ea8758..c99232ee682 100644 --- a/usr.bin/tn3270/tn3270/Makefile +++ b/usr.bin/tn3270/tn3270/Makefile @@ -1,12 +1,12 @@ -# $Id: Makefile,v 1.4 1996/06/02 05:54:38 tholo Exp $ +# $Id: Makefile,v 1.5 1996/06/02 20:11:00 tholo Exp $ .include "../../Makefile.inc" CFLAGS += -I${.CURDIR} -I. -#LDADD += -lcurses -ltermlib -ltelnet -lcrypt -LDADD += -lcurses -ltermlib -ltelnet -#DPADD += ${LIBCURSES} ${LIBTERMLIB} /usr/lib/libtelnet.a ${LIBCRYPT} -DPADD += ${LIBCURSES} ${LIBTERMLIB} /usr/lib/libtelnet.a +#LDADD += -locurses -ltermcap -ltelnet -lcrypt +LDADD += -locurses -ltermcap -ltelnet +#DPADD += ${LIBCURSES} ${LIBTERMCAP} /usr/lib/libtelnet.a ${LIBCRYPT} +DPADD += ${LIBCURSES} ${LIBTERMCAP} /usr/lib/libtelnet.a SRCS += apilib.c api_bsd.c api_exch.c asc_ebc.c astosc.c dctype.c SRCS += disp_asc.c ebc_disp.c |