X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/60657c9dd0c60d8c3c7013da45078bede8c2421f..8b894c110d8a5af49094b9e01cfe4a1d2cd5ebb2:/packages/strace/build.sh diff --git a/packages/strace/build.sh b/packages/strace/build.sh index 604f852f..7661d6a8 100755 --- a/packages/strace/build.sh +++ b/packages/strace/build.sh @@ -1,7 +1,19 @@ -TERMUX_PKG_HOMEPAGE=http://sourceforge.net/projects/strace/ +TERMUX_PKG_HOMEPAGE=https://strace.io/ TERMUX_PKG_DESCRIPTION="Debugging utility to monitor the system calls used by a program and all the signals it receives" -TERMUX_PKG_VERSION=4.11 +TERMUX_PKG_VERSION=4.19 TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/strace/strace/${TERMUX_PKG_VERSION}/strace-${TERMUX_PKG_VERSION}.tar.xz +TERMUX_PKG_SHA256=7c93ebc6c29280f47c24a0eb86873a99ccb2cac6512c60a60ba4ef99ab807281 TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script +# Without st_cv_m32_mpers=no the build fails if gawk is installed. +TERMUX_PKG_EXTRA_CONFIGURE_ARGS="st_cv_m32_mpers=no" + +termux_step_pre_configure () { + if [ $TERMUX_ARCH_BITS = "64" ]; then + # The strace configure script only looks for struct flock64 in , + # but we actually have it in here: + TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_type_struct_flock64=yes" + fi + + CFLAGS+=" -DIOV_MAX=1024" +} -CFLAGS+=" -Du64=uint64_t"