This is an old revision of the document!
This document describes how to build and install the Crossfire server from source. Instructions for building the client are on a separate page.
It's likely that many of these packages (listed alphabetically) are already installed on your system, but this list is a way to make sure. It's important to have all the right packages in place before attempting any builds or compiles.
As a quick reference:
sudo apt-get install automake flex gcc libgd-tools libgd2-xpm-dev libtool make python-dev subversion
A special note about installing python. The package listed above, python-dev, should install the necessary packages to enable many of the in-game features (ship transportation, guilds, post office, et al.) to work.
However, if python related features are not working, then installing python depends on your choice of Linux distro.
As an example, this is what you would use to install python on Ubuntu Trusty Tahr:
sudo apt-get install python2.7-dev
To confirm python is fully installed
$ python
and you should see an output like:
Python 2.7.3 (default, Apr 10 2013, 06:20:15) [GCC 4.6.3] on linux2 Type "help", "copyright", "credits" or "license" for more information. >>>
If you see something like the above, python is installed, ctrl-d to quit python.
The recommended packages provide additional add-ons or features (summaries included, below) to the server or as a way to test new functions and features.
As a quick reference:
sudo apt-get install check autoconf libsqlite3-0 libcurl3 libcurl4-openssl-dev libsvn-dev
These useful packages are not normally required for end-user builds, but they come in handy in cases where developers may have forgotten to check in changes to build scripts, etc.
This is the starting point and confirms you are located in your home directory
$ pwd /home/<username>
* Trunk Server Build Script
IMPORTANT - One should be consistent with what they check out; meaning use all trunk server & archetypes & maps or tags/1.60.0 server & archetypes & maps otherwise you run the risk of incompatibilities (broken maps, missing graphics, etc.)
The follow steps will download the necessary files to your computer, which will be used to compile (or build) the server.
$ svn co https://svn.code.sf.net/p/crossfire/code/server/trunk server.svn $ svn co https://svn.code.sf.net/p/crossfire/code/maps/trunk maps.svn $ svn co https://svn.code.sf.net/p/crossfire/code/arch/trunk arch.svn
Here's how you download Tag and is using the 1.71.0 release as an example
$ svn co https://svn.code.sf.net/p/crossfire/code/server/tags/1.71.0 server.svn $ svn co https://svn.code.sf.net/p/crossfire/code/maps/tags/1.71.0 maps.svn $ svn co https://svn.code.sf.net/p/crossfire/code/arch/tags/1.71.0 arch.svn
This confirms that you are still in your home directory
$ pwd /home/<username>
Now change directory (hence the cd) to the directory that contains the server files
$ cd server.svn
This confirms that you are in the server directory
$ pwd /home/<username>/server.svn
This step “links” two directories to each other which makes the compile process more automated
$ ln -s /home/<username>/maps.svn maps
This step “links” two directories to each other which makes the compile process more automated and is used by the server once Crossfire server is up and running. This links the server to the map files which you downloaded earlier.
First, create the necessary directory tree for the map files with this command:
$ sudo mkdir -p /usr/games/crossfire/share/crossfire $ sudo chown -R <username>.<username> /usr/games/crossfire/
What that does, is it creates a directory located here: /usr/games/crossfire/share/crossfire and changes the ownership of this directory to your user
Now this step “links” two directories to each other which makes the compile process more automated
$ ln -s /home/<username>/maps.svn /usr/games/crossfire/share/crossfire/maps
Now change directory (hence the cd) to the directory that contains the library files
$ cd lib
Double check that you are in the correct directory
$ pwd /home/<username>/server.svn/lib
This step “links” two directories to each other which makes the compile process more automated. This links the arch or archetype files to the server files which you downloaded earlier.
$ ln -s /home/<username>/arch.svn ./arch
Go back another directory
$ cd ..
Double check that you are in the correct directory which is the server directory
$ pwd /home/<username>/server.svn
SVN commit (~2007-Mar-30) changed the build process for the server; use the following command in the server root directory:
$ sh autogen.sh && make && sudo make install
autogen.sh script re-creates the configure (./configure) script while the rest of the command starts the compile (build) process. Pass the same options to autogen.sh as you would normally pass to ./configure since autogen.sh calls ./configure. This command requires both autoconf and automake to be installed.
(Otherwise do the following, and look below for optional arguments to autogen.sh) Now you are going to begin the compile process; choose one of the following:
$ ./configure && make && make install
Any missing dependencies, errors or similar problems during the compile process will be listed. Each should be addressed or resolved accordingly.
Optional: If you want to have more useful debugging information in case of crashes, set the CFLAGS environment variable to disable optimization (-O0) and enable debugging (-g): That is a uppercase letter O and a zero
$ CFLAGS="-O0 -g" ./configure && make && make install
Optional: For even more gdb debugging information, add -ggdb3 to the command
$ CFLAGS="-O0 -ggdb3" ./configure && make && make install
Optional: To disable the unit test or check when compiling the server, use ./configure –disable-check
$ ./configure --disable-check && make && make install
Optional: To enforce the unit test or check when compiling the server, use make -k check
$ ./configure && make -k check && make install
Once the server has been successfully built (aka compiled), you need to launch the Crossfire Server application
Double check that you are in the correct directory which is the server directory
$ pwd /home/<username>/server.svn
Change directory the server directory
$ cd server
Your file directory path should look like this:
$ pwd /home/<username>/server.svn/server
Run this command to launch the server:
$ ./crossfire-server &
What that command will do is run the Crossfire server and return you back to bash or shell prompt
If crossfire-server is unable to locate the maps file it may be because the chown command didn't work. You may see an error like:
[EE] Cannot open /usr/games/crossfire/var/crossfire/clockdata for writing [EE] Couldn't read regions file from "/usr/games/crossfire/share/crossfire/maps/regions.reg". [EE] Please check that your maps are correctly installed.
A simple fix is to:
$ sudo chown -R <username>.<username> /usr/games/crossfire/ $ ln -s /home/crossfire/maps.svn /usr/games/crossfire/share/crossfire/maps
Note, great care should be taken in using chown -R as this will change all permissions in the parent directory (e.g. if you “ $ sudo chown -R <username>.<username> /” you will break your linux install's permissions completely)
This might be a good time to setup crossloop.
To update an existing install to the latest svn image;
This confirms that you are still in your home directory
$ pwd /home/<username>
Now change directory (hence the cd) to the directory that contains the server files
$ cd server.svn
This confirms that you are in the server directory
$ pwd /home/<username>/server.svn
This updates the directory using svn
$ svn update
repeat for
maps.svn arch.svn
and repeat section “COMPILE”
Warning this information may be out of date
To access the latest version of crossfire from sourceforge, a Windows compatible tool to access the source files is called tortoisesvn which is available here.
The interface is built into the windows environment, to access the repository create a new folder such as “crossfire files” and right click on this folder. You will see the following option menu now available:
Select “Repo-browser”. When asked, use this URL: https://svn.code.sf.net/p/crossfire/code
After a short time you should now see a window with the current directory structure of crossfire.
You can now start checking out directories you are interested in. Note: that the branches (trunk, stable etc) are within these directories so do not check-out from the root directory unless you want to download _everything_. To checkout a directory simply right click and select checkout:
and then choose where to save the downloaded files:
The following tools are used to compile the server:
common/loader.c
and random_maps/reader.c
from their respective .l. Syntax is: flex -oloader.c -i loader.l
, flex -oreader.c -i -P rm reader.l
respectively. The -P rm
seems to be required to not have duplicate symbol issuespthreadVC2.dll
, zlib1.dll
, libcurl.dll
libcurl.lib
and pthreadVC2.lib
(project settings → link → general → object/library modules)make_win32
directory, run the installwin32.bat
file. It will create required directoriesThe following tools are used to compile the client:
libpng.lib
to png.lib
). Don't ask why here, ask Glade/GTK+ project instead :)undef HAVE_SDL
, comment out lines, add files, and such). That may be fixed or not eventually.It may be possible to cross-compile Windows binaries from Unix.