2020-08-05 03:53:02 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# NOTE THAT PYTHON IS DISABLED DUE TO THE FOLLOWING ERROR
|
|
|
|
#
|
|
|
|
# .../include/python2.7/pyport.h:1029:2: error: #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
|
|
|
|
# #error "LONG_BIT definition appears wrong for platform (bad gcc/glibc config?)."
|
|
|
|
#
|
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
# ALWAYS CLEAN THE PREVIOUS BUILD
|
|
|
|
make distclean 2>/dev/null 1>/dev/null
|
2020-08-05 03:53:02 +03:00
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
# REGENERATE BUILD FILES IF NECESSARY OR REQUESTED
|
|
|
|
if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_libxml2} -eq 1 ]]; then
|
2021-10-26 15:34:21 +03:00
|
|
|
autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || exit 1
|
2020-11-23 00:51:45 +02:00
|
|
|
fi
|
2020-08-05 03:53:02 +03:00
|
|
|
|
2020-11-23 00:51:45 +02:00
|
|
|
./configure \
|
|
|
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
|
|
|
--with-pic \
|
|
|
|
--with-sysroot="${ANDROID_SYSROOT}" \
|
|
|
|
--with-zlib \
|
|
|
|
--with-iconv="${LIB_INSTALL_BASE}/libiconv/lib" \
|
|
|
|
--with-sax1 \
|
|
|
|
--without-python \
|
|
|
|
--without-debug \
|
|
|
|
--without-lzma \
|
|
|
|
--enable-static \
|
|
|
|
--disable-shared \
|
|
|
|
--disable-fast-install \
|
|
|
|
--host="${HOST}" || return 1
|
|
|
|
|
|
|
|
make -j$(get_cpu_count) || return 1
|
|
|
|
|
|
|
|
make install || return 1
|
2020-08-05 03:53:02 +03:00
|
|
|
|
|
|
|
# CREATE PACKAGE CONFIG MANUALLY
|
2021-05-15 01:55:25 +03:00
|
|
|
create_libxml2_package_config "2.9.12" || return 1
|