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/mit-krb5-appl/files: mit-krb5-appl-tinfo.patch
Date: Thu, 28 Feb 2013 13:43:48
Message-Id: 20130228134344.742AA2171E@flycatcher.gentoo.org
1 eras 13/02/28 13:43:44
2
3 Added: mit-krb5-appl-tinfo.patch
4 Log:
5 Fix building with ncurses[tinfo]
6
7 (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
8
9 Revision Changes Path
10 1.1 app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch?rev=1.1&content-type=text/plain
14
15 Index: mit-krb5-appl-tinfo.patch
16 ===================================================================
17 --- configure.ac 2011-07-11 22:34:17.000000000 +0300
18 +++ configure.ac 2013-02-28 15:12:24.693841664 +0200
19 @@ -152,7 +152,8 @@
20 [AC_DEFINE(TERMCAP,1,[Define if termcap library is available])
21 LIBS="$LIBS -ltermcap"])
22 AC_CHECK_LIB(curses,setupterm,LIBS="$LIBS -lcurses",
23 - [AC_CHECK_LIB(ncurses,setupterm,LIBS="$LIBS -lncurses")])
24 + [AC_CHECK_LIB(ncurses,setupterm,LIBS="$LIBS -lncurses",
25 + [AC_CHECK_LIB(tinfo,setupterm,LIBS="$LIBS -lncurses")])])
26 AC_CHECK_FUNCS(setupterm)
27 TELNET_LIBS="$LIBS"
28 TELNETD_LIBS="$LIBS"