Hi there,
I spent recently some time compiling and install the latest umurmur on a Raspberry PI. Had various issues to get the right versions of libs etc. but finally got it right.
Also the instructions below make use of the latest PolarSSL version (
mbed TLS 1.3.10 as of today).
Hope that will save some of you some trouble.
Cheers
Build umurmur for Raspberry Pi
-------------------------------
mkdir ~/urmumur
Packetmanager
sudo apt-get install openssl libtool autoconf
Libconfig
cd ~/umurmur
tar xfv libconfig-1.4.9.tar.gz
cd libconfig-1.4.9
./configure
make
sudo make install
Libprotoc-c
cd ~/umurmur
cd protobuf-c
./configure --disable-protoc
make
sudo make install
Polarssl
cd ~/umurmur
tar xfv mbedtls-1.3.10-gpl.tgz
cd mbedtls-1.3.10-gpl
./configure
make
umurmur (0.2.16)
cd ~/umurmur
cd umurmur
./autogen.sh
./configure --with-ssl=polarssl
make
sudo make install
Create Self Signed SSL Certificate
openssl genrsa 1024 > private.
openssl req -new -x509 -key private.key -out certificate.pem -days 3650