open-watcom / open-watcom-v2

Open Watcom V2.0 - Source code repository, Wiki, Latest Binary build, Archived builds including all installers for download.
Other
980 stars 159 forks source link

missing a few headers in wipfc for msvc2012 #1

Closed revelator closed 11 years ago

revelator commented 11 years ago

Im able to do a full build of the 64 bit version but i had to include a few more headers with msvc 2012.

before #include < algorithm > add

include < vector >

include < functional >

and after #include < algorithm > add

include < iostream >

Affects only two files which i dont remember atm. So ill post them later.

Besides that the compiler itself seems to Work though Wiv.exe crashes at exit and bwhc.exe (watcom help compiler) crashes with a heap error so documentation build has to be turned off when compiling the 64 bit version.

revelator commented 11 years ago

As promissed.

The two files that need extra headers are wipfc\cpp\cell.cpp and wipfc\cpp\tag.cpp

replace #include < algorithm > with

include < vector >

include < functional >

include < algorithm >

include < iostream >

does not affect open watcom compile so is perfectly ok.

revelator commented 11 years ago

Works fine with msvc 2012 now, can close the bug as fixed unless you want feedback from earlier msvc user.

jmalak commented 11 years ago

Thanks for info.