corrected SF bug #809314: wxDynamicLibrary::ms_dllext definition for wxMac

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@24839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Gilles Depeyrot
2003-12-14 17:35:56 +00:00
parent 8d902dd64b
commit 87ec9b8f6f

View File

@@ -153,9 +153,13 @@ void *dlsym(void *handle, const char *symbol)
#if defined(__WINDOWS__) || defined(__WXPM__) || defined(__EMX__) #if defined(__WINDOWS__) || defined(__WXPM__) || defined(__EMX__)
const wxChar *wxDynamicLibrary::ms_dllext = _T(".dll"); const wxChar *wxDynamicLibrary::ms_dllext = _T(".dll");
#elif defined(__WXMAC__) && !defined(__DARWIN__)
const wxChar *wxDynamicLibrary::ms_dllext = _T("");
#elif defined(__UNIX__) #elif defined(__UNIX__)
#if defined(__HPUX__) #if defined(__HPUX__)
const wxChar *wxDynamicLibrary::ms_dllext = _T(".sl"); const wxChar *wxDynamicLibrary::ms_dllext = _T(".sl");
#elif defined(__DARWIN__)
const wxChar *wxDynamicLibrary::ms_dllext = _T(".dylib");
#else #else
const wxChar *wxDynamicLibrary::ms_dllext = _T(".so"); const wxChar *wxDynamicLibrary::ms_dllext = _T(".so");
#endif #endif
@@ -405,7 +409,7 @@ wxDynamicLibrary::CanonicalizeName(const wxString& name,
{ {
wxString nameCanonic; wxString nameCanonic;
// under Unix the library names usualyl start with "lib" prefix, add it // under Unix the library names usually start with "lib" prefix, add it
#ifdef __UNIX__ #ifdef __UNIX__
switch ( cat ) switch ( cat )
{ {