mirror of
https://github.com/mumble-voip/mumble.git
synced 2025-10-26 11:19:16 +00:00
git-svn-id: https://mumble.svn.sourceforge.net/svnroot/mumble/trunk@1142 05730e5d-ab1b-0410-a4ac-84af385074fa
67 lines
2.1 KiB
Plaintext
67 lines
2.1 KiB
Plaintext
|
|
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.3.0 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.
|
|
|
|
The mumble build uses pre-comiled headers. If you use GCC, make sure it's at
|
|
least version 3.4, and preferably 4.2 or newer.
|
|
|
|
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.
|
|
|
|
Windows pre-requisites
|
|
======================
|
|
|
|
Detailed build instructions are available at
|
|
http://mumble.sourceforge.net/BuildingWindows and it is highly recommended
|
|
to follow them to the letter.
|
|
|
|
Linux pre-requisites
|
|
====================
|
|
|
|
Mumble needs libasound2 (the ALSA developer libraries) as well as the developer
|
|
libraries for Xevie.
|
|
|
|
The Linux version of the client is developed on Ubuntu 7.10. It may work on
|
|
other updated distributions. The server should work on any modern UNIX-based
|
|
distribution and on Windows.
|
|
|
|
Building Mumble and Murmur
|
|
==========================
|
|
|
|
To build mumble and murmur, type
|
|
qmake main.pro
|
|
make
|
|
|
|
You may need to edit src/mumble/mumble.pro to reflect the installation paths you
|
|
use for libraries.
|
|
|
|
Building only Murmur
|
|
====================
|
|
|
|
To build only murmur, type
|
|
qmake main.pro CONFIG+=no-client
|
|
make
|
|
|
|
To enable user registration, copy scripts/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.
|