disable autodialer in windows mobile. r=bsmedberg, a=beltzner

This commit is contained in:
dougt@meer.net 2008-02-20 14:41:27 -08:00
Родитель 1961c52f0b
Коммит 6ca8cc537a
3 изменённых файлов: 4 добавлений и 3 удалений

Просмотреть файл

@ -103,9 +103,10 @@ ifeq ($(MOZ_WIDGET_TOOLKIT),os2)
else
ifeq ($(MOZ_WIDGET_TOOLKIT),windows)
CPPSRCS += nsURLHelperWin.cpp
ifneq ($(OS_ARCH), WINCE)
CPPSRCS += nsNativeConnectionHelper.cpp
CPPSRCS += nsAutodialWin.cpp
endif
else
ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
CPPSRCS += nsURLHelperOSX.cpp

Просмотреть файл

@ -903,7 +903,7 @@ nsIOService::TrackNetworkLinkStatusForOffline()
// option is set to always autodial. If so, then we are
// always up for the purposes of offline management.
if (autodialEnabled) {
#if defined(XP_WIN)
#if defined(XP_WIN) && !defined(WINCE)
// On Windows, need to do some registry checking to see if
// autodial is enabled at the OS level. Only if that is
// enabled are we always up for the purposes of offline

Просмотреть файл

@ -1246,7 +1246,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) {