Page 1 of 1

DSGame-server

Posted: Wed Oct 24, 2012 7:40 pm
by Magiknight
I have been working on building a server and I have had no problems until I get to the section titled "Building the Map Server." When I build it I get the following error message.

merit.cpp
c:\dsp\src\map\merit.h(247): error C2365: 'MERIT_ARCANE_CIRCLE_RECAST' : redefinition; previous definition was 'enumerator'
c:\dsp\src\map\merit.h(204) : see declaration of 'MERIT_ARCANE_CIRCLE_RECAST'

I am using Visual C++ 2010 express.

Re: DSGame-server

Posted: Wed Oct 24, 2012 8:16 pm
by devmonkey
I'm having a similar issue with building the server on linux:

src/merit/merit.cpp:36:12:
error: missing binary operator before token "ABYSSEA_EXPANSION"

build fails after this error...

Suggestions?

Re: DSGame-server

Posted: Wed Oct 24, 2012 8:26 pm
by devmonkey
Fixed it... in merit.cpp on line:

#if define "ABYSSEA_EXPANSION"

change it to:

#if define == "ABYSSEA_EXPANSION"

Re: DSGame-server

Posted: Wed Oct 24, 2012 9:08 pm
by bluekirby0
ehh that should probably be #if defined or #ifdef rather than #if define ==