php: Update from 7.1.1 to 7.1.2 and enable pcntl
[termux-packages] / packages / glib / build.sh
1 TERMUX_PKG_HOMEPAGE=https://developer.gnome.org/glib/
2 TERMUX_PKG_DESCRIPTION="Library providing core building blocks for libraries and applications written in C"
3 _TERMUX_GLIB_MAJOR_VERSION=2.50
4 TERMUX_PKG_VERSION=${_TERMUX_GLIB_MAJOR_VERSION}.2
5 TERMUX_PKG_SRCURL=https://ftp.gnome.org/pub/gnome/sources/glib/${_TERMUX_GLIB_MAJOR_VERSION}/glib-${TERMUX_PKG_VERSION}.tar.xz
6 TERMUX_PKG_SHA256=be68737c1f268c05493e503b3b654d2b7f43d7d0b8c5556f7e4651b870acfbf5
7 # libandroid-support to get langinfo.h in include path.
8 TERMUX_PKG_DEPENDS="libffi, pcre, libandroid-support"
9 TERMUX_PKG_RM_AFTER_INSTALL="share/gtk-doc share/locale share/glib-2.0/gettext share/gdb/auto-load share/glib-2.0/codegen share/glib-2.0/gdb bin/gtester-report bin/glib-mkenums bin/glib-gettextize bin/gdbus-codegen"
10 # Needed by pkg-config for glib-2.0:
11 TERMUX_PKG_DEVPACKAGE_DEPENDS="pcre-dev"
12 TERMUX_PKG_INCLUDE_IN_DEVPACKAGE="lib/glib-2.0/include"
13
14 # --enable-compile-warnings=no to get rid of format strings causing errors
15 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-compile-warnings --disable-gtk-doc --disable-gtk-doc-html --cache-file=termux_configure.cache --with-pcre=system"
16 # --disable-znodelete to avoid DF_1_NODELETE which most Android 5.0 linkers does not support:
17 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-znodelete"
18 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-libelf"
19 TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-libmount"
20
21 termux_step_pre_configure () {
22 # glib checks for __BIONIC__ instead of __ANDROID__:
23 CFLAGS="$CFLAGS -D__BIONIC__=1"
24
25 cd $TERMUX_PKG_BUILDDIR
26
27 # https://developer.gnome.org/glib/stable/glib-cross-compiling.html
28 echo "glib_cv_long_long_format=ll" >> termux_configure.cache
29 echo "glib_cv_stack_grows=no" >> termux_configure.cache
30 echo "glib_cv_uscore=no" >> termux_configure.cache
31 chmod a-w termux_configure.cache
32 }