Nevermind, curses problem was caused by a busted lib on threadway.
authordownsj <downsj@openbsd.org>
Fri, 20 Dec 1996 00:22:18 +0000 (00:22 +0000)
committerdownsj <downsj@openbsd.org>
Fri, 20 Dec 1996 00:22:18 +0000 (00:22 +0000)
games/gomoku/Makefile
games/gomoku/bdisp.c
games/gomoku/main.c
games/gomoku/pickmove.c

index 97c4fb5..8db6207 100644 (file)
@@ -1,11 +1,11 @@
-#      $OpenBSD: Makefile,v 1.1.1.1 1996/12/16 06:56:08 downsj Exp $
+#      $OpenBSD: Makefile,v 1.2 1996/12/20 00:22:18 downsj Exp $
 #      @(#)Makefile    8.1 (Berkeley) 7/24/94
 
 PROG=  gomoku
 SRCS=  bdinit.c bdisp.c main.c makemove.c pickmove.c stoc.c
 MAN=   gomoku.6
-DPADD= ${LIBOCURSES} ${LIBTERMCAP}
-LDADD= -locurses -ltermcap
+DPADD= ${LIBCURSES} ${LIBTERMLIB}
+LDADD= -lcurses -ltermlib
 HIDEGAME=hidegame
 
 .include <bsd.prog.mk>
index 46a740d..2642b80 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: bdisp.c,v 1.1.1.1 1996/12/16 06:56:08 downsj Exp $    */
+/*     $OpenBSD: bdisp.c,v 1.2 1996/12/20 00:22:19 downsj Exp $        */
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
@@ -41,7 +41,7 @@ static char sccsid[] = "@(#)bdisp.c   8.2 (Berkeley) 5/3/95";
 
 #include "gomoku.h"
 #include <stdio.h>
-#include <ocurses.h>
+#include <curses.h>
 
 #define        SCRNH           24              /* assume 24 lines for the moment */
 #define        SCRNW           80              /* assume 80 chars for the moment */
index b1647cc..6fbb350 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: main.c,v 1.2 1996/12/19 22:21:28 deraadt Exp $        */
+/*     $OpenBSD: main.c,v 1.3 1996/12/20 00:22:21 downsj Exp $ */
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
@@ -45,7 +45,7 @@ static char copyright[] =
 static char sccsid[] = "@(#)main.c     8.4 (Berkeley) 5/4/95";
 #endif /* not lint */
 
-#include <ocurses.h>
+#include <curses.h>
 #include <err.h>
 #include <signal.h>
 #include <stdio.h>
index cefcdb4..770dc50 100644 (file)
@@ -1,4 +1,4 @@
-/*     $OpenBSD: pickmove.c,v 1.1.1.1 1996/12/16 06:56:08 downsj Exp $ */
+/*     $OpenBSD: pickmove.c,v 1.2 1996/12/20 00:22:23 downsj Exp $     */
 /*
  * Copyright (c) 1994
  *     The Regents of the University of California.  All rights reserved.
@@ -40,7 +40,7 @@ static char sccsid[] = "@(#)pickmove.c        8.2 (Berkeley) 5/3/95";
 #endif /* not lint */
 
 #include <stdio.h>
-#include <ocurses.h>
+#include <curses.h>
 #include <machine/limits.h>
 
 #include "gomoku.h"