Likes: 0
Results 1 to 2 of 2
-
07-01-10, 03:07 AM #1
[Linux] Compiling Guide - ArcEmu 3.3 / 3.2
Register to remove this adGuide 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
Code:svn co svn://arcemu.info/svn/trunk Source
Code:cd Source
Code:patch -p0 < patchName.patch
Code:autoreconf -fi
Code:./configure --prefix=/Location/Where/You/wantit/ --enable-debug
Code:make && make install
Guide made by : f1racer328
› See More: [Linux] Compiling Guide - ArcEmu 3.3 / 3.2
-
07-01-10, 08:03 AM #2
Register to remove this admhm thanks.