From: Robin Dunn Date: Wed, 30 Sep 1998 23:48:21 +0000 (+0000) Subject: Found the RIGHT place to make the __unix__ fix. X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/9e4b2f1c571dc79da7c9b3ceb23fcc941e4f0ef8 Found the RIGHT place to make the __unix__ fix. Undoing the other changes I just made. git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@794 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/common/dynlib.cpp b/src/common/dynlib.cpp index 02d2cdb35f..91f3c16577 100644 --- a/src/common/dynlib.cpp +++ b/src/common/dynlib.cpp @@ -31,7 +31,7 @@ // System dependent include // --------------------------------------------------------------------------- -#if defined(__UNIX__) || defined(__unix__) +#if defined(__UNIX__) #include #endif @@ -71,7 +71,7 @@ wxLibrary::wxLibrary(void *handle) wxLibrary::~wxLibrary() { if (m_handle && m_destroy) { -#if defined(__UNIX__) || defined(__unix__) +#if defined(__UNIX__) dlclose(m_handle); #endif #ifdef __WINDOWS__ @@ -115,7 +115,7 @@ void wxLibrary::PrepareClasses(wxClassInfo *first) void *wxLibrary::GetSymbol(const wxString& symbname) { -#if defined(__UNIX__) || defined(__unix__) +#if defined(__UNIX__) return dlsym(m_handle, WXSTRINGCAST symbname); #endif #ifdef __WINDOWS__ @@ -158,7 +158,7 @@ wxLibrary *wxLibraries::LoadLibrary(const wxString& name) old_sm_first = wxClassInfo::sm_first; wxClassInfo::sm_first = NULL; -#if defined(__UNIX__) || defined(__unix__) +#if defined(__UNIX__) lib_name.Prepend("./lib"); lib_name += ".so";