From 84ca66f9c9d020011883c5d7f5c4e54211dc304b Mon Sep 17 00:00:00 2001 From: Hasso Tepper Date: Mon, 9 Mar 2009 15:52:11 +0200 Subject: [PATCH] Install ncurses_dll.h to unbreak devel/ncursesw from pkgsrc. Pkgsrc assumes that our ncurses is good enough to use, but installs ncursesw/ncurses.h header which includes ncurses_dll.h. So, compiling every piece of software using ncursesw/ncurses.h just failed. --- lib/libncurses/libncurses/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/libncurses/libncurses/Makefile b/lib/libncurses/libncurses/Makefile index ab560b35b0..c018cb1dab 100644 --- a/lib/libncurses/libncurses/Makefile +++ b/lib/libncurses/libncurses/Makefile @@ -286,7 +286,8 @@ SYMLINKS+=libncurses.a ${PROFLIBDIR}/libtinfo.aa .endif INCS= term.h ${.CURDIR}/../include/termcap.h \ - ${.CURDIR}/../include/unctrl.h curses.h + ${.CURDIR}/../include/unctrl.h curses.h \ + ${NCURSESDIR}/include/ncurses_dll.h INCSLINKS=curses.h ${INCLUDEDIR}/ncurses.h .include -- 2.11.4.GIT