Compiling with Visual Studio 2003

NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
Forum rules
NOTICE: This forum is archived as read only.
Please use the Github Discussions at https://github.com/exult/exult/discussions
Locked
DrSQL

Compiling with Visual Studio 2003

Post 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
Daemongar
Posts: 87
Joined: Thu May 14, 2020 1:34 pm

Re: Compiling with Visual Studio 2003

Post 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!
luteijn

Re: Compiling with Visual Studio 2003

Post by luteijn »

Maybe just get rid of the using statements as done here http://www.acceleratedcpp.com/details/msbugs.html would help?

P.
Locked