diff options
author | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-20 00:22:24 +0000 |
---|---|---|
committer | Jason Downs <downsj@cvs.openbsd.org> | 1996-12-20 00:22:24 +0000 |
commit | 6f12140813e97b4976d6551dcf3bbe7013509f91 (patch) | |
tree | f04410bb530bbd279fc448df619abf9e2750fb58 /games/gomoku | |
parent | 6e19aa67ea7974b89df7ff8aedeed547f5b31304 (diff) |
Nevermind, curses problem was caused by a busted lib on threadway.
Diffstat (limited to 'games/gomoku')
-rw-r--r-- | games/gomoku/Makefile | 6 | ||||
-rw-r--r-- | games/gomoku/bdisp.c | 4 | ||||
-rw-r--r-- | games/gomoku/main.c | 4 | ||||
-rw-r--r-- | games/gomoku/pickmove.c | 4 |
4 files changed, 9 insertions, 9 deletions
diff --git a/games/gomoku/Makefile b/games/gomoku/Makefile index 471b2ef3b73..8db620701f9 100644 --- a/games/gomoku/Makefile +++ b/games/gomoku/Makefile @@ -1,11 +1,11 @@ -# $OpenBSD: Makefile,v 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> diff --git a/games/gomoku/bdisp.c b/games/gomoku/bdisp.c index 8c2c816781a..2642b801f53 100644 --- a/games/gomoku/bdisp.c +++ b/games/gomoku/bdisp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: bdisp.c,v 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 */ diff --git a/games/gomoku/main.c b/games/gomoku/main.c index b1647ccfac1..6fbb3507418 100644 --- a/games/gomoku/main.c +++ b/games/gomoku/main.c @@ -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> diff --git a/games/gomoku/pickmove.c b/games/gomoku/pickmove.c index d506c5557d3..770dc50e29f 100644 --- a/games/gomoku/pickmove.c +++ b/games/gomoku/pickmove.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pickmove.c,v 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" |