2009-05-02 23:03:37 +02:00
|
|
|
Things needed for compilation.
|
|
|
|
|
|
|
|
SDL
|
2009-05-02 23:43:00 +02:00
|
|
|
The Simple DirectMedia Library available at http://www.libsdl.org
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
Curses
|
2009-05-02 23:43:00 +02:00
|
|
|
(optional)
|
|
|
|
If you want to enable the debugger you need a curses library.
|
|
|
|
ncurses should be installed on just about every unix distro.
|
|
|
|
For win32 get pdcurses at http://pdcurses.sourceforge.net
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
Libpng
|
2009-05-02 23:43:00 +02:00
|
|
|
Needed for the screenshots. (optional)
|
2009-05-02 23:20:05 +02:00
|
|
|
For win32 get libpng from http://www.sourceforge.net/projects/gnuwin32
|
|
|
|
|
|
|
|
Zlib
|
2009-05-02 23:43:00 +02:00
|
|
|
Needed by libpng. (optional)
|
2009-05-02 23:20:05 +02:00
|
|
|
For win32 get libz (rename to zlib) from http://www.sourceforge.net/projects/gnuwin32
|
|
|
|
|
2009-05-02 23:43:00 +02:00
|
|
|
SDL_Net
|
2009-05-03 00:08:43 +02:00
|
|
|
For modem/ipx support(optional). Get it from http://www.libsdl.org
|
|
|
|
|
|
|
|
SDL_Sound
|
|
|
|
For compressed audio on diskimages. (optional)
|
2009-05-02 23:43:00 +02:00
|
|
|
|
|
|
|
ALSA_Headers
|
|
|
|
(optional)
|
|
|
|
???????? for Alsa support under linux
|
2009-05-02 23:20:05 +02:00
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
If you want compile from the CVS under a unix system, you'll also need
|
2009-05-02 23:20:05 +02:00
|
|
|
automake (>=1.6), autoconf(>=2.50). Should be available at http://www.gnu.org
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
For building on unix systems.
|
|
|
|
If you are building from the cvs run ./autogen.sh first before doing the following.
|
|
|
|
|
|
|
|
1. ./configure
|
2009-05-02 23:35:44 +02:00
|
|
|
2. make
|
|
|
|
|
2009-05-02 23:43:00 +02:00
|
|
|
In step 1 you could add the following switches:
|
|
|
|
--enable-debug
|
|
|
|
enables the internal debugger. --enable-debug=heavy enables even more
|
|
|
|
debug options. Dosbox should then be run from a xterm and when the sdl-
|
2009-05-03 00:08:43 +02:00
|
|
|
window is active press pause to enter the debugger.
|
2009-05-02 23:43:00 +02:00
|
|
|
|
|
|
|
--disable-fpu
|
2009-05-03 00:08:43 +02:00
|
|
|
Will disable the emulated fpu. Although the fpu emulation code isn't
|
|
|
|
finished and isn't entirely accurate it's advised to leave it on.
|
2009-05-02 23:43:00 +02:00
|
|
|
|
|
|
|
--enable-core-inline
|
2009-05-03 00:08:43 +02:00
|
|
|
enables some memory increasing inlines. This greatly increases
|
|
|
|
compiletime for maybe a increase in speed.
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
Check the src subdir for the binary.
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:43:00 +02:00
|
|
|
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
Build instructions for VC++6
|
2009-05-02 23:43:00 +02:00
|
|
|
Don't use VC++ 6:it creates faulty code in core_normal.cpp
|