~ubuntu-branches/ubuntu/lucid/codelite/lucid-proposed

« back to all changes in this revision

Viewing changes to Plugin/dynamiclibrary.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Chow Loong Jin
  • Date: 2009-08-15 17:42:43 UTC
  • mfrom: (1.1.4 upstream)
  • Revision ID: james.westby@ubuntu.com-20090815174243-nlb9ikgigbiybz12
Tags: 1.0.2893+dfsg-0ubuntu1
* debian/rules:
  + Tidy up get-orig-source rule
* debian/control:
  + Bump Standards-Version
  + Change Maintainer email address to @ubuntu.com
  + Drop cdbs build-dependency
* debian/copyright:
  + Update to DEP-5 format
* debian/patches/00_add-fPIC.patch:
  + Dropped, fix upstream
* Closes LP: #413992

Show diffs side-by-side

added added

removed removed

Lines of Context:
54
54
        return m_lib.Load(name, wxDL_NOSHARE);
55
55
#else
56
56
        // open the library
57
 
#if defined(__WXGTK__) && defined (ON_64_BIT)
58
 
        // on GTK we need to pass RTLD_DEEPBIND otherwise symbols clashes
59
 
        m_dllhandle = dlopen(_C(name), RTLD_LAZY| RTLD_LOCAL | RTLD_DEEPBIND);
60
 
#else
 
57
//#if defined(__WXGTK__) && defined (ON_64_BIT)
 
58
//      // on GTK we need to pass RTLD_DEEPBIND otherwise symbols clashes
 
59
//      m_dllhandle = dlopen(_C(name), RTLD_LAZY| RTLD_LOCAL | RTLD_DEEPBIND);
 
60
//#else
61
61
        m_dllhandle = dlopen(_C(name), RTLD_LAZY);
62
 
#endif
 
62
//#endif
63
63
 
64
64
        if (!m_dllhandle) {
65
65
                m_error = wxString(dlerror(), wxConvUTF8);