3.3.2 to 3.4.0

This commit is contained in:
nethack.allison
2002-02-04 16:11:00 +00:00
parent 06528d1002
commit 742e1e8c90
178 changed files with 232 additions and 232 deletions

View File

@@ -1,15 +1,15 @@
SCCS Id: @(#)Install.dos 3.3 2000/08/02
SCCS Id: @(#)Install.dos 3.4 2000/08/02
Copyright (c) NetHack PC Development Team 1990-2000.
NetHack may be freely redistributed. See license for details.
==============================================================
Instructions for compiling and installing
NetHack 3.3 on a DOS system
NetHack 3.4 on a DOS system
======================================================
(or, How to make PC NetHack 3.3)
(or, How to make PC NetHack 3.4)
Last revision: August 2, 2000
Credit for a runnable full PC NetHack 3.3 goes to the PC Development team
Credit for a runnable full PC NetHack 3.4 goes to the PC Development team
of Paul Winner, Kevin Smolkowski, Michael Allison, Yitzhak Sapir, Bill Dyer,
Timo Hakulinen, Yamamoto Keizo, Mike Threepoint, Mike Stephenson,
Stephen White, Ken Washikita and Janet Walz. The present port is based

View File

@@ -1,9 +1,9 @@
# SCCS Id: @(#)Makefile.BC 3.3 1999/11/06
# SCCS Id: @(#)Makefile.BC 3.4 1999/11/06
# Copyright (c) Yitzhak Sapir, 1999.
# NetHack may be freely distributed. See license for details.
#
# PC NetHack 3.3 Makefile for Borland C++ 3.1 and 4.5.
# PC NetHack 3.4 Makefile for Borland C++ 3.1 and 4.5.
#
# Nota Bene: Before you get to here you should have already read
# the Install.dos file located in the sys/msdos directory.

View File

@@ -1,6 +1,6 @@
# SCCS Id: @(#)Makefile.GCC 3.3 1999/11/06
# SCCS Id: @(#)Makefile.GCC 3.4 1999/11/06
# Copyright (c) NetHack PC Development Team 1996.
# PC NetHack 3.3 Makefile for djgpp V2
# PC NetHack 3.4 Makefile for djgpp V2
#
# Gnu gcc compiler for msdos (djgpp)
# Requires Gnu Make utility (V3.73 or greater) supplied with djgpp V2

View File

@@ -1,6 +1,6 @@
# SCCS Id: @(#)Makefile.MSC 3.3 2000/08/20
# SCCS Id: @(#)Makefile.MSC 3.4 2000/08/20
# Copyright (c) NetHack PC Development Team 1997, 2000.
# PC NetHack 3.3 Makefile for MSC
# PC NetHack 3.4 Makefile for MSC
#
# For questions or comments: nethack-bugs@nethack.org
#
@@ -64,7 +64,7 @@ LEXYYC = lexyy.c
#
# Uncomment this line if you want to include support for ALT-numeric
# sequences, such as ALT-2 for toggling #twoweapon mode.
# Note that this code did not get a thorough testing prior to 3.3.1
# Note that this code did not get a thorough testing prior to 3.4.0
#NEWALT=/DNEW_ALT
#############################################################################

View File

@@ -1,10 +1,10 @@
# SCCS Id : @(#)Makefile.SC 3.3 96/10/14
# SCCS Id : @(#)Makefile.SC 3.4 1996/10/14
# Copyright (c) NetHack Development Team 1996.
#
# Symantec C compiler V7.2
# Written for Symantec SMAKE utility
#
# NOTE: This Makefile has not been tested for NetHack 3.3.0
# NOTE: This Makefile has not been tested for NetHack 3.4.0
#
# For questions or comments : nethack-bugs@linc.cis.upenn.edu
#

View File

@@ -1,4 +1,4 @@
# SCSS Id: @(#)NHAccess.nh 3.3 1999/11/28
# SCSS Id: @(#)NHAccess.nh 3.4 1999/11/28
# Copyright (c) NetHack PC Development Team 1993, 1996, 1999
# NetHack may be freely redistributed. See license for details.
#

View File

@@ -1,4 +1,4 @@
/* SCSS Id: @(#)compwarn.lst 3.3 92/10/08 */
/* SCSS Id: @(#)compwarn.lst 3.4 1992/10/08 */
/* Copyright (c) Paul Winner, 1992 */
/* NetHack may be freely redistributed. See license for details. */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)def2mak.c 3.3 95/03/19 */
/* SCCS Id: @(#)def2mak.c 3.4 1995/03/19 */
/* Copyright (c) NetHack PC Development Team, 1994. */
/* NetHack may be freely redistributed. See license for details. */
@@ -340,7 +340,7 @@ char *argv[];
break;
if (!strnicmp(buffer, "?SCCS?", 6)) {
time (&timer);
printf ("%s#\tSCCS Id: @(#)Makefile.%s\t3.3\t%02d/%02d/%02d\n",
printf ("%s#\tSCCS Id: @(#)Makefile.%s\t3.4\t%02d/%02d/%02d\n",
SavedNewLine,
MSC ? "MSC" : BC ? "BC" : "???",
localtime(&timer)->tm_year,

View File

@@ -276,8 +276,8 @@ char *argv[];
return 1;
};
Header = BC ? "/* SCCS Id: @(#)%s\t3.3\t %02d/%02d/%02d */\n" :
"; SCCS Id: @(#)%s\t3.3\t %02d/%02d/%02d\n";
Header = BC ? "/* SCCS Id: @(#)%s\t3.4\t %02d/%02d/%02d */\n" :
"; SCCS Id: @(#)%s\t3.4\t %02d/%02d/%02d\n";
Header2 = BC ? "/* Copyright (c) Yitzhak Sapir, %d */\n" :
"; Copyright (c) NetHack PC Development Team, %d\n";
Header3 = BC ? "\n\n" : ";\n\nSEGMENTS\n\n";

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)msdos.c 3.3 2000/07/30 */
/* SCCS Id: @(#)msdos.c 3.4 2000/07/30 */
/* Copyright (c) NetHack PC Development Team 1990, 1991, 1992, 1993, 1994 */
/* NetHack may be freely redistributed. See license for details. */

View File

@@ -1,4 +1,4 @@
MSDOS specific help file for NetHack 3.3.0
MSDOS specific help file for NetHack 3.4.0
(Last Revision: December 4, 1999)
Copyright (c) NetHack PC Development Team 1993-1999.

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)ovlinit.c 3.3 94/03/20 */
/* SCCS Id: @(#)ovlinit.c 3.4 1994/03/20 */
/* Copyright (c) NetHack PC Development Team 1995 */
/* NetHack may be freely redistributed. See license for details. */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)pckeys.c 3.3 96/05/11 */
/* SCCS Id: @(#)pckeys.c 3.4 1996/05/11 */
/* Copyright (c) NetHack PC Development Team 1996 */
/* NetHack may be freely redistributed. See license for details. */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)pctiles.c 3.3 95/07/31 */
/* SCCS Id: @(#)pctiles.c 3.4 1995/07/31 */
/* Copyright (c) NetHack PC Development Team 1993, 1994 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)pctiles.h 3.3 94/04/04 */
/* SCCS Id: @(#)pctiles.h 3.4 1994/04/04 */
/* Copyright (c) NetHack PC Development Team 1993, 1994 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)pcvideo.h 3.3 94/06/07 */
/* SCCS Id: @(#)pcvideo.h 3.4 1994/06/07 */
/* Copyright (c) NetHack PC Development Team 1993, 1994 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)portio.h 3.3 95/08/05 */
/* SCCS Id: @(#)portio.h 3.4 1995/08/05 */
/* Copyright (c) NetHack PC Development Team 1995 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,4 +1,4 @@
# SCCS Id: @(#)prebuild.mak 3.3 97/09/28
# SCCS Id: @(#)prebuild.mak 3.4 1997/09/28
#
# Makefile for building the genschem utility, the .def files and
# the Makefiles for distribution.

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)schema1.BC 3.3 99/10/28 */
/* SCCS Id: @(#)schema1.BC 3.4 1999/10/28 */
/* Copyright (c) Yitzhak Sapir, 1999 */
/* */
/* NetHack Overlay Schema */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)schema2.BC 3.3 99/10/28 */
/* SCCS Id: @(#)schema2.BC 3.4 1999/10/28 */
/* Copyright (c) Yitzhak Sapir, 1999 */
/* */
/* NetHack Overlay Schema */

