Skip to content

Commit 35a0d3f

Browse files
committed
Added missing headers for strict C++ compliance
1 parent b03e35b commit 35a0d3f

21 files changed

+37
-30
lines changed

Makefile.am

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# $Id: Makefile.am,v 1.4 2003-12-07 20:59:23 psy Exp $
1+
# $Id$
22
#
33
# Copyright (C) 2003 Tristan Miller <psychonaut@nothingisreal.com>
44
#

NEWS

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,19 @@
11
CHEOPS NEWS -- history of user-visible changes
2-
$Date: 2003-12-07 21:05:13 $
2+
$Date$
33

4-
Copyright (C) 2003 Tristan Miller. See the end of this file for
4+
Copyright (C) 2015 Tristan Miller. See the end of this file for
55
copying conditions.
66

77
Please send CHEOPS bug reports to Tristan Miller
88
<psychonaut@nothingisreal.com>.
99

1010

11-
Version 1.1
11+
Version 1.2 (2015-02-01)
12+
13+
* Fixed some problems which prevented compilation with modern
14+
(and more standards-compliant) versions of GCC
15+
16+
Version 1.1 (2003-12-08)
1217

1318
* CHEOPS is now packaged in a manner similar to most GNU programs,
1419
including a `configure' configuration/installation script suitable
@@ -17,14 +22,14 @@ Version 1.1
1722
* A Unix man page is now available.
1823
* The --version and --help command-line options are now supported.
1924

20-
Version 1.0
25+
Version 1.0 (2003-11-23)
2126

2227
* Initial release
2328

2429
----------------------------------------------------------------------
2530
Copyright information:
2631

27-
Copyright (C) 2003 Tristan Miller.
32+
Copyright (C) 2015 Tristan Miller.
2833

2934
Permission is granted to anyone to make or distribute verbatim
3035
copies of this document as received, in any medium, provided that

cheops.spec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Summary: A chess program with configurable AI
22
Name: cheops
3-
Version: 1.1
3+
Version: 1.2
44
Release: 1
55
License: GPL
66
Group: Amusements/Games/Board/Chess

configure.ac

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# -*- Autoconf -*-
22
# Process this file with autoconf to produce a configure script.
33
#
4-
# $Id: configure.ac,v 1.4 2003-12-06 20:46:05 psy Exp $
4+
# $Id$
55

66
AC_PREREQ(2.57)
7-
AC_INIT(CHEOPS, 1.1, psychonaut@nothingisreal.com, cheops)
7+
AC_INIT(CHEOPS, 1.2, psychonaut@nothingisreal.com, cheops)
88
AM_INIT_AUTOMAKE
99
AC_CONFIG_SRCDIR([src/ChessTypes.h])
1010
AC_CONFIG_HEADER([config.h])

doc/cheops.6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ CHEOPS home page: http://www.nothingisreal.com/cheops/
8888
.SH AUTHOR
8989
Tristan Miller <psychonaut@nothingisreal.com>.
9090
.SH COPYRIGHT
91-
Copyright (C) 1999, 2000, 2003 Tristan Miller.
91+
Copyright (C) 1999-2015 Tristan Miller.
9292
.P
9393
Permission is granted to make and distribute verbatim or modified
9494
copies of this manual provided the copyright notice and this

doc/cheops.tex

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
% $Id: cheops.tex,v 1.5 2003-12-08 09:46:52 psy Exp $
1+
% $Id$
22

33
\documentclass[a4paper]{article}
44
\usepackage{url}
@@ -18,10 +18,10 @@
1818

1919
\begin{document}
2020

21-
\title{\textsc{Cheops} v1.1\\Manual for Users and Programmers}
21+
\title{\textsc{Cheops} v1.2\\Manual for Users and Programmers}
2222
\author{Tristan Miller\\ \url{psychonaut@nothingisreal.com}\\
2323
\url{http://www.nothingisreal.com/cheops/}}
24-
\date{7 December 2003}
24+
\date{1 February 2015}
2525
\maketitle
2626

2727
\section{Introduction}
@@ -279,7 +279,7 @@ \subsection{User interface}
279279

280280
\section{Copyright}
281281

282-
Copyright \copyright\ 1999, 2000, 2003 Tristan Miller. Permission is
282+
Copyright \copyright\ 1999--2015 Tristan Miller. Permission is
283283
granted to make and distribute verbatim or modified copies of this
284284
manual provided the copyright notice and this permission notice are
285285
preserved on all copies.

src/ChessBoard.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// $Id: ChessBoard.cpp,v 1.3 2003-12-06 16:44:51 psy Exp $
1+
// $Id$
22
//
33
// ChessBoard.cpp: implementation of the ChessBoard class.
44
//

src/ChessBoard.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// $Id: ChessBoard.h,v 1.3 2003-12-06 16:44:51 psy Exp $
1+
// $Id$
22
//
33
// ChessBoard.h: interface for the ChessBoard class.
44
//

src/ChessTypes.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// $Id: ChessTypes.h,v 1.3 2003-12-06 16:44:51 psy Exp $
1+
// $Id$
22
//
33
// ChessTypes.h
44
//

src/ComputerPlayer.cpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
// $Id: ComputerPlayer.cpp,v 1.3 2003-12-06 16:44:51 psy Exp $
1+
// $Id$
22
//
33
// ComputerPlayer.cpp: implementation of the ComputerPlayer class.
44
//
5-
// Copyright (C) 2003 Tristan Miller <psychonaut@nothingisreal.com>
5+
// Copyright (C) 2015 Tristan Miller <psychonaut@nothingisreal.com>
66
//
77
// This program is free software; you can redistribute it and/or
88
// modify it under the terms of the GNU General Public License as
@@ -23,6 +23,7 @@
2323

2424
#include "stdafx.h"
2525
#include "ComputerPlayer.h"
26+
#include <climits>
2627

2728
//////////////////////////////////////////////////////////////////////
2829
// Construction/Destruction

0 commit comments

Comments
 (0)