compilation fix for ms_dllext definition and old compilers

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@15236 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2002-04-22 14:01:14 +00:00
parent e4ba9eb2b7
commit 478e03412d

View File

@@ -65,12 +65,12 @@ const char *dlerror(void);
// platform dependent files.
#if defined(__WINDOWS__) || defined(__WXPM__) || defined(__EMX__)
const wxChar *wxDynamicLibrary::ms_dllext( _T(".dll") );
const wxChar *wxDynamicLibrary::ms_dllext = _T(".dll");
#elif defined(__UNIX__)
#if defined(__HPUX__)
const wxChar *wxDynamicLibrary::ms_dllext( _T(".sl") );
const wxChar *wxDynamicLibrary::ms_dllext = _T(".sl");
#else
const wxChar *wxDynamicLibrary::ms_dllext( _T(".so") );
const wxChar *wxDynamicLibrary::ms_dllext = _T(".so");
#endif
#endif