From 295a019d1b28bbd5815aa30d74486c78248f1122 Mon Sep 17 00:00:00 2001 From: downsj Date: Fri, 20 Dec 1996 00:22:18 +0000 Subject: [PATCH] Nevermind, curses problem was caused by a busted lib on threadway. --- games/gomoku/Makefile | 6 +++--- games/gomoku/bdisp.c | 4 ++-- games/gomoku/main.c | 4 ++-- games/gomoku/pickmove.c | 4 ++-- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/games/gomoku/Makefile b/games/gomoku/Makefile index 97c4fb5ef23..8db620701f9 100644 --- a/games/gomoku/Makefile +++ b/games/gomoku/Makefile @@ -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 diff --git a/games/gomoku/bdisp.c b/games/gomoku/bdisp.c index 46a740dad5d..2642b801f53 100644 --- a/games/gomoku/bdisp.c +++ b/games/gomoku/bdisp.c @@ -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 -#include +#include #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 +#include #include #include #include diff --git a/games/gomoku/pickmove.c b/games/gomoku/pickmove.c index cefcdb42df8..770dc50e29f 100644 --- a/games/gomoku/pickmove.c +++ b/games/gomoku/pickmove.c @@ -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 -#include +#include #include #include "gomoku.h" -- 2.20.1