Guide made by : f1racer328

Hi everyone. Long ass time since I've posted here/been active but I think I'm gonna start being active again.

So I'll start off with a good old linux compile guide for ArcEmu.


Guide isn't for complete noobs, sorry nubs!

The OS that I'm currently using is Debian Lenny, but this should work for most other distros.

So first lets start by getting all of the compilers and stuff that you need.

That can be accomplished by doing an apt-get command (Must have sudo/root)

Code:
apt-get install build-essential automake subversion autoconf zlib1g-dev libssl-dev libtool libstdc++5 libgd2-xpm libpcre3-dev mysql-server mysql-client libmysqlclient15-dev
Once thats done lets check out the source.

Code:
svn co svn://arcemu.info/svn/trunk Source
cd to the source

Code:
cd Source
[Optional] If you want 3.3, Apply the patch (I won't be linking this as I do not want to cause any issues/problems. It's an unofficial patch, find it yourself.

Code:
patch -p0 < patchName.patch
Configure & Build

Code:
autoreconf -fi
Code:
./configure --prefix=/Location/Where/You/wantit/ --enable-debug
Now make & install

Code:
make && make install
Enjoy!




Guide made by :
f1racer328