summaryrefslogtreecommitdiff
path: root/cppe/src
diff options
context:
space:
mode:
Diffstat (limited to 'cppe/src')
-rw-r--r--cppe/src/IceE/UUID.cpp63
-rwxr-xr-xcppe/src/IceE/ice.vcp8088
-rwxr-xr-xcppe/src/IceEC/icec.vcp12
3 files changed, 6193 insertions, 1970 deletions
diff --git a/cppe/src/IceE/UUID.cpp b/cppe/src/IceE/UUID.cpp
index 69cef2d4f19..13201c321cd 100644
--- a/cppe/src/IceE/UUID.cpp
+++ b/cppe/src/IceE/UUID.cpp
@@ -20,8 +20,9 @@
//
-#if defined(_WIN32_WCE)
+#ifdef _WIN32_WCE
# include <wincrypt.h>
+# include <IceE/StaticMutex.h>
#elif defined(_WIN32)
# include <rpc.h>
#else
@@ -65,7 +66,37 @@ IceUtil::UUIDGenerationException::UUIDGenerationException(const char* file, int
const char* IceUtil::UUIDGenerationException::_name = "IceUtil::UUIDGenerationException";
-#ifndef _WIN32
+#ifdef _WIN32_WCE
+
+static IceUtil::StaticMutex staticMutex = ICEE_STATIC_MUTEX_INITIALIZER;
+static HCRYPTPROV cryptProv = 0;
+
+namespace
+{
+
+//
+// Close the crypt provider on exit.
+//
+class UUIDCleanup
+{
+public:
+
+ ~UUIDCleanup()
+ {
+ IceUtil::StaticMutex::Lock lock(staticMutex);
+ if(cryptProv != 0)
+ {
+ CryptReleaseContext(cryptProv, 0);
+ cryptProv = 0;
+ }
+ }
+};
+
+static UUIDCleanup uuidCleanup;
+
+}
+
+#elif !defined(_WIN32)
//
// Unfortunately on Linux (at least up to 2.6.9), concurrent access to /dev/urandom
// can return the same value. Search for "Concurrent access to /dev/urandom" in the
@@ -163,27 +194,27 @@ IceUtil::generateUUID()
size_t index = 0;
#ifdef _WIN32_WCE
- //
- // TODO: I suspect we should cache this provider.
- //
- HCRYPTPROV prov;
- if(!CryptAcquireContext(&prov, 0, 0, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
+
+ HCRYPTPROV localProv;
+
{
- throw UUIDGenerationException(__FILE__, __LINE__);
+ IceUtil::StaticMutex::Lock lock(staticMutex);
+ if(cryptProv == 0)
+ {
+ if(!CryptAcquireContext(&cryptProv, 0, 0, PROV_RSA_FULL, CRYPT_VERIFYCONTEXT))
+ {
+ throw UUIDGenerationException(__FILE__, __LINE__);
+ }
+ }
+ localProv = cryptProv;
}
-
+
memset(buffer, 0, 16);
- if(!CryptGenRandom(prov, 16, (unsigned char*)buffer))
+ if(!CryptGenRandom(localProv, 16, (unsigned char*)buffer))
{
- bool rc = CryptReleaseContext(prov, 0);
- assert(rc);
throw UUIDGenerationException(__FILE__, __LINE__);
}
- if(!CryptReleaseContext(prov, 0))
- {
- throw UUIDGenerationException(__FILE__, __LINE__);
- }
#else
{
//
diff --git a/cppe/src/IceE/ice.vcp b/cppe/src/IceE/ice.vcp
index fdbad98ced7..6594ab6220f 100755
--- a/cppe/src/IceE/ice.vcp
+++ b/cppe/src/IceE/ice.vcp
@@ -194,7 +194,8 @@ LINK32=link.exe
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
-# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"iceed.lib"
@@ -220,7 +221,8 @@ BSC32=bscmake.exe
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /O2 /M$(CECrtMT) /c
-# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /O2 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"icee.lib"
@@ -246,7 +248,8 @@ BSC32=bscmake.exe
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c
-# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"iceed.lib"
@@ -272,7 +275,8 @@ BSC32=bscmake.exe
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c
-# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /D "ICEE_STATIC_LIBS" /Gs8192 /GF /O2 /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"icee.lib"
@@ -560,26 +564,19 @@ NODEP_CPP_ACCEP=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_ACCEP=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\Network.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_ACCEP=\
- "..\..\include\IceE\Acceptor.h"\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
@@ -587,62 +584,146 @@ NODEP_CPP_ACCEP=\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_ACCEP=\
+ ".\Acceptor.h"\
+ ".\AcceptorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Network.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ACCEP=\
- "..\..\include\IceE\Acceptor.h"\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_ACCEP=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
+ ".\Acceptor.h"\
+ ".\AcceptorF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\Network.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_ACCEP=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -1226,119 +1307,183 @@ NODEP_CPP_BASIC=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_BASIC=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\Protocol.h"\
- ".\ProxyFactory.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_BASIC=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StaticMutex.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_BASIC=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Protocol.h"\
".\ProxyFactory.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_BASIC=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_BASIC=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StaticMutex.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\Protocol.h"\
+ ".\ProxyFactory.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_BASIC=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -1756,11 +1901,14 @@ NODEP_CPP_BUFFE=\
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -1775,11 +1923,51 @@ DEP_CPP_BUFFE=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_BUFFE=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -1787,29 +1975,55 @@ NODEP_CPP_BUFFE=\
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_BUFFE=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -2196,6 +2410,7 @@ NODEP_CPP_BUILT=\
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Current.h"\
@@ -2203,6 +2418,7 @@ DEP_CPP_BUILT=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -2220,10 +2436,51 @@ DEP_CPP_BUILT=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_BUILT=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -2231,6 +2488,7 @@ NODEP_CPP_BUILT=\
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Current.h"\
@@ -2238,6 +2496,7 @@ DEP_CPP_BUILT=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -2255,10 +2514,51 @@ DEP_CPP_BUILT=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_BUILT=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -2743,6 +3043,7 @@ NODEP_CPP_COMMU=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_COMMU=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Communicator.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.h"\
@@ -2752,11 +3053,16 @@ DEP_CPP_COMMU=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
@@ -2773,13 +3079,14 @@ DEP_CPP_COMMU=\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\ObjectAdapterFactory.h"\
".\ProxyFactory.h"\
@@ -2787,15 +3094,51 @@ DEP_CPP_COMMU=\
".\ReferenceFactory.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_COMMU=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -2812,8 +3155,10 @@ DEP_CPP_COMMU=\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Monitor.h"\
@@ -2821,23 +3166,21 @@ DEP_CPP_COMMU=\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\ObjectAdapterFactory.h"\
".\ProxyFactory.h"\
@@ -2845,15 +3188,51 @@ DEP_CPP_COMMU=\
".\ReferenceFactory.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_COMMU=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -3223,6 +3602,51 @@ DEP_CPP_COND_=\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_COND_=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -3237,6 +3661,51 @@ DEP_CPP_COND_=\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_COND_=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -3747,6 +4216,7 @@ NODEP_CPP_CONNE=\
DEP_CPP_CONNE=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
@@ -3756,13 +4226,19 @@ DEP_CPP_CONNE=\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FacetMap.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
@@ -3781,6 +4257,7 @@ DEP_CPP_CONNE=\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\ServantManagerF.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\Thread.h"\
@@ -3789,8 +4266,12 @@ DEP_CPP_CONNE=\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Protocol.h"\
".\ProxyFactory.h"\
@@ -3799,20 +4280,52 @@ DEP_CPP_CONNE=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceUtil.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_CONNE=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\FacetMap.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\RouterF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -3833,8 +4346,10 @@ DEP_CPP_CONNE=\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Monitor.h"\
@@ -3848,7 +4363,6 @@ DEP_CPP_CONNE=\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
@@ -3862,8 +4376,12 @@ DEP_CPP_CONNE=\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Protocol.h"\
".\ProxyFactory.h"\
@@ -3872,20 +4390,52 @@ DEP_CPP_CONNE=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceUtil.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_CONNE=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\FacetMap.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\RouterF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -4389,26 +4939,19 @@ NODEP_CPP_CONNEC=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_CONNEC=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\Network.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
@@ -4416,62 +4959,146 @@ NODEP_CPP_CONNEC=\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_CONNEC=\
+ ".\Connector.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Network.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_CONNEC=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
+ ".\Connector.h"\
+ ".\ConnectorF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\Network.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_CONNEC=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -4857,21 +5484,17 @@ NODEP_CPP_CURRE=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_CURRE=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Current.h"\
- "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -4880,29 +5503,66 @@ DEP_CPP_CURRE=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_CURRE=\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_CURRE=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Current.h"\
- "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -4911,9 +5571,51 @@ DEP_CPP_CURRE=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_CURRE=\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -5383,24 +6085,19 @@ NODEP_CPP_DEFAU=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_DEFAU=\
- ".\DefaultsAndOverrides.h"\
- ".\DefaultsAndOverridesF.h"\
- ".\Network.h"\
-
-NODEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
@@ -5408,52 +6105,120 @@ NODEP_CPP_DEFAU=\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_DEFAU=\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
".\Network.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_DEFAU=\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_DEFAU=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
- "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ ".\DefaultsAndOverrides.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\Network.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_DEFAU=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -5916,6 +6681,7 @@ DEP_CPP_ENDPO=\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\ProxyF.h"\
@@ -5927,52 +6693,51 @@ DEP_CPP_ENDPO=\
".\AcceptorF.h"\
".\ConnectorF.h"\
".\Endpoint.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ENDPO=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\LoggerF.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -5984,66 +6749,59 @@ DEP_CPP_ENDPO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
".\AcceptorF.h"\
".\ConnectorF.h"\
".\Endpoint.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ENDPO=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\LoggerF.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -6446,16 +7204,20 @@ NODEP_CPP_ENDPOI=\
DEP_CPP_ENDPOI=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -6468,16 +7230,58 @@ DEP_CPP_ENDPOI=\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ "..\TcpTransport\TcpEndpoint.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
+ ".\UnknownEndpoint.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ENDPOI=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -6486,37 +7290,71 @@ DEP_CPP_ENDPOI=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ "..\TcpTransport\TcpEndpoint.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
+ ".\UnknownEndpoint.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ENDPOI=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -6831,6 +7669,51 @@ DEP_CPP_EXCEP=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\SafeStdio.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_EXCEP=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -6841,6 +7724,51 @@ DEP_CPP_EXCEP=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\SafeStdio.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_EXCEP=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -7138,6 +8066,51 @@ DEP_CPP_FACTO=\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_FACTO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -7156,6 +8129,51 @@ DEP_CPP_FACTO=\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_FACTO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -7464,6 +8482,51 @@ DEP_CPP_FACTOR=\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_FACTOR=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -7481,6 +8544,51 @@ DEP_CPP_FACTOR=\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_FACTOR=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -7836,6 +8944,7 @@ DEP_CPP_IDENT=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -7850,9 +8959,51 @@ DEP_CPP_IDENT=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_IDENT=\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -7867,6 +9018,7 @@ DEP_CPP_IDENT=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
@@ -7881,9 +9033,51 @@ DEP_CPP_IDENT=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_IDENT=\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -8254,12 +9448,15 @@ NODEP_CPP_IDENTI=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_IDENTI=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -8275,42 +9472,108 @@ DEP_CPP_IDENTI=\
"..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_IDENTI=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_IDENTI=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\IdentityUtil.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\StringUtil.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_IDENTI=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -8915,143 +10178,213 @@ NODEP_CPP_INCOM=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_INCOM=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\Protocol.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\ServantManager.h"\
-
-NODEP_CPP_INCOM=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
"..\..\include\IceE\Current.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\FacetMap.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapter.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_INCOM=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Protocol.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\ServantManager.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_INCOM=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_INCOM=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
"..\..\include\IceE\Current.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\Incoming.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapter.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\Protocol.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\ServantManager.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_INCOM=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -9641,44 +10974,35 @@ NODEP_CPP_INCOMI=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_INCOMI=\
- ".\DefaultsAndOverrides.h"\
- ".\DefaultsAndOverridesF.h"\
- ".\IncomingConnectionFactory.h"\
- ".\Instance.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_INCOMI=\
- "..\..\include\IceE\Acceptor.h"\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
@@ -9686,94 +11010,177 @@ NODEP_CPP_INCOMI=\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_INCOMI=\
+ ".\Acceptor.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\IncomingConnectionFactory.h"\
".\Instance.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_INCOMI=\
- "..\..\include\IceE\Acceptor.h"\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_INCOMI=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
+ ".\Acceptor.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
+ ".\DefaultsAndOverrides.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
+ ".\IncomingConnectionFactory.h"\
+ ".\Instance.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_INCOMI=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -10243,6 +11650,7 @@ NODEP_CPP_INITI=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_INITI=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Communicator.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
@@ -10250,11 +11658,14 @@ DEP_CPP_INITI=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -10267,15 +11678,53 @@ DEP_CPP_INITI=\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_INITI=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -10284,36 +11733,64 @@ DEP_CPP_INITI=\
"..\..\include\IceE\Communicator.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\RecMutex.h"\
- "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_INITI=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -11004,95 +12481,71 @@ NODEP_CPP_INSTA=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_INSTA=\
- ".\DefaultsAndOverrides.h"\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\LoggerI.h"\
- ".\Network.h"\
- ".\ObjectAdapterFactory.h"\
- ".\ProxyFactory.h"\
- ".\Reference.h"\
- ".\ReferenceFactory.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_INSTA=\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FactoryTable.h"\
+ "..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\Initialize.h"\
+ "..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Locator.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Logger.h"\
"..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Router.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StaticMutex.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionFactory.h"\
- ".\LocatorInfoF.h"\
- ".\ObjectAdapterI.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_INSTA=\
+ "..\..\include\IceE\UserExceptionFactory.h"\
+ "..\..\include\IceE\UserExceptionFactoryF.h"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
".\LoggerI.h"\
- ".\Network.h"\
".\ObjectAdapterFactory.h"\
+ ".\OutgoingConnectionFactory.h"\
".\ProxyFactory.h"\
".\Reference.h"\
".\ReferenceFactory.h"\
@@ -11100,69 +12553,151 @@ DEP_CPP_INSTA=\
".\RouterInfo.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_INSTA=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_INSTA=\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Locator.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\Logger.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Router.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
- "..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StaticMutex.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionFactory.h"\
- ".\LocatorInfoF.h"\
- ".\ObjectAdapterI.h"\
- ".\TraceLevelsF.h"\
+ ".\DefaultsAndOverrides.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\LocatorInfo.h"\
+ ".\LoggerI.h"\
+ ".\ObjectAdapterFactory.h"\
+ ".\OutgoingConnectionFactory.h"\
+ ".\ProxyFactory.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactory.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_INSTA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -11654,59 +13189,76 @@ NODEP_CPP_LOCAL=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOCAL=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Proxy.h"\
+ "..\..\include\IceE\ProxyF.h"\
+ "..\..\include\IceE\ProxyFactoryF.h"\
+ "..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
".\Network.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOCAL=\
"..\..\..\..\usr\include\pthread.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -11720,51 +13272,51 @@ DEP_CPP_LOCAL=\
"..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\SafeStdio.h"\
".\Network.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOCAL=\
"..\..\..\..\usr\include\pthread.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -12053,6 +13605,51 @@ DEP_CPP_LOCALO=\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_LOCALO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -12068,6 +13665,51 @@ DEP_CPP_LOCALO=\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_LOCALO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -12480,6 +14122,7 @@ NODEP_CPP_LOCAT=\
DEP_CPP_LOCAT=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
@@ -12490,10 +14133,13 @@ DEP_CPP_LOCAT=\
"..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Locator.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
@@ -12515,12 +14161,51 @@ DEP_CPP_LOCAT=\
"..\..\include\IceE\UndefSysMacros.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOCAT=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\Locator.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -12528,6 +14213,7 @@ NODEP_CPP_LOCAT=\
DEP_CPP_LOCAT=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
@@ -12538,10 +14224,13 @@ DEP_CPP_LOCAT=\
"..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Locator.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
@@ -12563,12 +14252,51 @@ DEP_CPP_LOCAT=\
"..\..\include\IceE\UndefSysMacros.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOCAT=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\Locator.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -13235,127 +14963,210 @@ NODEP_CPP_LOCATO=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOCATO=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\Reference.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_LOCATO=\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FactoryTable.h"\
+ "..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Locator.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_LOCATO=\
+ "..\..\include\IceE\UserExceptionFactory.h"\
+ "..\..\include\IceE\UserExceptionFactoryF.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
".\Reference.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOCATO=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_LOCATO=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Locator.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\LocatorInfo.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_LOCATO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -13772,6 +15583,7 @@ DEP_CPP_LOGGE=\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Logger.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\ProxyF.h"\
@@ -13779,9 +15591,51 @@ DEP_CPP_LOGGE=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOGGE=\
- "..\..\include\IceE\Logger.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -13794,6 +15648,7 @@ DEP_CPP_LOGGE=\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Logger.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\ProxyF.h"\
@@ -13801,9 +15656,51 @@ DEP_CPP_LOGGE=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOGGE=\
- "..\..\include\IceE\Logger.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -14217,53 +16114,125 @@ NODEP_CPP_LOGGER=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOGGER=\
- ".\LoggerI.h"\
-
-NODEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Logger.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
+ ".\LoggerI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_LOGGER=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGER=\
- ".\LoggerI.h"\
-
-NODEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Logger.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ ".\LoggerI.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_LOGGER=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -14600,6 +16569,8 @@ DEP_CPP_LOGGERU=\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Logger.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
@@ -14608,34 +16579,57 @@ DEP_CPP_LOGGERU=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_LOGGERU=\
- "..\..\include\IceE\Logger.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGERU=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
-
-NODEP_CPP_LOGGERU=\
- "..\..\include\IceE\Logger.h"\
- "..\..\include\IceE\LoggerF.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -15088,73 +17082,132 @@ NODEP_CPP_NETWO=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_NETWO=\
- ".\Network.h"\
-
-NODEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
+ ".\Network.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_NETWO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_NETWO=\
- ".\Network.h"\
-
-NODEP_CPP_NETWO=\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ ".\Network.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_NETWO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -15560,6 +17613,7 @@ NODEP_CPP_OBJEC=\
DEP_CPP_OBJEC=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Current.h"\
@@ -15567,8 +17621,10 @@ DEP_CPP_OBJEC=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -15586,11 +17642,51 @@ DEP_CPP_OBJEC=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_OBJEC=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -15607,6 +17703,7 @@ DEP_CPP_OBJEC=\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -15615,20 +17712,57 @@ DEP_CPP_OBJEC=\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OperationMode.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\ServantManagerF.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_OBJEC=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -16241,7 +18375,7 @@ NODEP_CPP_OBJECT=\
DEP_CPP_OBJECT=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\Communicator.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
@@ -16251,17 +18385,23 @@ DEP_CPP_OBJECT=\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FacetMap.h"\
"..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
- "..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Locator.h"\
+ "..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
@@ -16281,6 +18421,8 @@ DEP_CPP_OBJECT=\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Router.h"\
+ "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
"..\..\include\IceE\Shared.h"\
@@ -16294,7 +18436,12 @@ DEP_CPP_OBJECT=\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
"..\..\include\IceE\UUID.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
".\IncomingConnectionFactory.h"\
".\Instance.h"\
".\LocatorInfo.h"\
@@ -16306,64 +18453,82 @@ DEP_CPP_OBJECT=\
".\RouterInfo.h"\
".\RouterInfoF.h"\
".\ServantManager.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_OBJECT=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\FacetMap.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\Locator.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Router.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_OBJECT=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\Communicator.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\FactoryTable.h"\
- "..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
- "..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
"..\..\include\IceE\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapter.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
- "..\..\include\IceE\Outgoing.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
@@ -16372,17 +18537,19 @@ DEP_CPP_OBJECT=\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceE\UserExceptionFactory.h"\
- "..\..\include\IceE\UserExceptionFactoryF.h"\
"..\..\include\IceE\UUID.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
".\IncomingConnectionFactory.h"\
".\Instance.h"\
".\LocatorInfo.h"\
@@ -16394,22 +18561,51 @@ DEP_CPP_OBJECT=\
".\RouterInfo.h"\
".\RouterInfoF.h"\
".\ServantManager.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_OBJECT=\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\FacetMap.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\Locator.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Router.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -17053,107 +19249,168 @@ NODEP_CPP_OBJECTA=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_OBJECTA=\
- ".\ObjectAdapterFactory.h"\
-
-NODEP_CPP_OBJECTA=\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\FacetMap.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapter.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
- ".\ObjectAdapterI.h"\
+ ".\ObjectAdapterFactory.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OBJECTA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_OBJECTA=\
- ".\ObjectAdapterFactory.h"\
-
-NODEP_CPP_OBJECTA=\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapter.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
- ".\ObjectAdapterI.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ ".\ObjectAdapterFactory.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OBJECTA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -17507,6 +19764,51 @@ DEP_CPP_OPERA=\
"..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OPERA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -17521,6 +19823,51 @@ DEP_CPP_OPERA=\
"..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OPERA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -18049,38 +20396,35 @@ NODEP_CPP_OUTGO=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_OUTGO=\
- ".\Reference.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_OUTGO=\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Object.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
@@ -18088,82 +20432,148 @@ NODEP_CPP_OUTGO=\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\Reference.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OUTGO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_OUTGO=\
- ".\Reference.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_OUTGO=\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Object.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Outgoing.h"\
- "..\..\include\IceE\Proxy.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\Reference.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OUTGO=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -18746,82 +21156,61 @@ NODEP_CPP_OUTGOI=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_OUTGOI=\
- ".\DefaultsAndOverrides.h"\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\OutgoingConnectionFactory.h"\
- ".\Reference.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_OUTGOI=\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
- "..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_OUTGOI=\
+ ".\AcceptorF.h"\
+ ".\Connector.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\OutgoingConnectionFactory.h"\
".\Reference.h"\
@@ -18829,66 +21218,156 @@ DEP_CPP_OUTGOI=\
".\RouterInfo.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_OUTGOI=\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
- "..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
+ ".\AcceptorF.h"\
+ ".\Connector.h"\
+ ".\ConnectorF.h"\
+ ".\DefaultsAndOverrides.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\OutgoingConnectionFactory.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_OUTGOI=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -19360,14 +21839,17 @@ NODEP_CPP_PROPE=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_PROPE=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -19385,12 +21867,51 @@ DEP_CPP_PROPE=\
"..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_PROPE=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- ".\PropertyNames.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -19398,35 +21919,64 @@ NODEP_CPP_PROPE=\
DEP_CPP_PROPE=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_PROPE=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- ".\PropertyNames.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -20034,151 +22584,196 @@ NODEP_CPP_PROXY=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_PROXY=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\ObjectAdapterFactory.h"\
- ".\ProxyFactory.h"\
- ".\Reference.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_PROXY=\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
- "..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\ObjectAdapterI.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_PROXY=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\ObjectAdapterFactory.h"\
".\ProxyFactory.h"\
".\Reference.h"\
".\ReferenceFactoryF.h"\
".\RouterInfo.h"\
".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_PROXY=\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_PROXY=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapter.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
- "..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\ObjectAdapterI.h"\
- ".\TraceLevelsF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\ProxyFactory.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_PROXY=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -20818,70 +23413,47 @@ NODEP_CPP_PROXYF=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_PROXYF=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\ProxyFactory.h"\
- ".\Reference.h"\
- ".\ReferenceFactory.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_PROXYF=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_PROXYF=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
".\ProxyFactory.h"\
@@ -20890,55 +23462,145 @@ DEP_CPP_PROXYF=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_PROXYF=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_PROXYF=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\LocatorInfo.h"\
+ ".\ProxyFactory.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactory.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_PROXYF=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -21301,6 +23963,51 @@ DEP_CPP_RECMU=\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_RECMU=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -21313,6 +24020,51 @@ DEP_CPP_RECMU=\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_RECMU=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -21947,157 +24699,234 @@ NODEP_CPP_REFER=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_REFER=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\Reference.h"\
- ".\ReferenceFactory.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_REFER=\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FactoryTable.h"\
+ "..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\Incoming.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Locator.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Router.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionFactory.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_REFER=\
+ "..\..\include\IceE\UserExceptionFactory.h"\
+ "..\..\include\IceE\UserExceptionFactoryF.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
+ ".\OutgoingConnectionFactory.h"\
".\Reference.h"\
".\ReferenceFactory.h"\
".\ReferenceFactoryF.h"\
".\RouterInfo.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_REFER=\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_REFER=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Locator.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Router.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Cond.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Monitor.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\Thread.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- "..\..\include\IceUtil\Time.h"\
- ".\ConnectionFactory.h"\
- ".\ConnectionI.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\LocatorInfo.h"\
+ ".\OutgoingConnectionFactory.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactory.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_REFER=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -22778,133 +25607,198 @@ NODEP_CPP_REFERE=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_REFERE=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\LocatorInfo.h"\
- ".\ProxyFactory.h"\
- ".\Reference.h"\
- ".\ReferenceFactory.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_REFERE=\
- "..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\LocatorF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
- "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_REFERE=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
- ".\ProxyFactory.h"\
".\Reference.h"\
".\ReferenceFactory.h"\
".\ReferenceFactoryF.h"\
".\RouterInfo.h"\
".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_REFERE=\
- "..\..\include\IceE\AcceptorF.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerUtil.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
+ "..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTableF.h"\
- "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\LocatorInfo.h"\
+ ".\Reference.h"\
+ ".\ReferenceFactory.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_REFERE=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -23387,6 +26281,7 @@ NODEP_CPP_ROUTE=\
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
@@ -23395,8 +26290,10 @@ DEP_CPP_ROUTE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -23412,17 +26309,57 @@ DEP_CPP_ROUTE=\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Router.h"\
"..\..\include\IceE\ServantManagerF.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ROUTE=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\Router.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -23430,6 +26367,7 @@ NODEP_CPP_ROUTE=\
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
@@ -23438,8 +26376,10 @@ DEP_CPP_ROUTE=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -23455,17 +26395,57 @@ DEP_CPP_ROUTE=\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Router.h"\
"..\..\include\IceE\ServantManagerF.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ROUTE=\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\Router.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -24044,27 +27024,37 @@ NODEP_CPP_ROUTER=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_ROUTER=\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_ROUTER=\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
"..\..\include\IceE\Current.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\Incoming.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\Object.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\Outgoing.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
@@ -24074,59 +27064,147 @@ NODEP_CPP_ROUTER=\
"..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTable.h"\
"..\..\include\IceE\RoutingTableF.h"\
+ "..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_ROUTER=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_ROUTER=\
- ".\RouterInfo.h"\
- ".\RouterInfoF.h"\
-
-NODEP_CPP_ROUTER=\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Monitor.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\Proxy.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Router.h"\
- "..\..\include\IceE\RouterF.h"\
"..\..\include\IceE\RoutingTable.h"\
"..\..\include\IceE\RoutingTableF.h"\
+ "..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Functional.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
+ ".\RouterInfo.h"\
+ ".\RouterInfoF.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_ROUTER=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -24533,6 +27611,7 @@ DEP_CPP_ROUTI=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
@@ -24549,9 +27628,51 @@ DEP_CPP_ROUTI=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ROUTI=\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -24578,9 +27699,51 @@ DEP_CPP_ROUTI=\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_ROUTI=\
- "..\..\include\IceE\Identity.h"\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -24907,6 +28070,51 @@ DEP_CPP_RWREC=\
"..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_RWREC=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -24924,6 +28132,51 @@ DEP_CPP_RWREC=\
"..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_RWREC=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -25180,6 +28433,51 @@ DEP_CPP_SAFES=\
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\SafeStdio.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_SAFES=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -25187,6 +28485,51 @@ DEP_CPP_SAFES=\
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\SafeStdio.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_SAFES=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -25678,109 +29021,169 @@ NODEP_CPP_SERVA=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_SERVA=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\ServantManager.h"\
-
-NODEP_CPP_SERVA=\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\FacetMap.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\ServantManagerF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_SERVA=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\ServantManager.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_SERVA=\
- "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_SERVA=\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\FacetMap.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ServantManagerF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\ServantManager.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_SERVA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -26131,6 +29534,51 @@ DEP_CPP_SHARE=\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_SHARE=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -26144,6 +29592,51 @@ DEP_CPP_SHARE=\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_SHARE=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -26417,6 +29910,51 @@ DEP_CPP_STATI=\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_STATI=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -26429,6 +29967,51 @@ DEP_CPP_STATI=\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_STATI=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -26675,6 +30258,51 @@ DEP_CPP_STRIN=\
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\StringUtil.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_STRIN=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -26682,6 +30310,51 @@ DEP_CPP_STRIN=\
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\StringUtil.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_STRIN=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -27196,6 +30869,7 @@ NODEP_CPP_TCPEN=\
DEP_CPP_TCPEN=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
@@ -27203,10 +30877,14 @@ DEP_CPP_TCPEN=\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
@@ -27239,55 +30917,51 @@ DEP_CPP_TCPEN=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_TCPEN=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LoggerF.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -27297,33 +30971,27 @@ DEP_CPP_TCPEN=\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\RecMutex.h"\
- "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
"..\TcpTransport\TcpEndpoint.h"\
".\Acceptor.h"\
".\AcceptorF.h"\
@@ -27338,55 +31006,51 @@ DEP_CPP_TCPEN=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_TCPEN=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LoggerF.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -27758,6 +31422,51 @@ DEP_CPP_THREA=\
"..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THREA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -27773,6 +31482,51 @@ DEP_CPP_THREA=\
"..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THREA=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -28045,6 +31799,51 @@ DEP_CPP_THREAD=\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THREAD=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -28056,6 +31855,51 @@ DEP_CPP_THREAD=\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\ThreadException.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_THREAD=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -28302,16 +32146,104 @@ DEP_CPP_TIME_=\
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_TIME_=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\Time.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_TIME_=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -28739,22 +32671,19 @@ NODEP_CPP_TRACE=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_TRACE=\
- ".\TraceLevels.h"\
-
-NODEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
@@ -28762,52 +32691,118 @@ NODEP_CPP_TRACE=\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\TraceLevelsF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_TRACE=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_TRACE=\
- ".\TraceLevels.h"\
-
-NODEP_CPP_TRACE=\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
- "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Properties.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\TraceLevelsF.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ ".\TraceLevels.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_TRACE=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -29346,113 +33341,154 @@ NODEP_CPP_TRACEU=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_TRACEU=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\Protocol.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
- ".\TraceUtil.h"\
-
-NODEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Logger.h"\
"..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
- "..\..\include\IceE\ObjectAdapterFactoryF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_TRACEU=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
".\Protocol.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
".\TraceLevels.h"\
".\TraceUtil.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_TRACEU=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\ConnectionFactoryF.h"\
- "..\..\include\IceE\ConnectionIF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
+ "..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\Logger.h"\
- "..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\Object.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
- "..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\StringUtil.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
- ".\TraceLevelsF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ ".\Protocol.h"\
+ ".\TraceLevels.h"\
+ ".\TraceUtil.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_TRACEU=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -29936,109 +33972,174 @@ NODEP_CPP_TRANS=\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_TRANS=\
- ".\DefaultsAndOverridesF.h"\
- ".\Instance.h"\
- ".\Network.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
- ".\TraceLevels.h"\
-
-NODEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
+ "..\..\include\IceE\OperationMode.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\Proxy.h"\
"..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+ "..\..\include\IceE\RecMutex.h"\
"..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_TRANS=\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Network.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_TRANS=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Current.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\IceEConfig.h"\
- "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalException.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LoggerF.h"\
+ "..\..\include\IceE\LocalExceptions.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\LoggerUtil.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
+ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\Proxy.h"\
- "..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\ReferenceF.h"\
- "..\..\include\IceE\Transceiver.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\..\include\IceUtil\Config.h"\
- "..\..\include\IceUtil\Exception.h"\
- "..\..\include\IceUtil\Handle.h"\
- "..\..\include\IceUtil\Lock.h"\
- "..\..\include\IceUtil\Mutex.h"\
- "..\..\include\IceUtil\RecMutex.h"\
- "..\..\include\IceUtil\SafeStdio.h"\
- "..\..\include\IceUtil\Shared.h"\
- "..\..\include\IceUtil\ThreadException.h"\
- ".\LocatorInfoF.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
+ ".\Instance.h"\
+ ".\Network.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
+ ".\TraceLevels.h"\
+ ".\Transceiver.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_TRANS=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -30596,7 +34697,9 @@ DEP_CPP_UNKNO=\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
@@ -30620,52 +34723,51 @@ DEP_CPP_UNKNO=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\UnknownEndpoint.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_UNKNO=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\LoggerF.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -30680,12 +34782,10 @@ DEP_CPP_UNKNO=\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\InstanceF.h"\
- "..\..\include\IceE\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.h"\
+ "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
- "..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OutgoingConnectionFactoryF.h"\
"..\..\include\IceE\PropertiesF.h"\
"..\..\include\IceE\ProxyF.h"\
@@ -30696,7 +34796,6 @@ DEP_CPP_UNKNO=\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
".\AcceptorF.h"\
".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
@@ -30706,52 +34805,51 @@ DEP_CPP_UNKNO=\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\UnknownEndpoint.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
NODEP_CPP_UNKNO=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\LoggerF.h"\
- ".\onfig\_epilog.h"\
- ".\onfig\_msvc_warnings_off.h"\
- ".\onfig\_prolog.h"\
- ".\onfig\stl_apcc.h"\
- ".\onfig\stl_apple.h"\
- ".\onfig\stl_as400.h"\
- ".\onfig\stl_bc.h"\
- ".\onfig\stl_como.h"\
- ".\onfig\stl_confix.h"\
- ".\onfig\stl_cray.h"\
- ".\onfig\stl_dec.h"\
- ".\onfig\stl_dec_vms.h"\
- ".\onfig\stl_dm.h"\
- ".\onfig\stl_evc.h"\
- ".\onfig\stl_fujitsu.h"\
- ".\onfig\stl_gcc.h"\
- ".\onfig\stl_hpacc.h"\
- ".\onfig\stl_ibm.h"\
- ".\onfig\stl_icc.h"\
- ".\onfig\stl_intel.h"\
- ".\onfig\stl_kai.h"\
- ".\onfig\stl_msvc.h"\
- ".\onfig\stl_mwerks.h"\
- ".\onfig\stl_mycomp.h"\
- ".\onfig\stl_sco.h"\
- ".\onfig\stl_sgi.h"\
- ".\onfig\stl_solaris.h"\
- ".\onfig\stl_sunpro.h"\
- ".\onfig\stl_symantec.h"\
- ".\onfig\stl_watcom.h"\
- ".\onfig\stl_wince.h"\
- ".\onfig\stlcomp.h"\
- ".\thread.h"\
- ".\tl\_abbrevs.h"\
- ".\tl\_config.h"\
- ".\tl\_config_compat.h"\
- ".\tl\_config_compat_post.h"\
- ".\tl\_epilog.h"\
- ".\tl\_prolog.h"\
- ".\tl\_site_config.h"\
- ".\tl\_stlport_version.h"\
- ".\tl_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
@@ -31087,6 +35185,51 @@ DEP_CPP_UUID_=\
"..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UUID.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_UUID_=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
@@ -31100,6 +35243,51 @@ DEP_CPP_UUID_=\
"..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UUID.h"\
+ {$(INCLUDE)}"config\_epilog.h"\
+ {$(INCLUDE)}"config\_msvc_warnings_off.h"\
+ {$(INCLUDE)}"config\_prolog.h"\
+ {$(INCLUDE)}"config\stl_apcc.h"\
+ {$(INCLUDE)}"config\stl_apple.h"\
+ {$(INCLUDE)}"config\stl_as400.h"\
+ {$(INCLUDE)}"config\stl_bc.h"\
+ {$(INCLUDE)}"config\stl_como.h"\
+ {$(INCLUDE)}"config\stl_confix.h"\
+ {$(INCLUDE)}"config\stl_cray.h"\
+ {$(INCLUDE)}"config\stl_dec.h"\
+ {$(INCLUDE)}"config\stl_dec_vms.h"\
+ {$(INCLUDE)}"config\stl_dm.h"\
+ {$(INCLUDE)}"config\stl_evc.h"\
+ {$(INCLUDE)}"config\stl_fujitsu.h"\
+ {$(INCLUDE)}"config\stl_gcc.h"\
+ {$(INCLUDE)}"config\stl_hpacc.h"\
+ {$(INCLUDE)}"config\stl_ibm.h"\
+ {$(INCLUDE)}"config\stl_icc.h"\
+ {$(INCLUDE)}"config\stl_intel.h"\
+ {$(INCLUDE)}"config\stl_kai.h"\
+ {$(INCLUDE)}"config\stl_msvc.h"\
+ {$(INCLUDE)}"config\stl_mwerks.h"\
+ {$(INCLUDE)}"config\stl_mycomp.h"\
+ {$(INCLUDE)}"config\stl_sco.h"\
+ {$(INCLUDE)}"config\stl_sgi.h"\
+ {$(INCLUDE)}"config\stl_solaris.h"\
+ {$(INCLUDE)}"config\stl_sunpro.h"\
+ {$(INCLUDE)}"config\stl_symantec.h"\
+ {$(INCLUDE)}"config\stl_watcom.h"\
+ {$(INCLUDE)}"config\stl_wince.h"\
+ {$(INCLUDE)}"config\stlcomp.h"\
+ {$(INCLUDE)}"pthread.h"\
+ {$(INCLUDE)}"stl\_abbrevs.h"\
+ {$(INCLUDE)}"stl\_config.h"\
+ {$(INCLUDE)}"stl\_config_compat.h"\
+ {$(INCLUDE)}"stl\_config_compat_post.h"\
+ {$(INCLUDE)}"stl\_epilog.h"\
+ {$(INCLUDE)}"stl\_prolog.h"\
+ {$(INCLUDE)}"stl\_site_config.h"\
+ {$(INCLUDE)}"stl\_stlport_version.h"\
+ {$(INCLUDE)}"stl_user_config.h"\
+
+NODEP_CPP_UUID_=\
+ "..\..\..\..\usr\include\pthread.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
diff --git a/cppe/src/IceEC/icec.vcp b/cppe/src/IceEC/icec.vcp
index d496959befd..0246927f375 100755
--- a/cppe/src/IceEC/icec.vcp
+++ b/cppe/src/IceEC/icec.vcp
@@ -189,7 +189,8 @@ LINK32=link.exe
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /M$(CECrtMTDebug) /c
-# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /YX /M$(CECrtMTDebug) /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /M$(CECrtMTDebug) /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"iceecd.lib"
@@ -215,7 +216,8 @@ BSC32=bscmake.exe
# PROP Target_Dir ""
CPP=clarm.exe
# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_LIB" /YX /O2 /M$(CECrtMT) /c
-# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /YX /O2 /M$(CECrtMT) /c
+# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "NDEBUG" /D "ARM" /D "_ARM_" /D "ARMV4" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /O2 /M$(CECrtMT) /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"iceec.lib"
@@ -241,7 +243,8 @@ BSC32=bscmake.exe
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /GR /GX /Zi /Od /D "DEBUG" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "_LIB" /YX /Gs8192 /GF /c
-# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /YX /Gs8192 /GF /c
+# ADD CPP /nologo /W3 /GR /GX /Zi /Od /I ".." /I "../../include" /D "DEBUG" /D "_i386_" /D "_X86_" /D "x86" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /Gs8192 /GF /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"iceecd.lib"
@@ -267,7 +270,8 @@ BSC32=bscmake.exe
# PROP Target_Dir ""
CPP=cl.exe
# ADD BASE CPP /nologo /W3 /GR /GX /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D "_i386_" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /YX /Gs8192 /GF /O2 /c
-# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /YX /Gs8192 /GF /O2 /c
+# ADD CPP /nologo /W3 /GR /GX /I ".." /I "../../include" /D "_i386_" /D "_X86_" /D "x86" /D "NDEBUG" /D "_LIB" /D "ICEE_STATIC_LIBS" /D _WIN32_WCE=$(CEVersion) /D "$(CePlatform)" /D UNDER_CE=$(CEVersion) /D "UNICODE" /D "_UNICODE" /D "ICEE_PURE_CLIENT" /Gs8192 /GF /O2 /c
+# SUBTRACT CPP /YX
LIB32=link.exe -lib
# ADD BASE LIB32 /nologo
# ADD LIB32 /nologo /out:"iceec.lib"