Skip to content
Snippets Groups Projects
Commit 04d0a84a authored by Yang Tse's avatar Yang Tse
Browse files

WinCE cross compilation adjustments:

HAVE_WINSOCK2_H shall not be defined.
HAVE_WS2TCPIP_H shall not be defined.
parent c1dfe2c5
No related branches found
No related tags found
No related merge requests found
......@@ -112,7 +112,7 @@ AC_DEFUN([CURL_CHECK_HEADER_WINSOCK2], [
#include <windows.h>
#include <winsock2.h>
],[
#ifdef __CYGWIN__
#if defined(__CYGWIN__) || defined(_WIN32_WCE)
HAVE_WINSOCK2_H shall not be defined.
#else
int dummy=2*IPPROTO_ESP;
......@@ -150,7 +150,7 @@ AC_DEFUN([CURL_CHECK_HEADER_WS2TCPIP], [
#include <winsock2.h>
#include <ws2tcpip.h>
],[
#ifdef __CYGWIN__
#if defined(__CYGWIN__) || defined(_WIN32_WCE)
HAVE_WS2TCPIP_H shall not be defined.
#else
int dummy=2*IP_PKTINFO;
......
......@@ -90,7 +90,7 @@ AC_DEFUN([CURL_CHECK_HEADER_WINSOCK2], [
#include <windows.h>
#include <winsock2.h>
],[
#ifdef __CYGWIN__
#if defined(__CYGWIN__) || defined(_WIN32_WCE)
HAVE_WINSOCK2_H shall not be defined.
#else
int dummy=2*IPPROTO_ESP;
......@@ -128,7 +128,7 @@ AC_DEFUN([CURL_CHECK_HEADER_WS2TCPIP], [
#include <winsock2.h>
#include <ws2tcpip.h>
],[
#ifdef __CYGWIN__
#if defined(__CYGWIN__) || defined(_WIN32_WCE)
HAVE_WS2TCPIP_H shall not be defined.
#else
int dummy=2*IP_PKTINFO;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment