File tree 3 files changed +19
-5
lines changed
3 files changed +19
-5
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ function build_libxml2() {
22
22
23
23
try ./configure --build=i686-pc-linux-gnu --host=arm-linux-eabi \
24
24
--without-modules --without-legacy --without-history --without-debug --without-docbook --without-python
25
- try sed -i ' s/ runtest\$(EXEEXT) \\/ \\/' Makefile
26
- try sed -i ' s/ testrecurse\$(EXEEXT)$//' Makefile
25
+ try $SED ' s/ runtest\$(EXEEXT) \\/ \\/' Makefile
26
+ try $SED ' s/ testrecurse\$(EXEEXT)$//' Makefile
27
27
try make
28
28
29
29
pop_arm
Original file line number Diff line number Diff line change
1
+ --- Imaging-1.1.7/setup.py.orig 2012-08-31 12:52:25.000000000 +0200
2
+ +++ Imaging-1.1.7/setup.py 2012-08-31 12:53:04.000000000 +0200
3
+ @@ -322,7 +322,7 @@
4
+ "_imagingcms", ["_imagingcms.c"], libraries=["lcms"] + extra
5
+ ))
6
+
7
+ - if sys.platform == "darwin":
8
+ + if False: #sys.platform == "darwin":
9
+ # locate Tcl/Tk frameworks
10
+ frameworks = []
11
+ framework_roots = [
12
+
Original file line number Diff line number Diff line change @@ -21,9 +21,11 @@ function prebuild_pil() {
21
21
22
22
LIBS=" $SRC_PATH /obj/local/$ARCH "
23
23
try cp setup.py.tmpl setup.py
24
- try sed -i s:_LIBS_:$LIBS : setup.py
25
- try sed -i s:_JNI_:$JNI_PATH : setup.py
26
- try sed -i s:_NDKPLATFORM_:$NDKPLATFORM : setup.py
24
+ try $SED s:_LIBS_:$LIBS : setup.py
25
+ try $SED s:_JNI_:$JNI_PATH : setup.py
26
+ try $SED s:_NDKPLATFORM_:$NDKPLATFORM : setup.py
27
+
28
+ try patch -p1 < $RECIPE_pil /patches/disable-tk.patch
27
29
28
30
# everything done, touch the marker !
29
31
touch .patched
You can’t perform that action at this time.
0 commit comments