View File

@@ -1,4 +1,4 @@
; SCCS Id: @(#)schema3.MSC 3.3 2000/07/31
; SCCS Id: @(#)schema3.MSC 3.4 2000/07/31
; Copyright (c) NetHack PC Development Team, 2000
;
; NetHack Overlay Schema

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)sound.c 3.3 96/02/19 */
/* SCCS Id: @(#)sound.c 3.4 1996/02/19 */
/* Copyright (c) NetHack PC Development Team 1993,1995 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,13 +1,13 @@
# SCCS Id: @(#)template.mak 3.3 96/10/25
# SCCS Id: @(#)template.mak 3.4 1996/10/25
# Copyright (c) NetHack PC Development Team 1996
#
?BEGIN?
?SCCS?
?MSC?
# PC NetHack 3.3 Makefile for Microsoft(tm) "C" >= 7.0 and MSVC >= 1.0
# PC NetHack 3.4 Makefile for Microsoft(tm) "C" >= 7.0 and MSVC >= 1.0
?ENDMSC?
?BC?
# PC NetHack 3.3 Makefile for Borland C++ 3.1.
# PC NetHack 3.4 Makefile for Borland C++ 3.1.
?ENDBC?
#
# Nota Bene: Before you get to here you should have already read

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)tile2bin.c 3.3 95/01/26 */
/* SCCS Id: @(#)tile2bin.c 3.4 1995/01/26 */
/* Copyright (c) NetHack PC Development Team 1993, 1994, 1995 */
/* NetHack may be freely redistributed. See license for details. */
@@ -169,7 +169,7 @@ char *argv[];
# endif
strncpy(tibheader.ident,
"NetHack 3.3 MSDOS Port binary tile file", 80);
"NetHack 3.4 MSDOS Port binary tile file", 80);
strncpy(tibheader.timestamp, asctime(newtime), 24);
tibheader.timestamp[25] = '\0';
tibheader.tilecount = tilecount;

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)video.c 3.3 2001/04/07 */
/* SCCS Id: @(#)video.c 3.4 2001/04/07 */
/* Copyright (c) NetHack PC Development Team 1993, 1994, 2001 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)vidtxt.c 3.3 94/04/04 */
/* SCCS Id: @(#)vidtxt.c 3.4 1994/04/04 */
/* Copyright (c) NetHack PC Development Team 1993 */
/* NetHack may be freely redistributed. See license for details. */
/* */

View File

@@ -1,4 +1,4 @@
/* SCCS Id: @(#)vidvga.c 3.3 96/02/16 */
/* SCCS Id: @(#)vidvga.c 3.4 1996/02/16 */
/* Copyright (c) NetHack PC Development Team 1995 */
/* NetHack may be freely redistributed. See license for details. */
/*