[reSIProcate] Visual Studio 2005 compilation warnings of 1.4 branch
Hello all,
Could somebody include these trivial fixes into reSIProcate sources?
1. Multiple "warning C4996: 'strdup': The POSIX name for this item
is deprecated. Instead, use the ISO C++ conformant name: _strdup."
warnings during ares compilation
fix: add the following line after windows headers includes under
#ifdef WIN32 at the top of contrib/ares.h
#pragma warning(disable:4996)
2. DialogUsageManager.cxx: "warning C4150: deletion of pointer to
incomplete type 'resip::RemoteCertStore'; no destructor called"
fix: add the following line into dum/DialogUsageManager.cxx
#include "resip/dum/RemoteCertStore.hxx"
--
...Bye..Dmitry.