about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pykde4/dlfcn.patch
blob: 63aff46eeab199753d51199de73820b5e1143407 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
--- __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