1 Description:
When i compile gnugk on Windows
platform.
i got a lot warning of C4786, and i got
some errors(unable to open ...\vc60.pdb)
i made the following change, and
it works now.
2 Changes i made:
i add
#pragma warning( disable : 4786
) // warning about too long debug symbol off
to the following files:
GkClient.cxx
Neighbor.cxx
Routing.cxx
#if (_MSC_VER >= 1200)
#pragma warning( disable : 4800 ) // warning about forcing value to bool /*{* add begin
#pragma warning( disable : 4786 ) // warning about too long debug symbol off *}*/ #endif 3 Environment:
1. Windows 2000
2. Visual C++ 6.0
3. gnugk 2.2beta1
pwlib 1.5.0
openh323
1.12.0
If i'm right, please add these changes to source code, thanks
Hu Yuxin
2003-7-22 |