commit-inetutils
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[SCM] GNU Inetutils branch, master, updated. v1.9.4.90-8-gf88570b


From: Simon Josefsson
Subject: [SCM] GNU Inetutils branch, master, updated. v1.9.4.90-8-gf88570b
Date: Thu, 28 Jan 2021 03:27:45 -0500 (EST)

This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU Inetutils ".

The branch, master has been updated
       via  f88570bae1dc1aab658dc138fa874f63d63ee7eb (commit)
       via  54303616f85bbcbd1967cc385dd5cc4043d12b3d (commit)
      from  b6bfaf96303b089eff2ad01c1bbe07f9855e6fb8 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=f88570bae1dc1aab658dc138fa874f63d63ee7eb


commit f88570bae1dc1aab658dc138fa874f63d63ee7eb
Author: Simon Josefsson <simon@josefsson.org>
Date:   Thu Jan 28 09:27:14 2021 +0100

    tests/hostname.sh: Use system hostname, not system uname, for comparison.

diff --git a/ChangeLog b/ChangeLog
index 203f11c..b58669a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2021-01-28  Simon Josefsson  <simon@josefsson.org>
 
+       * tests/hostname.sh: Use system hostname, not system uname, for
+       comparison.
+
+2021-01-28  Simon Josefsson  <simon@josefsson.org>
+
        * configure.ac: Don't call gl_FUNC_READLINE.  Not needed since we
        now use readline gnulib module.
 
diff --git a/tests/hostname.sh b/tests/hostname.sh
index 70b0606..5672061 100755
--- a/tests/hostname.sh
+++ b/tests/hostname.sh
@@ -45,8 +45,8 @@ $hostname || errno=$?
 test $errno -eq 0 || echo "Failed to get hostname." >&2
 test $errno -eq 0 || exit $errno
 
-test `$hostname` = `uname -n` || errno=$?
-test $errno -eq 0 || echo "Failed to get same hostname as uname does 
(`$hostname` vs `uname -n`)." >&2
+test `$hostname` = `hostname` || errno=$?
+test $errno -eq 0 || echo "Failed to get same hostname as system (`$hostname` 
vs `hostname`)." >&2
 test $errno -eq 0 || exit $errno
 
 if test `func_id_uid` != 0; then

http://git.savannah.gnu.org/cgit/inetutils.git/commit/?id=54303616f85bbcbd1967cc385dd5cc4043d12b3d


commit 54303616f85bbcbd1967cc385dd5cc4043d12b3d
Author: Simon Josefsson <simon@josefsson.org>
Date:   Thu Jan 28 09:16:13 2021 +0100

    configure.ac: Don't call gl_FUNC_READLINE.
    
    Not needed since we now use readline gnulib module.

diff --git a/ChangeLog b/ChangeLog
index 112fb95..203f11c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,10 @@
 2021-01-28  Simon Josefsson  <simon@josefsson.org>
 
+       * configure.ac: Don't call gl_FUNC_READLINE.  Not needed since we
+       now use readline gnulib module.
+
+2021-01-28  Simon Josefsson  <simon@josefsson.org>
+
        Fix link failure with absent -lutil on Solaris 10.
 
        * configure.ac (LIBUTIL): Prefer PTY_LIBS in Makefile.am over
diff --git a/configure.ac b/configure.ac
index b1f41c0..86136fb 100644
--- a/configure.ac
+++ b/configure.ac
@@ -163,11 +163,6 @@ AC_SEARCH_LIBS([getpeername], [socket])
 # See if a termcap library is available (under one of several names)
 IU_LIB_TERMCAP
 
-# Find libreadline -- the ftp client will be built without
-# command editing and history capability if readline() cannot
-# be found, neither in libreadline, nor in libedit.
-gl_FUNC_READLINE
-
 # See if there's a separate libcrypt (many systems put crypt there).
 AC_CHECK_LIB(crypt, crypt, LIBCRYPT=-lcrypt)
 AC_SUBST(LIBCRYPT)

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog         | 10 ++++++++++
 configure.ac      |  5 -----
 tests/hostname.sh |  4 ++--
 3 files changed, 12 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
GNU Inetutils 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]