* New upstream release.

* Patched sail/sync.c to build (lots of missing includes and other trivial
     mistakes).


git-svn-id: file:///srv/svn/joey/bsdgames-trunk@5176 a4a2c43b-8ac3-0310-8836-e0e880c912e2
This commit is contained in:
joey
2001-12-29 04:08:50 +00:00
parent 22bdfc27df
commit b05333c9fe
5 changed files with 14 additions and 2 deletions

8
debian/changelog vendored
View File

@@ -1,3 +1,11 @@
bsdgames (2.13-1) unstable; urgency=low
* New upstream release.
* Patched sail/sync.c to build (lots of missing includes and other trivial
mistakes).
-- Joey Hess <joeyh@debian.org> Fri, 28 Dec 2001 18:15:41 -0500
bsdgames (2.12-11) unstable; urgency=low
* Added menu hints for backgammon and gomoku, Closes: #121012, #121012

2
debian/copyright vendored
View File

@@ -2,5 +2,5 @@ This is a Debian prepackaged version of the BSD games package.
This package was put together by Joey Hess <joeyh@debian.org>, using
sources from:
ftp://sunsite.unc.edu/pub/Linux/games/bsd-games-*.tar.gz
ftp://sunsite.unc.edu/pub/Linux/games/

1
debian/rules vendored
View File

@@ -96,7 +96,6 @@ binary-arch: build
dh_installdeb
dh_shlibdeps
dh_gencontrol
# dh_makeshlibs
dh_md5sums
dh_builddeb

1
debian/watch vendored Normal file
View File

@@ -0,0 +1 @@
ftp://sunsite.unc.edu /pub/Linux/games/ bsd-games-([0-9]+.*).tar.gz debian

View File

@@ -57,9 +57,13 @@ __RCSID("$NetBSD: sync.c,v 1.14 2000/02/09 22:27:56 jsm Exp $");
#include <time.h>
#include "extern.h"
#include "pathnames.h"
#include <stdio.h>
#include <signal.h>
#define BUFSIZE 4096
int sync_update(type, ship, astr, a, b, c, d);
static const char SF[] = _PATH_SYNC;
static const char LF[] = _PATH_LOCK;
static char sync_buf[BUFSIZE];