< Previous by Date | Date Index | Next by Date > |
< Previous in Thread | Thread Index |
Hi Scott, Thanks for the assistance. I was able to get it working, by adding the following code in FdPoll.hxx: #pragma warning(disable:4005) #define _WIN32_WINNT 0x0501 The pragma disables the warning I was receiving about redefining the macro (previously defined in sdkddkver.h). I had some problems at first, but once I rebuilt all of the code, it worked. Mike From: Scott Godin [mailto:sgodin@xxxxxxxxxxxxxxx] Hi MIke, WSAPoll is not related to OpenSSL. If you define _WIN32_WINNT to less than 0x0600 then WSAPoll support will be compiled out. See this page for other versions (ie: WinXP is 0x0501): You will likely need to ensure this is at least defined for both rutil and stack projects files. Scott On Tue, Dec 16, 2014 at 3:06 PM, Mike Hubbard <mike.hubbard@xxxxxxx> wrote: It seemed that I had to upgrade to the latest version of OpenSSL to get the most recent version of resiprocate (1.9.8) to build in my project. I am now getting the following error on Windows XP and Windows Server 2003 (it works fine on Windows 7): “The procedure entry point WSAPoll could not be located in the dynamic link library WS2-32.dll.” Is there anything in the latest code for resip or OpenSSL that would prevent the code from running on Windows XP or Windows Server 2003? Thanks Mike
|