diff options
author | Tom Rondeau <trondeau@vt.edu> | 2012-11-01 11:47:00 -0400 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2012-11-01 11:47:00 -0400 |
commit | 49dadf282dff3ab144ced916add4ef148b7378ba (patch) | |
tree | 539c6292f2315c2471ba29336b0caa972a38e771 /gr-howto-write-a-block | |
parent | a78f41aa7e67fe9af490f86fe6ff5fe20256c09c (diff) | |
parent | 58ebe83ee38e45a80ace777a070d2c1fa1ab1df8 (diff) |
Merge branch 'master' into next
Diffstat (limited to 'gr-howto-write-a-block')
-rw-r--r-- | gr-howto-write-a-block/python/__init__.py | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/gr-howto-write-a-block/python/__init__.py b/gr-howto-write-a-block/python/__init__.py index 575cbfc222..2bd27cb313 100644 --- a/gr-howto-write-a-block/python/__init__.py +++ b/gr-howto-write-a-block/python/__init__.py @@ -23,32 +23,8 @@ This is the GNU Radio HOWTO module. Place your Python package description here (python/__init__.py). ''' -# ---------------------------------------------------------------- -# Temporary workaround for ticket:181 (swig+python problem) -import sys -_RTLD_GLOBAL = 0 -try: - from dl import RTLD_GLOBAL as _RTLD_GLOBAL -except ImportError: - try: - from DLFCN import RTLD_GLOBAL as _RTLD_GLOBAL - except ImportError: - pass - -if _RTLD_GLOBAL != 0: - _dlopenflags = sys.getdlopenflags() - sys.setdlopenflags(_dlopenflags|_RTLD_GLOBAL) -# ---------------------------------------------------------------- - - # import swig generated symbols into the howto namespace from howto_swig import * # import any pure python here # - -# ---------------------------------------------------------------- -# Tail of workaround -if _RTLD_GLOBAL != 0: - sys.setdlopenflags(_dlopenflags) # Restore original flags -# ---------------------------------------------------------------- |