-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL
36 lines (25 loc) · 1.13 KB
/
INSTALL
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
36
The recommended way to build xwax is to run "make" with your chosen
compile options, followed optionally by "make install" to install at
the given prefix; eg.
$ make PREFIX=/usr ALSA=yes
$ make PREFIX=/usr ALSA=yes install # as root
If PREFIX is not given, the user's home directory is used and "make
install" does not need to be run as root.
Different audio device types are enabled using the compile options:
ALSA=yes
JACK=yes
OSS=yes
If you are doing multiple builds you may like to put the compile
options in a file named '.config' in the source directory instead of
on the command line. There is a script to generate this file; for more
information run
$ ./configure --help
Compilation errors are most likely the result of missing
libraries. You need the libraries and header files installed for:
* libSDL: http://www.libsdl.org/
* SDL_ttf (sometimes part of the SDL package, sometimes not)
Optional dependencies are:
* libasound: http://www.alsa-project.org/ (for ALSA=yes)
* JACK: http://jackaudio.org/ (for JACK=yes)
These libraries are packaged with most Linux distributions and this is
the recommended way to install them.