[Freeswitch-trunk] [commit] r6795 - freeswitch/trunk/libs/curl/lib
Freeswitch SVN
mikej at freeswitch.org
Fri Dec 14 13:14:35 EST 2007
Author: mikej
Date: Fri Dec 14 13:14:35 2007
New Revision: 6795
Modified:
freeswitch/trunk/libs/curl/lib/select.h
Log:
fix curl build on msvc 2008 when running on xp and prior.
Modified: freeswitch/trunk/libs/curl/lib/select.h
==============================================================================
--- freeswitch/trunk/libs/curl/lib/select.h (original)
+++ freeswitch/trunk/libs/curl/lib/select.h Fri Dec 14 13:14:35 2007
@@ -28,7 +28,8 @@
#elif defined(_WIN32_WINNT) && (_WIN32_WINNT >= 0x0600)
/* for Vista, use WSAPoll(). */
#include <winsock2.h>
-#define CURL_HAVE_WSAPOLL
+/* we can't test like this, as it assumes that it will be there at runtime, which it is not when building with msvc 2008 on xp */
+//#define CURL_HAVE_WSAPOLL
#else
#define POLLIN 0x01
More information about the Freeswitch-trunk
mailing list