summaryrefslogtreecommitdiff
path: root/app-editors/ng/files/ng-1.5beta1-ncurses.patch
blob: a31ddccd661492be4bb40901ed6881fe541d591e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- ng-1.5beta1/sys/unix/configure.in
+++ ng-1.5beta1/sys/unix/configure.in
@@ -33,9 +33,11 @@
 	[  --with-termcap          Build with termcap library. (default)],
 	[ts_with_terminfo="no"])
 if test "$ts_with_terminfo" = "yes"; then
- AC_SEARCH_LIBS(tgetstr, curses ncurses termlib)
+ AC_SEARCH_LIBS(tgetstr, ncurses termlib)
+ AC_SEARCH_LIBS(tputs, tinfo ncurses termlib)
 else
- AC_SEARCH_LIBS(tgetstr, termcap curses ncurses)
+ AC_SEARCH_LIBS(tgetstr, termcap ncurses)
+ AC_SEARCH_LIBS(tputs, termcap tinfo ncurses)
 fi
 
 dnl Checks for header files.