diff options
author | 2013-02-28 13:43:45 +0000 | |
---|---|---|
committer | 2013-02-28 13:43:45 +0000 | |
commit | 21f94e11880bb46b0a899f870f15e8d9c8fb96c4 (patch) | |
tree | 915123e231da2c53f1b83526a2328d1a17538967 /app-crypt/mit-krb5-appl/files | |
parent | Stable for HPPA (bug #458800). (diff) | |
download | historical-21f94e11880bb46b0a899f870f15e8d9c8fb96c4.tar.gz historical-21f94e11880bb46b0a899f870f15e8d9c8fb96c4.tar.bz2 historical-21f94e11880bb46b0a899f870f15e8d9c8fb96c4.zip |
Fix building with ncurses[tinfo]
Package-Manager: portage-2.2.0_alpha163/cvs/Linux x86_64
Manifest-Sign-Key: 0x77F1F175586A3B1F
Diffstat (limited to 'app-crypt/mit-krb5-appl/files')
-rw-r--r-- | app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch b/app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch new file mode 100644 index 000000000000..54c18665d336 --- /dev/null +++ b/app-crypt/mit-krb5-appl/files/mit-krb5-appl-tinfo.patch @@ -0,0 +1,12 @@ +--- configure.ac 2011-07-11 22:34:17.000000000 +0300 ++++ configure.ac 2013-02-28 15:12:24.693841664 +0200 +@@ -152,7 +152,8 @@ + [AC_DEFINE(TERMCAP,1,[Define if termcap library is available]) + LIBS="$LIBS -ltermcap"]) + AC_CHECK_LIB(curses,setupterm,LIBS="$LIBS -lcurses", +- [AC_CHECK_LIB(ncurses,setupterm,LIBS="$LIBS -lncurses")]) ++ [AC_CHECK_LIB(ncurses,setupterm,LIBS="$LIBS -lncurses", ++ [AC_CHECK_LIB(tinfo,setupterm,LIBS="$LIBS -lncurses")])]) + AC_CHECK_FUNCS(setupterm) + TELNET_LIBS="$LIBS" + TELNETD_LIBS="$LIBS" |