Added IRIX compile fixes

Added functions that must be handed down
   from wxListCtrl to the main window


git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@578 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Robert Roebling
1998-08-17 20:07:50 +00:00
parent 652e7bb422
commit 77e7a1dc48
5 changed files with 37 additions and 13 deletions

View File

@@ -22,7 +22,7 @@
// System dependent include
// ---------------------------------------------------------------------------
#ifdef linux
#if defined(__LINUX__) || defined(__SGI__)
#include <dlfcn.h>
#endif
@@ -63,7 +63,7 @@ wxLibrary::~wxLibrary()
else
delete m_liblist;
#ifdef linux
#if defined(__LINUX__) || defined(__SGI__)
dlclose(m_handle);
#endif
#ifdef __WINDOWS__
@@ -79,7 +79,7 @@ wxObject *wxLibrary::CreateObject(const wxString& name)
void *wxLibrary::GetSymbol(const wxString& symbname)
{
#ifdef linux
#if defined(__LINUX__) || defined(__SGI__)
return dlsym(m_handle, WXSTRINGCAST symbname);
#endif
#ifdef __WINDOWS__
@@ -117,7 +117,7 @@ wxLibrary *wxLibraries::LoadLibrary(const wxString& name)
if ( (node = m_loaded.Find(name.GetData())) )
return ((wxLibrary *)node->Data());
#ifdef linux
#if defined(__LINUX__) || defined(__SGI__)
lib_name.Prepend("lib");
lib_name += ".so";