diff options
author | 2015-08-21 05:36:54 +0200 | |
---|---|---|
committer | 2015-08-21 05:38:20 +0200 | |
commit | d3d74014759cada63b6ed82ebe2a35e947cd6645 (patch) | |
tree | 33656da4c1be570bdc24a6fa8e470fb7d6e30d5c /app-editors/hexedit/files | |
parent | dev-python/pyside-tools: force CMAKE_MAKEFILE_GENERATOR=emake (diff) | |
download | gentoo-d3d74014759cada63b6ed82ebe2a35e947cd6645.tar.gz gentoo-d3d74014759cada63b6ed82ebe2a35e947cd6645.tar.bz2 gentoo-d3d74014759cada63b6ed82ebe2a35e947cd6645.zip |
app-editors/hexedit: Fix building against sys-libs/ncurses[tinfo] (bug #558298 by Zoltan Puskas).
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-editors/hexedit/files')
-rw-r--r-- | app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch b/app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch new file mode 100644 index 000000000000..86e7dba4e88e --- /dev/null +++ b/app-editors/hexedit/files/hexedit-1.2.13-tinfo.patch @@ -0,0 +1,10 @@ +--- a/configure.in ++++ b/configure.in +@@ -37,6 +37,7 @@ + AC_CHECK_LIB(curses, initscr, LIBS="$LIBS -lcurses", + AC_CHECK_LIB(ncurses, initscr, LIBS="$LIBS -lncurses") + ) ++AC_SEARCH_LIBS(nodelay, tinfo) + AC_CHECK_FUNC(use_default_colors, + AC_DEFINE(HAVE_COLORS, , "Define if you want colored (fruit salad) display option") + ) |