opentibia / server

An open source server for the MMORPG Tibia.
GNU General Public License v2.0
414 stars 149 forks source link

fix build #17

Closed adakraz closed 12 years ago

adakraz commented 12 years ago

Recent commits have broken the build (see http://travis-ci.org/#!/adakraz/server/builds/2191311 ). This commit fixes it ( see http://travis-ci.org/#!/adakraz/server/builds/2192409 ).

The errors are caused by:

ghost commented 12 years ago

I hope to fix the build until this weekend. Months ago I did the same thing when moving the implementation to the source files, but unfortunately I changed more than necessary and the server become unusable. I'm trying to fix the compilation without using precompiled headers and without changing the classes interfaces.

About the header file, it is not C++11, it is standardized in the C++03 and should be available on your compiler (although I know some compilers do not come with it).

ghost commented 12 years ago

Note: I was wrong about cstdint, it is not in the C++03, but stdint.h is.