From 7c639383e7fb796769f907bf350ff53ce8c03834 Mon Sep 17 00:00:00 2001 From: Henrik Grimler Date: Thu, 5 Mar 2020 19:08:31 +0000 Subject: [PATCH] emacs: configure with --with-modules and --without-selinux (#5012) --with-modules solves https://github.com/termux/termux-packages/issues/5011, --without-selinux is needed for on device builds. --- packages/emacs/build.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/emacs/build.sh b/packages/emacs/build.sh index fb236194c..f23458d65 100644 --- a/packages/emacs/build.sh +++ b/packages/emacs/build.sh @@ -2,7 +2,7 @@ TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/emacs/ TERMUX_PKG_DESCRIPTION="Extensible, customizable text editor-and more" TERMUX_PKG_LICENSE="GPL-3.0" TERMUX_PKG_VERSION=26.3 -TERMUX_PKG_REVISION=6 +TERMUX_PKG_REVISION=7 TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/emacs/emacs-${TERMUX_PKG_VERSION}.tar.xz TERMUX_PKG_SHA256=4d90e6751ad8967822c6e092db07466b9d383ef1653feb2f95c93e7de66d3485 TERMUX_PKG_DEPENDS="ncurses, gnutls, libxml2" @@ -23,6 +23,8 @@ TERMUX_PKG_EXTRA_CONFIGURE_ARGS=" --with-xml2 --with-xpm=no --without-dbus +--without-selinux +--with-modules " # Ensure use of system malloc: TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" emacs_cv_sanitize_address=yes"