It made some errors like this:
KDnsCache.cpp: In member function ‘unsigned int KDnsCache::GetName(const char*)’:
KDnsCache.cpp:44:27: error: ‘strlen’ was not declared in this scope
Does anyone know how to resolve it? thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is one of the functions, which declarations are often implicitly included, in other header files. It can break, for example, when user has a newer version of some library. It would be good, if you fill a bug report for developers including full compilation log.
Tempoarily you can solve this error, by adding:
at the beginning of
KDnsCache.cpp.