diff options
Diffstat (limited to 'cppe/src')
-rw-r--r-- | cppe/src/IceE/Network.cpp | 162 | ||||
-rw-r--r-- | cppe/src/IceE/Properties.cpp | 33 | ||||
-rw-r--r-- | cppe/src/IceE/PropertyNames.cpp | 54 | ||||
-rw-r--r-- | cppe/src/IceE/PropertyNames.h | 32 | ||||
-rw-r--r-- | cppe/src/IceE/ThreadException.cpp | 4 | ||||
-rwxr-xr-x | cppe/src/IceE/ice.dsp | 16 | ||||
-rwxr-xr-x | cppe/src/IceE/ice.vcp | 10785 | ||||
-rwxr-xr-x | cppe/src/IceEC/icec.dsp | 12 | ||||
-rwxr-xr-x | cppe/src/IceEC/icec.vcp | 9004 |
9 files changed, 9581 insertions, 10521 deletions
diff --git a/cppe/src/IceE/Network.cpp b/cppe/src/IceE/Network.cpp index 92984d1038f..31628f1b257 100644 --- a/cppe/src/IceE/Network.cpp +++ b/cppe/src/IceE/Network.cpp @@ -727,10 +727,10 @@ IceInternal::compareAddress(const struct sockaddr_in& addr1, const struct sockad } #ifdef _WIN32 - string IceInternal::errorToString(int error) { +#ifndef _WIN32_WCE if(error < WSABASEERR) { LPVOID lpMsgBuf = 0; @@ -752,165 +752,9 @@ IceInternal::errorToString(int error) return result; } } +#endif - switch(error) - { - case WSAEINTR: - return "WSAEINTR"; - - case WSAEBADF: - return "WSAEBADF"; - - case WSAEACCES: - return "WSAEACCES"; - - case WSAEFAULT: - return "WSAEFAULT"; - - case WSAEINVAL: - return "WSAEINVAL"; - - case WSAEMFILE: - return "WSAEMFILE"; - - case WSAEWOULDBLOCK: - return "WSAEWOULDBLOCK"; - - case WSAEINPROGRESS: - return "WSAEINPROGRESS"; - - case WSAEALREADY: - return "WSAEALREADY"; - - case WSAENOTSOCK: - return "WSAENOTSOCK"; - - case WSAEDESTADDRREQ: - return "WSAEDESTADDRREQ"; - - case WSAEMSGSIZE: - return "WSAEMSGSIZE"; - - case WSAEPROTOTYPE: - return "WSAEPROTOTYPE"; - - case WSAENOPROTOOPT: - return "WSAENOPROTOOPT"; - - case WSAEPROTONOSUPPORT: - return "WSAEPROTONOSUPPORT"; - - case WSAESOCKTNOSUPPORT: - return "WSAESOCKTNOSUPPORT"; - - case WSAEOPNOTSUPP: - return "WSAEOPNOTSUPP"; - - case WSAEPFNOSUPPORT: - return "WSAEPFNOSUPPORT"; - - case WSAEAFNOSUPPORT: - return "WSAEAFNOSUPPORT"; - - case WSAEADDRINUSE: - return "WSAEADDRINUSE"; - - case WSAEADDRNOTAVAIL: - return "WSAEADDRNOTAVAIL"; - - case WSAENETDOWN: - return "WSAENETDOWN"; - - case WSAENETUNREACH: - return "WSAENETUNREACH"; - - case WSAENETRESET: - return "WSAENETRESET"; - - case WSAECONNABORTED: - return "WSAECONNABORTED"; - - case WSAECONNRESET: - return "WSAECONNRESET"; - - case WSAENOBUFS: - return "WSAENOBUFS"; - - case WSAEISCONN: - return "WSAEISCONN"; - - case WSAENOTCONN: - return "WSAENOTCONN"; - - case WSAESHUTDOWN: - return "WSAESHUTDOWN"; - - case WSAETOOMANYREFS: - return "WSAETOOMANYREFS"; - - case WSAETIMEDOUT: - return "WSAETIMEDOUT"; - - case WSAECONNREFUSED: - return "WSAECONNREFUSED"; - - case WSAELOOP: - return "WSAELOOP"; - - case WSAENAMETOOLONG: - return "WSAENAMETOOLONG"; - - case WSAEHOSTDOWN: - return "WSAEHOSTDOWN"; - - case WSAEHOSTUNREACH: - return "WSAEHOSTUNREACH"; - - case WSAENOTEMPTY: - return "WSAENOTEMPTY"; - - case WSAEPROCLIM: - return "WSAEPROCLIM"; - - case WSAEUSERS: - return "WSAEUSERS"; - - case WSAEDQUOT: - return "WSAEDQUOT"; - - case WSAESTALE: - return "WSAESTALE"; - - case WSAEREMOTE: - return "WSAEREMOTE"; - - case WSAEDISCON: - return "WSAEDISCON"; - - case WSASYSNOTREADY: - return "WSASYSNOTREADY"; - - case WSAVERNOTSUPPORTED: - return "WSAVERNOTSUPPORTED"; - - case WSANOTINITIALISED: - return "WSANOTINITIALISED"; - - case WSAHOST_NOT_FOUND: - return "WSAHOST_NOT_FOUND"; - - case WSATRY_AGAIN: - return "WSATRY_AGAIN"; - - case WSANO_RECOVERY: - return "WSANO_RECOVERY"; - - case WSANO_DATA: - return "WSANO_DATA"; - - default: - return "unknown socket error"; - } + return printfToString("error: %d", error); } string diff --git a/cppe/src/IceE/Properties.cpp b/cppe/src/IceE/Properties.cpp index d7f70c384c6..f7ff9275133 100644 --- a/cppe/src/IceE/Properties.cpp +++ b/cppe/src/IceE/Properties.cpp @@ -11,7 +11,6 @@ #include <IceE/Properties.h> #include <IceE/Initialize.h> #include <IceE/LocalException.h> -#include <IceE/PropertyNames.h> using namespace std; using namespace Ice; @@ -107,38 +106,6 @@ Ice::Properties::setProperty(const string& key, const string& value) return; } - // - // Check if the property is legal. (We write to stderr instead of - // using a logger because no logger may be established at the time - // the property is parsed.) - // - string::size_type dotPos = key.find('.'); - if(dotPos != string::npos) - { - string prefix = key.substr(0, dotPos); - for(const char* const** i = IceInternal::PropertyNames::validProps; *i != 0; ++i) - { - string pattern(*i[0]); - dotPos = pattern.find('.'); - assert(dotPos != string::npos); - string propPrefix = pattern.substr(0, dotPos); - if(propPrefix != prefix) - { - continue; - } - - bool found = false; - for(const char* const* j = *i; *j != 0 && !found; ++j) - { - found = IceUtil::match(key, *j); - } - if(!found) - { - fprintf(stderr, "warning: unknown property: %s\n", key.c_str()); - } - } - } - IceUtil::Mutex::Lock sync(*this); // diff --git a/cppe/src/IceE/PropertyNames.cpp b/cppe/src/IceE/PropertyNames.cpp deleted file mode 100644 index b7a5f4c0161..00000000000 --- a/cppe/src/IceE/PropertyNames.cpp +++ /dev/null @@ -1,54 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. -// -// This copy of IceE is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -// Generated by makeprops.py from file `../config/PropertyNames.def', Mon Jul 11 15:46:09 2005 - -// IMPORTANT: Do not edit this file -- any edits made here will be lost! - -#include <IceE/PropertyNames.h> - -const char* IceInternal::PropertyNames::IceEProps[] = -{ - "IceE.ChangeUser", - "IceE.Config", - "IceE.Default.Host", - "IceE.Default.Locator", - "IceE.Default.Package", - "IceE.Default.Protocol", - "IceE.Default.Router", - "IceE.MessageSizeMax", - "IceE.NullHandleAbort", - "IceE.Override.ConnectTimeout", - "IceE.Override.Timeout", - "IceE.Package.*", - "IceE.PrintAdapterReady", - "IceE.PrintProcessId", - "IceE.ProgramName", - "IceE.RetryIntervals", - "IceE.ServerId", - "IceE.StdErr", - "IceE.StdOut", - "IceE.ThreadPerConnection.StackSize", - "IceE.Trace.Location", - "IceE.Trace.Network", - "IceE.Trace.Protocol", - "IceE.Trace.Retry", - "IceE.Trace.Slicing", - "IceE.Warn.Connections", - "IceE.Warn.Dispatch", - "IceE.Warn.Endpoints", - "IceE.Warn.Leaks", - 0 -}; - -ICEE_API const char* const* IceInternal::PropertyNames::validProps[] = -{ - IceEProps, - 0 -}; diff --git a/cppe/src/IceE/PropertyNames.h b/cppe/src/IceE/PropertyNames.h deleted file mode 100644 index 388ffd38820..00000000000 --- a/cppe/src/IceE/PropertyNames.h +++ /dev/null @@ -1,32 +0,0 @@ -// ********************************************************************** -// -// Copyright (c) 2003-2005 ZeroC, Inc. All rights reserved. -// -// This copy of IceE is licensed to you under the terms described in the -// ICEE_LICENSE file included in this distribution. -// -// ********************************************************************** - -// Generated by makeprops.py from file `../config/PropertyNames.def', Mon Jul 11 15:46:09 2005 - -// IMPORTANT: Do not edit this file -- any edits made here will be lost! - -#ifndef ICEE_INTERNAL_PropertyNames_H -#define ICEE_INTERNAL_PropertyNames_H - -#include <IceE/Config.h> -namespace IceInternal -{ - -class PropertyNames -{ -public: - - static const char* IceEProps[]; - - ICEE_API static const char* const* validProps[]; -}; - -} - -#endif diff --git a/cppe/src/IceE/ThreadException.cpp b/cppe/src/IceE/ThreadException.cpp index 0193b9415ba..b538904fb33 100644 --- a/cppe/src/IceE/ThreadException.cpp +++ b/cppe/src/IceE/ThreadException.cpp @@ -33,7 +33,9 @@ IceUtil::ThreadSyscallException::toString() const if(_error != 0) { out += ":\nthread syscall exception: "; -#ifdef _WIN32 +#ifdef _WIN32_WCE + out += Ice::printfToString("thread error: %d", _error); +#elif defined(_WIN32) LPVOID lpMsgBuf = 0; DWORD ok = FormatMessage(FORMAT_MESSAGE_ALLOCATE_BUFFER | FORMAT_MESSAGE_FROM_SYSTEM | diff --git a/cppe/src/IceE/ice.dsp b/cppe/src/IceE/ice.dsp index 095838709c2..4a7e2a19905 100755 --- a/cppe/src/IceE/ice.dsp +++ b/cppe/src/IceE/ice.dsp @@ -116,8 +116,8 @@ PostBuild_Cmds=copy $(OutDir)\iceed.lib ..\..\lib\ copy $(OutDir)\icee10d.pdb .. # PROP Intermediate_Dir "ReleaseStatic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
-MTL=midl.exe
SLICE2CPPEFLAGS=-DICEE
+MTL=midl.exe
CPP=cl.exe
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_LIB" /Yu"stdafx.h" /FD /c
# ADD CPP /nologo /MD /W3 /WX /GR /GX /O1 /I ".." /I "../../include" /D "NDEBUG" /D "ICEE_STATIC_LIBS" /D "_LIB" /D "WIN32_LEAN_AND_MEAN" /D FD_SETSIZE=1024 /D "_CONSOLE" /FD /c
@@ -133,7 +133,7 @@ LIB32=link.exe -lib # Begin Special Build Tool
OutDir=.\ReleaseStatic
SOURCE="$(InputPath)"
-PostBuild_Cmds=copy $(OutDir)\icee.lib ..\..\lib\
+PostBuild_Cmds=copy $(OutDir)\icee.lib ..\..\lib\
# End Special Build Tool
!ELSEIF "$(CFG)" == "ice - Win32 Debug Static"
@@ -149,8 +149,8 @@ PostBuild_Cmds=copy $(OutDir)\icee.lib # PROP Intermediate_Dir "DebugStatic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
-MTL=midl.exe
SLICE2CPPEFLAGS=-DICEE
+MTL=midl.exe
CPP=cl.exe
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_LIB" /Yu"stdafx.h" /FD /GZ /c
# ADD CPP /nologo /MDd /W3 /WX /Gm /GR /GX /Zi /Od /I ".." /I "../../include" /D "_DEBUG" /D "ICEE_STATIC_LIBS" /D "_LIB" /D "WIN32_LEAN_AND_MEAN" /D FD_SETSIZE=1024 /D "_CONSOLE" /FD /GZ /c
@@ -166,7 +166,7 @@ LIB32=link.exe -lib # Begin Special Build Tool
OutDir=.\DebugStatic
SOURCE="$(InputPath)"
-PostBuild_Cmds=copy $(OutDir)\iceed.lib ..\..\lib\
+PostBuild_Cmds=copy $(OutDir)\iceed.lib ..\..\lib\
# End Special Build Tool
!ENDIF
@@ -326,10 +326,6 @@ SOURCE=.\Properties.cpp # End Source File
# Begin Source File
-SOURCE=.\PropertyNames.cpp
-# End Source File
-# Begin Source File
-
SOURCE=.\Proxy.cpp
# End Source File
# Begin Source File
@@ -470,10 +466,6 @@ SOURCE=.\OutgoingConnectionFactory.h # End Source File
# Begin Source File
-SOURCE=.\PropertyNames.h
-# End Source File
-# Begin Source File
-
SOURCE=.\Protocol.h
# End Source File
# Begin Source File
diff --git a/cppe/src/IceE/ice.vcp b/cppe/src/IceE/ice.vcp index 26b9fa73f41..15123bb5aa3 100755 --- a/cppe/src/IceE/ice.vcp +++ b/cppe/src/IceE/ice.vcp @@ -337,51 +337,51 @@ DEP_CPP_ACCEP=\ ".\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"\
+ ".\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"
@@ -743,6 +743,7 @@ DEP_CPP_ACCEP=\ "..\..\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"\
@@ -760,61 +761,61 @@ DEP_CPP_ACCEP=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.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"\
- "..\..\include\IceE\Acceptor.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
!ENDIF
@@ -872,51 +873,51 @@ DEP_CPP_BASIC=\ ".\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"\
+ ".\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"
@@ -1461,6 +1462,7 @@ DEP_CPP_BASIC=\ "..\..\include\IceE\LocalException.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"\
@@ -1484,92 +1486,12 @@ DEP_CPP_BASIC=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Protocol.h"\
".\ProxyFactory.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
-
-NODEP_CPP_BASIC=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Buffer.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-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\LocalException.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)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -1613,11 +1535,18 @@ DEP_CPP_BUFFE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_BUFFE=\
+NODEP_CPP_BASIC=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Buffer.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1690,7 +1619,7 @@ NODEP_CPP_BUFFE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1717,8 +1646,53 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_BUFFE=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1746,7 +1720,7 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1774,7 +1748,7 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1802,7 +1776,7 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1829,53 +1803,8 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_BUFFE=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1948,34 +1877,22 @@ NODEP_CPP_BUFFE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\BuiltinSequences.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_BUILT=\
- "..\..\include\IceE\BasicStream.h"\
+DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.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\Identity.h"\
- "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalException.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"\
"..\..\include\IceE\Proxy.h"\
@@ -2029,11 +1946,18 @@ DEP_CPP_BUILT=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_BUILT=\
+NODEP_CPP_BUFFE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\BuiltinSequences.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2111,7 +2035,7 @@ NODEP_CPP_BUILT=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2143,8 +2067,53 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_BUILT=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2177,7 +2146,7 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2210,7 +2179,7 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2243,7 +2212,7 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2275,53 +2244,8 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_BUILT=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -2399,66 +2323,37 @@ NODEP_CPP_BUILT=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Communicator.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_COMMU=\
+DEP_CPP_BUILT=\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Communicator.h"\
- "..\..\include\IceE\CommunicatorF.h"\
- "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\EndpointF.h"\
+ "..\..\include\IceE\Current.h"\
+ "..\..\include\IceE\DispatchStatus.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\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorF.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\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\Shared.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"\
- ".\Reference.h"\
- ".\ReferenceFactory.h"\
- ".\ReferenceFactoryF.h"\
- ".\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -2502,11 +2397,18 @@ DEP_CPP_COMMU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_COMMU=\
+NODEP_CPP_BUILT=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Communicator.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2551,6 +2453,7 @@ DEP_CPP_COMMU=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\ObjectAdapterFactory.h"\
".\ProxyFactory.h"\
@@ -2561,7 +2464,6 @@ DEP_CPP_COMMU=\ NODEP_CPP_COMMU=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -2606,7 +2508,7 @@ NODEP_CPP_COMMU=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2646,7 +2548,6 @@ DEP_CPP_COMMU=\ "..\..\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"\
@@ -2661,10 +2562,53 @@ DEP_CPP_COMMU=\ ".\RouterInfoF.h"\
NODEP_CPP_COMMU=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2722,7 +2666,7 @@ NODEP_CPP_COMMU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2780,7 +2724,7 @@ NODEP_CPP_COMMU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2838,7 +2782,7 @@ NODEP_CPP_COMMU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2893,53 +2837,10 @@ DEP_CPP_COMMU=\ ".\RouterInfoF.h"\
NODEP_CPP_COMMU=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -3040,25 +2941,60 @@ NODEP_CPP_COMMU=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Cond.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_COND_=\
+DEP_CPP_COMMU=\
+ "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\Communicator.h"\
+ "..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.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\Initialize.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalException.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\Shared.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"\
+ ".\Reference.h"\
+ ".\ReferenceFactory.h"\
+ ".\ReferenceFactoryF.h"\
+ ".\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -3072,6 +3008,7 @@ DEP_CPP_COND_=\ {$(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"\
@@ -3083,7 +3020,6 @@ DEP_CPP_COND_=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -3091,7 +3027,6 @@ DEP_CPP_COND_=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -3100,10 +3035,77 @@ DEP_CPP_COND_=\ {$(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=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Cond.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_COND_=\
+ "..\..\include\IceE\Cond.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+
NODEP_CPP_COND_=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -3292,51 +3294,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"\
- ".\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"\
!ENDIF
@@ -3415,51 +3417,51 @@ DEP_CPP_CONNE=\ ".\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=\
"..\..\..\..\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"
@@ -4011,6 +4013,7 @@ DEP_CPP_CONNE=\ "..\..\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"\
@@ -4040,8 +4043,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"\
@@ -4050,56 +4057,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=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
!ENDIF
@@ -4147,51 +4150,51 @@ DEP_CPP_CONNEC=\ ".\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"\
+ ".\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"
@@ -4553,6 +4556,7 @@ DEP_CPP_CONNEC=\ "..\..\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"\
@@ -4570,92 +4574,16 @@ DEP_CPP_CONNEC=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ ".\Connector.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\Network.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
-
-NODEP_CPP_CONNEC=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Current.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_CURRE=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Current.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\Lock.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
- "..\..\include\IceE\ObjectF.h"\
- "..\..\include\IceE\OperationMode.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
+ ".\Transceiver.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -4699,11 +4627,18 @@ DEP_CPP_CURRE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_CURRE=\
+NODEP_CPP_CONNEC=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Current.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_CURRE=\
"..\..\include\IceE\Config.h"\
@@ -4772,25 +4707,20 @@ NODEP_CPP_CURRE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
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\Identity.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"\
@@ -4800,8 +4730,53 @@ DEP_CPP_CURRE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_CURRE=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_CURRE=\
"..\..\include\IceE\BasicStream.h"\
@@ -4830,7 +4805,7 @@ DEP_CPP_CURRE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_CURRE=\
"..\..\include\IceE\BasicStream.h"\
@@ -4859,7 +4834,7 @@ DEP_CPP_CURRE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_CURRE=\
"..\..\include\IceE\BasicStream.h"\
@@ -4888,7 +4863,7 @@ DEP_CPP_CURRE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_CURRE=\
"..\..\include\IceE\BasicStream.h"\
@@ -4916,53 +4891,8 @@ DEP_CPP_CURRE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_CURRE=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_CURRE=\
"..\..\include\IceE\BasicStream.h"\
@@ -5036,19 +4966,12 @@ NODEP_CPP_CURRE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\DefaultsAndOverrides.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_DEFAU=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_CURRE=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
+ "..\..\include\IceE\Current.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
@@ -5057,21 +4980,14 @@ DEP_CPP_DEFAU=\ "..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ObjectAdapterF.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\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- ".\DefaultsAndOverrides.h"\
- ".\DefaultsAndOverridesF.h"\
- ".\Network.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -5115,8 +5031,91 @@ DEP_CPP_DEFAU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_CURRE=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\DefaultsAndOverrides.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_DEFAU=\
+ "..\..\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\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.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\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+ ".\DefaultsAndOverrides.h"\
+ ".\DefaultsAndOverridesF.h"\
+ ".\Network.h"\
+
NODEP_CPP_DEFAU=\
"..\..\..\..\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"
@@ -5543,84 +5542,6 @@ DEP_CPP_DEFAU=\ ".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
".\Network.h"\
-
-NODEP_CPP_DEFAU=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Endpoint.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_ENDPO=\
- "..\..\include\IceE\Config.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\Lock.h"\
- "..\..\include\IceE\LoggerF.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"\
@@ -5664,8 +5585,86 @@ DEP_CPP_ENDPO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_DEFAU=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Endpoint.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_ENDPO=\
+ "..\..\include\IceE\Config.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\Lock.h"\
+ "..\..\include\IceE\LoggerF.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"\
+
NODEP_CPP_ENDPO=\
"..\..\..\..\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"
@@ -5692,51 +5691,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"\
+ ".\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"
@@ -5763,51 +5762,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"\
+ ".\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) Debug"
@@ -5834,51 +5833,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"\
+ ".\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) Debug Static"
@@ -5905,51 +5904,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"\
+ ".\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"
@@ -5976,51 +5975,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"\
+ ".\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"
@@ -6047,51 +6046,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"\
+ ".\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) Release Static"
@@ -6210,51 +6209,51 @@ DEP_CPP_ENDPOI=\ ".\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=\
"..\..\..\..\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"
@@ -6596,6 +6595,7 @@ DEP_CPP_ENDPOI=\ "..\..\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"\
@@ -6608,73 +6608,13 @@ DEP_CPP_ENDPOI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-
-NODEP_CPP_ENDPOI=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\ExceptionBase.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.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"\
@@ -6688,6 +6628,7 @@ DEP_CPP_EXCEP=\ {$(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"\
@@ -6699,7 +6640,6 @@ DEP_CPP_EXCEP=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -6707,7 +6647,6 @@ DEP_CPP_EXCEP=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -6716,13 +6655,21 @@ DEP_CPP_EXCEP=\ {$(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=\
+NODEP_CPP_ENDPOI=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\ExceptionBase.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
@@ -6746,7 +6693,6 @@ NODEP_CPP_EXCEP=\ ".\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"\
@@ -6758,6 +6704,7 @@ NODEP_CPP_EXCEP=\ ".\onfig\stl_mwerks.h"\
".\onfig\stl_mycomp.h"\
".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
".\onfig\stl_sgi.h"\
".\onfig\stl_solaris.h"\
".\onfig\stl_sunpro.h"\
@@ -6765,6 +6712,7 @@ NODEP_CPP_EXCEP=\ ".\onfig\stl_watcom.h"\
".\onfig\stl_wince.h"\
".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
".\thread.h"\
".\tl\_abbrevs.h"\
".\tl\_config.h"\
@@ -6773,51 +6721,10 @@ NODEP_CPP_EXCEP=\ ".\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"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
@@ -6872,7 +6779,47 @@ NODEP_CPP_EXCEP=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
@@ -6927,29 +6874,14 @@ NODEP_CPP_EXCEP=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\FactoryTable.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_FACTO=\
+DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\FactoryTable.h"\
- "..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UserExceptionFactory.h"\
- "..\..\include\IceE\UserExceptionFactoryF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -6963,6 +6895,7 @@ DEP_CPP_FACTO=\ {$(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"\
@@ -6974,7 +6907,6 @@ DEP_CPP_FACTO=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -6982,7 +6914,6 @@ DEP_CPP_FACTO=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -6991,13 +6922,21 @@ DEP_CPP_FACTO=\ {$(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=\
+NODEP_CPP_EXCEP=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\FactoryTable.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7029,7 +6968,6 @@ NODEP_CPP_FACTO=\ ".\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"\
@@ -7041,6 +6979,7 @@ NODEP_CPP_FACTO=\ ".\onfig\stl_mwerks.h"\
".\onfig\stl_mycomp.h"\
".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
".\onfig\stl_sgi.h"\
".\onfig\stl_solaris.h"\
".\onfig\stl_sunpro.h"\
@@ -7048,6 +6987,7 @@ NODEP_CPP_FACTO=\ ".\onfig\stl_watcom.h"\
".\onfig\stl_wince.h"\
".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
".\thread.h"\
".\tl\_abbrevs.h"\
".\tl\_config.h"\
@@ -7056,11 +6996,10 @@ NODEP_CPP_FACTO=\ ".\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"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7077,8 +7016,53 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+NODEP_CPP_FACTO=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7096,7 +7080,7 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7114,7 +7098,7 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7132,7 +7116,7 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7149,53 +7133,8 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
-NODEP_CPP_FACTO=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -7258,19 +7197,13 @@ NODEP_CPP_FACTO=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\FactoryTableDef.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_FACTOR=\
+DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Lock.h"\
@@ -7293,6 +7226,7 @@ DEP_CPP_FACTOR=\ {$(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"\
@@ -7304,7 +7238,6 @@ DEP_CPP_FACTOR=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -7312,7 +7245,6 @@ DEP_CPP_FACTOR=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -7321,13 +7253,21 @@ DEP_CPP_FACTOR=\ {$(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=\
+NODEP_CPP_FACTO=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\FactoryTableDef.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7358,7 +7298,6 @@ NODEP_CPP_FACTOR=\ ".\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"\
@@ -7370,6 +7309,7 @@ NODEP_CPP_FACTOR=\ ".\onfig\stl_mwerks.h"\
".\onfig\stl_mycomp.h"\
".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
".\onfig\stl_sgi.h"\
".\onfig\stl_solaris.h"\
".\onfig\stl_sunpro.h"\
@@ -7377,6 +7317,7 @@ NODEP_CPP_FACTOR=\ ".\onfig\stl_watcom.h"\
".\onfig\stl_wince.h"\
".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
".\thread.h"\
".\tl\_abbrevs.h"\
".\tl\_config.h"\
@@ -7385,11 +7326,10 @@ NODEP_CPP_FACTOR=\ ".\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"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7405,8 +7345,53 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+NODEP_CPP_FACTOR=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7423,7 +7408,7 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7440,7 +7425,7 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7457,7 +7442,7 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7473,53 +7458,8 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
-NODEP_CPP_FACTOR=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -7581,40 +7521,21 @@ NODEP_CPP_FACTOR=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Identity.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_IDENT=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
+DEP_CPP_FACTOR=\
"..\..\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\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.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"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\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"\
@@ -7658,11 +7579,18 @@ DEP_CPP_IDENT=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_IDENT=\
+NODEP_CPP_FACTOR=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Identity.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -7736,7 +7664,7 @@ NODEP_CPP_IDENT=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -7764,8 +7692,53 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_IDENT=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -7794,7 +7767,7 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -7823,7 +7796,7 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -7852,7 +7825,7 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -7880,53 +7853,8 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_IDENT=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -8000,38 +7928,31 @@ NODEP_CPP_IDENT=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\IdentityUtil.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_IDENTI=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_IDENT=\
+ "..\..\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\Identity.h"\
- "..\..\include\IceE\IdentityUtil.h"\
- "..\..\include\IceE\LocalException.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"\
- "..\..\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"\
@@ -8077,8 +7998,89 @@ DEP_CPP_IDENTI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_IDENT=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\IdentityUtil.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+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\LocalException.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\StringUtil.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+
NODEP_CPP_IDENTI=\
"..\..\..\..\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"
@@ -8372,51 +8374,51 @@ 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=\
"..\..\..\..\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"\
!ENDIF
@@ -8487,51 +8489,51 @@ DEP_CPP_INCOM=\ ".\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"\
+ ".\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"
@@ -9152,14 +9154,13 @@ DEP_CPP_INCOM=\ "..\..\include\IceE\LocalException.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"\
@@ -9173,7 +9174,6 @@ DEP_CPP_INCOM=\ "..\..\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"\
@@ -9184,57 +9184,57 @@ DEP_CPP_INCOM=\ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.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"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -9305,51 +9305,51 @@ DEP_CPP_INCOMI=\ ".\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"\
+ ".\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"
@@ -9870,6 +9870,7 @@ DEP_CPP_INCOMI=\ "..\..\include\IceE\LocalException.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"\
@@ -9896,64 +9897,64 @@ DEP_CPP_INCOMI=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.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"\
- "..\..\include\IceE\Acceptor.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
!ENDIF
@@ -9996,51 +9997,51 @@ DEP_CPP_INITI=\ "..\..\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_INITI=\
"..\..\..\..\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"
@@ -10379,54 +10380,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=\
"..\..\..\..\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"\
!ENDIF
@@ -10510,51 +10510,51 @@ 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=\
"..\..\..\..\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"
@@ -11262,13 +11262,13 @@ DEP_CPP_INSTA=\ "..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
- "..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.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"\
@@ -11298,16 +11298,16 @@ DEP_CPP_INSTA=\ "..\..\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"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactory.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
".\LoggerI.h"\
- ".\Network.h"\
".\ObjectAdapterFactory.h"\
".\OutgoingConnectionFactory.h"\
".\ProxyFactory.h"\
@@ -11317,93 +11317,6 @@ DEP_CPP_INSTA=\ ".\RouterInfo.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
-
-NODEP_CPP_INSTA=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\LocalException.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-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\LocalException.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"\
@@ -11447,11 +11360,18 @@ DEP_CPP_LOCAL=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOCAL=\
+NODEP_CPP_INSTA=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\LocalException.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11526,7 +11446,7 @@ NODEP_CPP_LOCAL=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11555,8 +11475,53 @@ DEP_CPP_LOCAL=\ "..\..\include\IceE\UndefSysMacros.h"\
".\Network.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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11586,7 +11551,7 @@ DEP_CPP_LOCAL=\ ".\Network.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11616,7 +11581,7 @@ DEP_CPP_LOCAL=\ ".\Network.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11646,7 +11611,7 @@ DEP_CPP_LOCAL=\ ".\Network.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11675,53 +11640,8 @@ DEP_CPP_LOCAL=\ "..\..\include\IceE\UndefSysMacros.h"\
".\Network.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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11796,26 +11716,34 @@ NODEP_CPP_LOCAL=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\LocalObject.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_LOCALO=\
+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\LocalException.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"\
@@ -11829,6 +11757,7 @@ DEP_CPP_LOCALO=\ {$(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"\
@@ -11840,7 +11769,6 @@ DEP_CPP_LOCALO=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -11848,7 +11776,6 @@ DEP_CPP_LOCALO=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -11857,10 +11784,78 @@ DEP_CPP_LOCALO=\ {$(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"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\LocalObject.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_LOCALO=\
+ "..\..\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\Mutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_LOCALO=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -12056,51 +12051,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"\
- ".\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"\
!ENDIF
@@ -12154,51 +12149,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=\
"..\..\..\..\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"
@@ -12611,51 +12606,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=\
"..\..\..\..\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"\
!ENDIF
@@ -12734,51 +12729,51 @@ DEP_CPP_LOCATO=\ ".\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"\
+ ".\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"
@@ -13397,6 +13392,7 @@ DEP_CPP_LOCATO=\ "..\..\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"\
@@ -13427,89 +13423,17 @@ DEP_CPP_LOCATO=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\..\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"\
-
-NODEP_CPP_LOCATO=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Logger.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_LOGGE=\
- "..\..\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)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -13553,11 +13477,18 @@ DEP_CPP_LOGGE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOGGE=\
+NODEP_CPP_LOCATO=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Logger.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13622,7 +13553,7 @@ NODEP_CPP_LOGGE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13641,8 +13572,53 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_LOGGE=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13662,7 +13638,7 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13682,7 +13658,7 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13702,7 +13678,7 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13721,53 +13697,8 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_LOGGE=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -13832,16 +13763,9 @@ NODEP_CPP_LOGGE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\LoggerI.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_LOGGER=\
+DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
@@ -13857,7 +13781,6 @@ DEP_CPP_LOGGER=\ "..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- ".\LoggerI.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -13901,8 +13824,81 @@ DEP_CPP_LOGGER=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_LOGGE=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\LoggerI.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_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"\
+ ".\LoggerI.h"\
+
NODEP_CPP_LOGGER=\
"..\..\..\..\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"
@@ -14248,83 +14244,8 @@ DEP_CPP_LOGGER=\ "..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\LoggerI.h"\
-
-NODEP_CPP_LOGGER=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\LoggerUtil.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-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\Logger.h"\
- "..\..\include\IceE\LoggerF.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"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -14368,11 +14289,18 @@ DEP_CPP_LOGGERU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOGGERU=\
+NODEP_CPP_LOGGER=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\LoggerUtil.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14439,7 +14367,7 @@ NODEP_CPP_LOGGERU=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14460,8 +14388,53 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_LOGGERU=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14483,7 +14456,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14505,7 +14478,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14527,7 +14500,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14548,53 +14521,8 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_LOGGERU=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -14661,40 +14589,26 @@ NODEP_CPP_LOGGERU=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Network.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_NETWO=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_LOGGERU=\
"..\..\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\LocalException.h"\
"..\..\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"\
- "..\..\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"\
@@ -14738,8 +14652,89 @@ DEP_CPP_NETWO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_LOGGERU=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Network.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_NETWO=\
+ "..\..\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\LocalException.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"\
+
NODEP_CPP_NETWO=\
"..\..\..\..\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"
@@ -15152,51 +15147,51 @@ DEP_CPP_NETWO=\ "..\..\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_NETWO=\
"..\..\..\..\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"\
!ENDIF
@@ -15240,51 +15235,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=\
"..\..\..\..\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"
@@ -15627,51 +15622,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=\
"..\..\..\..\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"\
!ENDIF
@@ -15763,51 +15758,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=\
"..\..\..\..\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"
@@ -16430,7 +16425,6 @@ DEP_CPP_OBJECT=\ "..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Communicator.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
@@ -16448,13 +16442,13 @@ DEP_CPP_OBJECT=\ "..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
- "..\..\include\IceE\Initialize.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.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"\
@@ -16491,7 +16485,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"\
@@ -16503,56 +16502,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=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -16604,51 +16598,51 @@ DEP_CPP_OBJECTA=\ "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.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"\
+ ".\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"
@@ -17155,6 +17149,7 @@ DEP_CPP_OBJECTA=\ "..\..\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"\
@@ -17176,72 +17171,6 @@ DEP_CPP_OBJECTA=\ "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\ObjectAdapterFactory.h"\
-
-NODEP_CPP_OBJECTA=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\OperationMode.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_OPERA=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\InstanceF.h"\
- "..\..\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"\
@@ -17255,6 +17184,7 @@ DEP_CPP_OPERA=\ {$(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"\
@@ -17266,7 +17196,6 @@ DEP_CPP_OPERA=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -17274,7 +17203,6 @@ DEP_CPP_OPERA=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -17283,10 +17211,77 @@ DEP_CPP_OPERA=\ {$(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"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\OperationMode.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_OPERA=\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\OperationMode.h"\
+ "..\..\include\IceE\ProxyF.h"\
+ "..\..\include\IceE\ProxyHandle.h"\
+
NODEP_CPP_OPERA=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -17475,51 +17470,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"\
- ".\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"\
!ENDIF
@@ -17576,51 +17571,51 @@ DEP_CPP_OUTGO=\ "..\..\include\IceE\UndefSysMacros.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"\
+ ".\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"
@@ -18160,7 +18155,6 @@ DEP_CPP_OUTGO=\ "..\..\include\IceE\Config.h"\
"..\..\include\IceE\Connection.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
@@ -18173,6 +18167,7 @@ DEP_CPP_OUTGO=\ "..\..\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\Monitor.h"\
@@ -18197,56 +18192,52 @@ DEP_CPP_OUTGO=\ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\Reference.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_OUTGO=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.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"\
!ENDIF
@@ -18320,51 +18311,51 @@ 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=\
"..\..\..\..\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"
@@ -18916,6 +18907,7 @@ DEP_CPP_OUTGOI=\ "..\..\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"\
@@ -18926,7 +18918,6 @@ DEP_CPP_OUTGOI=\ "..\..\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"\
@@ -18944,8 +18935,13 @@ DEP_CPP_OUTGOI=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ ".\AcceptorF.h"\
+ ".\Connector.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverrides.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\OutgoingConnectionFactory.h"\
".\Reference.h"\
@@ -18953,57 +18949,51 @@ 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=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
!ENDIF
@@ -19045,51 +19035,51 @@ DEP_CPP_PROPE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\PropertyNames.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=\
"..\..\..\..\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"
@@ -19418,65 +19408,6 @@ DEP_CPP_PROPE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\PropertyNames.h"\
-
-NODEP_CPP_PROPE=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\PropertyNames.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- ".\PropertyNames.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -19490,6 +19421,7 @@ DEP_CPP_PROPER=\ {$(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"\
@@ -19501,7 +19433,6 @@ DEP_CPP_PROPER=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -19509,7 +19440,6 @@ DEP_CPP_PROPER=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -19518,295 +19448,11 @@ DEP_CPP_PROPER=\ {$(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_PROPER=\
- "..\..\..\..\usr\include\pthread.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\..\..\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"
-
-DEP_CPP_PROPER=\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\UserConfig.h"\
- "..\..\include\IceUtil\Config.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) Debug"
-
-DEP_CPP_PROPER=\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\UserConfig.h"\
- "..\..\include\IceUtil\Config.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) Debug Static"
-
-DEP_CPP_PROPER=\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceUtil\Config.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_PROPER=\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceUtil\Config.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
-
-DEP_CPP_PROPER=\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceUtil\Config.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) Release Static"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- ".\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
+NODEP_CPP_PROPE=\
"..\..\..\..\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"\
!ENDIF
@@ -19867,51 +19513,51 @@ DEP_CPP_PROXY=\ ".\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"\
+ ".\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"
@@ -20531,7 +20177,6 @@ DEP_CPP_PROXY=\ "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\Current.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
@@ -20542,11 +20187,11 @@ DEP_CPP_PROXY=\ "..\..\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\Monitor.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\ObjectAdapterF.h"\
"..\..\include\IceE\ObjectAdapterFactoryF.h"\
"..\..\include\IceE\ObjectF.h"\
"..\..\include\IceE\OperationMode.h"\
@@ -20565,65 +20210,60 @@ DEP_CPP_PROXY=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
- ".\LocatorInfo.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"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -20684,51 +20324,51 @@ 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=\
"..\..\..\..\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"
@@ -21278,8 +20918,6 @@ NODEP_CPP_PROXYF=\ !ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
DEP_CPP_PROXYF=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
@@ -21294,6 +20932,7 @@ DEP_CPP_PROXYF=\ "..\..\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"\
@@ -21319,6 +20958,7 @@ DEP_CPP_PROXYF=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
".\ProxyFactory.h"\
@@ -21327,71 +20967,6 @@ DEP_CPP_PROXYF=\ ".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\TraceLevels.h"\
-
-NODEP_CPP_PROXYF=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\RecMutex.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_RECMU=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\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"\
@@ -21405,6 +20980,7 @@ DEP_CPP_RECMU=\ {$(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"\
@@ -21416,7 +20992,6 @@ DEP_CPP_RECMU=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -21424,7 +20999,6 @@ DEP_CPP_RECMU=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -21433,10 +21007,75 @@ DEP_CPP_RECMU=\ {$(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"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\RecMutex.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_RECMU=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_RECMU=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -21611,51 +21250,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"\
- ".\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"\
!ENDIF
@@ -21743,51 +21382,51 @@ DEP_CPP_REFER=\ ".\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"\
+ ".\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"
@@ -22480,6 +22119,7 @@ DEP_CPP_REFER=\ "..\..\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"\
@@ -22514,7 +22154,11 @@ DEP_CPP_REFER=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ ".\AcceptorF.h"\
+ ".\ConnectorF.h"\
".\DefaultsAndOverridesF.h"\
+ ".\Endpoint.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\LocatorInfo.h"\
".\OutgoingConnectionFactory.h"\
@@ -22524,55 +22168,51 @@ DEP_CPP_REFER=\ ".\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"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -22633,51 +22273,51 @@ DEP_CPP_REFERE=\ ".\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"\
+ ".\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"
@@ -23264,13 +22904,16 @@ DEP_CPP_REFERE=\ "..\..\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\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"\
@@ -23284,67 +22927,62 @@ DEP_CPP_REFERE=\ "..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\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=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -23393,51 +23031,51 @@ DEP_CPP_ROUTE=\ "..\..\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=\
"..\..\..\..\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"
@@ -23815,51 +23453,51 @@ DEP_CPP_ROUTE=\ "..\..\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=\
"..\..\..\..\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"\
!ENDIF
@@ -23922,51 +23560,51 @@ DEP_CPP_ROUTER=\ "..\..\include\IceE\UndefSysMacros.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"\
+ ".\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"
@@ -24491,85 +24129,6 @@ DEP_CPP_ROUTER=\ "..\..\include\IceE\UndefSysMacros.h"\
".\RouterInfo.h"\
".\RouterInfoF.h"\
-
-NODEP_CPP_ROUTER=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\RoutingTable.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_ROUTI=\
- "..\..\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\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\RoutingTable.h"\
- "..\..\include\IceE\RoutingTableF.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"\
@@ -24613,11 +24172,18 @@ DEP_CPP_ROUTI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_ROUTI=\
+NODEP_CPP_ROUTER=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\RoutingTable.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24689,7 +24255,7 @@ NODEP_CPP_ROUTI=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24715,8 +24281,53 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_ROUTI=\
+ "..\..\..\..\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) Debug"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24743,7 +24354,7 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24770,7 +24381,7 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24797,7 +24408,7 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24823,53 +24434,8 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_ROUTI=\
- "..\..\..\..\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) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -24941,28 +24507,31 @@ NODEP_CPP_ROUTI=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\RWRecMutex.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_RWREC=\
- "..\..\include\IceE\Cond.h"\
+DEP_CPP_ROUTI=\
"..\..\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\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\RWRecMutex.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\RoutingTable.h"\
+ "..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\Thread.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"\
@@ -24976,6 +24545,7 @@ DEP_CPP_RWREC=\ {$(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"\
@@ -24987,7 +24557,6 @@ DEP_CPP_RWREC=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -24995,7 +24564,6 @@ DEP_CPP_RWREC=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -25004,10 +24572,80 @@ DEP_CPP_RWREC=\ {$(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=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\RWRecMutex.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_RWREC=\
+ "..\..\include\IceE\Cond.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\RWRecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+
NODEP_CPP_RWREC=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -25217,65 +24855,6 @@ DEP_CPP_RWREC=\ "..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
-
-NODEP_CPP_RWREC=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\SafeStdio.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-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"\
@@ -25289,6 +24868,7 @@ DEP_CPP_SAFES=\ {$(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"\
@@ -25300,7 +24880,6 @@ DEP_CPP_SAFES=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -25308,7 +24887,6 @@ DEP_CPP_SAFES=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -25317,13 +24895,21 @@ DEP_CPP_SAFES=\ {$(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=\
+NODEP_CPP_RWREC=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\SafeStdio.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
@@ -25344,7 +24930,6 @@ NODEP_CPP_SAFES=\ ".\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"\
@@ -25356,6 +24941,7 @@ NODEP_CPP_SAFES=\ ".\onfig\stl_mwerks.h"\
".\onfig\stl_mycomp.h"\
".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
".\onfig\stl_sgi.h"\
".\onfig\stl_solaris.h"\
".\onfig\stl_sunpro.h"\
@@ -25363,6 +24949,7 @@ NODEP_CPP_SAFES=\ ".\onfig\stl_watcom.h"\
".\onfig\stl_wince.h"\
".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
".\thread.h"\
".\tl\_abbrevs.h"\
".\tl\_config.h"\
@@ -25371,39 +24958,10 @@ NODEP_CPP_SAFES=\ ".\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"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
@@ -25455,7 +25013,35 @@ NODEP_CPP_SAFES=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
@@ -25507,6 +25093,58 @@ NODEP_CPP_SAFES=\ ".\tl_user_config.h"\
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+
+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"\
+
+
!ENDIF
# End Source File
@@ -25557,51 +25195,51 @@ DEP_CPP_SERVA=\ ".\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"\
+ ".\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"
@@ -26111,9 +25749,9 @@ DEP_CPP_SERVA=\ "..\..\include\IceE\LocalException.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"\
@@ -26133,76 +25771,11 @@ DEP_CPP_SERVA=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
".\DefaultsAndOverridesF.h"\
+ ".\EndpointFactoryF.h"\
".\Instance.h"\
".\ReferenceFactoryF.h"\
".\RouterInfoF.h"\
".\ServantManager.h"\
-
-NODEP_CPP_SERVA=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Shared.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_SHARE=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\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"\
@@ -26216,6 +25789,7 @@ DEP_CPP_SHARE=\ {$(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"\
@@ -26227,7 +25801,6 @@ DEP_CPP_SHARE=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -26235,7 +25808,6 @@ DEP_CPP_SHARE=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -26244,10 +25816,76 @@ DEP_CPP_SHARE=\ {$(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"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Shared.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_SHARE=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_SHARE=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -26429,70 +26067,6 @@ DEP_CPP_SHARE=\ "..\..\include\IceE\Mutex.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
-
-NODEP_CPP_SHARE=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\StaticMutex.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_STATI=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\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"\
@@ -26506,6 +26080,7 @@ DEP_CPP_STATI=\ {$(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"\
@@ -26517,7 +26092,6 @@ DEP_CPP_STATI=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -26525,7 +26099,6 @@ DEP_CPP_STATI=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -26534,10 +26107,75 @@ DEP_CPP_STATI=\ {$(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"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\StaticMutex.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_STATI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_STATI=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -26712,65 +26350,6 @@ DEP_CPP_STATI=\ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
-
-NODEP_CPP_STATI=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\StringUtil.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-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"\
@@ -26784,6 +26363,7 @@ DEP_CPP_STRIN=\ {$(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"\
@@ -26795,7 +26375,6 @@ DEP_CPP_STRIN=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -26803,7 +26382,6 @@ DEP_CPP_STRIN=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -26812,13 +26390,21 @@ DEP_CPP_STRIN=\ {$(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=\
+NODEP_CPP_STATI=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\StringUtil.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
@@ -26839,7 +26425,6 @@ NODEP_CPP_STRIN=\ ".\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"\
@@ -26851,6 +26436,7 @@ NODEP_CPP_STRIN=\ ".\onfig\stl_mwerks.h"\
".\onfig\stl_mycomp.h"\
".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
".\onfig\stl_sgi.h"\
".\onfig\stl_solaris.h"\
".\onfig\stl_sunpro.h"\
@@ -26858,6 +26444,7 @@ NODEP_CPP_STRIN=\ ".\onfig\stl_watcom.h"\
".\onfig\stl_wince.h"\
".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
".\thread.h"\
".\tl\_abbrevs.h"\
".\tl\_config.h"\
@@ -26866,39 +26453,10 @@ NODEP_CPP_STRIN=\ ".\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"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
@@ -26950,7 +26508,35 @@ NODEP_CPP_STRIN=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
@@ -27002,6 +26588,58 @@ NODEP_CPP_STRIN=\ ".\tl_user_config.h"\
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+
+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"\
+
+
!ENDIF
# End Source File
@@ -27061,51 +26699,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"\
+ ".\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"
@@ -27160,51 +26798,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"\
+ ".\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"
@@ -27259,51 +26897,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"\
+ ".\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) Debug"
@@ -27358,51 +26996,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"\
+ ".\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) Debug Static"
@@ -27457,51 +27095,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"\
+ ".\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"
@@ -27556,51 +27194,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"\
+ ".\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"
@@ -27655,51 +27293,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"\
+ ".\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) Release Static"
@@ -27720,6 +27358,7 @@ DEP_CPP_TCPEN=\ "..\..\include\IceE\LocalException.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"\
@@ -27821,51 +27460,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_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_select_lib.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)}"config\vc_select_lib.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_user_config.h"\
NODEP_CPP_THREA=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -28061,69 +27700,6 @@ DEP_CPP_THREA=\ "..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
-
-NODEP_CPP_THREA=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\ThreadException.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_THREAD=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\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"\
@@ -28137,6 +27713,7 @@ DEP_CPP_THREAD=\ {$(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"\
@@ -28148,7 +27725,6 @@ DEP_CPP_THREAD=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -28156,7 +27732,6 @@ DEP_CPP_THREAD=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -28165,10 +27740,74 @@ DEP_CPP_THREAD=\ {$(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"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\ThreadException.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_THREAD=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_THREAD=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -28336,65 +27975,6 @@ DEP_CPP_THREAD=\ "..\..\include\IceE\Handle.h"\
"..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\ThreadException.h"\
-
-NODEP_CPP_THREAD=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Time.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Time.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -28408,6 +27988,7 @@ DEP_CPP_TIME_=\ {$(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"\
@@ -28419,7 +28000,6 @@ DEP_CPP_TIME_=\ {$(INCLUDE)}"config\stl_mwerks.h"\
{$(INCLUDE)}"config\stl_mycomp.h"\
{$(INCLUDE)}"config\stl_sco.h"\
- {$(INCLUDE)}"config\stl_select_lib.h"\
{$(INCLUDE)}"config\stl_sgi.h"\
{$(INCLUDE)}"config\stl_solaris.h"\
{$(INCLUDE)}"config\stl_sunpro.h"\
@@ -28427,7 +28007,6 @@ DEP_CPP_TIME_=\ {$(INCLUDE)}"config\stl_watcom.h"\
{$(INCLUDE)}"config\stl_wince.h"\
{$(INCLUDE)}"config\stlcomp.h"\
- {$(INCLUDE)}"config\vc_select_lib.h"\
{$(INCLUDE)}"pthread.h"\
{$(INCLUDE)}"stl\_abbrevs.h"\
{$(INCLUDE)}"stl\_config.h"\
@@ -28436,17 +28015,24 @@ DEP_CPP_TIME_=\ {$(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_=\
+NODEP_CPP_THREAD=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Time.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\Time.h"\
NODEP_CPP_TIME_=\
@@ -28464,7 +28050,6 @@ NODEP_CPP_TIME_=\ ".\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"\
@@ -28476,6 +28061,7 @@ NODEP_CPP_TIME_=\ ".\onfig\stl_mwerks.h"\
".\onfig\stl_mycomp.h"\
".\onfig\stl_sco.h"\
+ ".\onfig\stl_select_lib.h"\
".\onfig\stl_sgi.h"\
".\onfig\stl_solaris.h"\
".\onfig\stl_sunpro.h"\
@@ -28483,6 +28069,7 @@ NODEP_CPP_TIME_=\ ".\onfig\stl_watcom.h"\
".\onfig\stl_wince.h"\
".\onfig\stlcomp.h"\
+ ".\onfig\vc_select_lib.h"\
".\thread.h"\
".\tl\_abbrevs.h"\
".\tl\_config.h"\
@@ -28491,43 +28078,10 @@ NODEP_CPP_TIME_=\ ".\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"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
@@ -28580,7 +28134,39 @@ NODEP_CPP_TIME_=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug Static"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
@@ -28633,41 +28219,11 @@ NODEP_CPP_TIME_=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\TraceLevels.cpp
-
-!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Release Static"
-DEP_CPP_TRACE=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_TIME_=\
"..\..\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\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.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\ThreadException.h"\
- "..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- ".\TraceLevels.h"\
+ "..\..\include\IceE\Time.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -28711,8 +28267,90 @@ DEP_CPP_TRACE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_TIME_=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\TraceLevels.cpp
+
+!IF "$(CFG)" == "ice - Win32 (WCE emulator) Release"
+
+DEP_CPP_TRACE=\
+ "..\..\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\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.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\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+ ".\TraceLevels.h"\
+
NODEP_CPP_TRACE=\
"..\..\..\..\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"
@@ -29132,51 +28770,51 @@ DEP_CPP_TRACE=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.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"\
- ".\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"\
!ENDIF
@@ -29219,51 +28857,51 @@ DEP_CPP_TRACEU=\ ".\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"\
+ ".\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"
@@ -29773,9 +29411,7 @@ NODEP_CPP_TRACEU=\ 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\DispatchStatus.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
@@ -29789,76 +29425,65 @@ DEP_CPP_TRACEU=\ "..\..\include\IceE\Logger.h"\
"..\..\include\IceE\LoggerF.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\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- ".\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"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -29913,51 +29538,51 @@ DEP_CPP_TRANS=\ ".\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"\
+ ".\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"
@@ -30381,6 +30006,7 @@ DEP_CPP_TRANS=\ "..\..\include\IceE\LocalException.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"\
@@ -30403,58 +30029,58 @@ DEP_CPP_TRANS=\ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.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"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
!ENDIF
@@ -30503,51 +30129,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"\
+ ".\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"
@@ -30589,51 +30215,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"\
+ ".\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"
@@ -30675,51 +30301,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"\
+ ".\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) Debug"
@@ -30761,51 +30387,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"\
+ ".\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) Debug Static"
@@ -30847,51 +30473,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"\
+ ".\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"
@@ -30933,51 +30559,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"\
+ ".\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"
@@ -31019,51 +30645,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"\
+ ".\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) Release Static"
@@ -31080,6 +30706,7 @@ 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"\
@@ -31170,51 +30797,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_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_select_lib.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)}"config\vc_select_lib.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_user_config.h"\
NODEP_CPP_UUID_=\
"..\..\..\..\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_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_select_lib.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"\
+ ".\onfig\vc_select_lib.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_user_config.h"\
!ELSEIF "$(CFG)" == "ice - Win32 (WCE emulator) Debug"
@@ -31396,51 +31023,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"\
- ".\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"\
!ENDIF
@@ -31740,10 +31367,6 @@ SOURCE=.\PropertiesI.h # End Source File
# Begin Source File
-SOURCE=.\PropertyNames.h
-# End Source File
-# Begin Source File
-
SOURCE=.\Protocol.h
# End Source File
# Begin Source File
diff --git a/cppe/src/IceEC/icec.dsp b/cppe/src/IceEC/icec.dsp index d55c8a9624e..e7b907c62a7 100755 --- a/cppe/src/IceEC/icec.dsp +++ b/cppe/src/IceEC/icec.dsp @@ -116,8 +116,8 @@ PostBuild_Cmds=copy $(OutDir)\iceecd.lib ..\..\lib\ copy $(OutDir)\iceec10d.pdb # PROP Intermediate_Dir "ReleaseStatic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
-MTL=midl.exe
SLICE2CPPEFLAGS=-DICEE
+MTL=midl.exe
CPP=cl.exe
# ADD BASE CPP /nologo /MT /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_WINDOWS" /D "_MBCS" /D "_LIB" /Yu"stdafx.h" /FD /c
# ADD CPP /nologo /MD /W3 /WX /GR /GX /O1 /I ".." /I "../../include" /D "NDEBUG" /D "ICEE_STATIC_LIBS" /D "_LIB" /D "WIN32_LEAN_AND_MEAN" /D FD_SETSIZE=1024 /D "_CONSOLE" /D "ICEE_PURE_CLIENT" /FD /c
@@ -133,7 +133,7 @@ LIB32=link.exe -lib # Begin Special Build Tool
OutDir=.\ReleaseStatic
SOURCE="$(InputPath)"
-PostBuild_Cmds=copy $(OutDir)\iceec.lib ..\..\lib\
+PostBuild_Cmds=copy $(OutDir)\iceec.lib ..\..\lib\
# End Special Build Tool
!ELSEIF "$(CFG)" == "icec - Win32 Debug Static"
@@ -149,8 +149,8 @@ PostBuild_Cmds=copy $(OutDir)\iceec.lib # PROP Intermediate_Dir "DebugStatic"
# PROP Ignore_Export_Lib 0
# PROP Target_Dir ""
-MTL=midl.exe
SLICE2CPPEFLAGS=-DICEE
+MTL=midl.exe
CPP=cl.exe
# ADD BASE CPP /nologo /MTd /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_WINDOWS" /D "_MBCS" /D "_LIB" /Yu"stdafx.h" /FD /GZ /c
# ADD CPP /nologo /MDd /W3 /WX /Gm /GR /GX /Zi /Od /I ".." /I "../../include" /D "_DEBUG" /D "ICEE_STATIC_LIBS" /D "_LIB" /D "WIN32_LEAN_AND_MEAN" /D FD_SETSIZE=1024 /D "_CONSOLE" /D "ICEE_PURE_CLIENT" /FD /GZ /c
@@ -166,7 +166,7 @@ LIB32=link.exe -lib # Begin Special Build Tool
OutDir=.\DebugStatic
SOURCE="$(InputPath)"
-PostBuild_Cmds=copy $(OutDir)\iceecd.lib ..\..\lib\
+PostBuild_Cmds=copy $(OutDir)\iceecd.lib ..\..\lib\
# End Special Build Tool
!ENDIF
@@ -298,10 +298,6 @@ SOURCE=..\IceE\Properties.cpp # End Source File
# Begin Source File
-SOURCE=..\IceE\PropertyNames.cpp
-# End Source File
-# Begin Source File
-
SOURCE=..\IceE\Proxy.cpp
# End Source File
# Begin Source File
diff --git a/cppe/src/IceEC/icec.vcp b/cppe/src/IceEC/icec.vcp index 1c91b9f5853..0bec19c7618 100755 --- a/cppe/src/IceEC/icec.vcp +++ b/cppe/src/IceEC/icec.vcp @@ -343,51 +343,51 @@ DEP_CPP_BASIC=\ "..\IceE\ProxyFactory.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -837,92 +837,12 @@ DEP_CPP_BASIC=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\Protocol.h"\
"..\IceE\ProxyFactory.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
-
-NODEP_CPP_BASIC=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Buffer.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-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\LocalException.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)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -966,11 +886,18 @@ DEP_CPP_BUFFE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_BUFFE=\
+NODEP_CPP_BASIC=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Buffer.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1043,7 +970,7 @@ NODEP_CPP_BUFFE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1070,8 +997,53 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_BUFFE=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1099,7 +1071,7 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1127,7 +1099,7 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1155,7 +1127,7 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1182,53 +1154,8 @@ DEP_CPP_BUFFE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_BUFFE=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
@@ -1301,34 +1228,22 @@ NODEP_CPP_BUFFE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\BuiltinSequences.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_BUILT=\
- "..\..\include\IceE\BasicStream.h"\
+DEP_CPP_BUFFE=\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.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\Identity.h"\
- "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalException.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"\
"..\..\include\IceE\Proxy.h"\
@@ -1382,11 +1297,18 @@ DEP_CPP_BUILT=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_BUILT=\
+NODEP_CPP_BUFFE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\BuiltinSequences.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1464,7 +1386,7 @@ NODEP_CPP_BUILT=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1496,8 +1418,53 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_BUILT=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1530,7 +1497,7 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1563,7 +1530,7 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1596,7 +1563,7 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1628,53 +1595,8 @@ DEP_CPP_BUILT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_BUILT=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_BUILT=\
"..\..\include\IceE\BasicStream.h"\
@@ -1752,67 +1674,37 @@ NODEP_CPP_BUILT=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Communicator.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_COMMU=\
+DEP_CPP_BUILT=\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Communicator.h"\
- "..\..\include\IceE\CommunicatorF.h"\
- "..\..\include\IceE\Cond.h"\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\ConnectionF.h"\
- "..\..\include\IceE\EndpointF.h"\
+ "..\..\include\IceE\Current.h"\
+ "..\..\include\IceE\DispatchStatus.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\LocalException.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\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\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\Time.h"\
- "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\EndpointFactoryF.h"\
- "..\IceE\Instance.h"\
- "..\IceE\ObjectAdapterFactory.h"\
- "..\IceE\ProxyFactory.h"\
- "..\IceE\Reference.h"\
- "..\IceE\ReferenceFactory.h"\
- "..\IceE\ReferenceFactoryF.h"\
- "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -1856,11 +1748,18 @@ DEP_CPP_COMMU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_COMMU=\
+NODEP_CPP_BUILT=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Communicator.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -1906,6 +1805,7 @@ DEP_CPP_COMMU=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\ObjectAdapterFactory.h"\
"..\IceE\ProxyFactory.h"\
@@ -1916,7 +1816,6 @@ DEP_CPP_COMMU=\ NODEP_CPP_COMMU=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -1961,7 +1860,7 @@ NODEP_CPP_COMMU=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2016,10 +1915,53 @@ DEP_CPP_COMMU=\ "..\IceE\RouterInfoF.h"\
NODEP_CPP_COMMU=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2077,7 +2019,7 @@ NODEP_CPP_COMMU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2135,7 +2077,7 @@ NODEP_CPP_COMMU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2193,7 +2135,7 @@ NODEP_CPP_COMMU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2248,53 +2190,10 @@ DEP_CPP_COMMU=\ "..\IceE\RouterInfoF.h"\
NODEP_CPP_COMMU=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_COMMU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -2395,25 +2294,60 @@ NODEP_CPP_COMMU=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Cond.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_COND_=\
+DEP_CPP_COMMU=\
+ "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\include\IceE\Communicator.h"\
+ "..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Cond.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\Initialize.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalException.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\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
+ "..\IceE\Instance.h"\
+ "..\IceE\ObjectAdapterFactory.h"\
+ "..\IceE\ProxyFactory.h"\
+ "..\IceE\Reference.h"\
+ "..\IceE\ReferenceFactory.h"\
+ "..\IceE\ReferenceFactoryF.h"\
+ "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -2457,8 +2391,74 @@ DEP_CPP_COND_=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_COMMU=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Cond.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_COND_=\
+ "..\..\include\IceE\Cond.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+
NODEP_CPP_COND_=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -2647,51 +2647,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"\
- ".\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"\
!ENDIF
@@ -2771,51 +2771,51 @@ DEP_CPP_CONNE=\ "..\IceE\RouterInfoF.h"\
"..\IceE\TraceUtil.h"\
"..\IceE\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=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -3403,8 +3403,12 @@ DEP_CPP_CONNE=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverrides.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\Protocol.h"\
"..\IceE\ProxyFactory.h"\
@@ -3413,103 +3417,6 @@ DEP_CPP_CONNE=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceUtil.h"\
-
-NODEP_CPP_CONNE=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\TcpTransport\Connector.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-DEP_CPP_CONNEC=\
- "..\..\include\IceE\CommunicatorF.h"\
- "..\..\include\IceE\Config.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"\
- "..\..\include\IceE\PropertiesF.h"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyFactoryF.h"\
- "..\..\include\IceE\ProxyHandle.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"\
- "..\IceE\Connector.h"\
- "..\IceE\ConnectorF.h"\
- "..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\EndpointFactoryF.h"\
- "..\IceE\Instance.h"\
- "..\IceE\Network.h"\
- "..\IceE\ReferenceFactoryF.h"\
- "..\IceE\RouterInfoF.h"\
- "..\IceE\TraceLevels.h"\
"..\IceE\Transceiver.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
@@ -3554,11 +3461,18 @@ DEP_CPP_CONNEC=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_CONNEC=\
+NODEP_CPP_CONNE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\TcpTransport\Connector.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3587,19 +3501,19 @@ DEP_CPP_CONNEC=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\Connector.h"\
+ "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\Network.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
+ "..\IceE\Transceiver.h"\
NODEP_CPP_CONNEC=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -3644,7 +3558,7 @@ NODEP_CPP_CONNEC=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3681,13 +3595,56 @@ DEP_CPP_CONNEC=\ "..\IceE\TraceLevels.h"\
NODEP_CPP_CONNEC=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\Connector.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Transceiver.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3730,7 +3687,7 @@ NODEP_CPP_CONNEC=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3773,7 +3730,7 @@ NODEP_CPP_CONNEC=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3816,7 +3773,7 @@ NODEP_CPP_CONNEC=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3853,56 +3810,13 @@ DEP_CPP_CONNEC=\ "..\IceE\TraceLevels.h"\
NODEP_CPP_CONNEC=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\Connector.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Transceiver.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_CONNEC=\
"..\..\include\IceE\CommunicatorF.h"\
@@ -3988,42 +3902,45 @@ NODEP_CPP_CONNEC=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\DefaultsAndOverrides.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_DEFAU=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_CONNEC=\
+ "..\..\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\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\OperationMode.h"\
- "..\..\include\IceE\Properties.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\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\DefaultsAndOverrides.h"\
+ "..\IceE\Connector.h"\
+ "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
+ "..\IceE\Instance.h"\
"..\IceE\Network.h"\
+ "..\IceE\ReferenceFactoryF.h"\
+ "..\IceE\RouterInfoF.h"\
+ "..\IceE\TraceLevels.h"\
+ "..\IceE\Transceiver.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -4067,11 +3984,18 @@ DEP_CPP_DEFAU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_DEFAU=\
+NODEP_CPP_CONNEC=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\DefaultsAndOverrides.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4147,7 +4071,7 @@ NODEP_CPP_DEFAU=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4177,8 +4101,53 @@ DEP_CPP_DEFAU=\ "..\IceE\DefaultsAndOverridesF.h"\
"..\IceE\Network.h"\
+NODEP_CPP_DEFAU=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4209,7 +4178,7 @@ DEP_CPP_DEFAU=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4240,7 +4209,7 @@ DEP_CPP_DEFAU=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4271,7 +4240,7 @@ DEP_CPP_DEFAU=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4301,53 +4270,8 @@ DEP_CPP_DEFAU=\ "..\IceE\DefaultsAndOverridesF.h"\
"..\IceE\Network.h"\
-NODEP_CPP_DEFAU=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_DEFAU=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -4423,37 +4347,35 @@ NODEP_CPP_DEFAU=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Endpoint.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_ENDPO=\
+DEP_CPP_DEFAU=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\EndpointF.h"\
+ "..\..\include\IceE\ConnectionF.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\LoggerF.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\ThreadException.h"\
- "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\AcceptorF.h"\
- "..\IceE\ConnectorF.h"\
- "..\IceE\Endpoint.h"\
+ "..\IceE\DefaultsAndOverrides.h"\
+ "..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Network.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -4497,8 +4419,86 @@ DEP_CPP_ENDPO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_DEFAU=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Endpoint.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_ENDPO=\
+ "..\..\include\IceE\Config.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\Lock.h"\
+ "..\..\include\IceE\LoggerF.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"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\ConnectorF.h"\
+ "..\IceE\Endpoint.h"\
+
NODEP_CPP_ENDPO=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -4525,51 +4525,51 @@ DEP_CPP_ENDPO=\ "..\IceE\AcceptorF.h"\
"..\IceE\ConnectorF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Release"
@@ -4596,51 +4596,51 @@ DEP_CPP_ENDPO=\ "..\IceE\AcceptorF.h"\
"..\IceE\ConnectorF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Debug"
@@ -4667,51 +4667,51 @@ DEP_CPP_ENDPO=\ "..\IceE\AcceptorF.h"\
"..\IceE\ConnectorF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Debug Static"
@@ -4738,51 +4738,51 @@ DEP_CPP_ENDPO=\ "..\IceE\AcceptorF.h"\
"..\IceE\ConnectorF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Release Static"
@@ -4809,51 +4809,51 @@ DEP_CPP_ENDPO=\ "..\IceE\AcceptorF.h"\
"..\IceE\ConnectorF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug Static"
@@ -4880,51 +4880,51 @@ DEP_CPP_ENDPO=\ "..\IceE\AcceptorF.h"\
"..\IceE\ConnectorF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Release Static"
@@ -5043,51 +5043,51 @@ DEP_CPP_ENDPOI=\ "..\IceE\EndpointFactoryF.h"\
"..\IceE\UnknownEndpoint.h"\
"..\TcpTransport\TcpEndpoint.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=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -5429,6 +5429,7 @@ DEP_CPP_ENDPOI=\ "..\..\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"\
@@ -5441,73 +5442,13 @@ DEP_CPP_ENDPOI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-
-NODEP_CPP_ENDPOI=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\ExceptionBase.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\ConnectorF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactory.h"\
+ "..\IceE\EndpointFactoryF.h"\
+ "..\IceE\UnknownEndpoint.h"\
+ "..\TcpTransport\TcpEndpoint.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -5551,11 +5492,18 @@ DEP_CPP_EXCEP=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_EXCEP=\
+NODEP_CPP_ENDPOI=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\ExceptionBase.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
@@ -5610,47 +5558,7 @@ NODEP_CPP_EXCEP=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_EXCEP=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
@@ -5705,7 +5613,47 @@ NODEP_CPP_EXCEP=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_EXCEP=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
@@ -5760,29 +5708,14 @@ NODEP_CPP_EXCEP=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\FactoryTable.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_FACTO=\
+DEP_CPP_EXCEP=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\FactoryTable.h"\
- "..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StaticMutex.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\UserExceptionFactory.h"\
- "..\..\include\IceE\UserExceptionFactoryF.h"\
+ "..\..\include\IceE\SafeStdio.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -5826,11 +5759,18 @@ DEP_CPP_FACTO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_FACTO=\
+NODEP_CPP_EXCEP=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\FactoryTable.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -5893,7 +5833,7 @@ NODEP_CPP_FACTO=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -5910,8 +5850,53 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+NODEP_CPP_FACTO=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -5929,7 +5914,7 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -5947,7 +5932,7 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -5965,7 +5950,7 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -5982,53 +5967,8 @@ DEP_CPP_FACTO=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
-NODEP_CPP_FACTO=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
@@ -6091,19 +6031,13 @@ NODEP_CPP_FACTO=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\FactoryTableDef.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_FACTOR=\
+DEP_CPP_FACTO=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\FactoryTable.h"\
"..\..\include\IceE\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Lock.h"\
@@ -6156,11 +6090,18 @@ DEP_CPP_FACTOR=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_FACTOR=\
+NODEP_CPP_FACTO=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\FactoryTableDef.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6222,7 +6163,7 @@ NODEP_CPP_FACTOR=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6238,8 +6179,53 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+NODEP_CPP_FACTOR=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6256,7 +6242,7 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6273,7 +6259,7 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6290,7 +6276,7 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6306,53 +6292,8 @@ DEP_CPP_FACTOR=\ "..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
-NODEP_CPP_FACTOR=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_FACTOR=\
"..\..\include\IceE\Config.h"\
@@ -6414,40 +6355,21 @@ NODEP_CPP_FACTOR=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Identity.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_IDENT=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
+DEP_CPP_FACTOR=\
"..\..\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\FactoryTableDef.h"\
"..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Identity.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"\
- "..\..\include\IceE\ProxyF.h"\
- "..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\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"\
@@ -6491,11 +6413,18 @@ DEP_CPP_IDENT=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_IDENT=\
+NODEP_CPP_FACTOR=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Identity.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6569,7 +6498,7 @@ NODEP_CPP_IDENT=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6597,8 +6526,53 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_IDENT=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6627,7 +6601,7 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6656,7 +6630,7 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6685,7 +6659,7 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6713,53 +6687,8 @@ DEP_CPP_IDENT=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_IDENT=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_IDENT=\
"..\..\include\IceE\BasicStream.h"\
@@ -6833,38 +6762,31 @@ NODEP_CPP_IDENT=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\IdentityUtil.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_IDENTI=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_IDENT=\
+ "..\..\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\Identity.h"\
- "..\..\include\IceE\IdentityUtil.h"\
- "..\..\include\IceE\LocalException.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"\
- "..\..\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"\
@@ -6910,11 +6832,18 @@ DEP_CPP_IDENTI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_IDENTI=\
+NODEP_CPP_IDENT=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\IdentityUtil.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -6988,7 +6917,7 @@ NODEP_CPP_IDENTI=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -7016,8 +6945,53 @@ DEP_CPP_IDENTI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -7046,7 +7020,7 @@ DEP_CPP_IDENTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -7075,7 +7049,7 @@ DEP_CPP_IDENTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -7104,7 +7078,7 @@ DEP_CPP_IDENTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -7132,53 +7106,8 @@ DEP_CPP_IDENTI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_IDENTI=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -7252,44 +7181,31 @@ NODEP_CPP_IDENTI=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Initialize.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_INITI=\
+DEP_CPP_IDENTI=\
"..\..\include\IceE\BuiltinSequences.h"\
- "..\..\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\Identity.h"\
- "..\..\include\IceE\Initialize.h"\
- "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\LocalException.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"\
- "..\..\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\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
{$(INCLUDE)}"config\_epilog.h"\
@@ -7335,8 +7251,95 @@ DEP_CPP_INITI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_IDENTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Initialize.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_INITI=\
+ "..\..\include\IceE\BuiltinSequences.h"\
+ "..\..\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\Identity.h"\
+ "..\..\include\IceE\Initialize.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalException.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"\
+ "..\..\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\ThreadException.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+
NODEP_CPP_INITI=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -7672,51 +7675,51 @@ DEP_CPP_INITI=\ "..\..\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_INITI=\
"..\..\..\..\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"\
!ENDIF
@@ -7801,51 +7804,51 @@ DEP_CPP_INSTA=\ "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -8470,12 +8473,13 @@ DEP_CPP_INSTA=\ "..\..\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"\
"..\IceE\DefaultsAndOverrides.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactory.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\LocatorInfo.h"\
"..\IceE\LoggerI.h"\
@@ -8488,90 +8492,6 @@ DEP_CPP_INSTA=\ "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
-
-NODEP_CPP_INSTA=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\LocalException.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-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\LocalException.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"\
- "..\IceE\Network.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -8615,11 +8535,18 @@ DEP_CPP_LOCAL=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOCAL=\
+NODEP_CPP_INSTA=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\LocalException.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8694,7 +8621,7 @@ NODEP_CPP_LOCAL=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8723,8 +8650,53 @@ DEP_CPP_LOCAL=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\Network.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8754,7 +8726,7 @@ DEP_CPP_LOCAL=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8784,7 +8756,7 @@ DEP_CPP_LOCAL=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8814,7 +8786,7 @@ DEP_CPP_LOCAL=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8843,53 +8815,8 @@ DEP_CPP_LOCAL=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\Network.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOCAL=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -8964,26 +8891,34 @@ NODEP_CPP_LOCAL=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\LocalObject.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_LOCALO=\
+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\LocalException.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"\
+ "..\IceE\Network.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -9027,8 +8962,75 @@ DEP_CPP_LOCALO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_LOCAL=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\LocalObject.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_LOCALO=\
+ "..\..\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\Mutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_LOCALO=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -9224,51 +9226,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"\
- ".\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"\
!ENDIF
@@ -9322,51 +9324,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=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -9779,51 +9781,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=\
"..\..\..\..\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"\
!ENDIF
@@ -9903,51 +9905,51 @@ DEP_CPP_LOCATO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -10539,89 +10541,17 @@ DEP_CPP_LOCATO=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\LocatorInfo.h"\
"..\IceE\Reference.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
-
-NODEP_CPP_LOCATO=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Logger.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-DEP_CPP_LOGGE=\
- "..\..\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)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -10665,11 +10595,18 @@ DEP_CPP_LOGGE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOGGE=\
+NODEP_CPP_LOCATO=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Logger.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10734,7 +10671,7 @@ NODEP_CPP_LOGGE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10753,8 +10690,53 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_LOGGE=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10774,7 +10756,7 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10794,7 +10776,7 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10814,7 +10796,7 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10833,53 +10815,8 @@ DEP_CPP_LOGGE=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_LOGGE=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
@@ -10944,16 +10881,9 @@ NODEP_CPP_LOGGE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\LoggerI.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_LOGGER=\
+DEP_CPP_LOGGE=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
@@ -10969,7 +10899,6 @@ DEP_CPP_LOGGER=\ "..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\LoggerI.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -11013,11 +10942,18 @@ DEP_CPP_LOGGER=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOGGER=\
+NODEP_CPP_LOGGE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\LoggerI.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11034,7 +10970,6 @@ DEP_CPP_LOGGER=\ "..\..\include\IceE\ProxyHandle.h"\
"..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\LoggerI.h"\
@@ -11084,7 +11019,7 @@ NODEP_CPP_LOGGER=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11105,8 +11040,53 @@ DEP_CPP_LOGGER=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\LoggerI.h"\
+NODEP_CPP_LOGGER=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11128,7 +11108,7 @@ DEP_CPP_LOGGER=\ "..\IceE\LoggerI.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11150,7 +11130,7 @@ DEP_CPP_LOGGER=\ "..\IceE\LoggerI.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11172,7 +11152,7 @@ DEP_CPP_LOGGER=\ "..\IceE\LoggerI.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11193,53 +11173,8 @@ DEP_CPP_LOGGER=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\LoggerI.h"\
-NODEP_CPP_LOGGER=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
@@ -11306,16 +11241,9 @@ NODEP_CPP_LOGGER=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\LoggerUtil.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_LOGGERU=\
+DEP_CPP_LOGGER=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
@@ -11324,8 +11252,6 @@ DEP_CPP_LOGGERU=\ "..\..\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"\
"..\..\include\IceE\ProxyF.h"\
@@ -11333,6 +11259,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\LoggerI.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -11376,11 +11303,18 @@ DEP_CPP_LOGGERU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_LOGGERU=\
+NODEP_CPP_LOGGER=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\LoggerUtil.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11447,7 +11381,7 @@ NODEP_CPP_LOGGERU=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11468,8 +11402,53 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_LOGGERU=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11491,7 +11470,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11513,7 +11492,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11535,7 +11514,7 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11556,53 +11535,8 @@ DEP_CPP_LOGGERU=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_LOGGERU=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_LOGGERU=\
"..\..\include\IceE\Config.h"\
@@ -11669,40 +11603,26 @@ NODEP_CPP_LOGGERU=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Network.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_NETWO=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_LOGGERU=\
"..\..\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\LocalException.h"\
"..\..\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"\
- "..\..\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"\
- "..\IceE\Network.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -11746,11 +11666,18 @@ DEP_CPP_NETWO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_NETWO=\
+NODEP_CPP_LOGGERU=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Network.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11824,7 +11751,7 @@ NODEP_CPP_NETWO=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11852,8 +11779,53 @@ DEP_CPP_NETWO=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\Network.h"\
+NODEP_CPP_NETWO=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11882,7 +11854,7 @@ DEP_CPP_NETWO=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11911,7 +11883,7 @@ DEP_CPP_NETWO=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11940,7 +11912,7 @@ DEP_CPP_NETWO=\ "..\IceE\Network.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -11968,53 +11940,8 @@ DEP_CPP_NETWO=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\Network.h"\
-NODEP_CPP_NETWO=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_NETWO=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -12088,25 +12015,33 @@ NODEP_CPP_NETWO=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\OperationMode.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_OPERA=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
+DEP_CPP_NETWO=\
+ "..\..\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\InstanceF.h"\
+ "..\..\include\IceE\Identity.h"\
+ "..\..\include\IceE\LocalException.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"\
+ "..\IceE\Network.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -12150,11 +12085,18 @@ DEP_CPP_OPERA=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_OPERA=\
+NODEP_CPP_NETWO=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\OperationMode.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12213,7 +12155,7 @@ NODEP_CPP_OPERA=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12226,8 +12168,53 @@ DEP_CPP_OPERA=\ "..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyHandle.h"\
+NODEP_CPP_OPERA=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12241,7 +12228,7 @@ DEP_CPP_OPERA=\ "..\..\include\IceE\ProxyHandle.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12255,7 +12242,7 @@ DEP_CPP_OPERA=\ "..\..\include\IceE\ProxyHandle.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12269,7 +12256,7 @@ DEP_CPP_OPERA=\ "..\..\include\IceE\ProxyHandle.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12282,53 +12269,8 @@ DEP_CPP_OPERA=\ "..\..\include\IceE\ProxyF.h"\
"..\..\include\IceE\ProxyHandle.h"\
-NODEP_CPP_OPERA=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_OPERA=\
"..\..\include\IceE\BasicStream.h"\
@@ -12387,61 +12329,18 @@ NODEP_CPP_OPERA=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Outgoing.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_OUTGO=\
+DEP_CPP_OPERA=\
"..\..\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\DispatchStatus.h"\
- "..\..\include\IceE\EndpointF.h"\
- "..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.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\LocatorInfoF.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\LoggerF.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"\
"..\..\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"\
- "..\IceE\Reference.h"\
- "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -12485,11 +12384,18 @@ DEP_CPP_OUTGO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_OUTGO=\
+NODEP_CPP_OPERA=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Outgoing.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -12536,14 +12442,10 @@ DEP_CPP_OUTGO=\ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\Reference.h"\
- "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
NODEP_CPP_OUTGO=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -12588,7 +12490,7 @@ NODEP_CPP_OUTGO=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -12639,12 +12541,55 @@ DEP_CPP_OUTGO=\ "..\IceE\RouterInfoF.h"\
NODEP_CPP_OUTGO=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Endpoint.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -12700,7 +12645,7 @@ NODEP_CPP_OUTGO=\ "..\..\include\IceE\Endpoint.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -12756,7 +12701,7 @@ NODEP_CPP_OUTGO=\ "..\..\include\IceE\Endpoint.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -12812,7 +12757,7 @@ NODEP_CPP_OUTGO=\ "..\..\include\IceE\Endpoint.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -12863,55 +12808,12 @@ DEP_CPP_OUTGO=\ "..\IceE\RouterInfoF.h"\
NODEP_CPP_OUTGO=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Endpoint.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_OUTGO=\
"..\..\include\IceE\BasicStream.h"\
@@ -13010,28 +12912,20 @@ NODEP_CPP_OUTGO=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\OutgoingConnectionFactory.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_OUTGOI=\
+DEP_CPP_OUTGO=\
"..\..\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\DispatchStatus.h"\
"..\..\include\IceE\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\IncomingConnectionFactoryF.h"\
@@ -13043,23 +12937,19 @@ DEP_CPP_OUTGOI=\ "..\..\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\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\Shared.h"\
"..\..\include\IceE\Thread.h"\
@@ -13068,20 +12958,8 @@ DEP_CPP_OUTGOI=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\AcceptorF.h"\
- "..\IceE\Connector.h"\
- "..\IceE\ConnectorF.h"\
- "..\IceE\DefaultsAndOverrides.h"\
- "..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\Endpoint.h"\
- "..\IceE\EndpointFactoryF.h"\
- "..\IceE\Instance.h"\
- "..\IceE\OutgoingConnectionFactory.h"\
"..\IceE\Reference.h"\
- "..\IceE\ReferenceFactoryF.h"\
- "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
- "..\IceE\TraceLevels.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -13125,11 +13003,18 @@ DEP_CPP_OUTGOI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_OUTGOI=\
+NODEP_CPP_OUTGO=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\OutgoingConnectionFactory.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13163,7 +13048,6 @@ DEP_CPP_OUTGOI=\ "..\..\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"\
@@ -13181,8 +13065,13 @@ DEP_CPP_OUTGOI=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\Connector.h"\
+ "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverrides.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\OutgoingConnectionFactory.h"\
"..\IceE\Reference.h"\
@@ -13193,12 +13082,6 @@ DEP_CPP_OUTGOI=\ NODEP_CPP_OUTGOI=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\Connector.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -13243,7 +13126,7 @@ NODEP_CPP_OUTGOI=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13306,15 +13189,58 @@ DEP_CPP_OUTGOI=\ "..\IceE\TraceLevels.h"\
NODEP_CPP_OUTGOI=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\Connector.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Transceiver.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13385,7 +13311,7 @@ NODEP_CPP_OUTGOI=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13456,7 +13382,7 @@ NODEP_CPP_OUTGOI=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13527,7 +13453,7 @@ NODEP_CPP_OUTGOI=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13590,58 +13516,15 @@ DEP_CPP_OUTGOI=\ "..\IceE\TraceLevels.h"\
NODEP_CPP_OUTGOI=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\Connector.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Transceiver.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_OUTGOI=\
"..\..\include\IceE\BasicStream.h"\
@@ -13755,45 +13638,71 @@ NODEP_CPP_OUTGOI=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Properties.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_PROPE=\
+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\EndpointF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\Initialize.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\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\Properties.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\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"\
- "..\IceE\PropertyNames.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\Connector.h"\
+ "..\IceE\ConnectorF.h"\
+ "..\IceE\DefaultsAndOverrides.h"\
+ "..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactoryF.h"\
+ "..\IceE\Instance.h"\
+ "..\IceE\OutgoingConnectionFactory.h"\
+ "..\IceE\Reference.h"\
+ "..\IceE\ReferenceFactoryF.h"\
+ "..\IceE\RouterInfo.h"\
+ "..\IceE\RouterInfoF.h"\
+ "..\IceE\TraceLevels.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -13837,8 +13746,94 @@ DEP_CPP_PROPE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_OUTGOI=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Properties.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+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\LocalException.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\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"\
+ "..\IceE\PropertyNames.h"\
+
NODEP_CPP_PROPE=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -14166,66 +14161,6 @@ DEP_CPP_PROPE=\ "..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\PropertyNames.h"\
-
-NODEP_CPP_PROPE=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\PropertyNames.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -14269,192 +14204,8 @@ DEP_CPP_PROPER=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_PROPER=\
- "..\..\..\..\usr\include\pthread.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Release"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
+NODEP_CPP_PROPE=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
-
-DEP_CPP_PROPER=\
- "..\..\include\IceE\Config.h"\
- "..\IceE\PropertyNames.h"\
-
-NODEP_CPP_PROPER=\
- "..\..\..\..\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"\
!ENDIF
@@ -14516,51 +14267,51 @@ DEP_CPP_PROXY=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfo.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -15058,65 +14809,60 @@ DEP_CPP_PROXY=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
"..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
- "..\IceE\LocatorInfo.h"\
"..\IceE\ProxyFactory.h"\
"..\IceE\Reference.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfo.h"\
"..\IceE\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"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
!ENDIF
@@ -15178,51 +14924,51 @@ DEP_CPP_PROXYF=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -15662,8 +15408,6 @@ NODEP_CPP_PROXYF=\ !ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
DEP_CPP_PROXYF=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
@@ -15704,6 +15448,7 @@ DEP_CPP_PROXYF=\ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\LocatorInfo.h"\
"..\IceE\ProxyFactory.h"\
@@ -15712,71 +15457,6 @@ DEP_CPP_PROXYF=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
-
-NODEP_CPP_PROXYF=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\RecMutex.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-DEP_CPP_RECMU=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\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"\
@@ -15820,8 +15500,72 @@ DEP_CPP_RECMU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_PROXYF=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\RecMutex.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_RECMU=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\RecMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_RECMU=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -15996,51 +15740,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"\
- ".\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"\
!ENDIF
@@ -16129,51 +15873,51 @@ DEP_CPP_REFER=\ "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -16825,7 +16569,11 @@ DEP_CPP_REFER=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\..\include\IceE\UserExceptionFactory.h"\
"..\..\include\IceE\UserExceptionFactoryF.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\LocatorInfo.h"\
"..\IceE\OutgoingConnectionFactory.h"\
@@ -16835,116 +16583,6 @@ DEP_CPP_REFER=\ "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
-
-NODEP_CPP_REFER=\
- "..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactoryF.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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\ReferenceFactory.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-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\EndpointF.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\LocalException.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\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\RouterF.h"\
- "..\..\include\IceE\RoutingTableF.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StringUtil.h"\
- "..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\EndpointFactory.h"\
- "..\IceE\EndpointFactoryF.h"\
- "..\IceE\Instance.h"\
- "..\IceE\LocatorInfo.h"\
- "..\IceE\Reference.h"\
- "..\IceE\ReferenceFactory.h"\
- "..\IceE\ReferenceFactoryF.h"\
- "..\IceE\RouterInfo.h"\
- "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -16988,11 +16626,18 @@ DEP_CPP_REFERE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_REFERE=\
+NODEP_CPP_REFER=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\ReferenceFactory.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17033,12 +16678,12 @@ DEP_CPP_REFERE=\ "..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactory.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\LocatorInfo.h"\
- "..\IceE\ProxyFactory.h"\
"..\IceE\Reference.h"\
"..\IceE\ReferenceFactory.h"\
"..\IceE\ReferenceFactoryF.h"\
@@ -17047,11 +16692,6 @@ DEP_CPP_REFERE=\ NODEP_CPP_REFERE=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\AcceptorF.h"\
- "..\..\include\IceE\ConnectorF.h"\
- "..\..\include\IceE\Endpoint.h"\
- "..\..\include\IceE\EndpointFactory.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -17096,7 +16736,7 @@ NODEP_CPP_REFERE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17150,14 +16790,57 @@ DEP_CPP_REFERE=\ "..\IceE\RouterInfoF.h"\
NODEP_CPP_REFERE=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointFactory.h"\
"..\..\include\IceE\EndpointFactoryF.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17218,7 +16901,7 @@ NODEP_CPP_REFERE=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17279,7 +16962,7 @@ NODEP_CPP_REFERE=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17340,7 +17023,7 @@ NODEP_CPP_REFERE=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17394,57 +17077,14 @@ DEP_CPP_REFERE=\ "..\IceE\RouterInfoF.h"\
NODEP_CPP_REFERE=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\AcceptorF.h"\
"..\..\include\IceE\ConnectorF.h"\
"..\..\include\IceE\Endpoint.h"\
"..\..\include\IceE\EndpointFactory.h"\
"..\..\include\IceE\EndpointFactoryF.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17548,52 +17188,60 @@ NODEP_CPP_REFERE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=.\Router.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_ROUTE=\
+DEP_CPP_REFERE=\
"..\..\include\IceE\BasicStream.h"\
"..\..\include\IceE\Buffer.h"\
"..\..\include\IceE\BuiltinSequences.h"\
- "..\..\include\IceE\Cond.h"\
+ "..\..\include\IceE\CommunicatorF.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\Handle.h"\
"..\..\include\IceE\Identity.h"\
- "..\..\include\IceE\Incoming.h"\
+ "..\..\include\IceE\IdentityUtil.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.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\LoggerF.h"\
+ "..\..\include\IceE\LoggerUtil.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\ServantManagerF.h"\
+ "..\..\include\IceE\RouterF.h"\
+ "..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
- "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactory.h"\
+ "..\IceE\EndpointFactoryF.h"\
+ "..\IceE\Instance.h"\
+ "..\IceE\LocatorInfo.h"\
+ "..\IceE\Reference.h"\
+ "..\IceE\ReferenceFactory.h"\
+ "..\IceE\ReferenceFactoryF.h"\
+ "..\IceE\RouterInfo.h"\
+ "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -17637,11 +17285,18 @@ DEP_CPP_ROUTE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_ROUTE=\
+NODEP_CPP_REFERE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=.\Router.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17727,7 +17382,7 @@ NODEP_CPP_ROUTE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17767,8 +17422,53 @@ DEP_CPP_ROUTE=\ "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_ROUTE=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17809,7 +17509,7 @@ DEP_CPP_ROUTE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17850,7 +17550,7 @@ DEP_CPP_ROUTE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17891,7 +17591,7 @@ DEP_CPP_ROUTE=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -17931,53 +17631,8 @@ DEP_CPP_ROUTE=\ "..\..\include\IceE\Time.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_ROUTE=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_ROUTE=\
"..\..\include\IceE\BasicStream.h"\
@@ -18063,39 +17718,27 @@ NODEP_CPP_ROUTE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\RouterInfo.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_ROUTER=\
+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\Connection.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\Functional.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Identity.h"\
"..\..\include\IceE\Incoming.h"\
- "..\..\include\IceE\IncomingConnectionFactoryF.h"\
"..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalException.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"\
@@ -18103,26 +17746,17 @@ DEP_CPP_ROUTER=\ "..\..\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"\
"..\..\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"\
- "..\IceE\RouterInfo.h"\
- "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -18166,11 +17800,18 @@ DEP_CPP_ROUTER=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_ROUTER=\
+NODEP_CPP_ROUTE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\RouterInfo.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18270,7 +17911,7 @@ NODEP_CPP_ROUTER=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18324,8 +17965,53 @@ DEP_CPP_ROUTER=\ "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
+NODEP_CPP_ROUTER=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18380,7 +18066,7 @@ DEP_CPP_ROUTER=\ "..\IceE\RouterInfoF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18435,7 +18121,7 @@ DEP_CPP_ROUTER=\ "..\IceE\RouterInfoF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18490,7 +18176,7 @@ DEP_CPP_ROUTER=\ "..\IceE\RouterInfoF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18544,53 +18230,8 @@ DEP_CPP_ROUTER=\ "..\IceE\RouterInfo.h"\
"..\IceE\RouterInfoF.h"\
-NODEP_CPP_ROUTER=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_ROUTER=\
"..\..\include\IceE\BasicStream.h"\
@@ -18690,38 +18331,59 @@ NODEP_CPP_ROUTER=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\RoutingTable.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_ROUTI=\
+DEP_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\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\Identity.h"\
+ "..\..\include\IceE\Incoming.h"\
+ "..\..\include\IceE\IncomingConnectionFactoryF.h"\
+ "..\..\include\IceE\InstanceF.h"\
+ "..\..\include\IceE\LocalException.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"\
"..\..\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"\
+ "..\IceE\RouterInfo.h"\
+ "..\IceE\RouterInfoF.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -18765,11 +18427,18 @@ DEP_CPP_ROUTI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_ROUTI=\
+NODEP_CPP_ROUTER=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\RoutingTable.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -18841,7 +18510,7 @@ NODEP_CPP_ROUTI=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -18867,8 +18536,53 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
+NODEP_CPP_ROUTI=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -18895,7 +18609,7 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -18922,7 +18636,7 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -18949,7 +18663,7 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\UndefSysMacros.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -18975,53 +18689,8 @@ DEP_CPP_ROUTI=\ "..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\UndefSysMacros.h"\
-NODEP_CPP_ROUTI=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_ROUTI=\
"..\..\include\IceE\Config.h"\
@@ -19093,28 +18762,31 @@ NODEP_CPP_ROUTI=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\RWRecMutex.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_RWREC=\
- "..\..\include\IceE\Cond.h"\
+DEP_CPP_ROUTI=\
"..\..\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\LocalObject.h"\
+ "..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\RWRecMutex.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\RoutingTable.h"\
+ "..\..\include\IceE\RoutingTableF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\Thread.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"\
@@ -19158,8 +18830,77 @@ DEP_CPP_RWREC=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_ROUTI=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\RWRecMutex.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_RWREC=\
+ "..\..\include\IceE\Cond.h"\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\RWRecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\Thread.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\Time.h"\
+
NODEP_CPP_RWREC=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -19369,65 +19110,6 @@ DEP_CPP_RWREC=\ "..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
-
-NODEP_CPP_RWREC=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\SafeStdio.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-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"\
@@ -19471,11 +19153,18 @@ DEP_CPP_SAFES=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_SAFES=\
+NODEP_CPP_RWREC=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\SafeStdio.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
@@ -19527,35 +19216,7 @@ NODEP_CPP_SAFES=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_SAFES=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
@@ -19607,7 +19268,35 @@ NODEP_CPP_SAFES=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_SAFES=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
@@ -19659,24 +19348,11 @@ NODEP_CPP_SAFES=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Shared.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_SHARE=\
+DEP_CPP_SAFES=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\Mutex.h"\
- "..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\SafeStdio.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -19720,11 +19396,18 @@ DEP_CPP_SHARE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_SHARE=\
+NODEP_CPP_SAFES=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Shared.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19782,7 +19465,7 @@ NODEP_CPP_SHARE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19794,8 +19477,53 @@ DEP_CPP_SHARE=\ "..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
+NODEP_CPP_SHARE=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19808,7 +19536,7 @@ DEP_CPP_SHARE=\ "..\..\include\IceE\ThreadException.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19821,7 +19549,7 @@ DEP_CPP_SHARE=\ "..\..\include\IceE\ThreadException.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19834,7 +19562,7 @@ DEP_CPP_SHARE=\ "..\..\include\IceE\ThreadException.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19846,53 +19574,8 @@ DEP_CPP_SHARE=\ "..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
-NODEP_CPP_SHARE=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
@@ -19950,22 +19633,16 @@ NODEP_CPP_SHARE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\StaticMutex.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_STATI=\
+DEP_CPP_SHARE=\
"..\..\include\IceE\Config.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
"..\..\include\IceE\Handle.h"\
"..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\Mutex.h"\
+ "..\..\include\IceE\Shared.h"\
"..\..\include\IceE\ThreadException.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
@@ -20010,8 +19687,72 @@ DEP_CPP_STATI=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_SHARE=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\StaticMutex.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_STATI=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\StaticMutex.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
NODEP_CPP_STATI=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -20186,65 +19927,6 @@ DEP_CPP_STATI=\ "..\..\include\IceE\Lock.h"\
"..\..\include\IceE\StaticMutex.h"\
"..\..\include\IceE\ThreadException.h"\
-
-NODEP_CPP_STATI=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\StringUtil.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-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"\
@@ -20288,11 +19970,18 @@ DEP_CPP_STRIN=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_STRIN=\
+NODEP_CPP_STATI=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\StringUtil.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
@@ -20344,35 +20033,7 @@ NODEP_CPP_STRIN=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_STRIN=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\StringUtil.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
@@ -20424,7 +20085,35 @@ NODEP_CPP_STRIN=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_STRIN=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\StringUtil.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_STRIN=\
"..\..\include\IceE\Config.h"\
@@ -20476,6 +20165,58 @@ NODEP_CPP_STRIN=\ ".\tl_user_config.h"\
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+
+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"\
+
+
!ENDIF
# End Source File
@@ -20536,51 +20277,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -20636,51 +20377,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Release"
@@ -20736,51 +20477,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Debug"
@@ -20836,51 +20577,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Debug Static"
@@ -20936,51 +20677,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Release Static"
@@ -21036,51 +20777,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug Static"
@@ -21136,51 +20877,51 @@ DEP_CPP_TCPEN=\ "..\IceE\RouterInfoF.h"\
"..\IceE\Transceiver.h"\
"..\TcpTransport\TcpEndpoint.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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Release Static"
@@ -21303,51 +21044,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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -21543,69 +21284,6 @@ DEP_CPP_THREA=\ "..\..\include\IceE\Thread.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\Time.h"\
-
-NODEP_CPP_THREA=\
- "..\..\..\..\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"\
-
-
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\ThreadException.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
-
-DEP_CPP_THREAD=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\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"\
@@ -21649,11 +21327,18 @@ DEP_CPP_THREAD=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_THREAD=\
+NODEP_CPP_THREA=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\ThreadException.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_THREAD=\
"..\..\include\IceE\Config.h"\
@@ -21709,51 +21394,7 @@ NODEP_CPP_THREAD=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
-
-DEP_CPP_THREAD=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\ThreadException.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_THREAD=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\ThreadException.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_THREAD=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\ThreadException.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_THREAD=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Exception.h"\
- "..\..\include\IceE\ExceptionBase.h"\
- "..\..\include\IceE\Handle.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\ThreadException.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_THREAD=\
"..\..\include\IceE\Config.h"\
@@ -21809,7 +21450,51 @@ NODEP_CPP_THREAD=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_THREAD=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_THREAD=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_THREAD=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_THREAD=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\include\IceE\Handle.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\ThreadException.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_THREAD=\
"..\..\include\IceE\Config.h"\
@@ -21865,18 +21550,15 @@ NODEP_CPP_THREAD=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\Time.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_TIME_=\
+DEP_CPP_THREAD=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\Time.h"\
+ "..\..\include\IceE\Exception.h"\
+ "..\..\include\IceE\ExceptionBase.h"\
+ "..\..\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"\
@@ -21920,15 +21602,21 @@ DEP_CPP_TIME_=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_TIME_=\
+NODEP_CPP_THREAD=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\Time.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
"..\..\include\IceE\Time.h"\
NODEP_CPP_TIME_=\
@@ -21977,39 +21665,7 @@ NODEP_CPP_TIME_=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
-
-DEP_CPP_TIME_=\
- "..\..\include\IceE\Config.h"\
- "..\..\include\IceE\SafeStdio.h"\
- "..\..\include\IceE\Time.h"\
-
-
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
@@ -22062,7 +21718,39 @@ NODEP_CPP_TIME_=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+
+DEP_CPP_TIME_=\
+ "..\..\include\IceE\Config.h"\
+ "..\..\include\IceE\SafeStdio.h"\
+ "..\..\include\IceE\Time.h"\
+
+
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_TIME_=\
"..\..\include\IceE\Config.h"\
@@ -22115,41 +21803,11 @@ NODEP_CPP_TIME_=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\TraceLevels.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_TRACE=\
- "..\..\include\IceE\BuiltinSequences.h"\
+DEP_CPP_TIME_=\
"..\..\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\LocalObject.h"\
- "..\..\include\IceE\LocalObjectF.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\ThreadException.h"\
- "..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\TraceLevels.h"\
+ "..\..\include\IceE\Time.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -22193,11 +21851,18 @@ DEP_CPP_TRACE=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_TRACE=\
+NODEP_CPP_TIME_=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\TraceLevels.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22272,7 +21937,7 @@ NODEP_CPP_TRACE=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22301,8 +21966,53 @@ DEP_CPP_TRACE=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\TraceLevels.h"\
+NODEP_CPP_TRACE=\
+ "..\..\..\..\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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22332,7 +22042,7 @@ DEP_CPP_TRACE=\ "..\IceE\TraceLevels.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22362,7 +22072,7 @@ DEP_CPP_TRACE=\ "..\IceE\TraceLevels.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22392,7 +22102,7 @@ DEP_CPP_TRACE=\ "..\IceE\TraceLevels.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22421,53 +22131,8 @@ DEP_CPP_TRACE=\ "..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\TraceLevels.h"\
-NODEP_CPP_TRACE=\
- "..\..\..\..\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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_TRACE=\
"..\..\include\IceE\BuiltinSequences.h"\
@@ -22542,46 +22207,34 @@ NODEP_CPP_TRACE=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\TraceUtil.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_TRACEU=\
- "..\..\include\IceE\BasicStream.h"\
- "..\..\include\IceE\Buffer.h"\
+DEP_CPP_TRACE=\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\DispatchStatus.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\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
"..\..\include\IceE\Lock.h"\
- "..\..\include\IceE\Logger.h"\
- "..\..\include\IceE\LoggerF.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\SafeStdio.h"\
+ "..\..\include\IceE\ReferenceF.h"\
"..\..\include\IceE\Shared.h"\
- "..\..\include\IceE\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\Protocol.h"\
"..\IceE\TraceLevels.h"\
- "..\IceE\TraceUtil.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -22625,18 +22278,23 @@ DEP_CPP_TRACEU=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_TRACEU=\
+NODEP_CPP_TRACE=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\TraceUtil.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
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\DispatchStatus.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.h"\
@@ -22646,39 +22304,27 @@ DEP_CPP_TRACEU=\ "..\..\include\IceE\InstanceF.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
"..\..\include\IceE\Logger.h"\
"..\..\include\IceE\LoggerF.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\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\Instance.h"\
"..\IceE\Protocol.h"\
- "..\IceE\ReferenceFactoryF.h"\
- "..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
"..\IceE\TraceUtil.h"\
NODEP_CPP_TRACEU=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -22723,7 +22369,7 @@ NODEP_CPP_TRACEU=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
@@ -22771,10 +22417,53 @@ DEP_CPP_TRACEU=\ "..\IceE\TraceUtil.h"\
NODEP_CPP_TRACEU=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
@@ -22825,7 +22514,7 @@ NODEP_CPP_TRACEU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
@@ -22876,7 +22565,7 @@ NODEP_CPP_TRACEU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
@@ -22927,7 +22616,7 @@ NODEP_CPP_TRACEU=\ "..\..\include\IceE\EndpointFactoryF.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
@@ -22975,53 +22664,10 @@ DEP_CPP_TRACEU=\ "..\IceE\TraceUtil.h"\
NODEP_CPP_TRACEU=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_TRACEU=\
"..\..\include\IceE\BasicStream.h"\
@@ -23115,59 +22761,39 @@ NODEP_CPP_TRACEU=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\TcpTransport\Transceiver.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_TRANS=\
+DEP_CPP_TRACEU=\
+ "..\..\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\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\LocalException.h"\
"..\..\include\IceE\LocalObject.h"\
"..\..\include\IceE\LocalObjectF.h"\
- "..\..\include\IceE\LocatorInfoF.h"\
"..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\Logger.h"\
"..\..\include\IceE\LoggerF.h"\
- "..\..\include\IceE\LoggerUtil.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\StringUtil.h"\
"..\..\include\IceE\ThreadException.h"\
"..\..\include\IceE\TraceLevelsF.h"\
- "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
- "..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\EndpointFactoryF.h"\
- "..\IceE\Instance.h"\
- "..\IceE\Network.h"\
- "..\IceE\ReferenceFactoryF.h"\
- "..\IceE\RouterInfoF.h"\
+ "..\IceE\Protocol.h"\
"..\IceE\TraceLevels.h"\
- "..\IceE\Transceiver.h"\
+ "..\IceE\TraceUtil.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -23211,11 +22837,18 @@ DEP_CPP_TRANS=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
-NODEP_CPP_TRANS=\
+NODEP_CPP_TRACEU=\
"..\..\..\..\usr\include\pthread.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\TcpTransport\Transceiver.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23254,16 +22887,16 @@ DEP_CPP_TRANS=\ "..\..\include\IceE\TransceiverF.h"\
"..\..\include\IceE\UndefSysMacros.h"\
"..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
"..\IceE\Network.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\TraceLevels.h"\
+ "..\IceE\Transceiver.h"\
NODEP_CPP_TRANS=\
"..\..\..\..\usr\include\pthread.h"\
- "..\..\include\IceE\EndpointFactoryF.h"\
- "..\..\include\IceE\Transceiver.h"\
".\onfig\_epilog.h"\
".\onfig\_msvc_warnings_off.h"\
".\onfig\_prolog.h"\
@@ -23308,7 +22941,7 @@ NODEP_CPP_TRANS=\ ".\tl_user_config.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23354,11 +22987,54 @@ DEP_CPP_TRANS=\ "..\IceE\TraceLevels.h"\
NODEP_CPP_TRANS=\
+ "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Transceiver.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)" == "icec - Win32 (WCE ARMV4) Debug"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23408,7 +23084,7 @@ NODEP_CPP_TRANS=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23458,7 +23134,7 @@ NODEP_CPP_TRANS=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Debug Static"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23508,7 +23184,7 @@ NODEP_CPP_TRANS=\ "..\..\include\IceE\Transceiver.h"\
-!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE ARMV4) Release Static"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23554,54 +23230,11 @@ DEP_CPP_TRANS=\ "..\IceE\TraceLevels.h"\
NODEP_CPP_TRANS=\
- "..\..\..\..\usr\include\pthread.h"\
"..\..\include\IceE\EndpointFactoryF.h"\
"..\..\include\IceE\Transceiver.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)" == "icec - Win32 (WCE emulator) Release Static"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Debug Static"
DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
@@ -23694,53 +23327,52 @@ NODEP_CPP_TRANS=\ ".\tl_user_config.h"\
-!ENDIF
-
-# End Source File
-# Begin Source File
-
-SOURCE=..\IceE\UnknownEndpoint.cpp
-
-!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+!ELSEIF "$(CFG)" == "icec - Win32 (WCE emulator) Release Static"
-DEP_CPP_UNKNO=\
- "..\..\include\IceE\BasicStream.h"\
+DEP_CPP_TRANS=\
"..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\BuiltinSequences.h"\
"..\..\include\IceE\CommunicatorF.h"\
"..\..\include\IceE\Config.h"\
- "..\..\include\IceE\EndpointF.h"\
+ "..\..\include\IceE\ConnectionF.h"\
"..\..\include\IceE\Exception.h"\
"..\..\include\IceE\ExceptionBase.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\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\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"\
- "..\IceE\AcceptorF.h"\
- "..\IceE\ConnectorF.h"\
"..\IceE\DefaultsAndOverridesF.h"\
- "..\IceE\Endpoint.h"\
"..\IceE\EndpointFactoryF.h"\
"..\IceE\Instance.h"\
+ "..\IceE\Network.h"\
"..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
- "..\IceE\UnknownEndpoint.h"\
+ "..\IceE\TraceLevels.h"\
+ "..\IceE\Transceiver.h"\
{$(INCLUDE)}"config\_epilog.h"\
{$(INCLUDE)}"config\_msvc_warnings_off.h"\
{$(INCLUDE)}"config\_prolog.h"\
@@ -23784,8 +23416,102 @@ DEP_CPP_UNKNO=\ {$(INCLUDE)}"stl\_stlport_version.h"\
{$(INCLUDE)}"stl_user_config.h"\
+NODEP_CPP_TRANS=\
+ "..\..\..\..\usr\include\pthread.h"\
+
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\IceE\UnknownEndpoint.cpp
+
+!IF "$(CFG)" == "icec - Win32 (WCE emulator) Release"
+
+DEP_CPP_UNKNO=\
+ "..\..\include\IceE\BasicStream.h"\
+ "..\..\include\IceE\Buffer.h"\
+ "..\..\include\IceE\CommunicatorF.h"\
+ "..\..\include\IceE\Config.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\LocatorInfoF.h"\
+ "..\..\include\IceE\Lock.h"\
+ "..\..\include\IceE\LoggerF.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\RecMutex.h"\
+ "..\..\include\IceE\Shared.h"\
+ "..\..\include\IceE\ThreadException.h"\
+ "..\..\include\IceE\TraceLevelsF.h"\
+ "..\..\include\IceE\TransceiverF.h"\
+ "..\..\include\IceE\UndefSysMacros.h"\
+ "..\IceE\AcceptorF.h"\
+ "..\IceE\ConnectorF.h"\
+ "..\IceE\DefaultsAndOverridesF.h"\
+ "..\IceE\Endpoint.h"\
+ "..\IceE\EndpointFactoryF.h"\
+ "..\IceE\Instance.h"\
+ "..\IceE\ReferenceFactoryF.h"\
+ "..\IceE\RouterInfoF.h"\
+ "..\IceE\UnknownEndpoint.h"\
+
NODEP_CPP_UNKNO=\
"..\..\..\..\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -23828,51 +23554,51 @@ DEP_CPP_UNKNO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Release"
@@ -23915,51 +23641,51 @@ DEP_CPP_UNKNO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Debug"
@@ -24002,51 +23728,51 @@ DEP_CPP_UNKNO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Debug Static"
@@ -24089,51 +23815,51 @@ DEP_CPP_UNKNO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE ARMV4) Release Static"
@@ -24176,51 +23902,51 @@ DEP_CPP_UNKNO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug Static"
@@ -24263,51 +23989,51 @@ DEP_CPP_UNKNO=\ "..\IceE\ReferenceFactoryF.h"\
"..\IceE\RouterInfoF.h"\
"..\IceE\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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Release Static"
@@ -24415,51 +24141,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"\
+ ".\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)" == "icec - Win32 (WCE emulator) Debug"
@@ -24641,51 +24367,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"\
- ".\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"\
!ENDIF
@@ -24933,10 +24659,6 @@ SOURCE=.\PropertiesI.h # End Source File
# Begin Source File
-SOURCE=.\PropertyNames.h
-# End Source File
-# Begin Source File
-
SOURCE=.\Protocol.h
# End Source File
# Begin Source File
|