From: Martin Johansson Date: Mon, 6 May 2013 20:20:38 +0000 (+0200) Subject: Update README, Changelog and codename. X-Git-Url: http://git.code-monkey.de/?p=umurmur.git;a=commitdiff_plain;h=97560b4538f657699e21acbe67f079257830e01c Update README, Changelog and codename. --- diff --git a/ChangeLog b/ChangeLog index ee1fa4d..c7ba496 100644 --- a/ChangeLog +++ b/ChangeLog @@ -3,9 +3,16 @@ Support Mumble protocol 1.2.4. Support Opus codec. Add config file option for 'Opus threshold'. Support PolarSSL 1.2.x. +Remove support for PolarSSL versions prior to 1.0.0. Fix disconnect when using PTT. Fix possible crash when many clients disconnects simultaneously. Fix error message at client disconnect when using OpenSSL. +Autoconf './configure' switches added: +--enable-polarssl-test-certificate - use and link the PolarSSL + test certificate. Not used by default, causing umurmurd to exit + with error if no certificate and/or key file is found. +--enable-polarssl-havege - use PolarSSL's HAVEGE random number + generator. Defaults to /dev/urandom. + some other fixes. 0.2.10: diff --git a/README.md b/README.md index 0395897..5053364 100644 --- a/README.md +++ b/README.md @@ -9,12 +9,12 @@ uMurmur is a minimalistic Mumble server primarily targeted to run on embedded co Instructions for building from source ------------------------------------- 1. Requirements - * [OpenSSL](http://www.openssl.org/) or [PolarSSL](http://polarssl.org/) library + * [OpenSSL](http://www.openssl.org/) or [PolarSSL](http://polarssl.org/) library. For PolarSSL version 1.0.0 and above is required. * [libconfig](http://www.hyperrealm.com/libconfig/) * [libprotoc-c](http://code.google.com/p/protobuf-c/) version 0.14 or 0.15 (use --disable-protoc option in its ./configure to build only the library). If you for some reason have to run an earlier version you need to recompile the protocol file `Mumble.proto` using the protobuf compiler for the corresponding version. 2. Build - * `./configure` + * `./configure` - use `./configure --help` for switches. Defaults to build using PolarSSL, no test certificate, `/dev/urandom` as random source. * `make` 3. Install diff --git a/src/version.h b/src/version.h index e6baa18..dca2c8b 100644 --- a/src/version.h +++ b/src/version.h @@ -2,7 +2,7 @@ #define VERSION_H_989876 #define UMURMUR_VERSION "0.2.11" -#define UMURMUR_CODENAME "Demented" +#define UMURMUR_CODENAME "Bananas" #endif