Fixes 280241. WinCE network build changes. r=darin.

This commit is contained in:
dougt%meer.net 2005-01-30 03:52:40 +00:00
parent df366bf0bf
commit fe9111c83c
3 changed files with 7 additions and 3 deletions

View File

@ -91,8 +91,12 @@ ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
else
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
CPPSRCS += nsURLHelperWin.cpp
ifneq (,$(filter-out WINCE,$(OS_ARCH)))
CPPSRCS += nsNativeConnectionHelper.cpp
CPPSRCS += nsAutodialWin.cpp
endif
else
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
CPPSRCS += nsURLHelperOSX.cpp

View File

@ -66,7 +66,7 @@
#include "nsIProxyInfo.h"
#include "nsIPipe.h"
#if defined(XP_WIN)
#if defined(XP_WIN) && !defined (WINCE)
#include "nsNativeConnectionHelper.h"
#endif
@ -1200,7 +1200,7 @@ nsSocketTransport::RecoverFromError()
}
}
#if defined(XP_WIN)
#if defined(XP_WIN) && !defined (WINCE)
// If not trying next address, try to make a connection using dialup.
// Retry if that connection is made.
if (!tryAgain) {

View File

@ -82,7 +82,7 @@ NS_IMETHODIMP
nsFileProtocolHandler::ReadURLFile(nsIFile* aFile, nsIURI** aURI)
{
// IUniformResourceLocator isn't supported by VC5 (bless its little heart)
#if !defined(XP_WIN) || _MSC_VER < 1200
#if !defined(XP_WIN) || _MSC_VER < 1200 || defined (WINCE)
return NS_ERROR_NOT_AVAILABLE;
#else
nsAutoString path;