Hi,



When I enabled REQUEST_DEBUG in the WebKit/WebCore/loader/loader.cpp, and compile, I got the compiling error:



..\JavaScriptCore\wtf/DateMath.h(167) : warning C4996: 'strncpy' was declared de

precated

c:\program files\windows ce tools\wce600\au1300_mipsii\include\mipsii\st

dlib.h(227) : see declaration of 'strncpy'

Message: 'This function or variable may be unsafe. Consider using strncp

y_s instead. To disable deprecation, use _CRT_SECURE_NO_DEPRECATE. See online he

lp for details.'

loader\loader.cpp(378) : error C2664: 'WebCore::KURL::KURL(const QUrl &)' : cann

ot convert parameter 1 from 'const WebCore::String' to 'const QUrl &'

Reason: cannot convert from 'const WebCore::String' to 'const QUrl'

Source or target has incomplete type

NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\ce\bi

n\x86_mips\cl.EXE"' : return code '0x2'

Stop.

NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 8\VC\bin\n

make.exe"' : return code '0x2'



the error comes from the code below, how to solve it?



#if REQUEST_DEBUG

KURL u(resource->url());

printf("HOST %s COUNT %d RECEIVED %s\n", u.host().latin1().data(), m_requestsLoading.size(), resource->url().latin1().data());

#endif





Thank you!