summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeroen Roovers <jer@gentoo.org>2017-10-17 00:28:42 +0200
committerJeroen Roovers <jer@gentoo.org>2017-10-17 00:29:02 +0200
commit187aae663128101c709b9262f8032226e714eca9 (patch)
tree35dde8a9674d28d1d8c695ed354ed1b13492e4f8 /app-shells/hstr
parentapp-office/lyx: stable 2.2.3-r1 for ppc64, bug #621902 (diff)
downloadgentoo-187aae663128101c709b9262f8032226e714eca9.tar.gz
gentoo-187aae663128101c709b9262f8032226e714eca9.tar.bz2
gentoo-187aae663128101c709b9262f8032226e714eca9.zip
app-shells/hstr: Use AC_SEARCH_LIBS not AC_CHECK_LIB (bug #634428).
Package-Manager: Portage-2.3.11, Repoman-2.3.3
Diffstat (limited to 'app-shells/hstr')
-rw-r--r--app-shells/hstr/files/hstr-1.23-tinfo.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/app-shells/hstr/files/hstr-1.23-tinfo.patch b/app-shells/hstr/files/hstr-1.23-tinfo.patch
index 2dbd8dcf0c97..85a4743c0e94 100644
--- a/app-shells/hstr/files/hstr-1.23-tinfo.patch
+++ b/app-shells/hstr/files/hstr-1.23-tinfo.patch
@@ -5,7 +5,7 @@
AC_CHECK_LIB(readline, using_history, [], [AC_MSG_ERROR([Could not find readline library])])
# ncurses might be linked in libtinfo
-#AC_CHECK_LIB(tinfo, keypad, [], [AC_MSG_ERROR([Could not find tinfo library])])
-+AC_CHECK_LIB(tinfo, keypad, [], [AC_MSG_ERROR([Could not find tinfo library])])
++AC_SEARCH_LIBS(keypad, tinfo, [], [AC_MSG_ERROR([Could not find tinfo library])])
# Checks for header files.
AC_CHECK_HEADER(assert.h)