看板 DFBSD_commit 關於我們 聯絡資訊
This is a multi-part message in MIME format. --Multipart=_Sun__13_Mar_2005_17_27_01_-0800_rsYKJ5/+hY=IO2g8 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit On Sat, 12 Mar 2005 11:13:54 -0800 (PST) Eirik Nygaard <eirikn@crater.dragonflybsd.org> wrote: > eirikn 2005/03/12 11:13:54 PST > > DragonFly src repository > > Modified files: > . Makefile.inc1 > lib Makefile > lib/libncurses Makefile > Added files: > lib/libncurses Makefile.inc > lib/libncurses/include MKterm.h.awk curses.head ncurses_cfg.h > pathnames.h termcap.h unctrl.h Hi Eirik, MKterm.h.awk generates a term.h that contains an unterminated C comment. This breaks anything that uses curses and builds with -Werror (such as the installer :) See attached patch. Also, I just noticed that now, arrow keys no longer work properly in ee. Will test the installer itself in a little bit, as soon as I can build a release image. -Chris --Multipart=_Sun__13_Mar_2005_17_27_01_-0800_rsYKJ5/+hY=IO2g8 Content-Type: text/plain; name="MKterm.h.awk.diff" Content-Disposition: attachment; filename="MKterm.h.awk.diff" Content-Transfer-Encoding: 7bit Index: MKterm.h.awk =================================================================== RCS file: /home/dcvs/src/lib/libncurses/include/MKterm.h.awk,v retrieving revision 1.1 diff -u -r1.1 MKterm.h.awk --- MKterm.h.awk 12 Mar 2005 19:13:54 -0000 1.1 +++ MKterm.h.awk 14 Mar 2005 01:01:29 -0000 @@ -50,7 +50,7 @@ print "#include <ncurses_dll.h>" print "#else" print "/* From ncurses_dll.h */" - print "/* This is copied so we don't need to install" + print "/* This is copied so we don't need to install */" print "/* ncurses_dll.h as well */" print "/* Take care of non-cygwin platforms */" print "#if !defined(NCURSES_IMPEXP)" --Multipart=_Sun__13_Mar_2005_17_27_01_-0800_rsYKJ5/+hY=IO2g8--