[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated
From: |
David Levine |
Subject: |
[Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 2dae2af4a48285ace8c3439b5404df0d07393b4e |
Date: |
Sun, 05 Feb 2012 20:13:18 +0000 |
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 "The nmh Mail Handling System".
The branch, master has been updated
via 2dae2af4a48285ace8c3439b5404df0d07393b4e (commit)
from 2645f808bdcc325e143a9c6300ff97b813e5429f (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/nmh.git/commit/?id=2dae2af4a48285ace8c3439b5404df0d07393b4e
commit 2dae2af4a48285ace8c3439b5404df0d07393b4e
Author: David Levine <address@hidden>
Date: Sun Feb 5 14:13:07 2012 -0600
Exit with error message if no library could be found with tgetent.
diff --git a/configure.ac b/configure.ac
index ba848c3..cee74a8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -472,6 +472,12 @@ for lib in $termcap_curses_order; do
AC_CHECK_LIB(${lib}, tgetent, [TERMLIB="-l$lib"; break])
done
AC_SUBST([TERMLIB])dnl
+if test "x$TERMLIB" = "x"; then
+ echo 'Could not find tgetent in any library. Is there a ncurses-devel '\
+'package that you can install?'
+ exit 1
+fi
+
dnl ---------------
dnl CHECK FOR ICONV
-----------------------------------------------------------------------
Summary of changes:
configure.ac | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)
hooks/post-receive
--
The nmh Mail Handling System
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Nmh-commits] [SCM] The nmh Mail Handling System branch, master, updated. 2dae2af4a48285ace8c3439b5404df0d07393b4e,
David Levine <=