diff options
author | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-23 22:29:40 +0000 |
---|---|---|
committer | nanbor <nanbor@ae88bc3d-4319-0410-8dbf-d08b4c9d3795> | 1998-12-23 22:29:40 +0000 |
commit | ecc8e8471bed83c547b5936a200fb2ee7078e489 (patch) | |
tree | cfd9eb1674bbf4551c011d154487e432f2a12a55 /ace | |
parent | bb2e0802dfe2354e5a554b70d9dab137ba432c7e (diff) | |
download | ATCD-ecc8e8471bed83c547b5936a200fb2ee7078e489.tar.gz |
*** empty log message ***
Diffstat (limited to 'ace')
-rw-r--r-- | ace/ACE.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/ace/ACE.cpp b/ace/ACE.cpp index 7744df573d9..4f434f5d537 100644 --- a/ace/ACE.cpp +++ b/ace/ACE.cpp @@ -615,9 +615,6 @@ ACE::ldfind (const ASYS_TCHAR filename[], } int got_suffix = 0; -#if defined (ACE_WIN32) && defined (_DEBUG) && !defined (ACE_DISABLE_DEBUG_DLL_CHECK) - int custom_suffix = 0; -#endif /* ACE_WIN32 && _DEBUG && !ACE_DISABLE_DEBUG_DLL_CHECK */ // Check to see if this has an appropriate DLL suffix for the OS // platform. @@ -643,9 +640,6 @@ ACE::ldfind (const ASYS_TCHAR filename[], ASYS_TEXT ("Warning: improper suffix for a ") ASYS_TEXT ("shared library on this platform: %s\n"), s)); -#if defined (ACE_WIN32) && defined (_DEBUG) && !defined (ACE_DISABLE_DEBUG_DLL_CHECK) - custom_suffix = 1; -#endif /* ACE_WIN32 && _DEBUG && !ACE_DISABLE_DEBUG_DLL_CHECK */ } } @@ -661,7 +655,7 @@ ACE::ldfind (const ASYS_TCHAR filename[], #if defined (ACE_WIN32) && defined (_DEBUG) && !defined (ACE_DISABLE_DEBUG_DLL_CHECK) size_t len_searchfilename = ACE_OS::strlen (searchfilename); - if (! custom_suffix) + if (! got_suffix) { searchfilename [len_searchfilename] = 'd'; searchfilename [len_searchfilename+1] = 0; |