Commit 291c685 1 parent ca09514 commit 291c685 Copy full SHA for 291c685
File tree 4 files changed +32
-0
lines changed
4 files changed +32
-0
lines changed Original file line number Diff line number Diff line change 128
128
url = https://github.com/mirror/ncurses.git
129
129
ignore = dirty
130
130
shallow = true
131
+ [submodule "ext/libxrender "]
132
+ path = ext/libxrender
133
+ url = https://gitlab.freedesktop.org/xorg/lib/libxrender.git
134
+ ignore = dirty
135
+ shallow = true
Original file line number Diff line number Diff line change @@ -31,3 +31,4 @@ crosstool-ng
31
31
* /cpython
32
32
* /libffi
33
33
* /ncurses
34
+ * /libxrender
Original file line number Diff line number Diff line change @@ -652,6 +652,31 @@ then
652
652
popd
653
653
fi
654
654
655
+ # build libxrender
656
+ if [ ! -f $home /libxrender/stamp ]
657
+ then
658
+ pushd $ext /libxrender
659
+ NOCONFIGURE=1 ./autogen.sh --prefix=$dist
660
+ popd
661
+
662
+ mkdir -p $home /libxrender
663
+ pushd $home /libxrender
664
+ PKG_CONFIG_PATH=$dist /lib/pkgconfig:$dist /share/pkgconfig \
665
+ PKG_CONFIG_SYSROOT_DIR=$dist \
666
+ LDFLAGS=" --sysroot=$dist " \
667
+ $ext /libxrender/configure \
668
+ --host=$SDK_TARGET \
669
+ --target=$SDK_TARGET \
670
+ --prefix=" " \
671
+ --with-sysroot=$dist \
672
+ --enable-malloc0returnsnull \
673
+ $SDK_LIBXRENDER_ARGS
674
+ make
675
+ make DESTDIR=$dist install
676
+ touch stamp
677
+ popd
678
+ fi
679
+
655
680
# adjust symlinks to relative paths
656
681
symlinks -cr $dist
657
682
You can’t perform that action at this time.
0 commit comments