Update of /cvsroot/cscope/cscope
In directory usw-pr-cvs1:/tmp/cvs-serv2299
Modified Files:
ChangeLog README
Log Message:
Added workaround for HP-sUX curses problem to README
Index: ChangeLog
===================================================================
RCS file: /cvsroot/cscope/cscope/ChangeLog,v
retrieving revision 1.82
retrieving revision 1.83
diff -C2 -r1.82 -r1.83
*** ChangeLog 2001/06/28 22:15:00 1.82
--- ChangeLog 2001/06/29 10:52:27 1.83
***************
*** 1,2 ****
--- 1,5 ----
+ (2001/06/29 - broeker) Re-formatted README, and added a tip working around
+ buggy libcurses on HP-UX 10.
+ (2001/06/29 - broeker) Oversight in packages/MSDOS/djmake.bat fixed.
(2001/06/28 - darrylo) Updated xcscope.el to include GNU Emacs fixes and
fuzzy pattern matching. Updated docs in xcscope.el.
Index: README
===================================================================
RCS file: /cvsroot/cscope/cscope/README,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -r1.5 -r1.6
*** README 2000/11/20 20:07:24 1.5
--- README 2001/06/29 10:52:27 1.6
***************
*** 14,23 ****
TIPS:
- - Try to use flex as the lexical analyzer. There may be some problems with using the native lex (due to some problems). The has been reported as a problem on Solaris.
- - On Linux systems (and possibly others) configure may fail if lex is a synomyn for flex. To fix, do the following:
make distclean
./configure --with-flex
make
Browse to http://cscope.sourceforge.net for more current information
--- 14,35 ----
TIPS:
+ - Try to use flex as the lexical analyzer. There may be some problems
+ with using the native lex (due to some problems). The has been
+ reported as a problem on Solaris.
+
+ - On Linux systems (and possibly others) configure may fail if lex is
+ a synomyn for flex. To fix, do the following:
+
make distclean
./configure --with-flex
make
+
+ - On HP-UX 10.*, the default version of curses was observed to be broken.
+ Get their "cumulative patches" and then compile like this, to work
+ around that bug:
+
+ make CURSES_LIBS=-lHcurses
+
Browse to http://cscope.sourceforge.net for more current information
|