From: Neil H. <nh...@us...> - 2005-02-16 20:49:42
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8089 Modified Files: ChangeLog Log Message: fixing cscope builds for platforms w/ curses libs that don't support KEY_RESIZE (sourceforge bug 1123741) Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.146 retrieving revision 1.147 diff -C2 -r1.146 -r1.147 *** ChangeLog 4 Feb 2005 12:19:07 -0000 1.146 --- ChangeLog 16 Feb 2005 20:49:23 -0000 1.147 *************** *** 1,2 **** --- 1,13 ---- + 2005-02-16 Neil Horman <nh...@gm...> + + * src/command.c (command): Added ifdef KEY_RESIZE around + KEY_RESIZE case in switch statement to allow curses + libraries which don't support resize events to build + + * src/main.c (main): Added ifdef KEY_RESIZE around + SIGWINCH handler and signal registration logic to + remove resize code from cscope when building with + curses libraries that don't support resize events + 2005-02-04 Neil Horman <nh...@gm...> |