Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/texinfo/files: texinfo-4.13-tinfo.patch
Date: Sun, 03 Mar 2013 14:58:01
Message-Id: 20130303145757.C1B092171E@flycatcher.gentoo.org
1 ssuominen 13/03/03 14:57:57
2
3 Added: texinfo-4.13-tinfo.patch
4 Log:
5 Check for -ltinfo before -lncurses wrt #457556 by Travis Hansen
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
8
9 Revision Changes Path
10 1.1 sys-apps/texinfo/files/texinfo-4.13-tinfo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch?rev=1.1&content-type=text/plain
14
15 Index: texinfo-4.13-tinfo.patch
16 ===================================================================
17 http://bugs.gentoo.org/457556
18
19 --- configure
20 +++ configure
21 @@ -17477,7 +17477,7 @@
22 # rather ncurses. So we check for it.
23 TERMLIBS=
24 # Check for termlib before termcap because Solaris termcap needs libucb.
25 -TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
26 +TERMLIB_VARIANTS="tinfo ncurses curses termlib termcap terminfo"
27 for termlib in ${TERMLIB_VARIANTS}; do
28 as_ac_Lib=`$as_echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh`
29 { $as_echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5
30 --- configure.ac
31 +++ configure.ac
32 @@ -130,7 +130,7 @@
33 # rather ncurses. So we check for it.
34 TERMLIBS=
35 # Check for termlib before termcap because Solaris termcap needs libucb.
36 -TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
37 +TERMLIB_VARIANTS="tinfo ncurses curses termlib termcap terminfo"
38 for termlib in ${TERMLIB_VARIANTS}; do
39 AC_CHECK_LIB(${termlib}, tgetent,
40 [TERMLIBS="${TERMLIBS} -l${termlib}"; break])