Gentoo Archives: gentoo-commits

From: "Jeroen Roovers (jer)" <jer@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-lisp/clisp/files: clisp-2.49-tinfo.patch
Date: Tue, 28 Oct 2014 21:41:36
Message-Id: 20141028214129.55B678F5A@oystercatcher.gentoo.org
1 jer 14/10/28 21:41:29
2
3 Added: clisp-2.49-tinfo.patch
4 Log:
5 Fix building against sys-libs/ncurses[tinfo] (bug #497600).
6
7 (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key A792A613)
8
9 Revision Changes Path
10 1.1 dev-lisp/clisp/files/clisp-2.49-tinfo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/clisp/files/clisp-2.49-tinfo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-lisp/clisp/files/clisp-2.49-tinfo.patch?rev=1.1&content-type=text/plain
14
15 Index: clisp-2.49-tinfo.patch
16 ===================================================================
17 clisp does not need a full blown ncurses, but it does require a termcap or tinfo
18 I would have changed this in src/m4/termcap.m4 but configure.in fails terribly - JeR
19
20
21 --- a/src/configure
22 +++ b/src/configure
23 @@ -28613,7 +28613,7 @@
24 return 0;
25 }
26 _ACEOF
27 -for ac_lib in '' ncurses termcap; do
28 +for ac_lib in '' tinfo ncurses termcap; do
29 if test -z "$ac_lib"; then
30 ac_res="none required"
31 else