summaryrefslogtreecommitdiff
path: root/system/libedit/tinfo.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2018-06-25 06:01:48 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2018-06-25 06:01:48 -0500
commit3784ad0541243e480e5b652db847b4c89e75cb24 (patch)
tree2a99ca02b7de283d7e6d6fe3e0df2cb67db4ad54 /system/libedit/tinfo.patch
parentdbb82d9c051600a49c5398816f2562fd0e8524c1 (diff)
downloadpackages-3784ad0541243e480e5b652db847b4c89e75cb24.tar.gz
packages-3784ad0541243e480e5b652db847b4c89e75cb24.tar.bz2
packages-3784ad0541243e480e5b652db847b4c89e75cb24.tar.xz
packages-3784ad0541243e480e5b652db847b4c89e75cb24.zip
system/libedit: build with new ncurses config (thanks mgorny)
Diffstat (limited to 'system/libedit/tinfo.patch')
-rw-r--r--system/libedit/tinfo.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/system/libedit/tinfo.patch b/system/libedit/tinfo.patch
new file mode 100644
index 000000000..597529ca8
--- /dev/null
+++ b/system/libedit/tinfo.patch
@@ -0,0 +1,30 @@
+From 7aa660fd9d446567d3280765ba2a50a46b2a9159 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= <mgorny@gentoo.org>
+Date: Mon, 12 Jun 2017 21:36:54 +0200
+Subject: [PATCH] configure: Support -ltinfo as split in newer ncurses
+
+The newer versions of ncurses support building terminfo routines
+as a split -ltinfo library. Account for that by adding this library
+to the search list.
+---
+ configure.ac | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 9a571b2..5d714b5 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -49,7 +49,9 @@ EL_MANTYPE
+ AC_CHECK_LIB(ncurses, tgetent,,
+ [AC_CHECK_LIB(curses, tgetent,,
+ [AC_CHECK_LIB(termcap, tgetent,,
+- [AC_MSG_ERROR([libncurses, libcurses, or libtermcap is required!])]
++ [AC_CHECK_LIB(tinfo, tgetent,,
++ [AC_MSG_ERROR([libncurses, libcurses, libtermcap, or libtinfo is required!])]
++ )]
+ )]
+ )]
+ )
+--
+2.13.1
+