strace: Fix aarch64 build
[termux-packages] / packages / strace / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://sourceforge.net/projects/strace/
2TERMUX_PKG_DESCRIPTION="Debugging utility to monitor the system calls used by a program and all the signals it receives"
60657c9d 3TERMUX_PKG_VERSION=4.11
59f0d218
FF
4TERMUX_PKG_SRCURL=http://downloads.sourceforge.net/project/strace/strace/${TERMUX_PKG_VERSION}/strace-${TERMUX_PKG_VERSION}.tar.xz
5TERMUX_PKG_RM_AFTER_INSTALL=bin/strace-graph # This is a perl script
6
7CFLAGS+=" -Du64=uint64_t"
9ffcaa63
FF
8
9if [ $TERMUX_ARCH_BITS = "64" ]; then
10 # The strace configure script only looks for struct flock64 in <linux/fcntl.h>,
11 # but we actually have it in <fcntl.h> here:
12 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_type_struct_flock64=yes"
13fi