mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-07-31 02:43:06 +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:
@ -1,3 +1,8 @@
|
|||||||
|
Wed Jan 14 16:44:58 CET 2004 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
|
* python/libxsl.py: applied shared lib loading patch for OS X from
|
||||||
|
Gianni Ceccarelli
|
||||||
|
|
||||||
Wed Jan 14 14:28:02 HKT 2004 William Brack <wbrack@mmm.com.hk>
|
Wed Jan 14 14:28:02 HKT 2004 William Brack <wbrack@mmm.com.hk>
|
||||||
|
|
||||||
* libexslt/math.c, libexslt/common.c: fixed problem,
|
* libexslt/math.c, libexslt/common.c: fixed problem,
|
||||||
|
@ -20,6 +20,9 @@ else:
|
|||||||
if osname == 'Linux' or osname == 'SunOS':
|
if osname == 'Linux' or osname == 'SunOS':
|
||||||
RTLD_GLOBAL = 0x00100
|
RTLD_GLOBAL = 0x00100
|
||||||
RTLD_NOW = 0x00002
|
RTLD_NOW = 0x00002
|
||||||
|
elif osname == 'Darwin':
|
||||||
|
RTLD_GLOBAL = 0x8
|
||||||
|
RTLD_NOW = 0x2
|
||||||
#
|
#
|
||||||
# is there a better method ?
|
# is there a better method ?
|
||||||
#
|
#
|
||||||
|
Reference in New Issue
Block a user