nano: Update from 2.9.1 to 2.9.2
This commit is contained in:
parent
4ffbecd28d
commit
839fe0005a
@ -1,10 +1,11 @@
|
||||
TERMUX_PKG_HOMEPAGE=https://www.nano-editor.org/
|
||||
TERMUX_PKG_DESCRIPTION="Small, free and friendly text editor"
|
||||
TERMUX_PKG_VERSION=2.9.1
|
||||
TERMUX_PKG_SHA256=41650407cf1d4b752f31dc05e7c63319957e3dc86e9fb6ad51760e8b36941d19
|
||||
TERMUX_PKG_VERSION=2.9.2
|
||||
TERMUX_PKG_SHA256=1ed3c61100181bebb2bf60d60a44a3b9658410cbe05f375f7b3814b2973c8fd1
|
||||
TERMUX_PKG_SRCURL=https://www.nano-editor.org/dist/v${TERMUX_PKG_VERSION:0:3}/nano-${TERMUX_PKG_VERSION}.tar.gz
|
||||
TERMUX_PKG_DEPENDS="libandroid-support, libandroid-glob, ncurses"
|
||||
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
||||
ac_cv_header_pwd_h=no
|
||||
--disable-libmagic
|
||||
--enable-utf8
|
||||
--with-wordbounds
|
||||
|
@ -1,21 +0,0 @@
|
||||
diff -u -r ../nano-2.8.6/src/files.c ./src/files.c
|
||||
--- ../nano-2.8.6/src/files.c 2017-07-21 09:44:46.000000000 +0200
|
||||
+++ ./src/files.c 2017-07-22 16:01:40.806964191 +0200
|
||||
@@ -2337,7 +2337,7 @@
|
||||
get_homedir();
|
||||
tilde_dir = mallocstrcpy(NULL, homedir);
|
||||
} else {
|
||||
-#ifdef HAVE_PWD_H
|
||||
+#if defined(HAVE_PWD_H) && !defined(__ANDROID__)
|
||||
const struct passwd *userdata;
|
||||
|
||||
tilde_dir = mallocstrncpy(NULL, buf, i + 1);
|
||||
@@ -2451,7 +2451,7 @@
|
||||
|
||||
*num_matches = 0;
|
||||
|
||||
-#ifdef HAVE_PWD_H
|
||||
+#if defined(HAVE_PWD_H) && !defined(__ANDROID__)
|
||||
while ((userdata = getpwent()) != NULL) {
|
||||
if (strncmp(userdata->pw_name, buf + 1, buf_len - 1) == 0) {
|
||||
/* Cool, found a match. Add it to the list. This makes a
|
Loading…
Reference in New Issue
Block a user