Gentoo Archives: gentoo-commits

From: Jeroen Roovers <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-shells/hstr/files/
Date: Mon, 16 Oct 2017 22:29:07
Message-Id: 1508192942.187aae663128101c709b9262f8032226e714eca9.jer@gentoo
1 commit: 187aae663128101c709b9262f8032226e714eca9
2 Author: Jeroen Roovers <jer <AT> gentoo <DOT> org>
3 AuthorDate: Mon Oct 16 22:28:42 2017 +0000
4 Commit: Jeroen Roovers <jer <AT> gentoo <DOT> org>
5 CommitDate: Mon Oct 16 22:29:02 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187aae66
7
8 app-shells/hstr: Use AC_SEARCH_LIBS not AC_CHECK_LIB (bug #634428).
9
10 Package-Manager: Portage-2.3.11, Repoman-2.3.3
11
12 app-shells/hstr/files/hstr-1.23-tinfo.patch | 2 +-
13 1 file changed, 1 insertion(+), 1 deletion(-)
14
15 diff --git a/app-shells/hstr/files/hstr-1.23-tinfo.patch b/app-shells/hstr/files/hstr-1.23-tinfo.patch
16 index 2dbd8dcf0c9..85a4743c0e9 100644
17 --- a/app-shells/hstr/files/hstr-1.23-tinfo.patch
18 +++ b/app-shells/hstr/files/hstr-1.23-tinfo.patch
19 @@ -5,7 +5,7 @@
20 AC_CHECK_LIB(readline, using_history, [], [AC_MSG_ERROR([Could not find readline library])])
21 # ncurses might be linked in libtinfo
22 -#AC_CHECK_LIB(tinfo, keypad, [], [AC_MSG_ERROR([Could not find tinfo library])])
23 -+AC_CHECK_LIB(tinfo, keypad, [], [AC_MSG_ERROR([Could not find tinfo library])])
24 ++AC_SEARCH_LIBS(keypad, tinfo, [], [AC_MSG_ERROR([Could not find tinfo library])])
25
26 # Checks for header files.
27 AC_CHECK_HEADER(assert.h)