1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-07-29 15:41:13 +03:00

applied shared lib loading patch for OS X from Gianni Ceccarelli Daniel

* python/libxsl.py: applied shared lib loading patch for OS X from
  Gianni Ceccarelli
Daniel
This commit is contained in:
Daniel Veillard
2004-01-14 15:47:32 +00:00
parent fbb1eec975
commit 3cb6adfeb2
2 changed files with 8 additions and 0 deletions

View File

@ -20,6 +20,9 @@ else:
if osname == 'Linux' or osname == 'SunOS':
RTLD_GLOBAL = 0x00100
RTLD_NOW = 0x00002
elif osname == 'Darwin':
RTLD_GLOBAL = 0x8
RTLD_NOW = 0x2
#
# is there a better method ?
#