forked from mumble-voip/mumble
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathINSTALL
59 lines (42 loc) · 1.97 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Binary versions
===============
Binary versions for Win32 of the most recent version of mumble are provided
on sourceforge.net, see http://www.sourceforge.net/projects/mumble/
The only legitimate releases of Mumble will be on sourceforge, any other
place offering Mumble is likely to contain trojans or viruses.
Pre-requisites
==============
Mumble and murmur depends on Qt version 4.0.1 or above; either the opensource
or commercial versions will do.
Please see http://www.trolltech.com/qt/ for more information. As we use the Qt
build system, it's important that you have a fully functional Qt installation.
Mumble depends on libspeex. See http://www.speex.org for details. Note that
you need the latest "unstable" version to compile. (Speex generally has high
code quality, the the svn version is probably even more stable than the
released unstable version).
Mumble needs the ASIO SDK to compile ASIO support. If you don't have the SDK,
remove the line that says CONFIG+=asio in mumble.pro
Mumble needs the Boost C++ library. http://www.boost.org
You may need to adjust the paths in mumble.pro, murmur.pro and mumble.pri to
reflect where your installed versions of dependant libraries are.
Building Mumble
===============
At the moment Mumble only works on Win32 clients, as it uses DirectSound
for audio input and output. The architecture is flexible enough to easily
accomodate an ALSA version as soon as we get a developer with sufficient
interrest.
To build mumble, type
qmake mumble.pro
make
Building Murmur
===============
Murmur works well on both UNIX and Win32 servers.
To build murmur, type
qmake murmur.pro
make
To enable user registration, copy murmur.pl to murmur.cgi and put it
somewhere accessible by your webserver. Make sure your webserver is
configured to execute it as a CGI, and make sure you edit it to reflect
the configuration parameters. Note that the user the CGI will run as needs
write permissions to both the database file and the directory the database
file resides in.