We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b408fe commit 82a2530Copy full SHA for 82a2530
recipes/libxslt/fix-dlopen.patch
@@ -0,0 +1,11 @@
1
+--- libxslt-1.1.27.orig/python/libxsl.py 2012-09-04 16:26:23.000000000 +0200
2
++++ libxslt-1.1.27/python/libxsl.py 2013-07-29 15:11:04.182227378 +0200
3
+@@ -4,7 +4,7 @@
4
+ # loader to work in that mode if feasible
5
+ #
6
+ import sys
7
+-if not hasattr(sys,'getdlopenflags'):
8
++if True:
9
+ import libxml2mod
10
+ import libxsltmod
11
+ import libxml2
recipes/libxslt/recipe.sh
@@ -8,7 +8,13 @@ BUILD_libxslt=$BUILD_PATH/libxslt/$(get_directory $URL_libxslt)
RECIPE_libxslt=$RECIPES_PATH/libxslt
function prebuild_libxslt() {
- true
+ if [ -f .patched ]; then
12
+ return
13
+ fi
14
+
15
+ cd $BUILD_libxslt
16
+ try patch -p1 < $RECIPE_libxslt/fix-dlopen.patch
17
+ touch .patched
18
}
19
20
function build_libxslt() {
0 commit comments