2020-11-23 00:51:45 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
# ALWAYS CLEAN THE PREVIOUS BUILD
|
|
|
|
make distclean 2>/dev/null 1>/dev/null
|
|
|
|
|
|
|
|
# REGENERATE BUILD FILES IF NECESSARY OR REQUESTED
|
|
|
|
if [[ ! -f "${BASEDIR}"/src/"${LIB_NAME}"/configure ]] || [[ ${RECONF_libxml2} -eq 1 ]]; then
|
2023-07-17 01:59:12 +03:00
|
|
|
${SED_INLINE} 's|^AC_PREREQ|#AC_PREREQ|g' "${BASEDIR}"/src/"${LIB_NAME}"/configure.ac || return 1
|
|
|
|
${SED_INLINE} 's|AM_INIT_AUTOMAKE(\[[0-9.]* |AM_INIT_AUTOMAKE(\[|g' "${BASEDIR}"/src/"${LIB_NAME}"/configure.ac || return 1
|
2021-12-29 01:25:06 +02:00
|
|
|
autoreconf_library "${LIB_NAME}" 1>>"${BASEDIR}"/build.log 2>&1 || return 1
|
2020-11-23 00:51:45 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
./configure \
|
|
|
|
--prefix="${LIB_INSTALL_PREFIX}" \
|
|
|
|
--with-pic \
|
|
|
|
--with-sysroot="${SDK_PATH}" \
|
|
|
|
--with-zlib \
|
|
|
|
--with-iconv="${SDK_PATH}"/usr \
|
|
|
|
--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
|
|
|
|
|
|
|
|
# CREATE PACKAGE CONFIG MANUALLY
|
2023-07-17 01:59:12 +03:00
|
|
|
create_libxml2_package_config "2.11.4" || return 1
|