Page 1 of 1

Compiling with Visual Studio 2003

Posted: Sun Aug 05, 2007 7:01 am
by DrSQL
I am compiling with Visual Studio 2003 (since that seemed to be the .sln file provided) but I get errors when trying to compile. Any help you could give me to get this rolling would be phenominal...

G:\exult-1.2\conf\Configuration.cc(50): error C2039: 'isspace' : is not a member of 'std'
G:\exult-1.2\conf\Configuration.cc(50): error C2873: 'isspace' : symbol cannot be used in a using-declaration


g:\exult-1.2\keys.cc(45): error C2039: 'isspace' : is not a member of 'std'
g:\exult-1.2\keys.cc(45): error C2873: 'isspace' : symbol cannot be used in a using-declaration
g:\exult-1.2\gumps\Newfile_gump.cc(49): error C2873: 'isdigit' : symbol cannot be used in a using-declaration
g:\exult-1.2\gumps\Newfile_gump.cc(49): error C2039: 'isdigit' : is not a member of 'std'

g:\exult-1.2\cheat_screen.cc(369): error C2039: 'toupper' : is not a member of 'std'
g:\exult-1.2\conf\Configuration.cc(50): error C2039: 'isspace' : is not a member of 'std'
g:\exult-1.2\conf\Configuration.cc(50): error C2873: 'isspace' : symbol cannot be used in a using-declaration
g:\exult-1.2\audio\midi_drivers\fmopl.cc(616): error C2666: 'pow' : 7 overloads have similar conversions

Also, is there a usecode reference yet? For your implementation of usecode I mean?

Thanks

Joshua

Re: Compiling with Visual Studio 2003

Posted: Thu Aug 09, 2007 4:58 am
by Daemongar
Well, if you figure this out, you may want to document your process and create a FAQ on this. I saw your message and started tinkering. I noticed the notes on compiling the info using Visual Studio was a little sparse, but it got me started.

I installed SDL, Zlib, and SDL-Mixer, and a few other small changes and am in the same boat as you. Well, if I get anywhere I will let you know!

Re: Compiling with Visual Studio 2003

Posted: Sat Aug 11, 2007 8:21 pm
by luteijn
Maybe just get rid of the using statements as done here http://www.acceleratedcpp.com/details/msbugs.html would help?

P.