home *** CD-ROM | disk | FTP | other *** search
/ PC World 2002 December / PCWorld_2002-12_cd.bin / Software / Vyzkuste / dosbox / INSTALL < prev    next >
Text File  |  2002-10-22  |  1KB  |  44 lines

  1. First of all if you are running a non-x86 machine this will not work,
  2. code only works for big-endian machines for now :)
  3.  
  4. Things needed for compilation.
  5.  
  6. SDL 
  7.     The Simple DirectMedia Library available at http://www.libsdl.org
  8.  
  9. Curses 
  10.     If you want to enable the debugger you need a curses library.
  11.     ncurses should be installed on just about every unix distro.
  12.     For win32 get pdcurses at http://pdcurses.sourceforge.net
  13.  
  14. Libpng
  15.     Needed for the screenshots. 
  16.     For win32 get libpng from http://www.sourceforge.net/projects/gnuwin32
  17.  
  18. Zlib
  19.     Needed by libpng. 
  20.     For win32 get libz (rename to zlib) from http://www.sourceforge.net/projects/gnuwin32
  21.  
  22.  
  23. If you want compile from the CVS under a unix system, you'll also need 
  24. automake (>=1.6), autoconf(>=2.50). Should be available at http://www.gnu.org
  25.  
  26. For building on unix systems.
  27. If you are building from the cvs run ./autogen.sh first before doing the following.
  28.  
  29. 1. ./configure
  30. 2. Check settings.h for some setup options.
  31. 3. make
  32.  
  33. Check the src subdir for the binary.
  34.  
  35. Compiling on FreeBSD might be a problem since SDL has no joystick support there.
  36. To get around this edit sdlmain.cpp to enable some #define.
  37. Let's hope someday the sdl people will just report 0 joysticks in freebsd or get it working some other way :)
  38.  
  39.  
  40. Build instructions for VC++6 
  41.  
  42. Open the workspace in the visualc subdir and build from there. 
  43.  
  44.