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:
@@ -65,12 +65,12 @@ const char *dlerror(void);
|
|||||||
// platform dependent files.
|
// platform dependent files.
|
||||||
|
|
||||||
#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(__UNIX__)
|
#elif defined(__UNIX__)
|
||||||
#if defined(__HPUX__)
|
#if defined(__HPUX__)
|
||||||
const wxChar *wxDynamicLibrary::ms_dllext( _T(".sl") );
|
const wxChar *wxDynamicLibrary::ms_dllext = _T(".sl");
|
||||||
#else
|
#else
|
||||||
const wxChar *wxDynamicLibrary::ms_dllext( _T(".so") );
|
const wxChar *wxDynamicLibrary::ms_dllext = _T(".so");
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user