• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Compiling TFS 0.3.6 cryingdamson V8.2 LINUX

OperatorMopa

Member
Joined
Feb 10, 2014
Messages
127
Reaction score
6
I know that there are hundreds of topics like this, but i seriously dont know what can i do.
I've tried every tutorial on this forum and non of them worked for me . (dominique120 was the best, but its for tfs 1.0)

I hope, you'll help me.

Thank you ;)
 
get source
Code:
apt-get install build-essential libxml2-dev libxml++2.6-dev liblua5.1-0-dev libboost-all-dev libmysql++-dev libgmp3-dev liblua5.1-sql-mysql-dev zlib1g-dev dh-autoreconf
cd where ever you have your source
Code:
sh autogen.sh
Code:
./configure --enable-mysql
Code:
sh build.sh
Quick and simple
 
Code:
luascript.cpp:719:23: error: ‘class boost::filesystem3::directory_entry’ has no member named ‘leaf’
make[1]: *** [luascript.o] Error 1
make[1]: Leaving directory `/forgottenserver/source'
make: *** [all] Error 2

EDIT. Fixed
changed
Code:
leaf()
to
Code:
path().filename().string()

in scriptmanager.cpp and luascript.cpp
 
Last edited:
Back
Top