summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wendler <polynomial-c@gentoo.org>2017-08-01 16:59:56 +0200
committerLars Wendler <polynomial-c@gentoo.org>2017-08-01 17:00:07 +0200
commitceb830de0133e302a9db9589b0aaf9f5f0e7ce9e (patch)
tree171338a66fe9974b09609e42e709a3dab8c70406 /app-editors/hexcurse/files
parentapp-i18n/ibus: new upstream release (diff)
downloadgentoo-ceb830de0133e302a9db9589b0aaf9f5f0e7ce9e.tar.gz
gentoo-ceb830de0133e302a9db9589b0aaf9f5f0e7ce9e.tar.bz2
gentoo-ceb830de0133e302a9db9589b0aaf9f5f0e7ce9e.zip
app-editors/hexcurse: Bump to version 1.60.0
Package-Manager: Portage-2.3.6, Repoman-2.3.3 Signed-off-by: Lars Wendler <polynomial-c@gentoo.org>
Diffstat (limited to 'app-editors/hexcurse/files')
-rw-r--r--app-editors/hexcurse/files/hexcurse-1.60.0-tinfo.patch13
1 files changed, 13 insertions, 0 deletions
diff --git a/app-editors/hexcurse/files/hexcurse-1.60.0-tinfo.patch b/app-editors/hexcurse/files/hexcurse-1.60.0-tinfo.patch
new file mode 100644
index 000000000000..e5e0fe0ac405
--- /dev/null
+++ b/app-editors/hexcurse/files/hexcurse-1.60.0-tinfo.patch
@@ -0,0 +1,13 @@
+--- hexcurse-1.60.0/configure.ac
++++ hexcurse-1.60.0/configure.ac
+@@ -15,7 +15,9 @@
+
+ dnl Checks for libraries.
+ dnl Replace `main' with a function in -lncurses:
+-AC_CHECK_LIB(ncurses, initscr,,[AC_CHECK_LIB(curses, initscr,,[AC_MSG_ERROR([ncurses library not found])])])
++AC_CHECK_LIB(ncurses, initscr)
++AC_SEARCH_LIBS(initscr,curses)
++AC_SEARCH_LIBS(LINES,tinfo)
+
+ dnl Checks for header files.
+ AC_HEADER_STDC