nixpkgs/pkgs/development/python-modules/pykde4/dlfcn.patch
Thomas Tuegel e98b64c2e0
Revert "Remove pykde4"
This reverts commit a3ad16b9ca8f9a74894e689dad7b9a72716c2826.
2019-10-02 16:29:14 -05:00

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