Gentoo Archives: gentoo-commits

From: "Eray Aslan (eras)" <eras@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-crypt/heimdal/files: heimdal_tinfo.patch
Date: Fri, 25 Jul 2014 14:26:54
Message-Id: 20140725142647.9F95C2004F@flycatcher.gentoo.org
1 eras 14/07/25 14:26:47
2
3 Added: heimdal_tinfo.patch
4 Log:
5 Fix building with ncurses[tinfo] - bug #514708
6
7 (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
8
9 Revision Changes Path
10 1.1 app-crypt/heimdal/files/heimdal_tinfo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/heimdal/files/heimdal_tinfo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/heimdal/files/heimdal_tinfo.patch?rev=1.1&content-type=text/plain
14
15 Index: heimdal_tinfo.patch
16 ===================================================================
17 --- heimdal-1.5/configure.ac.orig 2011-08-01 12:49:33.554689000 +0200
18 +++ heimdal-1.5/configure.ac 2011-08-01 13:54:12.707009421 +0200
19 @@ -444,7 +444,7 @@
20 #endif
21 ],[0,0,0,0,0])
22
23 -AC_FIND_FUNC_NO_LIBS(tgetent, termcap ncurses curses,[
24 +AC_FIND_FUNC_NO_LIBS(tgetent, tinfo ncurses curses termcap,[
25 #ifdef HAVE_TERMCAP_H
26 #include <termcap.h>
27 #endif
28 --- heimdal-1.5/lib/libedit/configure.ac~ 2011-07-30 22:43:29.000000000 +0200
29 +++ heimdal-1.5/lib/libedit/configure.ac 2011-08-01 13:54:30.657009419 +0200
30 @@ -33,7 +33,7 @@
31 EL_MANTYPE
32
33
34 -AC_CHECK_LIB(curses, tgetent,,
35 +AC_CHECK_LIB(tinfo, tgetent,,
36 [AC_CHECK_LIB(ncurses, tgetent,,
37 [AC_MSG_ERROR([libcurses or libncurses are required!])] )] )