Topic: Teeworlds server on freebsd
I have shell account and i want run teeworlds server. I was do that:
$ fetch http://teeworlds.com/files/bam.zip
$ unzip bam.zip
$ rm bam.zip
$ fetch http://teeworlds.com/files/teeworlds-VERSION-src.zip
$ unzip teeworlds-VERSION-src.zip
$ rm teeworlds-VERSION-src.zip
Compiling bam
$ cd bam
$ ./make_unix.sh
$ cd ..
Compiling teeworlds
$ cd teeworlds-VERSION-src
$ ../bam/src/bam release
for server only,
$ ../bam/src/bam debug
But here i had some problems so i Remove
-fstack-protector -fstack-protector-all
from default.bam in Teeworlds root directory and then run
../bam/src/bam -c all
Whats now ?