-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.configure
More file actions
37 lines (23 loc) · 1.25 KB
/
README.configure
File metadata and controls
37 lines (23 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
== Overview ==
This patch is a backport of Slash'EMs Autoconf compilation for NetHack.
It has been tested on Linux (tty) and on Windows XP (tty, mswin).
Please direct bugs and questions to <bhaak@gmx.net> or post them to the
NetHack Newsgroup rec.games.roguelike.nethack[1].
== Detailed compilation instructions ==
Windows user need to install an development environment as detailed in
the NetHack-Cygwin-MinGW HOWTO[2].
1. Download NetHacks source code from http://www.nethack.org/v343/download-src.html
2. Extract the tar file:
tar xfz nethack-343-src.tgz
3. Apply this patch:
patch -p0 <nethack-autoconf-20090217.patch
4. Enter the directory:
cd nethack-3.4.3
5a. On Linux:
./configure && make && make install
5b. On Windows for a tty build:
./configure --with-owner=Username --with-group=Usergroup --build=mingw32 --prefix=/opt/nethack --without-compression --enable-tty-graphics && make && make install
5c. On Windows for a GUI build:
./configure --with-owner=Username --with-group=Usergroup --build=mingw32 --prefix=/opt/nethack --without-compression --disable-tty-graphics --enable-mswin-graphics && make && make install
[1] Google Groups URL: http://groups.google.com/group/rec.games.roguelike.nethack
[2] http://www.crawfords.de/nh-cygwin-mingw-howto/