mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
bac2d913d3
instead of #30985
14 lines
392 B
Diff
14 lines
392 B
Diff
--- __init__.py.orig 2017-11-02 09:06:48.998054459 +0300
|
|
+++ ./__init__.py 2017-11-02 09:24:28.089072752 +0300
|
|
@@ -1,4 +1,8 @@
|
|
-import sys,DLFCN
|
|
+import sys
|
|
+try:
|
|
+ import DLFCN
|
|
+except ImportError:
|
|
+ import os as DLFCN
|
|
# This is needed to ensure that dynamic_cast and RTTI works inside kdelibs.
|
|
sys.setdlopenflags(DLFCN.RTLD_NOW|DLFCN.RTLD_GLOBAL)
|
|
|
|
\ No newline at end of file
|