1

I have Ubuntu 16.04.

Despite the fact that I have the latest version of libxml2 (2.9.10 + dfsg-2 + ubuntu16.04.1 + deb.sury.org + 1) I am still getting the following error

configure: error: You need libxml2 >= 2.6.5 to compile theforgottenserver!
Gordster
  • 1,700

1 Answers1

1

It looks like it was available only for ArchLinux.

For Ubuntu you have to follow the official Compiling on Ubuntu guide:

1. Install the required software
sudo apt-get install git cmake build-essential liblua5.2-dev libgmp3-dev libmysqlclient-dev libboost-system-dev libboost-iostreams-dev libboost-filesystem-dev libpugixml-dev libcrypto++-dev

2. Download the source code
git clone --recursive https://github.com/otland/forgottenserver.git

3. Generate the build files

cd forgottenserver
mkdir build && cd build
cmake ..

4. Build

make
N0rbert
  • 103,263