X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/a265a2a8065c1d56ed18d562b6e5ea6377281f35..85d88e757d42aea7bc57bc44fed274bdd379926e:/packages/elfutils/build.sh diff --git a/packages/elfutils/build.sh b/packages/elfutils/build.sh index 859816ee..72050b44 100644 --- a/packages/elfutils/build.sh +++ b/packages/elfutils/build.sh @@ -2,8 +2,8 @@ TERMUX_PKG_VERSION=0.166 TERMUX_PKG_HOMEPAGE=https://fedorahosted.org/elfutils/ TERMUX_PKG_DESCRIPTION="ELF object file access library" TERMUX_PKG_SRCURL=https://fedorahosted.org/releases/e/l/elfutils/${TERMUX_PKG_VERSION}/elfutils-${TERMUX_PKG_VERSION}.tar.bz2 -# For langinfo: -TERMUX_PKG_DEPENDS="libandroid-support" +# libandroid-support for langinfo. +TERMUX_PKG_DEPENDS="libandroid-support, liblzma, libbz2" # Use "eu-" as program prefix to avoid conflict with binutils programs. # This is what several linux distributions do. TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--program-prefix='eu-'" @@ -26,8 +26,11 @@ termux_step_pre_configure () { cd $TERMUX_PKG_TMPDIR tar xf $ARGP_FILE cd argp-standalone-1.3 + ORIG_CFLAGS="$CFLAGS" + CFLAGS+=" -std=gnu89" ./configure --host=$TERMUX_HOST_PLATFORM make + CFLAGS="$ORIG_CFLAGS" cp $TERMUX_PKG_BUILDER_DIR/error.h . cp $TERMUX_PKG_BUILDER_DIR/stdio_ext.h . @@ -37,12 +40,3 @@ termux_step_pre_configure () { LDFLAGS+=" -L$TERMUX_PKG_TMPDIR/argp-standalone-1.3" CPPFLAGS+=" -isystem $TERMUX_PKG_TMPDIR/argp-standalone-1.3" } - -#termux_step_post_make_install () { -#make install-includeHEADERS -#} - -termux_step_post_massage () { - # Remove to avoid spurios linking to libelf (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=10648): - rm -f $TERMUX_PREFIX/lib/libelf* -}