Replies: 1 comment
-
Poco is only needed foe the client, AO as long as you're only building the server, you should be time without it |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
For anyone wanting to build murmur on rocky linux 8.7 , tested the centos8 instructions on a VM using the iso minimal rocky linux 8.7 and installing the minimal server.
Except 2 tiny remarks , it worked like described for centos8
https://github.com/mumble-voip/mumble/blob/master/docs/dev/build-instructions/build_linux.md
Also the Epel repository does contain murmur/mumble already but older versions I think.
sudo dnf config-manager --set-enabled powertools
Note : lowercase ,PowerTools did not work like described in centos8 instructions
poco-devel
Could not find it in any repositoryalso needed : sudo dnf install python3
cmake 3.20 got/was already installed
for the missing poco-devel (which i still think is needed?)
https://pocoproject.org/download.html#building
git clone -b master https://github.com/pocoproject/poco.git
cd poco
mkdir cmake-build
cd cmake-build
cmake .. && cmake --build .
sudo cmake --build . --target install
Beta Was this translation helpful? Give feedback.
All reactions