diff options
author | Jose <jose@zeroc.com> | 2009-01-22 21:03:45 +0100 |
---|---|---|
committer | Jose <jose@zeroc.com> | 2009-01-22 21:03:45 +0100 |
commit | 9dbd95fd442180af5bb1536c9c167eb69bcbdfbf (patch) | |
tree | 4441cd2cc14b5ddc669ae3265343171c584e58f0 /py/python/Ice.py | |
parent | Add db-4.6.21 patch to ice/distribution/src/thirdparty (diff) | |
download | ice-9dbd95fd442180af5bb1536c9c167eb69bcbdfbf.tar.bz2 ice-9dbd95fd442180af5bb1536c9c167eb69bcbdfbf.tar.xz ice-9dbd95fd442180af5bb1536c9c167eb69bcbdfbf.zip |
Fix 3660 - IcePy and setldopenflags
Diffstat (limited to 'py/python/Ice.py')
-rw-r--r-- | py/python/Ice.py | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/py/python/Ice.py b/py/python/Ice.py index 49a963636c6..864315974f1 100644 --- a/py/python/Ice.py +++ b/py/python/Ice.py @@ -13,20 +13,6 @@ Ice module import sys, exceptions, string, imp, os, threading, warnings, datetime -try: - import dl - # - # This is necessary for proper operation of Ice plug-ins. - # Without it, RTTI problems can occur. - # - sys.setdlopenflags(dl.RTLD_NOW|dl.RTLD_GLOBAL) -except ImportError: - # If the dl module is not available and we're running on a linux - # platform, use the hard coded value of RTLD_NOW|RTLD_GLOBAL. - if sys.platform.startswith("linux"): - sys.setdlopenflags(258) - pass - # # Import the Python extension. # |