-
Compiled on Windows
-
Source:
-
Dev-cpp: https://github.com/YaanLiima/binaries/raw/master/Stians%20Repack%20Dev-Cpp%200.2%2C%2064bit.rar
-
MSVC10 libs and includes: https://github.com/YaanLiima/binaries/raw/master/vc10_pack.rar MSVC15 libs and includes: https://github.com/YaanLiima/binaries/raw/master/vc15_pack.rar
-
Compile on linux:
- apt-get install subversion autoconf build-essential pkg-config automake libboost-all-dev libgmp3-dev libxml2-dev liblua5.1-0-dev libssl-dev libmysql++-dev libtool libcrypto++-dev libmysqlclient-dev libsqlite3-dev libluajit-5.1-dev
- cd /3996-master
- chmod -R 777 source
- cd source
- ./autogen.sh && ./configure --enable-sqlite --enable-mysql --enable-root-permission --enable-server-diag && ./build.sh
-
ERROR Ubuntu 18.04?
configure: error: "boost::unordered_set header not found. Please update your boost to at least 1.40."
- #Solution:
Search on configure.ac and house.h:
- boost/tr1/unordered_set.hpp Replaces with:
- boost/unordered_set.hpp And at house.h look for:
- typedef std::tr1::unordered_set<uint32_t> PlayerList; Replaces with:
- typedef boost::unordered_set<uint32_t> PlayerList;