* [gentoo-commits] gentoo-x86 commit in sys-apps/texinfo/files: texinfo-4.13-tinfo.patch
@ 2013-03-03 14:57 Samuli Suominen (ssuominen)
0 siblings, 0 replies; 2+ messages in thread
From: Samuli Suominen (ssuominen) @ 2013-03-03 14:57 UTC (permalink / raw
To: gentoo-commits
ssuominen 13/03/03 14:57:57
Added: texinfo-4.13-tinfo.patch
Log:
Check for -ltinfo before -lncurses wrt #457556 by Travis Hansen
(Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Revision Changes Path
1.1 sys-apps/texinfo/files/texinfo-4.13-tinfo.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch?rev=1.1&view=markup
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
Index: texinfo-4.13-tinfo.patch
===================================================================
http://bugs.gentoo.org/457556
--- configure
+++ configure
@@ -17477,7 +17477,7 @@
# rather ncurses. So we check for it.
TERMLIBS=
# Check for termlib before termcap because Solaris termcap needs libucb.
-TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
+TERMLIB_VARIANTS="tinfo ncurses curses termlib termcap terminfo"
for termlib in ${TERMLIB_VARIANTS}; do
as_ac_Lib=`$as_echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh`
{ $as_echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5
--- configure.ac
+++ configure.ac
@@ -130,7 +130,7 @@
# rather ncurses. So we check for it.
TERMLIBS=
# Check for termlib before termcap because Solaris termcap needs libucb.
-TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
+TERMLIB_VARIANTS="tinfo ncurses curses termlib termcap terminfo"
for termlib in ${TERMLIB_VARIANTS}; do
AC_CHECK_LIB(${termlib}, tgetent,
[TERMLIBS="${TERMLIBS} -l${termlib}"; break])
^ permalink raw reply [flat|nested] 2+ messages in thread
* [gentoo-commits] gentoo-x86 commit in sys-apps/texinfo/files: texinfo-4.13-tinfo.patch
@ 2013-04-04 18:29 Mike Frysinger (vapier)
0 siblings, 0 replies; 2+ messages in thread
From: Mike Frysinger (vapier) @ 2013-04-04 18:29 UTC (permalink / raw
To: gentoo-commits
vapier 13/04/04 18:29:11
Modified: texinfo-4.13-tinfo.patch
Log:
Re-order patch so the source files get patched first.
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key FB7C4156)
Revision Changes Path
1.2 sys-apps/texinfo/files/texinfo-4.13-tinfo.patch
file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch?r1=1.1&r2=1.2
Index: texinfo-4.13-tinfo.patch
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sys-apps/texinfo/files/texinfo-4.13-tinfo.patch,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- texinfo-4.13-tinfo.patch 3 Mar 2013 14:57:57 -0000 1.1
+++ texinfo-4.13-tinfo.patch 4 Apr 2013 18:29:11 -0000 1.2
@@ -1,24 +1,24 @@
http://bugs.gentoo.org/457556
---- configure
-+++ configure
-@@ -17477,7 +17477,7 @@
+--- configure.ac
++++ configure.ac
+@@ -130,7 +130,7 @@
# rather ncurses. So we check for it.
TERMLIBS=
# Check for termlib before termcap because Solaris termcap needs libucb.
-TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
+TERMLIB_VARIANTS="tinfo ncurses curses termlib termcap terminfo"
for termlib in ${TERMLIB_VARIANTS}; do
- as_ac_Lib=`$as_echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh`
- { $as_echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5
---- configure.ac
-+++ configure.ac
-@@ -130,7 +130,7 @@
+ AC_CHECK_LIB(${termlib}, tgetent,
+ [TERMLIBS="${TERMLIBS} -l${termlib}"; break])
+--- configure
++++ configure
+@@ -17477,7 +17477,7 @@
# rather ncurses. So we check for it.
TERMLIBS=
# Check for termlib before termcap because Solaris termcap needs libucb.
-TERMLIB_VARIANTS="ncurses curses termlib termcap terminfo"
+TERMLIB_VARIANTS="tinfo ncurses curses termlib termcap terminfo"
for termlib in ${TERMLIB_VARIANTS}; do
- AC_CHECK_LIB(${termlib}, tgetent,
- [TERMLIBS="${TERMLIBS} -l${termlib}"; break])
+ as_ac_Lib=`$as_echo "ac_cv_lib_${termlib}''_tgetent" | $as_tr_sh`
+ { $as_echo "$as_me:$LINENO: checking for tgetent in -l${termlib}" >&5
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-04-04 18:29 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-04 18:29 [gentoo-commits] gentoo-x86 commit in sys-apps/texinfo/files: texinfo-4.13-tinfo.patch Mike Frysinger (vapier)
-- strict thread matches above, loose matches on Subject: below --
2013-03-03 14:57 Samuli Suominen (ssuominen)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox