1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-06-15 10:41:43 +03:00

fixes Python on 64bits box problem. Daniel

* python/libxsl.py: fixes Python on 64bits box problem.
Daniel
This commit is contained in:
Daniel Veillard
2004-07-09 09:52:33 +00:00
parent a0c01163f0
commit 23fd193621
2 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,9 @@ else:
pass
# print "libxslt could not guess RTLD_GLOBAL and RTLD_NOW " + \
# "on this platform: %s" % (osname)
except:
RTLD_GLOBAL = -1
RTLD_NOW = -1
if RTLD_GLOBAL != -1 and RTLD_NOW != -1:
try: