X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/blobdiff_plain/cff3a76b91662aca5ea87e4ef711448bf3af5872..2173f7301d6332bbdb7c9c4d1aa25ddce6ff5964:/packages/openssh/build.sh diff --git a/packages/openssh/build.sh b/packages/openssh/build.sh index 38950a9a..7aa80b94 100755 --- a/packages/openssh/build.sh +++ b/packages/openssh/build.sh @@ -1,9 +1,10 @@ TERMUX_PKG_HOMEPAGE=https://www.openssh.com/ TERMUX_PKG_DESCRIPTION="Secure shell for logging into a remote machine" TERMUX_PKG_VERSION=7.5p1 +TERMUX_PKG_REVISION=3 TERMUX_PKG_SRCURL=http://mirrors.evowise.com/pub/OpenBSD/OpenSSH/portable/openssh-${TERMUX_PKG_VERSION}.tar.gz TERMUX_PKG_SHA256=9846e3c5fab9f0547400b4d2c017992f914222b3fd1f8eee6c7dc6bc5e59f9f0 -TERMUX_PKG_DEPENDS="libandroid-support, ldns, openssl, libutil" +TERMUX_PKG_DEPENDS="libandroid-support, ldns, openssl, libedit, libutil" # --disable-strip to prevent host "install" command to use "-s", which won't work for target binaries: TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --disable-etc-default-login @@ -19,6 +20,7 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --sysconfdir=$TERMUX_PREFIX/etc/ssh --with-cflags=-Dfd_mask=int --with-ldns +--with-libedit --without-ssh1 --without-stackprotect --with-pid-dir=$TERMUX_PREFIX/var/run @@ -35,10 +37,9 @@ TERMUX_PKG_MAKE_INSTALL_TARGET="install-nokeys" TERMUX_PKG_RM_AFTER_INSTALL="bin/slogin share/man/man1/slogin.1" termux_step_pre_configure() { - # We patch configure.ac: - cd $TERMUX_PKG_SRCDIR autoreconf + CPPFLAGS+=" -DHAVE_ATTRIBUTE__SENTINEL__=1" LD=$CC # Needed to link the binaries LDFLAGS+=" -llog" # liblog for android logging in syslog hack } @@ -51,7 +52,7 @@ termux_step_post_configure() { termux_step_post_make_install () { # OpenSSH 7.0 disabled ssh-dss by default, keep it for a while in Termux: - echo -e "PasswordAuthentication no\nUsePrivilegeSeparation no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config + echo -e "PasswordAuthentication no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config echo "PubkeyAcceptedKeyTypes +ssh-dss" > $TERMUX_PREFIX/etc/ssh/ssh_config cp $TERMUX_PKG_BUILDER_DIR/source-ssh-agent.sh $TERMUX_PREFIX/bin/source-ssh-agent cp $TERMUX_PKG_BUILDER_DIR/ssh-with-agent.sh $TERMUX_PREFIX/bin/ssha