You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(6) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(2) |
Feb
(9) |
Mar
(6) |
Apr
(8) |
May
(7) |
Jun
(49) |
Jul
(36) |
Aug
(8) |
Sep
(4) |
Oct
(11) |
Nov
(3) |
Dec
|
2002 |
Jan
(8) |
Feb
|
Mar
(7) |
Apr
(2) |
May
|
Jun
(3) |
Jul
(9) |
Aug
(2) |
Sep
|
Oct
(3) |
Nov
|
Dec
(2) |
2003 |
Jan
(6) |
Feb
|
Mar
(2) |
Apr
(3) |
May
|
Jun
(5) |
Jul
|
Aug
(6) |
Sep
(6) |
Oct
(2) |
Nov
|
Dec
|
2004 |
Jan
(2) |
Feb
(12) |
Mar
|
Apr
(10) |
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
(2) |
Dec
(4) |
2005 |
Jan
(4) |
Feb
(6) |
Mar
(3) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
(2) |
Dec
|
2006 |
Jan
|
Feb
(2) |
Mar
|
Apr
(12) |
May
(2) |
Jun
|
Jul
(6) |
Aug
(4) |
Sep
(11) |
Oct
(10) |
Nov
|
Dec
|
2007 |
Jan
(4) |
Feb
(2) |
Mar
(2) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(2) |
2008 |
Jan
|
Feb
(2) |
Mar
(4) |
Apr
(2) |
May
|
Jun
(6) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
2009 |
Jan
|
Feb
|
Mar
|
Apr
(6) |
May
(2) |
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
(8) |
2010 |
Jan
|
Feb
|
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(2) |
Oct
|
Nov
|
Dec
|
2012 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(1) |
2013 |
Jan
|
Feb
|
Mar
|
Apr
(2) |
May
|
Jun
(1) |
Jul
|
Aug
(1) |
Sep
(1) |
Oct
|
Nov
|
Dec
|
2014 |
Jan
|
Feb
|
Mar
|
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(5) |
Dec
|
2015 |
Jan
|
Feb
|
Mar
(1) |
Apr
(1) |
May
|
Jun
|
Jul
|
Aug
(1) |
Sep
|
Oct
|
Nov
|
Dec
|
2017 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(2) |
Nov
|
Dec
|
From: Hans-Bernhard B. <br...@us...> - 2004-04-30 12:09:24
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23688/src Modified Files: command.c input.c global.h Log Message: Make input fields editable after recalling them from history (Ctrl-B/F). Index: command.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/command.c,v retrieving revision 1.21 retrieving revision 1.22 diff -C2 -r1.21 -r1.22 *** command.c 14 Feb 2004 18:25:15 -0000 1.21 --- command.c 30 Apr 2004 12:09:14 -0000 1.22 *************** *** 460,468 **** case '\n': goto repeat; ! default: (void) myungetch(c); atfield(); (void) clrtoeol(); /* clear current field */ break; } } --- 460,477 ---- case '\n': goto repeat; ! case ctrl('F'): ! case ctrl('B'): (void) myungetch(c); atfield(); (void) clrtoeol(); /* clear current field */ break; + default: + (void) myungetch(c); + if (mygetline(pattern, newpat, COLS - fldcolumn - 1, '\0', caseless )) { + strcpy (pattern, newpat); + resetcmd(); + } + goto repeat; + break; } } Index: input.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/input.c,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** input.c 12 Feb 2004 18:14:05 -0000 1.10 --- input.c 30 Apr 2004 12:09:14 -0000 1.11 *************** *** 54,58 **** /* Internal prototypes: */ ! static RETSIGTYPE catchint(int sig); /* catch the interrupt signal */ --- 54,58 ---- /* Internal prototypes: */ ! static RETSIGTYPE catchint(int sig); /* catch the interrupt signal */ *************** *** 68,72 **** /* unget a character */ - void myungetch(int c) --- 68,71 ---- *************** *** 76,80 **** /* get a character from the terminal */ - int mygetch(void) --- 75,78 ---- *************** *** 103,106 **** --- 101,236 ---- int + mygetline(char p[], char s[], unsigned size, int firstchar, BOOL iscaseless) + { + int c, i = 0; + int j; + char *sright; /* substring to the right of the cursor */ + int ri = 0; /* position in right-string */ + + /* Inserts and deletes are always performed on the left-string, + * but we'll also have a right-string 'sright' to hold characters + * which are on the right of the cursor [insertion point]. + * + * Think of 'sright' as a stack -- we push chars into it when the cursor + * moves left, and we pop chars off it when the cursor moves right again. + * At the end of the function, we'll pop off any remaining characters + * onto the end of 's' + */ + sright = calloc(sizeof(char), size ); + + strcpy ( s, p); + i += strlen(p); + /* if a character already has been typed */ + if (firstchar != '\0') { + if(iscaseless == YES) { + firstchar = tolower(firstchar); + } + addch(firstchar); /* display it */ + s[i++] = firstchar; /* save it */ + } + /* until the end of the line is reached */ + while ((c = mygetch()) != '\r' && c != '\n' && c != KEY_ENTER) { + if (c == KEY_LEFT || c == ctrl('B')) { /* left */ + if (i > 0) { + addch('\b'); + /* move this char into the second (rhs) string */ + sright[ri++] = s[--i]; + } + } else if (c == KEY_RIGHT || c == ctrl('F')) { /* right */ + if (i < size && ri > 0) { + /* move this char to the left of the cursor */ + s[i++] = sright[--ri]; + addch(s[i-1]); + } + } else if ( + #ifdef KEY_HOME + c == KEY_HOME || + #endif + c == ctrl('A') ) { + while (i > 0) { + sright[ri++] = s[--i]; + addch('\b'); + addch(s[i]); + addch('\b'); + } + } else if ( + #ifdef KEY_END + c == KEY_END || + #endif + c == ctrl('E') ) { + while (ri > 0) { + s[i++] = sright[--ri]; + addch(s[i-1]); + } + } else if (c == erasechar() || c == KEY_BACKSPACE + || c == DEL || c == ctrl('H') ) { + /* erase */ + if (i > 0) { + if (ri == 0) { + addstr("\b \b"); + } else { + addch('\b'); + delch(); + } + s[i] = '\0'; + --i; + } + } else if (c == killchar() || c == KEY_BREAK) { + /* kill */ + for (j = 0; j < i; ++j) { + addch('\b'); + } + for (j = 0; j < i; ++j) { + addch(' '); + } + for (j = 0; j < i; ++j) { + addch('\b'); + } + i = 0; + } else if (isprint(c) || c == '\t') { + /* printable */ + if(iscaseless == YES) { + c = tolower(c); + } + /* if it will fit on the line */ + if (i < size) { + s[i++] = c; /* save it */ + if (ri == 0) { + addch(c); /* display it */ + } else { + insch(c); /* display it */ + addch(c); /* advance cursor */ + } + } + #if UNIXPC + } else if (unixpcmouse == YES && c == ESC) { /* mouse */ + getmouseaction(ESC); /* ignore it */ + #endif + } else if (mouse == YES && c == ctrl('X')) { + getmouseaction(ctrl('X')); /* ignore it */ + } else if (c == EOF) { /* end-of-file */ + break; + } + + /* return on an empty line to allow a command to be entered */ + if (firstchar != '\0' && (i+ri) == 0) { + break; + } + } + + /* move any remaining chars on the rhs of the cursor + * onto the end of our string + */ + while (ri > 0) { + s[i++] = sright[--ri]; + } + free(sright); + + s[i] = '\0'; + return(i); + } + /* get a line from the terminal in non-canonical mode */ + + int getline(char s[], unsigned size, int firstchar, BOOL iscaseless) { Index: global.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/global.h,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -r1.29 -r1.30 *** global.h 24 Feb 2004 15:13:21 -0000 1.29 --- global.h 30 Apr 2004 12:09:14 -0000 1.30 *************** *** 407,410 **** --- 407,411 ---- int egrep(char *file, FILE *output, char *format); int getline(char s[], unsigned size, int firstchar, BOOL iscaseless); + int mygetline(char p[], char s[], unsigned size, int firstchar, BOOL iscaseless); int mygetch(void); int hash(char *ss); |
From: Hans-Bernhard B. <br...@us...> - 2004-04-30 12:08:02
|
Update of /cvsroot/cscope/cscope/packages In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23380/packages Modified Files: cscope.spec Log Message: Updated RPM spec to current standards. Index: cscope.spec =================================================================== RCS file: /cvsroot/cscope/cscope/packages/cscope.spec,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** cscope.spec 3 Jul 2001 22:09:50 -0000 1.10 --- cscope.spec 30 Apr 2004 12:07:45 -0000 1.11 *************** *** 3,10 **** Version: 16.0a Release: 1 ! Copyright: BSD Group: Development/Tools Source: cscope-16.0a.tar.gz ! Buildroot: /tmp/%{name}-%{version} %description --- 3,12 ---- Version: 16.0a Release: 1 ! Epoch: 1 ! License: BSD Group: Development/Tools Source: cscope-16.0a.tar.gz ! URL: http://cscope.sourceforge.net ! Buildroot: %{_tmppath}/%{name}-root %description *************** *** 12,41 **** %prep ! %setup %build ! ./configure make %install ! rm -rf $RPM_BUILD_ROOT ! mkdir -p $RPM_BUILD_ROOT/usr/bin ! mkdir -p $RPM_BUILD_ROOT/usr/man/man1 ! ! install -s -m 755 src/cscope $RPM_BUILD_ROOT/usr/bin/cscope ! install -m 755 doc/cscope.1 $RPM_BUILD_ROOT/usr/man/man1/cscope.1 %clean ! rm -rf $RPM_BUILD_ROOT %files %defattr(-,root,root) %doc TODO COPYING ChangeLog AUTHORS README NEWS INSTALL ! ! /usr/bin/cscope ! /usr/man/man1/cscope.1 %changelog ! * Mon Jul 2 2001 Cscope development team - Version 15.3 release - New flex scanner --- 14,41 ---- %prep ! %setup -q %build ! %configure make %install ! rm -rf %{buildroot} ! %makeinstall %clean ! rm -rf %{buildroot} %files %defattr(-,root,root) %doc TODO COPYING ChangeLog AUTHORS README NEWS INSTALL ! %{_bindir}/* ! %{_mandir}/man1/* %changelog ! * Sun Mar 21 2004 Adam Monsen <ad...@wa...> ! - updated packages/cscope.spec to use more RPM macros and shell globs. ! Should be more generic/robust/up-to-date/etc. ! * Mon Jul 2 2001 Cscope development team <csc...@li...> - Version 15.3 release - New flex scanner *************** *** 46,50 **** - More editing keys - Webcscope added to contrib ! * Wed Nov 20 2000 Cscope development team - Version 15.1 release - New menu and line matching interface --- 46,50 ---- - More editing keys - Webcscope added to contrib ! * Wed Nov 20 2000 Cscope development team <csc...@li...> - Version 15.1 release - New menu and line matching interface *************** *** 52,56 **** - Numerous fixes - Updated documentation ! * Tue May 15 2000 Cscope development team - Version 15.0bl2 (build 2) pre-alpha release - Fixes and enhancements --- 52,56 ---- - Numerous fixes - Updated documentation ! * Tue May 15 2000 Cscope development team <csc...@li...> - Version 15.0bl2 (build 2) pre-alpha release - Fixes and enhancements |
From: Hans-Bernhard B. <br...@us...> - 2004-02-24 15:27:39
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3372/src Modified Files: global.h Log Message: Accomodate HP/Compaq's nsr-tandem-nsk platform. Index: global.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/global.h,v retrieving revision 1.28 retrieving revision 1.29 diff -C2 -r1.28 -r1.29 *** global.h 12 Feb 2004 18:14:05 -0000 1.28 --- global.h 24 Feb 2004 15:13:21 -0000 1.29 *************** *** 49,52 **** --- 49,58 ---- #include <stdlib.h> /* standard library functions */ + /* A special "magic" header file required by HP/Compaq NSK (Non-Stop + * Kernel) to present a more Unix-ish environment ... */ + #ifdef HAVE_FLOSS_H + # include <floss.h> + #endif + /* Replace most of the #if BSD stuff. Taken straight from the autoconf * manual, with an extension for handling memset(). */ |
From: Hans-Bernhard B. <br...@us...> - 2004-02-24 15:27:38
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv3372 Modified Files: ChangeLog config.h.in configure configure.in Log Message: Accomodate HP/Compaq's nsr-tandem-nsk platform. Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.133 retrieving revision 1.134 diff -C2 -r1.133 -r1.134 *** ChangeLog 14 Feb 2004 18:25:15 -0000 1.133 --- ChangeLog 24 Feb 2004 15:13:20 -0000 1.134 *************** *** 1,2 **** --- 1,10 ---- + 2004-02-24 Hans-Bernhard Broeker <br...@ph...> + + * configure.in (AC_CHECK_HEADERS): Added check for NSK-Tandem + special magic header file <floss.h>. + + * src/global.h [HAVE_FLOSS_H]: Added #include <floss.h> if it + exists. + 2004-02-14 Hans-Bernhard Broeker <br...@ph...> Index: config.h.in =================================================================== RCS file: /cvsroot/cscope/cscope/config.h.in,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -r1.16 -r1.17 *** config.h.in 12 Feb 2004 18:14:04 -0000 1.16 --- config.h.in 24 Feb 2004 15:13:20 -0000 1.17 *************** *** 17,20 **** --- 17,23 ---- #undef HAVE_FIXKEYPAD + /* Define to 1 if you have the <floss.h> header file. */ + #undef HAVE_FLOSS_H + /* Define to 1 if you have the `getcwd' function. */ #undef HAVE_GETCWD Index: configure =================================================================== RCS file: /cvsroot/cscope/cscope/configure,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** configure 12 Feb 2004 18:14:04 -0000 1.23 --- configure 24 Feb 2004 15:13:20 -0000 1.24 *************** *** 5081,5085 **** ! for ac_header in fcntl.h sys/window.h sys/termios.h unistd.h signal.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` --- 5081,5086 ---- ! ! for ac_header in fcntl.h sys/window.h sys/termios.h unistd.h signal.h floss.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** configure.in 12 Feb 2004 18:13:12 -0000 1.30 --- configure.in 24 Feb 2004 15:13:21 -0000 1.31 *************** *** 382,386 **** AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h signal.h) dnl Checks for typedefs, structures, and compiler characteristics. --- 382,386 ---- AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h signal.h floss.h) dnl Checks for typedefs, structures, and compiler characteristics. |
From: Hans-Bernhard B. <br...@us...> - 2004-02-14 18:31:52
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1344/src Modified Files: command.c Log Message: Fix off-by-one in limited-size sscanf(). Index: command.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/command.c,v retrieving revision 1.20 retrieving revision 1.21 diff -C2 -r1.20 -r1.21 *** command.c 8 Jan 2004 14:07:20 -0000 1.20 --- command.c 14 Feb 2004 18:25:15 -0000 1.21 *************** *** 867,871 **** fcnlen = 8; /* strlen("Function") */ numlen = 0; ! while ((i = fscanf(refsfound, "%250s%250s%6s %5000[^\n]", file, function, linenum, tempstring)) != EOF) { if (i != 4 || --- 867,871 ---- fcnlen = 8; /* strlen("Function") */ numlen = 0; ! while ((i = fscanf(refsfound, "%250s%250s%5s %5000[^\n]", file, function, linenum, tempstring)) != EOF) { if (i != 4 || |
From: Hans-Bernhard B. <br...@us...> - 2004-02-14 18:31:52
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv1344 Modified Files: ChangeLog Log Message: Fix off-by-one in limited-size sscanf(). Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.132 retrieving revision 1.133 diff -C2 -r1.132 -r1.133 *** ChangeLog 12 Feb 2004 18:14:04 -0000 1.132 --- ChangeLog 14 Feb 2004 18:25:15 -0000 1.133 *************** *** 1,2 **** --- 1,7 ---- + 2004-02-14 Hans-Bernhard Broeker <br...@ph...> + + * src/command.c (countrefs): Fix off-by-one length specification + of %s format. Thanks to <an...@re...> for spotting it. + 2004-02-12 Hans-Bernhard Broeker <br...@ph...> |
From: Hans-Bernhard B. <br...@us...> - 2004-02-12 18:19:15
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30878/src Modified Files: Makefile.in exec.c global.h input.c invlib.h mypopen.c Log Message: Various cleanups and an autotools refresh. Index: Makefile.in =================================================================== RCS file: /cvsroot/cscope/cscope/src/Makefile.in,v retrieving revision 1.9 retrieving revision 1.10 diff -C2 -r1.9 -r1.10 *** Makefile.in 14 Aug 2003 14:37:49 -0000 1.9 --- Makefile.in 12 Feb 2004 18:14:05 -0000 1.10 *************** *** 1,6 **** ! # Makefile.in generated by automake 1.7.2 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation --- 1,6 ---- ! # Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation *************** *** 101,104 **** --- 101,105 ---- am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__include = @am__include@ + am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ *************** *** 170,173 **** --- 171,175 ---- @HAS_GNOME_TRUE@gscope_LDFLAGS = $(GNOMELINKAGE) $(GNOME_LINUX_FLAG) subdir = src + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h *************** *** 280,284 **** DIST_SOURCES = $(am__cscope_SOURCES_DIST) $(EXTRA_cscope_SOURCES) \ $(am__gscope_SOURCES_DIST) ! DIST_COMMON = Makefile.am Makefile.in TODO egrep.c fscanner.c scanner.c SOURCES = $(cscope_SOURCES) $(EXTRA_cscope_SOURCES) $(gscope_SOURCES) --- 282,287 ---- DIST_SOURCES = $(am__cscope_SOURCES_DIST) $(EXTRA_cscope_SOURCES) \ $(am__gscope_SOURCES_DIST) ! DIST_COMMON = $(srcdir)/Makefile.in Makefile.am TODO egrep.c fscanner.c \ ! scanner.c SOURCES = $(cscope_SOURCES) $(EXTRA_cscope_SOURCES) $(gscope_SOURCES) *************** *** 387,397 **** @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vpopen.Po@am__quote@ - distclean-depend: - -rm -rf ./$(DEPDIR) - .c.o: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 390,397 ---- @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vpopen.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `test -f '$<' || echo '$(srcdir)/'`$<; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 404,408 **** @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 404,408 ---- @am__fastdepCC_TRUE@ if $(COMPILE) -MT $@ -MD -MP -MF "$(DEPDIR)/$*.Tpo" \ @am__fastdepCC_TRUE@ -c -o $@ `if test -f '$<'; then $(CYGPATH_W) '$<'; else $(CYGPATH_W) '$(srcdir)/$<'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/$*.Tpo" "$(DEPDIR)/$*.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/$*.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 415,419 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-gscope.o -MD -MP -MF "$(DEPDIR)/gscope-gscope.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-gscope.o `test -f 'gscope.c' || echo '$(srcdir)/'`gscope.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-gscope.Tpo" "$(DEPDIR)/gscope-gscope.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-gscope.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 415,419 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-gscope.o -MD -MP -MF "$(DEPDIR)/gscope-gscope.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-gscope.o `test -f 'gscope.c' || echo '$(srcdir)/'`gscope.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-gscope.Tpo" "$(DEPDIR)/gscope-gscope.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-gscope.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 426,430 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-gscope.obj -MD -MP -MF "$(DEPDIR)/gscope-gscope.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-gscope.obj `if test -f 'gscope.c'; then $(CYGPATH_W) 'gscope.c'; else $(CYGPATH_W) '$(srcdir)/gscope.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-gscope.Tpo" "$(DEPDIR)/gscope-gscope.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-gscope.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 426,430 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-gscope.obj -MD -MP -MF "$(DEPDIR)/gscope-gscope.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-gscope.obj `if test -f 'gscope.c'; then $(CYGPATH_W) 'gscope.c'; else $(CYGPATH_W) '$(srcdir)/gscope.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-gscope.Tpo" "$(DEPDIR)/gscope-gscope.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-gscope.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 437,441 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-scanner.o -MD -MP -MF "$(DEPDIR)/gscope-scanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-scanner.o `test -f 'scanner.c' || echo '$(srcdir)/'`scanner.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-scanner.Tpo" "$(DEPDIR)/gscope-scanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-scanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 437,441 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-scanner.o -MD -MP -MF "$(DEPDIR)/gscope-scanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-scanner.o `test -f 'scanner.c' || echo '$(srcdir)/'`scanner.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-scanner.Tpo" "$(DEPDIR)/gscope-scanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-scanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 448,452 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-scanner.obj -MD -MP -MF "$(DEPDIR)/gscope-scanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-scanner.obj `if test -f 'scanner.c'; then $(CYGPATH_W) 'scanner.c'; else $(CYGPATH_W) '$(srcdir)/scanner.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-scanner.Tpo" "$(DEPDIR)/gscope-scanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-scanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 448,452 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-scanner.obj -MD -MP -MF "$(DEPDIR)/gscope-scanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-scanner.obj `if test -f 'scanner.c'; then $(CYGPATH_W) 'scanner.c'; else $(CYGPATH_W) '$(srcdir)/scanner.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-scanner.Tpo" "$(DEPDIR)/gscope-scanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-scanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 459,463 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-fscanner.o -MD -MP -MF "$(DEPDIR)/gscope-fscanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-fscanner.o `test -f 'fscanner.c' || echo '$(srcdir)/'`fscanner.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-fscanner.Tpo" "$(DEPDIR)/gscope-fscanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-fscanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 459,463 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-fscanner.o -MD -MP -MF "$(DEPDIR)/gscope-fscanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-fscanner.o `test -f 'fscanner.c' || echo '$(srcdir)/'`fscanner.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-fscanner.Tpo" "$(DEPDIR)/gscope-fscanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-fscanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 470,474 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-fscanner.obj -MD -MP -MF "$(DEPDIR)/gscope-fscanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-fscanner.obj `if test -f 'fscanner.c'; then $(CYGPATH_W) 'fscanner.c'; else $(CYGPATH_W) '$(srcdir)/fscanner.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-fscanner.Tpo" "$(DEPDIR)/gscope-fscanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-fscanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 470,474 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-fscanner.obj -MD -MP -MF "$(DEPDIR)/gscope-fscanner.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-fscanner.obj `if test -f 'fscanner.c'; then $(CYGPATH_W) 'fscanner.c'; else $(CYGPATH_W) '$(srcdir)/fscanner.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-fscanner.Tpo" "$(DEPDIR)/gscope-fscanner.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-fscanner.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 481,485 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-egrep.o -MD -MP -MF "$(DEPDIR)/gscope-egrep.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-egrep.o `test -f 'egrep.c' || echo '$(srcdir)/'`egrep.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-egrep.Tpo" "$(DEPDIR)/gscope-egrep.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-egrep.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 481,485 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-egrep.o -MD -MP -MF "$(DEPDIR)/gscope-egrep.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-egrep.o `test -f 'egrep.c' || echo '$(srcdir)/'`egrep.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-egrep.Tpo" "$(DEPDIR)/gscope-egrep.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-egrep.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 492,496 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-egrep.obj -MD -MP -MF "$(DEPDIR)/gscope-egrep.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-egrep.obj `if test -f 'egrep.c'; then $(CYGPATH_W) 'egrep.c'; else $(CYGPATH_W) '$(srcdir)/egrep.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-egrep.Tpo" "$(DEPDIR)/gscope-egrep.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-egrep.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 492,496 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-egrep.obj -MD -MP -MF "$(DEPDIR)/gscope-egrep.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-egrep.obj `if test -f 'egrep.c'; then $(CYGPATH_W) 'egrep.c'; else $(CYGPATH_W) '$(srcdir)/egrep.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-egrep.Tpo" "$(DEPDIR)/gscope-egrep.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-egrep.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 503,507 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-alloc.o -MD -MP -MF "$(DEPDIR)/gscope-alloc.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-alloc.o `test -f 'alloc.c' || echo '$(srcdir)/'`alloc.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-alloc.Tpo" "$(DEPDIR)/gscope-alloc.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-alloc.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 503,507 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-alloc.o -MD -MP -MF "$(DEPDIR)/gscope-alloc.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-alloc.o `test -f 'alloc.c' || echo '$(srcdir)/'`alloc.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-alloc.Tpo" "$(DEPDIR)/gscope-alloc.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-alloc.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 514,518 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-alloc.obj -MD -MP -MF "$(DEPDIR)/gscope-alloc.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-alloc.obj `if test -f 'alloc.c'; then $(CYGPATH_W) 'alloc.c'; else $(CYGPATH_W) '$(srcdir)/alloc.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-alloc.Tpo" "$(DEPDIR)/gscope-alloc.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-alloc.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 514,518 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-alloc.obj -MD -MP -MF "$(DEPDIR)/gscope-alloc.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-alloc.obj `if test -f 'alloc.c'; then $(CYGPATH_W) 'alloc.c'; else $(CYGPATH_W) '$(srcdir)/alloc.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-alloc.Tpo" "$(DEPDIR)/gscope-alloc.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-alloc.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 525,529 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-basename.o -MD -MP -MF "$(DEPDIR)/gscope-basename.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-basename.o `test -f 'basename.c' || echo '$(srcdir)/'`basename.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-basename.Tpo" "$(DEPDIR)/gscope-basename.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-basename.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 525,529 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-basename.o -MD -MP -MF "$(DEPDIR)/gscope-basename.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-basename.o `test -f 'basename.c' || echo '$(srcdir)/'`basename.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-basename.Tpo" "$(DEPDIR)/gscope-basename.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-basename.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 536,540 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-basename.obj -MD -MP -MF "$(DEPDIR)/gscope-basename.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-basename.obj `if test -f 'basename.c'; then $(CYGPATH_W) 'basename.c'; else $(CYGPATH_W) '$(srcdir)/basename.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-basename.Tpo" "$(DEPDIR)/gscope-basename.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-basename.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 536,540 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-basename.obj -MD -MP -MF "$(DEPDIR)/gscope-basename.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-basename.obj `if test -f 'basename.c'; then $(CYGPATH_W) 'basename.c'; else $(CYGPATH_W) '$(srcdir)/basename.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-basename.Tpo" "$(DEPDIR)/gscope-basename.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-basename.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 547,551 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-build.o -MD -MP -MF "$(DEPDIR)/gscope-build.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-build.o `test -f 'build.c' || echo '$(srcdir)/'`build.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-build.Tpo" "$(DEPDIR)/gscope-build.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-build.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 547,551 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-build.o -MD -MP -MF "$(DEPDIR)/gscope-build.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-build.o `test -f 'build.c' || echo '$(srcdir)/'`build.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-build.Tpo" "$(DEPDIR)/gscope-build.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-build.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 558,562 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-build.obj -MD -MP -MF "$(DEPDIR)/gscope-build.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-build.obj `if test -f 'build.c'; then $(CYGPATH_W) 'build.c'; else $(CYGPATH_W) '$(srcdir)/build.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-build.Tpo" "$(DEPDIR)/gscope-build.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-build.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 558,562 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-build.obj -MD -MP -MF "$(DEPDIR)/gscope-build.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-build.obj `if test -f 'build.c'; then $(CYGPATH_W) 'build.c'; else $(CYGPATH_W) '$(srcdir)/build.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-build.Tpo" "$(DEPDIR)/gscope-build.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-build.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 569,573 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-command.o -MD -MP -MF "$(DEPDIR)/gscope-command.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-command.o `test -f 'command.c' || echo '$(srcdir)/'`command.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-command.Tpo" "$(DEPDIR)/gscope-command.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-command.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 569,573 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-command.o -MD -MP -MF "$(DEPDIR)/gscope-command.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-command.o `test -f 'command.c' || echo '$(srcdir)/'`command.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-command.Tpo" "$(DEPDIR)/gscope-command.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-command.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 580,584 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-command.obj -MD -MP -MF "$(DEPDIR)/gscope-command.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-command.obj `if test -f 'command.c'; then $(CYGPATH_W) 'command.c'; else $(CYGPATH_W) '$(srcdir)/command.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-command.Tpo" "$(DEPDIR)/gscope-command.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-command.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 580,584 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-command.obj -MD -MP -MF "$(DEPDIR)/gscope-command.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-command.obj `if test -f 'command.c'; then $(CYGPATH_W) 'command.c'; else $(CYGPATH_W) '$(srcdir)/command.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-command.Tpo" "$(DEPDIR)/gscope-command.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-command.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 591,595 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-compath.o -MD -MP -MF "$(DEPDIR)/gscope-compath.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-compath.o `test -f 'compath.c' || echo '$(srcdir)/'`compath.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-compath.Tpo" "$(DEPDIR)/gscope-compath.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-compath.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 591,595 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-compath.o -MD -MP -MF "$(DEPDIR)/gscope-compath.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-compath.o `test -f 'compath.c' || echo '$(srcdir)/'`compath.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-compath.Tpo" "$(DEPDIR)/gscope-compath.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-compath.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 602,606 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-compath.obj -MD -MP -MF "$(DEPDIR)/gscope-compath.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-compath.obj `if test -f 'compath.c'; then $(CYGPATH_W) 'compath.c'; else $(CYGPATH_W) '$(srcdir)/compath.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-compath.Tpo" "$(DEPDIR)/gscope-compath.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-compath.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 602,606 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-compath.obj -MD -MP -MF "$(DEPDIR)/gscope-compath.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-compath.obj `if test -f 'compath.c'; then $(CYGPATH_W) 'compath.c'; else $(CYGPATH_W) '$(srcdir)/compath.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-compath.Tpo" "$(DEPDIR)/gscope-compath.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-compath.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 613,617 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-crossref.o -MD -MP -MF "$(DEPDIR)/gscope-crossref.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-crossref.o `test -f 'crossref.c' || echo '$(srcdir)/'`crossref.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-crossref.Tpo" "$(DEPDIR)/gscope-crossref.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-crossref.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 613,617 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-crossref.o -MD -MP -MF "$(DEPDIR)/gscope-crossref.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-crossref.o `test -f 'crossref.c' || echo '$(srcdir)/'`crossref.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-crossref.Tpo" "$(DEPDIR)/gscope-crossref.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-crossref.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 624,628 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-crossref.obj -MD -MP -MF "$(DEPDIR)/gscope-crossref.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-crossref.obj `if test -f 'crossref.c'; then $(CYGPATH_W) 'crossref.c'; else $(CYGPATH_W) '$(srcdir)/crossref.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-crossref.Tpo" "$(DEPDIR)/gscope-crossref.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-crossref.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 624,628 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-crossref.obj -MD -MP -MF "$(DEPDIR)/gscope-crossref.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-crossref.obj `if test -f 'crossref.c'; then $(CYGPATH_W) 'crossref.c'; else $(CYGPATH_W) '$(srcdir)/crossref.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-crossref.Tpo" "$(DEPDIR)/gscope-crossref.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-crossref.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 635,639 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-dir.o -MD -MP -MF "$(DEPDIR)/gscope-dir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-dir.o `test -f 'dir.c' || echo '$(srcdir)/'`dir.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-dir.Tpo" "$(DEPDIR)/gscope-dir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-dir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 635,639 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-dir.o -MD -MP -MF "$(DEPDIR)/gscope-dir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-dir.o `test -f 'dir.c' || echo '$(srcdir)/'`dir.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-dir.Tpo" "$(DEPDIR)/gscope-dir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-dir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 646,650 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-dir.obj -MD -MP -MF "$(DEPDIR)/gscope-dir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-dir.obj `if test -f 'dir.c'; then $(CYGPATH_W) 'dir.c'; else $(CYGPATH_W) '$(srcdir)/dir.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-dir.Tpo" "$(DEPDIR)/gscope-dir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-dir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 646,650 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-dir.obj -MD -MP -MF "$(DEPDIR)/gscope-dir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-dir.obj `if test -f 'dir.c'; then $(CYGPATH_W) 'dir.c'; else $(CYGPATH_W) '$(srcdir)/dir.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-dir.Tpo" "$(DEPDIR)/gscope-dir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-dir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 657,661 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-display.o -MD -MP -MF "$(DEPDIR)/gscope-display.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-display.o `test -f 'display.c' || echo '$(srcdir)/'`display.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-display.Tpo" "$(DEPDIR)/gscope-display.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-display.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 657,661 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-display.o -MD -MP -MF "$(DEPDIR)/gscope-display.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-display.o `test -f 'display.c' || echo '$(srcdir)/'`display.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-display.Tpo" "$(DEPDIR)/gscope-display.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-display.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 668,672 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-display.obj -MD -MP -MF "$(DEPDIR)/gscope-display.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-display.obj `if test -f 'display.c'; then $(CYGPATH_W) 'display.c'; else $(CYGPATH_W) '$(srcdir)/display.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-display.Tpo" "$(DEPDIR)/gscope-display.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-display.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 668,672 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-display.obj -MD -MP -MF "$(DEPDIR)/gscope-display.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-display.obj `if test -f 'display.c'; then $(CYGPATH_W) 'display.c'; else $(CYGPATH_W) '$(srcdir)/display.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-display.Tpo" "$(DEPDIR)/gscope-display.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-display.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 679,683 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-edit.o -MD -MP -MF "$(DEPDIR)/gscope-edit.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-edit.o `test -f 'edit.c' || echo '$(srcdir)/'`edit.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-edit.Tpo" "$(DEPDIR)/gscope-edit.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-edit.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 679,683 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-edit.o -MD -MP -MF "$(DEPDIR)/gscope-edit.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-edit.o `test -f 'edit.c' || echo '$(srcdir)/'`edit.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-edit.Tpo" "$(DEPDIR)/gscope-edit.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-edit.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 690,694 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-edit.obj -MD -MP -MF "$(DEPDIR)/gscope-edit.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-edit.obj `if test -f 'edit.c'; then $(CYGPATH_W) 'edit.c'; else $(CYGPATH_W) '$(srcdir)/edit.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-edit.Tpo" "$(DEPDIR)/gscope-edit.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-edit.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 690,694 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-edit.obj -MD -MP -MF "$(DEPDIR)/gscope-edit.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-edit.obj `if test -f 'edit.c'; then $(CYGPATH_W) 'edit.c'; else $(CYGPATH_W) '$(srcdir)/edit.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-edit.Tpo" "$(DEPDIR)/gscope-edit.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-edit.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 701,705 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-exec.o -MD -MP -MF "$(DEPDIR)/gscope-exec.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-exec.o `test -f 'exec.c' || echo '$(srcdir)/'`exec.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-exec.Tpo" "$(DEPDIR)/gscope-exec.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-exec.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 701,705 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-exec.o -MD -MP -MF "$(DEPDIR)/gscope-exec.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-exec.o `test -f 'exec.c' || echo '$(srcdir)/'`exec.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-exec.Tpo" "$(DEPDIR)/gscope-exec.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-exec.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 712,716 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-exec.obj -MD -MP -MF "$(DEPDIR)/gscope-exec.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-exec.obj `if test -f 'exec.c'; then $(CYGPATH_W) 'exec.c'; else $(CYGPATH_W) '$(srcdir)/exec.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-exec.Tpo" "$(DEPDIR)/gscope-exec.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-exec.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 712,716 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-exec.obj -MD -MP -MF "$(DEPDIR)/gscope-exec.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-exec.obj `if test -f 'exec.c'; then $(CYGPATH_W) 'exec.c'; else $(CYGPATH_W) '$(srcdir)/exec.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-exec.Tpo" "$(DEPDIR)/gscope-exec.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-exec.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 723,727 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-find.o -MD -MP -MF "$(DEPDIR)/gscope-find.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-find.o `test -f 'find.c' || echo '$(srcdir)/'`find.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-find.Tpo" "$(DEPDIR)/gscope-find.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-find.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 723,727 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-find.o -MD -MP -MF "$(DEPDIR)/gscope-find.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-find.o `test -f 'find.c' || echo '$(srcdir)/'`find.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-find.Tpo" "$(DEPDIR)/gscope-find.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-find.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 734,738 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-find.obj -MD -MP -MF "$(DEPDIR)/gscope-find.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-find.obj `if test -f 'find.c'; then $(CYGPATH_W) 'find.c'; else $(CYGPATH_W) '$(srcdir)/find.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-find.Tpo" "$(DEPDIR)/gscope-find.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-find.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 734,738 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-find.obj -MD -MP -MF "$(DEPDIR)/gscope-find.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-find.obj `if test -f 'find.c'; then $(CYGPATH_W) 'find.c'; else $(CYGPATH_W) '$(srcdir)/find.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-find.Tpo" "$(DEPDIR)/gscope-find.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-find.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 745,749 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-help.o -MD -MP -MF "$(DEPDIR)/gscope-help.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-help.o `test -f 'help.c' || echo '$(srcdir)/'`help.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-help.Tpo" "$(DEPDIR)/gscope-help.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-help.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 745,749 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-help.o -MD -MP -MF "$(DEPDIR)/gscope-help.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-help.o `test -f 'help.c' || echo '$(srcdir)/'`help.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-help.Tpo" "$(DEPDIR)/gscope-help.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-help.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 756,760 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-help.obj -MD -MP -MF "$(DEPDIR)/gscope-help.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-help.obj `if test -f 'help.c'; then $(CYGPATH_W) 'help.c'; else $(CYGPATH_W) '$(srcdir)/help.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-help.Tpo" "$(DEPDIR)/gscope-help.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-help.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 756,760 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-help.obj -MD -MP -MF "$(DEPDIR)/gscope-help.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-help.obj `if test -f 'help.c'; then $(CYGPATH_W) 'help.c'; else $(CYGPATH_W) '$(srcdir)/help.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-help.Tpo" "$(DEPDIR)/gscope-help.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-help.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 767,771 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-history.o -MD -MP -MF "$(DEPDIR)/gscope-history.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-history.o `test -f 'history.c' || echo '$(srcdir)/'`history.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-history.Tpo" "$(DEPDIR)/gscope-history.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-history.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 767,771 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-history.o -MD -MP -MF "$(DEPDIR)/gscope-history.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-history.o `test -f 'history.c' || echo '$(srcdir)/'`history.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-history.Tpo" "$(DEPDIR)/gscope-history.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-history.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 778,782 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-history.obj -MD -MP -MF "$(DEPDIR)/gscope-history.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-history.obj `if test -f 'history.c'; then $(CYGPATH_W) 'history.c'; else $(CYGPATH_W) '$(srcdir)/history.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-history.Tpo" "$(DEPDIR)/gscope-history.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-history.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 778,782 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-history.obj -MD -MP -MF "$(DEPDIR)/gscope-history.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-history.obj `if test -f 'history.c'; then $(CYGPATH_W) 'history.c'; else $(CYGPATH_W) '$(srcdir)/history.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-history.Tpo" "$(DEPDIR)/gscope-history.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-history.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 789,793 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-input.o -MD -MP -MF "$(DEPDIR)/gscope-input.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-input.o `test -f 'input.c' || echo '$(srcdir)/'`input.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-input.Tpo" "$(DEPDIR)/gscope-input.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-input.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 789,793 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-input.o -MD -MP -MF "$(DEPDIR)/gscope-input.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-input.o `test -f 'input.c' || echo '$(srcdir)/'`input.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-input.Tpo" "$(DEPDIR)/gscope-input.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-input.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 800,804 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-input.obj -MD -MP -MF "$(DEPDIR)/gscope-input.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-input.obj `if test -f 'input.c'; then $(CYGPATH_W) 'input.c'; else $(CYGPATH_W) '$(srcdir)/input.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-input.Tpo" "$(DEPDIR)/gscope-input.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-input.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 800,804 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-input.obj -MD -MP -MF "$(DEPDIR)/gscope-input.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-input.obj `if test -f 'input.c'; then $(CYGPATH_W) 'input.c'; else $(CYGPATH_W) '$(srcdir)/input.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-input.Tpo" "$(DEPDIR)/gscope-input.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-input.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 811,815 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-invlib.o -MD -MP -MF "$(DEPDIR)/gscope-invlib.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-invlib.o `test -f 'invlib.c' || echo '$(srcdir)/'`invlib.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-invlib.Tpo" "$(DEPDIR)/gscope-invlib.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-invlib.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 811,815 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-invlib.o -MD -MP -MF "$(DEPDIR)/gscope-invlib.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-invlib.o `test -f 'invlib.c' || echo '$(srcdir)/'`invlib.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-invlib.Tpo" "$(DEPDIR)/gscope-invlib.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-invlib.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 822,826 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-invlib.obj -MD -MP -MF "$(DEPDIR)/gscope-invlib.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-invlib.obj `if test -f 'invlib.c'; then $(CYGPATH_W) 'invlib.c'; else $(CYGPATH_W) '$(srcdir)/invlib.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-invlib.Tpo" "$(DEPDIR)/gscope-invlib.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-invlib.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 822,826 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-invlib.obj -MD -MP -MF "$(DEPDIR)/gscope-invlib.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-invlib.obj `if test -f 'invlib.c'; then $(CYGPATH_W) 'invlib.c'; else $(CYGPATH_W) '$(srcdir)/invlib.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-invlib.Tpo" "$(DEPDIR)/gscope-invlib.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-invlib.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 833,837 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-logdir.o -MD -MP -MF "$(DEPDIR)/gscope-logdir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-logdir.o `test -f 'logdir.c' || echo '$(srcdir)/'`logdir.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-logdir.Tpo" "$(DEPDIR)/gscope-logdir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-logdir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 833,837 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-logdir.o -MD -MP -MF "$(DEPDIR)/gscope-logdir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-logdir.o `test -f 'logdir.c' || echo '$(srcdir)/'`logdir.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-logdir.Tpo" "$(DEPDIR)/gscope-logdir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-logdir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 844,848 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-logdir.obj -MD -MP -MF "$(DEPDIR)/gscope-logdir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-logdir.obj `if test -f 'logdir.c'; then $(CYGPATH_W) 'logdir.c'; else $(CYGPATH_W) '$(srcdir)/logdir.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-logdir.Tpo" "$(DEPDIR)/gscope-logdir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-logdir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 844,848 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-logdir.obj -MD -MP -MF "$(DEPDIR)/gscope-logdir.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-logdir.obj `if test -f 'logdir.c'; then $(CYGPATH_W) 'logdir.c'; else $(CYGPATH_W) '$(srcdir)/logdir.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-logdir.Tpo" "$(DEPDIR)/gscope-logdir.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-logdir.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 855,859 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-lookup.o -MD -MP -MF "$(DEPDIR)/gscope-lookup.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-lookup.o `test -f 'lookup.c' || echo '$(srcdir)/'`lookup.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-lookup.Tpo" "$(DEPDIR)/gscope-lookup.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-lookup.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 855,859 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-lookup.o -MD -MP -MF "$(DEPDIR)/gscope-lookup.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-lookup.o `test -f 'lookup.c' || echo '$(srcdir)/'`lookup.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-lookup.Tpo" "$(DEPDIR)/gscope-lookup.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-lookup.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 866,870 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-lookup.obj -MD -MP -MF "$(DEPDIR)/gscope-lookup.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-lookup.obj `if test -f 'lookup.c'; then $(CYGPATH_W) 'lookup.c'; else $(CYGPATH_W) '$(srcdir)/lookup.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-lookup.Tpo" "$(DEPDIR)/gscope-lookup.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-lookup.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 866,870 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-lookup.obj -MD -MP -MF "$(DEPDIR)/gscope-lookup.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-lookup.obj `if test -f 'lookup.c'; then $(CYGPATH_W) 'lookup.c'; else $(CYGPATH_W) '$(srcdir)/lookup.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-lookup.Tpo" "$(DEPDIR)/gscope-lookup.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-lookup.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 877,881 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-main.o -MD -MP -MF "$(DEPDIR)/gscope-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-main.Tpo" "$(DEPDIR)/gscope-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 877,881 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-main.o -MD -MP -MF "$(DEPDIR)/gscope-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-main.Tpo" "$(DEPDIR)/gscope-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 888,892 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-main.obj -MD -MP -MF "$(DEPDIR)/gscope-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-main.Tpo" "$(DEPDIR)/gscope-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 888,892 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-main.obj -MD -MP -MF "$(DEPDIR)/gscope-main.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-main.Tpo" "$(DEPDIR)/gscope-main.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-main.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 899,903 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mouse.o -MD -MP -MF "$(DEPDIR)/gscope-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mouse.o `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-mouse.Tpo" "$(DEPDIR)/gscope-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 899,903 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mouse.o -MD -MP -MF "$(DEPDIR)/gscope-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mouse.o `test -f 'mouse.c' || echo '$(srcdir)/'`mouse.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-mouse.Tpo" "$(DEPDIR)/gscope-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 910,914 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mouse.obj -MD -MP -MF "$(DEPDIR)/gscope-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mouse.obj `if test -f 'mouse.c'; then $(CYGPATH_W) 'mouse.c'; else $(CYGPATH_W) '$(srcdir)/mouse.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-mouse.Tpo" "$(DEPDIR)/gscope-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 910,914 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mouse.obj -MD -MP -MF "$(DEPDIR)/gscope-mouse.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mouse.obj `if test -f 'mouse.c'; then $(CYGPATH_W) 'mouse.c'; else $(CYGPATH_W) '$(srcdir)/mouse.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-mouse.Tpo" "$(DEPDIR)/gscope-mouse.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mouse.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 921,925 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mygetenv.o -MD -MP -MF "$(DEPDIR)/gscope-mygetenv.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mygetenv.o `test -f 'mygetenv.c' || echo '$(srcdir)/'`mygetenv.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-mygetenv.Tpo" "$(DEPDIR)/gscope-mygetenv.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mygetenv.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 921,925 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mygetenv.o -MD -MP -MF "$(DEPDIR)/gscope-mygetenv.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mygetenv.o `test -f 'mygetenv.c' || echo '$(srcdir)/'`mygetenv.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-mygetenv.Tpo" "$(DEPDIR)/gscope-mygetenv.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mygetenv.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 932,936 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mygetenv.obj -MD -MP -MF "$(DEPDIR)/gscope-mygetenv.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mygetenv.obj `if test -f 'mygetenv.c'; then $(CYGPATH_W) 'mygetenv.c'; else $(CYGPATH_W) '$(srcdir)/mygetenv.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-mygetenv.Tpo" "$(DEPDIR)/gscope-mygetenv.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mygetenv.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 932,936 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mygetenv.obj -MD -MP -MF "$(DEPDIR)/gscope-mygetenv.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mygetenv.obj `if test -f 'mygetenv.c'; then $(CYGPATH_W) 'mygetenv.c'; else $(CYGPATH_W) '$(srcdir)/mygetenv.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-mygetenv.Tpo" "$(DEPDIR)/gscope-mygetenv.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mygetenv.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 943,947 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mypopen.o -MD -MP -MF "$(DEPDIR)/gscope-mypopen.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mypopen.o `test -f 'mypopen.c' || echo '$(srcdir)/'`mypopen.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-mypopen.Tpo" "$(DEPDIR)/gscope-mypopen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mypopen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 943,947 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mypopen.o -MD -MP -MF "$(DEPDIR)/gscope-mypopen.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mypopen.o `test -f 'mypopen.c' || echo '$(srcdir)/'`mypopen.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-mypopen.Tpo" "$(DEPDIR)/gscope-mypopen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mypopen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 954,958 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mypopen.obj -MD -MP -MF "$(DEPDIR)/gscope-mypopen.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mypopen.obj `if test -f 'mypopen.c'; then $(CYGPATH_W) 'mypopen.c'; else $(CYGPATH_W) '$(srcdir)/mypopen.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-mypopen.Tpo" "$(DEPDIR)/gscope-mypopen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mypopen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 954,958 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-mypopen.obj -MD -MP -MF "$(DEPDIR)/gscope-mypopen.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-mypopen.obj `if test -f 'mypopen.c'; then $(CYGPATH_W) 'mypopen.c'; else $(CYGPATH_W) '$(srcdir)/mypopen.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-mypopen.Tpo" "$(DEPDIR)/gscope-mypopen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-mypopen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 965,969 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-vpaccess.o -MD -MP -MF "$(DEPDIR)/gscope-vpaccess.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-vpaccess.o `test -f 'vpaccess.c' || echo '$(srcdir)/'`vpaccess.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-vpaccess.Tpo" "$(DEPDIR)/gscope-vpaccess.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-vpaccess.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 965,969 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-vpaccess.o -MD -MP -MF "$(DEPDIR)/gscope-vpaccess.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-vpaccess.o `test -f 'vpaccess.c' || echo '$(srcdir)/'`vpaccess.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-vpaccess.Tpo" "$(DEPDIR)/gscope-vpaccess.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-vpaccess.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 976,980 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-vpaccess.obj -MD -MP -MF "$(DEPDIR)/gscope-vpaccess.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-vpaccess.obj `if test -f 'vpaccess.c'; then $(CYGPATH_W) 'vpaccess.c'; else $(CYGPATH_W) '$(srcdir)/vpaccess.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-vpaccess.Tpo" "$(DEPDIR)/gscope-vpaccess.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-vpaccess.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 976,980 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-vpaccess.obj -MD -MP -MF "$(DEPDIR)/gscope-vpaccess.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-vpaccess.obj `if test -f 'vpaccess.c'; then $(CYGPATH_W) 'vpaccess.c'; else $(CYGPATH_W) '$(srcdir)/vpaccess.c'; fi`; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-vpaccess.Tpo" "$(DEPDIR)/gscope-vpaccess.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-vpaccess.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 987,991 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-vpfopen.o -MD -MP -MF "$(DEPDIR)/gscope-vpfopen.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-vpfopen.o `test -f 'vpfopen.c' || echo '$(srcdir)/'`vpfopen.c; \ ! @am__fastdepCC_TRUE@ then mv "$(DEPDIR)/gscope-vpfopen.Tpo" "$(DEPDIR)/gscope-vpfopen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-vpfopen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi --- 987,991 ---- @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS) -MT gscope-vpfopen.o -MD -MP -MF "$(DEPDIR)/gscope-vpfopen.Tpo" \ @am__fastdepCC_TRUE@ -c -o gscope-vpfopen.o `test -f 'vpfopen.c' || echo '$(srcdir)/'`vpfopen.c; \ ! @am__fastdepCC_TRUE@ then mv -f "$(DEPDIR)/gscope-vpfopen.Tpo" "$(DEPDIR)/gscope-vpfopen.Po"; \ @am__fastdepCC_TRUE@ else rm -f "$(DEPDIR)/gscope-vpfopen.Tpo"; exit 1; \ @am__fastdepCC_TRUE@ fi *************** *** 998,1002 **** @am__fastdepCC_TRUE@ if $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(gscope_CFLAGS) $(CFLAGS... [truncated message content] |
From: Hans-Bernhard B. <br...@us...> - 2004-02-12 18:19:14
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30878 Modified Files: ChangeLog Makefile.in aclocal.m4 config.h.in configure Log Message: Various cleanups and an autotools refresh. Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.131 retrieving revision 1.132 diff -C2 -r1.131 -r1.132 *** ChangeLog 5 Feb 2004 11:46:18 -0000 1.131 --- ChangeLog 12 Feb 2004 18:14:04 -0000 1.132 *************** *** 1,2 **** --- 1,44 ---- + 2004-02-12 Hans-Bernhard Broeker <br...@ph...> + + Fix SF bug #892731: Ctrl-C interruption of search works only once + per session. + + * configure.in (sigsetjmp): Added test for presence of this + function. + + * src/display.c (sigsetjmp) [!HAVE_SIGSETJMP]: Provide fallback + definitions for functions sigsetjmp, siglongjmp and type + sigjmp_buf. + (search): Move call to signal() above that to setjmp(). Call + sigsetjmp() instead of setjmp(). + + * configure, config.h.in: Regenerated. + + * Makefile.in, src/Makefile.in, contrib/Makefile.in, + doc/Makefile.in, aclocal.m4: Rebuilt by automake-1.7.9. + + + 2004-02-11 Hans-Bernhard Broeker <br...@ph...> + + * configure.in (signal.h) Check added. + (sighandler_t): Check for this type. Should be defined on POSIX + platforms, but is treated as a GNU extension sometimes. + + * src/global.h (sighandler_t) [!HAVE_SIGHANDLER_T]: Provide + fallback definition of function pointer typedef for signal + handlers if <signal.h> doesn't provide it. Simplifies cscope's + work when working on its own source code --- function pointers + confuse it quite badly, so it's best to minimize their visibility. + + * src/input.c (mygetch): Type of local variable savesig written + using sighandler_t. + + * src/display.c (search): Type of local variable savesig written + using sighandler_t. + + * src/exec.c (oldsigtstp): Renamed, from oldsigstp. + (oldsigtstp,oldsighup,oldsigquit): Changed from function pointer + type to new typedef name sighandler_t. + 2004-02-05 Hans-Bernhard Broeker <br...@ph...> Index: Makefile.in =================================================================== RCS file: /cvsroot/cscope/cscope/Makefile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile.in 23 Jan 2003 17:30:38 -0000 1.6 --- Makefile.in 12 Feb 2004 18:14:04 -0000 1.7 *************** *** 1,6 **** ! # Makefile.in generated by automake 1.7.2 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation --- 1,6 ---- ! # Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation *************** *** 100,103 **** --- 100,104 ---- am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__include = @am__include@ + am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ *************** *** 146,153 **** installdirs-recursive install-recursive uninstall-recursive \ check-recursive installcheck-recursive ! DIST_COMMON = README AUTHORS COPYING ChangeLog INSTALL Makefile.am \ ! Makefile.in NEWS TODO aclocal.m4 compile config.guess \ ! config.h.in config.sub configure configure.in depcomp \ ! install-sh missing mkinstalldirs ylwrap DIST_SUBDIRS = $(SUBDIRS) all: config.h --- 147,154 ---- installdirs-recursive install-recursive uninstall-recursive \ check-recursive installcheck-recursive ! DIST_COMMON = README $(srcdir)/Makefile.in $(srcdir)/configure AUTHORS \ ! COPYING ChangeLog INSTALL Makefile.am NEWS TODO aclocal.m4 \ ! compile config.guess config.h.in config.sub configure \ ! configure.in depcomp install-sh missing mkinstalldirs ylwrap DIST_SUBDIRS = $(SUBDIRS) all: config.h *************** *** 270,276 **** tags=; \ here=`pwd`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ ! test -f $$subdir/TAGS && tags="$$tags -i $$here/$$subdir/TAGS"; \ fi; \ done; \ --- 271,283 ---- tags=; \ here=`pwd`; \ + if (etags --etags-include --version) >/dev/null 2>&1; then \ + include_option=--etags-include; \ + else \ + include_option=--include; \ + fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ ! test -f $$subdir/TAGS && \ ! tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ *************** *** 383,392 **** GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - chmod -R a-w $(distdir); chmod a+w $(distdir) ! mkdir $(distdir)/=build ! mkdir $(distdir)/=inst chmod a-w $(distdir) ! dc_install_base=`$(am__cd) $(distdir)/=inst && pwd` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ ! && cd $(distdir)/=build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ --- 390,399 ---- GZIP=$(GZIP_ENV) gunzip -c $(distdir).tar.gz | $(AMTAR) xf - chmod -R a-w $(distdir); chmod a+w $(distdir) ! mkdir $(distdir)/_build ! mkdir $(distdir)/_inst chmod a-w $(distdir) ! dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ ! && cd $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ *************** *** 415,419 **** sed 'h;s/./=/g;p;x;p;x' distuninstallcheck: ! cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ --- 422,426 ---- sed 'h;s/./=/g;p;x;p;x' distuninstallcheck: ! @cd $(distuninstallcheck_dir) \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ *************** *** 424,432 **** exit 1; } >&2 distcleancheck: distclean ! if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi ! test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ --- 431,439 ---- exit 1; } >&2 distcleancheck: distclean ! @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi ! @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ *************** *** 449,453 **** install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ! INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install --- 456,460 ---- install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ! install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install *************** *** 457,461 **** distclean-generic: ! -rm -f Makefile $(CONFIG_CLEAN_FILES) maintainer-clean-generic: --- 464,468 ---- distclean-generic: ! -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: *************** *** 468,471 **** --- 475,479 ---- distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) + -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr distclean-tags *************** *** 490,494 **** maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) ! -rm -rf autom4te.cache maintainer-clean-am: distclean-am maintainer-clean-generic --- 498,503 ---- maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) ! -rm -rf $(top_srcdir)/autom4te.cache ! -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic Index: aclocal.m4 =================================================================== RCS file: /cvsroot/cscope/cscope/aclocal.m4,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** aclocal.m4 23 Jan 2003 17:30:40 -0000 1.4 --- aclocal.m4 12 Feb 2004 18:14:04 -0000 1.5 *************** *** 1,3 **** ! # generated automatically by aclocal 1.7.2 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 --- 1,3 ---- ! # generated automatically by aclocal 1.7.9 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002 *************** *** 17,21 **** # your package does certain things. But this isn't really a big deal. ! # Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. --- 17,21 ---- # your package does certain things. But this isn't really a big deal. ! # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. *************** *** 35,46 **** # 02111-1307, USA. ! # serial 8 ! ! # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be ! # written in clear, in which case automake, when reading aclocal.m4, ! # will think it sees a *use*, and therefore will trigger all it's ! # C support machinery. Also note that it means that autoscan, seeing ! # CC etc. in the Makefile, will ask for an AC_PROG_CC use... ! AC_PREREQ([2.54]) --- 35,39 ---- # 02111-1307, USA. ! # serial 10 AC_PREREQ([2.54]) *************** *** 87,92 **** AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl ! AC_SUBST([PACKAGE], [AC_PACKAGE_TARNAME])dnl ! AC_SUBST([VERSION], [AC_PACKAGE_VERSION])])dnl _AM_IF_OPTION([no-define],, --- 80,85 ---- AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl ! AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl ! AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, *************** *** 109,112 **** --- 102,106 ---- AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl + AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([no-dependencies],, *************** *** 131,135 **** # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], ! [_am_stamp_count=`expr ${_am_stamp_count-0} + 1` echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) --- 125,138 ---- # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], ! [# Compute $1's index in $config_headers. ! _am_stamp_count=1 ! for _am_header in $config_headers :; do ! case $_am_header in ! $1 | $1:* ) ! break ;; ! * ) ! _am_stamp_count=`expr $_am_stamp_count + 1` ;; ! esac ! done echo "timestamp for $1" >`AS_DIRNAME([$1])`/stamp-h[]$_am_stamp_count]) *************** *** 161,165 **** # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.7.2])]) # Helper functions for option handling. -*- Autoconf -*- --- 164,168 ---- # This function is AC_REQUIREd by AC_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], ! [AM_AUTOMAKE_VERSION([1.7.9])]) # Helper functions for option handling. -*- Autoconf -*- *************** *** 447,453 **** AC_SUBST([INSTALL_STRIP_PROGRAM])]) ! # serial 4 -*- Autoconf -*- ! # Copyright 1999, 2000, 2001 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify --- 450,489 ---- AC_SUBST([INSTALL_STRIP_PROGRAM])]) ! # -*- Autoconf -*- ! # Copyright (C) 2003 Free Software Foundation, Inc. ! # This program is free software; you can redistribute it and/or modify ! # it under the terms of the GNU General Public License as published by ! # the Free Software Foundation; either version 2, or (at your option) ! # any later version. ! ! # This program is distributed in the hope that it will be useful, ! # but WITHOUT ANY WARRANTY; without even the implied warranty of ! # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ! # GNU General Public License for more details. ! ! # You should have received a copy of the GNU General Public License ! # along with this program; if not, write to the Free Software ! # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA ! # 02111-1307, USA. ! ! # serial 1 ! ! # Check whether the underlying file-system supports filenames ! # with a leading dot. For instance MS-DOS doesn't. ! AC_DEFUN([AM_SET_LEADING_DOT], ! [rm -rf .tst 2>/dev/null ! mkdir .tst 2>/dev/null ! if test -d .tst; then ! am__leading_dot=. ! else ! am__leading_dot=_ ! fi ! rmdir .tst 2>/dev/null ! AC_SUBST([am__leading_dot])]) ! ! # serial 5 -*- Autoconf -*- ! ! # Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify *************** *** 510,513 **** --- 546,556 ---- cp "$am_depcomp" conftest.dir cd conftest.dir + # We will build objects and dependencies in a subdirectory because + # it helps to detect inapplicable dependency modes. For instance + # both Tru64's cc and ICC support -MD to output dependencies as a + # side effect of compilation, but ICC will put the dependencies in + # the current directory while Tru64 will put them in the object + # directory. + mkdir sub am_cv_$1_dependencies_compiler_type=none *************** *** 516,525 **** fi for depmode in $am_compiler_list; do # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. ! echo '#include "conftest.h"' > conftest.c ! echo 'int i;' > conftest.h ! echo "${am__include} ${am__quote}conftest.Po${am__quote}" > confmf case $depmode in --- 559,575 ---- fi for depmode in $am_compiler_list; do + # Setup a source with many dependencies, because some compilers + # like to wrap large dependency lists on column 80 (with \), and + # we should not choose a depcomp mode which is confused by this. + # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. ! : > sub/conftest.c ! for i in 1 2 3 4 5 6; do ! echo '#include "conftst'$i'.h"' >> sub/conftest.c ! : > sub/conftst$i.h ! done ! echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf case $depmode in *************** *** 539,549 **** # handle `-M -o', and we need to detect this. if depmode=$depmode \ ! source=conftest.c object=conftest.o \ ! depfile=conftest.Po tmpdepfile=conftest.TPo \ ! $SHELL ./depcomp $depcc -c -o conftest.o conftest.c >/dev/null 2>&1 && ! grep conftest.h conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then ! am_cv_$1_dependencies_compiler_type=$depmode ! break fi done --- 589,606 ---- # handle `-M -o', and we need to detect this. if depmode=$depmode \ ! source=sub/conftest.c object=sub/conftest.${OBJEXT-o} \ ! depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ ! $SHELL ./depcomp $depcc -c -o sub/conftest.${OBJEXT-o} sub/conftest.c \ ! >/dev/null 2>conftest.err && ! grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && ! grep sub/conftest.${OBJEXT-o} sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then ! # icc doesn't choke on unknown options, it will just issue warnings ! # (even with -Werror). So we grep stderr for any message ! # that says an option was ignored. ! if grep 'ignoring option' conftest.err >/dev/null 2>&1; then :; else ! am_cv_$1_dependencies_compiler_type=$depmode ! break ! fi fi done *************** *** 567,580 **** # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], ! [rm -f .deps 2>/dev/null ! mkdir .deps 2>/dev/null ! if test -d .deps; then ! DEPDIR=.deps ! else ! # MS-DOS does not allow filenames that begin with a dot. ! DEPDIR=_deps ! fi ! rmdir .deps 2>/dev/null ! AC_SUBST([DEPDIR]) ]) --- 624,629 ---- # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], ! [AC_REQUIRE([AM_SET_LEADING_DOT])dnl ! AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) *************** *** 680,684 **** # Check to see how 'make' treats includes. -*- Autoconf -*- ! # Copyright (C) 2001, 2002 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify --- 729,733 ---- # Check to see how 'make' treats includes. -*- Autoconf -*- ! # Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. # This program is free software; you can redistribute it and/or modify *************** *** 705,710 **** [am_make=${MAKE-make} cat > confinc << 'END' ! doit: @echo done END # If we don't find an include directive, just comment out the code. --- 754,760 ---- [am_make=${MAKE-make} cat > confinc << 'END' ! am__doit: @echo done + .PHONY: am__doit END # If we don't find an include directive, just comment out the code. *************** *** 734,740 **** fi fi ! AC_SUBST(am__include) ! AC_SUBST(am__quote) ! AC_MSG_RESULT($_am_result) rm -f confinc confmf ]) --- 784,790 ---- fi fi ! AC_SUBST([am__include]) ! AC_SUBST([am__quote]) ! AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) Index: config.h.in =================================================================== RCS file: /cvsroot/cscope/cscope/config.h.in,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** config.h.in 12 Jun 2003 17:11:37 -0000 1.15 --- config.h.in 12 Feb 2004 18:14:04 -0000 1.16 *************** *** 54,57 **** --- 54,63 ---- #undef HAVE_SETMODE + /* Define to 1 if you have the <signal.h> header file. */ + #undef HAVE_SIGNAL_H + + /* Define if we have sigsetjmp(). */ + #undef HAVE_SIGSETJMP + /* Define to 1 if you have the `snprintf' function. */ #undef HAVE_SNPRINTF Index: configure =================================================================== RCS file: /cvsroot/cscope/cscope/configure,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** configure 14 Aug 2003 14:34:16 -0000 1.22 --- configure 12 Feb 2004 18:14:04 -0000 1.23 *************** *** 1,8 **** #! /bin/sh # Guess values for system-dependent variables and create Makefiles. ! # Generated by GNU Autoconf 2.57. # ! # Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002 ! # Free Software Foundation, Inc. # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. --- 1,7 ---- #! /bin/sh [...3684 lines suppressed...] sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } *************** *** 7037,7044 **** as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ! X"$as_dir" : 'X\(//\)[^/]' \| \ ! X"$as_dir" : 'X\(//\)$' \| \ ! X"$as_dir" : 'X\(/\)' \| \ ! . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } --- 7605,7612 ---- as_dir=`(dirname "$as_dir") 2>/dev/null || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ ! X"$as_dir" : 'X\(//\)[^/]' \| \ ! X"$as_dir" : 'X\(//\)$' \| \ ! X"$as_dir" : 'X\(/\)' \| \ ! . : '\(.\)' 2>/dev/null || echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; } |
From: Hans-Bernhard B. <br...@us...> - 2004-02-12 18:19:08
|
Update of /cvsroot/cscope/cscope/doc In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30878/doc Modified Files: Makefile.in Log Message: Various cleanups and an autotools refresh. Index: Makefile.in =================================================================== RCS file: /cvsroot/cscope/cscope/doc/Makefile.in,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** Makefile.in 23 Jan 2003 17:30:44 -0000 1.5 --- Makefile.in 12 Feb 2004 18:14:05 -0000 1.6 *************** *** 1,6 **** ! # Makefile.in generated by automake 1.7.2 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation --- 1,6 ---- ! # Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation *************** *** 100,103 **** --- 100,104 ---- am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__include = @am__include@ + am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ *************** *** 134,137 **** --- 135,139 ---- EXTRA_DIST = $(man_MANS) subdir = doc + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h *************** *** 141,145 **** NROFF = nroff MANS = $(man_MANS) ! DIST_COMMON = Makefile.am Makefile.in all: all-am --- 143,147 ---- NROFF = nroff MANS = $(man_MANS) ! DIST_COMMON = $(srcdir)/Makefile.in Makefile.am all: all-am *************** *** 242,246 **** installdirs: $(mkinstalldirs) $(DESTDIR)$(man1dir) - install: install-am install-exec: install-exec-am --- 244,247 ---- *************** *** 254,258 **** install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ! INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install --- 255,259 ---- install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ! install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install *************** *** 262,266 **** distclean-generic: ! -rm -f Makefile $(CONFIG_CLEAN_FILES) maintainer-clean-generic: --- 263,267 ---- distclean-generic: ! -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: *************** *** 272,276 **** distclean: distclean-am ! distclean-am: clean-am distclean-generic --- 273,277 ---- distclean: distclean-am ! -rm -f Makefile distclean-am: clean-am distclean-generic *************** *** 294,298 **** maintainer-clean: maintainer-clean-am ! maintainer-clean-am: distclean-am maintainer-clean-generic --- 295,299 ---- maintainer-clean: maintainer-clean-am ! -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic |
From: Hans-Bernhard B. <br...@us...> - 2004-02-12 18:19:08
|
Update of /cvsroot/cscope/cscope/contrib In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30878/contrib Modified Files: Makefile.in Log Message: Various cleanups and an autotools refresh. Index: Makefile.in =================================================================== RCS file: /cvsroot/cscope/cscope/contrib/Makefile.in,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** Makefile.in 23 Jan 2003 17:30:44 -0000 1.6 --- Makefile.in 12 Feb 2004 18:14:05 -0000 1.7 *************** *** 1,6 **** ! # Makefile.in generated by automake 1.7.2 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation --- 1,6 ---- ! # Makefile.in generated by automake 1.7.9 from Makefile.am. # @configure_input@ ! # Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 # Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation *************** *** 100,103 **** --- 100,104 ---- am__fastdepCC_TRUE = @am__fastdepCC_TRUE@ am__include = @am__include@ + am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ bindir = @bindir@ *************** *** 135,138 **** --- 136,140 ---- EXTRA_DIST = ocs README xcscope webcscope subdir = contrib + ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 mkinstalldirs = $(SHELL) $(top_srcdir)/mkinstalldirs CONFIG_HEADER = $(top_builddir)/config.h *************** *** 141,145 **** DIST_SOURCES = ! DIST_COMMON = README Makefile.am Makefile.in all: all-am --- 143,147 ---- DIST_SOURCES = ! DIST_COMMON = README $(srcdir)/Makefile.in Makefile.am all: all-am *************** *** 215,219 **** installdirs: $(mkinstalldirs) $(DESTDIR)$(bindir) - install: install-am install-exec: install-exec-am --- 217,220 ---- *************** *** 227,231 **** install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ! INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install --- 228,232 ---- install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ ! install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install *************** *** 235,239 **** distclean-generic: ! -rm -f Makefile $(CONFIG_CLEAN_FILES) maintainer-clean-generic: --- 236,240 ---- distclean-generic: ! -rm -f $(CONFIG_CLEAN_FILES) maintainer-clean-generic: *************** *** 245,249 **** distclean: distclean-am ! distclean-am: clean-am distclean-generic --- 246,250 ---- distclean: distclean-am ! -rm -f Makefile distclean-am: clean-am distclean-generic *************** *** 267,271 **** maintainer-clean: maintainer-clean-am ! maintainer-clean-am: distclean-am maintainer-clean-generic --- 268,272 ---- maintainer-clean: maintainer-clean-am ! -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic |
From: Hans-Bernhard B. <br...@us...> - 2004-02-12 18:18:24
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30676/src Modified Files: display.c Log Message: Fix Ctrl-C handler working only once per session. Index: display.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/display.c,v retrieving revision 1.23 retrieving revision 1.24 diff -C2 -r1.23 -r1.24 *** display.c 8 Jan 2004 14:07:20 -0000 1.23 --- display.c 12 Feb 2004 18:13:14 -0000 1.24 *************** *** 55,58 **** --- 55,64 ---- #include <stdarg.h> + #ifndef HAVE_SIGSETJMP + # define sigsetjmp(a,b) setjmp(a) + # define siglongjmp(a,b) longjmp(a,b) + # typedef jmp_buf sigjmp_buf; + #endif + static char const rcsid[] = "$Id$"; *************** *** 77,81 **** static int fldline; /* input field line */ ! static jmp_buf env; /* setjmp/longjmp buffer */ static int lastdispline; /* last displayed reference line */ static char lastmsg[MSGLEN + 1]; /* last message displayed */ --- 83,87 ---- static int fldline; /* input field line */ ! static sigjmp_buf env; /* setjmp/longjmp buffer */ static int lastdispline; /* last displayed reference line */ static char lastmsg[MSGLEN + 1]; /* last message displayed */ *************** *** 400,404 **** * helps... */ signal(sig, jumpback); ! longjmp(env, 1); } --- 406,410 ---- * helps... */ signal(sig, jumpback); ! siglongjmp(env, 1); } *************** *** 414,418 **** BOOL funcexist = YES; /* find "function" error */ FINDINIT rc = NOERROR; /* findinit return code */ ! RETSIGTYPE (*savesig)(int); /* old value of signal */ FP f; /* searching function */ int c, i; --- 420,424 ---- BOOL funcexist = YES; /* find "function" error */ FINDINIT rc = NOERROR; /* findinit return code */ ! sighandler_t savesig; /* old value of signal */ FP f; /* searching function */ int c, i; *************** *** 427,437 **** } searchcount = 0; ! if (setjmp(env) == 0) { ! savesig = signal(SIGINT, jumpback); f = fields[field].findfcn; if (f == findregexp || f == findstring) { findresult = (*f)(pattern); ! } ! else { if ((nonglobalrefs = myfopen(temp2, "wb")) == NULL) { cannotopen(temp2); --- 433,442 ---- } searchcount = 0; ! savesig = signal(SIGINT, jumpback); ! if (sigsetjmp(env,1) == 0) { f = fields[field].findfcn; if (f == findregexp || f == findstring) { findresult = (*f)(pattern); ! } else { if ((nonglobalrefs = myfopen(temp2, "wb")) == NULL) { cannotopen(temp2); *************** *** 447,453 **** /* append the non-global references */ (void) fclose(nonglobalrefs); ! if ( (nonglobalrefs = myfopen(temp2, "rb")) == NULL) { ! cannotopen(temp2); ! return(NO); } while ((c = getc(nonglobalrefs)) != EOF) { --- 452,459 ---- /* append the non-global references */ (void) fclose(nonglobalrefs); ! if ((nonglobalrefs = myfopen(temp2, "rb")) ! == NULL) { ! cannotopen(temp2); ! return(NO); } while ((c = getc(nonglobalrefs)) != EOF) { *************** *** 465,469 **** /* reopen the references found file for reading */ (void) fclose(refsfound); ! if ( (refsfound = myfopen(temp1, "rb")) == NULL) { cannotopen(temp1); return(NO); --- 471,475 ---- /* reopen the references found file for reading */ (void) fclose(refsfound); ! if ((refsfound = myfopen(temp1, "rb")) == NULL) { cannotopen(temp1); return(NO); *************** *** 477,498 **** if (findresult != NULL) { (void) sprintf(lastmsg, "Egrep %s in this pattern: %s", ! findresult, pattern); ! } ! else if (rc == NOTSYMBOL) { (void) sprintf(lastmsg, "This is not a C symbol: %s", ! pattern); ! } ! else if (rc == REGCMPERROR) { (void) sprintf(lastmsg, "Error in this regcomp(3) regular expression: %s", ! pattern); ! } ! else if (funcexist == NO) { (void) sprintf(lastmsg, "Function definition does not exist: %s", ! pattern); ! } ! else { (void) sprintf(lastmsg, "Could not find the %s: %s", ! fields[field].text2, pattern); } return(NO); --- 483,500 ---- if (findresult != NULL) { (void) sprintf(lastmsg, "Egrep %s in this pattern: %s", ! findresult, pattern); ! } else if (rc == NOTSYMBOL) { (void) sprintf(lastmsg, "This is not a C symbol: %s", ! pattern); ! } else if (rc == REGCMPERROR) { (void) sprintf(lastmsg, "Error in this regcomp(3) regular expression: %s", ! pattern); ! } else if (funcexist == NO) { (void) sprintf(lastmsg, "Function definition does not exist: %s", ! pattern); ! } else { (void) sprintf(lastmsg, "Could not find the %s: %s", ! fields[field].text2, pattern); } return(NO); |
From: Hans-Bernhard B. <br...@us...> - 2004-02-12 18:18:24
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30676 Modified Files: configure.in Log Message: Fix Ctrl-C handler working only once per session. Index: configure.in =================================================================== RCS file: /cvsroot/cscope/cscope/configure.in,v retrieving revision 1.29 retrieving revision 1.30 diff -C2 -r1.29 -r1.30 *** configure.in 14 Aug 2003 14:34:15 -0000 1.29 --- configure.in 12 Feb 2004 18:13:12 -0000 1.30 *************** *** 382,386 **** AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h) dnl Checks for typedefs, structures, and compiler characteristics. --- 382,386 ---- AC_HEADER_DIRENT AC_HEADER_STDC ! AC_CHECK_HEADERS(fcntl.h sys/window.h sys/termios.h unistd.h signal.h) dnl Checks for typedefs, structures, and compiler characteristics. *************** *** 389,392 **** --- 389,403 ---- AC_TYPE_PID_T AC_TYPE_SIZE_T + AC_CHECK_TYPE(sighandler_t,[],[],[ + #ifdef HAVE_SIGNAL_H + # include <signal.h> + #endif]) + dnl This test was ripped from gnuplot's configure.in: + AC_MSG_CHECKING(for sigsetjmp) + AC_TRY_LINK([#include <setjmp.h>], [jmp_buf env; sigsetjmp(env, 1);], + [AC_MSG_RESULT(yes) + AC_DEFINE(HAVE_SIGSETJMP,1, + [ Define if we have sigsetjmp(). ])], + AC_MSG_RESULT(no)) dnl Checks for library functions. |
From: Hans-Bernhard B. <br...@us...> - 2004-02-05 11:48:50
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20512/src Modified Files: global.h Log Message: Fix stupid typo in BSD toupper/tolower replacements. Index: global.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/global.h,v retrieving revision 1.26 retrieving revision 1.27 diff -C2 -r1.26 -r1.27 *** global.h 8 Jan 2004 14:07:20 -0000 1.26 --- global.h 5 Feb 2004 11:46:18 -0000 1.27 *************** *** 89,94 **** # undef tolower /* BSD toupper and tolower don't test the character */ # undef toupper ! # define tolower(c) (isupper(c) : (c) - 'A' + 'a' : (c)) ! # define toupper(c) (islower(c) : (c) - 'a' + 'A' : (c)) # if !sun # if !__FreeBSD__ --- 89,94 ---- # undef tolower /* BSD toupper and tolower don't test the character */ # undef toupper ! # define tolower(c) (isupper(c) ? (c) - 'A' + 'a' : (c)) ! # define toupper(c) (islower(c) ? (c) - 'a' + 'A' : (c)) # if !sun # if !__FreeBSD__ |
From: Hans-Bernhard B. <br...@us...> - 2004-02-05 11:48:50
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20512 Modified Files: ChangeLog Log Message: Fix stupid typo in BSD toupper/tolower replacements. Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.130 retrieving revision 1.131 diff -C2 -r1.130 -r1.131 *** ChangeLog 8 Jan 2004 14:07:20 -0000 1.130 --- ChangeLog 5 Feb 2004 11:46:18 -0000 1.131 *************** *** 1,2 **** --- 1,7 ---- + 2004-02-05 Hans-Bernhard Broeker <br...@ph...> + + * src/global.h (tolower) [BSD]: Fix stupid typo in overrides for + toupper and tolower. + 2004-01-08 Hans-Bernhard Broeker <br...@ph...> |
From: Hans-Bernhard B. <br...@us...> - 2004-01-08 14:07:26
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1:/tmp/cvs-serv3072/src Modified Files: alloc.c build.c command.c display.c find.c global.h main.c scanner.l Log Message: Fix SF bugs #419510 and 508060. Index: alloc.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/alloc.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** alloc.c 28 Jul 2002 15:40:07 -0000 1.5 --- alloc.c 8 Jan 2004 14:07:20 -0000 1.6 *************** *** 88,93 **** { if (p == NULL) { ! (void) fprintf(stderr, "\n%s: out of storage\n", argv0); ! myexit(1); } return(p); --- 88,93 ---- { if (p == NULL) { ! postfatal("\n%s: out of storage\n", argv0); ! /* NOTREACHED */ } return(p); Index: build.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/build.c,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** build.c 29 Apr 2003 14:13:53 -0000 1.5 --- build.c 8 Jan 2004 14:07:20 -0000 1.6 *************** *** 316,321 **** /* reopen the old cross-reference file for fast scanning */ if ((symrefs = vpopen(reffile, O_BINARY | O_RDONLY)) == -1) { ! (void) fprintf(stderr, "cscope: cannot open file %s\n", reffile); ! myexit(1); } /* get the first file name in the old cross-reference */ --- 316,321 ---- /* reopen the old cross-reference file for fast scanning */ if ((symrefs = vpopen(reffile, O_BINARY | O_RDONLY)) == -1) { ! postfatal("cscope: cannot open file %s\n", reffile); ! /* NOTREACHED */ } /* get the first file name in the old cross-reference */ *************** *** 331,336 **** /* open the new cross-reference file */ if ((newrefs = myfopen(newreffile, "wb")) == NULL) { ! (void) fprintf(stderr, "cscope: cannot open file %s\n", reffile); ! myexit(1); } if (invertedindex == YES && (postings = myfopen(temp1, "wb")) == NULL) { --- 331,336 ---- /* open the new cross-reference file */ if ((newrefs = myfopen(newreffile, "wb")) == NULL) { ! postfatal("cscope: cannot open file %s\n", reffile); ! /* NOTREACHED */ } if (invertedindex == YES && (postings = myfopen(temp1, "wb")) == NULL) { *************** *** 493,502 **** { if (fscanf(f, "%ld", &traileroffset) != 1) { ! posterr("cscope: cannot read trailer offset from file %s\n", reffile); ! myexit(1); } if (fseek(f, traileroffset, SEEK_SET) == -1) { ! posterr("cscope: cannot seek to trailer in file %s\n", reffile); ! myexit(1); } } --- 493,502 ---- { if (fscanf(f, "%ld", &traileroffset) != 1) { ! postfatal("cscope: cannot read trailer offset from file %s\n", reffile); ! /* NOTREACHED */ } if (fseek(f, traileroffset, SEEK_SET) == -1) { ! postfatal("cscope: cannot seek to trailer in file %s\n", reffile); ! /* NOTREACHED */ } } *************** *** 704,710 **** if (rename(new, old) == -1) { (void) myperror("cscope"); ! posterr("cscope: cannot rename file %s to file %s\n", ! new, old); ! myexit(1); } } --- 704,710 ---- if (rename(new, old) == -1) { (void) myperror("cscope"); ! postfatal("cscope: cannot rename file %s to file %s\n", ! new, old); ! /* NOTREACHED */ } } Index: command.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/command.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** command.c 28 Jul 2002 15:40:07 -0000 1.19 --- command.c 8 Jan 2004 14:07:20 -0000 1.20 *************** *** 110,114 **** } entercurses(); ! postmsg(""); /* clear any previous message */ totallines = 0; disprefs = 0; --- 110,114 ---- } entercurses(); ! clearmsg(); /* clear any previous message */ totallines = 0; disprefs = 0; Index: display.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/display.c,v retrieving revision 1.22 retrieving revision 1.23 diff -C2 -r1.22 -r1.23 *** display.c 12 Jun 2003 17:11:38 -0000 1.22 --- display.c 8 Jan 2004 14:07:20 -0000 1.23 *************** *** 122,127 **** if (mdisprefs <= 0) { ! (void) fprintf(stderr, "%s: screen too small\n", argv0); ! myexit(1); } --- 122,127 ---- if (mdisprefs <= 0) { ! postfatal("%s: screen too small\n", argv0); ! /* NOTREACHED */ } *************** *** 397,401 **** jumpback(int sig) { ! (void) sig; /* 'use' sig, to avoid warning from compiler */ longjmp(env, 1); } --- 397,403 ---- jumpback(int sig) { ! /* HBB NEW 20031008: try whether reinstating signal handler ! * helps... */ ! signal(sig, jumpback); longjmp(env, 1); } *************** *** 619,624 **** } else { ! move(MSGLINE, 0); ! clrtoeol(); addstr(msg); refresh(); --- 621,625 ---- } else { ! clearmsg(); addstr(msg); refresh(); *************** *** 627,630 **** --- 628,642 ---- } + /* clearmsg clears the first message line */ + + void + clearmsg(void) + { + if (linemode == NO) { + move(MSGLINE, 0); + clrtoeol(); + } + } + /* clearmsg2 clears the second message line */ *************** *** 649,652 **** --- 661,665 ---- clearmsg2(); addstr(msg); + refresh(); } } *************** *** 664,670 **** (void) vfprintf(stderr, msg, ap); (void) fputc('\n', stderr); ! } ! else ! { #if HAVE_VSNPRINTF vsnprintf(errbuf, sizeof(errbuf), msg, ap); --- 677,681 ---- (void) vfprintf(stderr, msg, ap); (void) fputc('\n', stderr); ! } else { #if HAVE_VSNPRINTF vsnprintf(errbuf, sizeof(errbuf), msg, ap); *************** *** 676,679 **** --- 687,714 ---- } + /* display a fatal error mesg -- stderr *after* shutting down curses */ + void + postfatal(const char *msg, ...) + { + va_list ap; + char errbuf[MSGLEN]; + + va_start(ap, msg); + #if HAVE_VSNPRINTF + vsnprintf(errbuf, sizeof(errbuf), msg, ap); + #else + vsprintf(errbuf, msg, ap); + #endif + /* restore the terminal to its original mode */ + if (incurses == YES) { + exitcurses(); + } + + /* display fatal error messages */ + fprintf(stderr,"%s",errbuf); + + /* shut down */ + myexit(1); + } /* position references found file at specified line */ Index: find.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/find.c,v retrieving revision 1.15 retrieving revision 1.16 diff -C2 -r1.15 -r1.16 *** find.c 20 Jun 2002 16:26:29 -0000 1.15 --- find.c 8 Jan 2004 14:07:20 -0000 1.16 *************** *** 792,797 **** if (*blockp != '\n' || getrefchar() != '\n' || (!isdigit(getrefchar()) && fileversion >= 12)) { ! postmsg("Internal error: cannot get source line from database"); ! myexit(1); } /* until a double newline is found */ --- 792,797 ---- if (*blockp != '\n' || getrefchar() != '\n' || (!isdigit(getrefchar()) && fileversion >= 12)) { ! postfatal("Internal error: cannot get source line from database"); ! /* NOTREACHED */ } /* until a double newline is found */ Index: global.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/global.h,v retrieving revision 1.25 retrieving revision 1.26 diff -C2 -r1.25 -r1.26 *** global.h 15 Sep 2003 11:02:36 -0000 1.25 --- global.h 8 Jan 2004 14:07:20 -0000 1.26 *************** *** 338,341 **** --- 338,342 ---- void cannotwrite(char *file); void cannotopen(char *file); + void clearmsg(void); void clearmsg2(void); void crossref(char *srcfile); *************** *** 370,373 **** --- 371,375 ---- void postmsg2(char *msg); void posterr(char *msg,...); + void postfatal(const char *msg,...); void putposting(char *term, int type); void putstring(char *s); Index: main.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/main.c,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** main.c 14 Aug 2003 14:36:17 -0000 1.31 --- main.c 8 Jan 2004 14:07:20 -0000 1.32 *************** *** 54,58 **** /* defaults for unset environment variables */ #define EDITOR "vi" ! #define HOME "/" /* no $HOME --> use root directory */ #define SHELL "sh" #define LINEFLAG "+%s" /* default: used by vi and emacs */ --- 54,58 ---- /* defaults for unset environment variables */ #define EDITOR "vi" ! #define HOME "/" /* no $HOME --> use root directory */ #define SHELL "sh" #define LINEFLAG "+%s" /* default: used by vi and emacs */ *************** *** 142,146 **** /* HBB 20030814: add GNU-style --help and --version * options */ ! if (strequal(argv[0], "--help") || strequal(argv[0], "-h")) { longusage(); --- 142,146 ---- /* HBB 20030814: add GNU-style --help and --version * options */ ! if (strequal(argv[0], "--help") || strequal(argv[0], "-h")) { longusage(); *************** *** 170,175 **** } if (strlen(s) > PATLEN) { ! (void) fprintf(stderr, "cscope: pattern too long, cannot be > %d characters\n", PATLEN); ! myexit(1); } (void) strcpy(pattern, s); --- 170,175 ---- } if (strlen(s) > PATLEN) { ! postfatal("cscope: pattern too long, cannot be > %d characters\n", PATLEN); ! /* NOTREACHED */ } (void) strcpy(pattern, s); *************** *** 249,253 **** reffile = s; (void) strcpy(path, s); ! #ifdef SHORT_NAMES_ONLY /* System V has a 14 character limit */ s = mybasename(path); --- 249,253 ---- reffile = s; (void) strcpy(path, s); ! #ifdef SHORT_NAMES_ONLY /* System V has a 14 character limit */ s = mybasename(path); *************** *** 318,323 **** if (namefile && strcmp(namefile, "-") == 0 && !buildonly) { ! fprintf (stderr, "cscope: Must use -b if file list comes from stdin\n"); ! myexit(1); } --- 318,323 ---- if (namefile && strcmp(namefile, "-") == 0 && !buildonly) { ! postfatal("cscope: Must use -b if file list comes from stdin\n"); ! /* NOTREACHED */ } *************** *** 382,386 **** dispinit(); /* initialize display parameters */ setfield(); /* set the initial cursor position */ ! postmsg(""); /* clear any build progress message */ display(); /* display the version number and input fields */ } --- 382,386 ---- dispinit(); /* initialize display parameters */ setfield(); /* set the initial cursor position */ ! clearmsg(); /* clear any build progress message */ display(); /* display the version number and input fields */ } *************** *** 390,400 **** if (isuptodate == YES) { if ((oldrefs = vpfopen(reffile, "rb")) == NULL) { ! posterr("cscope: cannot open file %s\n", reffile); ! myexit(1); } /* get the crossref file version but skip the current directory */ if (fscanf(oldrefs, "cscope %d %*s", &fileversion) != 1) { ! posterr("cscope: cannot read file version from file %s\n", reffile); ! myexit(1); } if (fileversion >= 8) { --- 390,400 ---- if (isuptodate == YES) { if ((oldrefs = vpfopen(reffile, "rb")) == NULL) { ! postfatal("cscope: cannot open file %s\n", reffile); ! /* NOTREACHED */ } /* get the crossref file version but skip the current directory */ if (fscanf(oldrefs, "cscope %d %*s", &fileversion) != 1) { ! postfatal("cscope: cannot read file version from file %s\n", reffile); ! /* NOTREACHED */ } if (fileversion >= 8) { *************** *** 434,439 **** /* get the number of source files */ if (fscanf(oldrefs, "%d", &nsrcfiles) != 1) { ! posterr("cscope: cannot read source file size from file %s\n", reffile); ! myexit(1); } /* get the source file list */ --- 434,439 ---- /* get the number of source files */ if (fscanf(oldrefs, "%d", &nsrcfiles) != 1) { ! postfatal("cscope: cannot read source file size from file %s\n", reffile); ! /* NOTREACHED */ } /* get the source file list */ *************** *** 443,448 **** /* allocate the string space */ if (fscanf(oldrefs, "%d", &oldnum) != 1) { ! posterr("cscope: cannot read string space size from file %s\n", reffile); ! myexit(1); } s = (char *)mymalloc((unsigned) oldnum); --- 443,448 ---- /* allocate the string space */ if (fscanf(oldrefs, "%d", &oldnum) != 1) { ! postfatal("cscope: cannot read string space size from file %s\n", reffile); ! /* NOTREACHED */ } s = (char *)mymalloc((unsigned) oldnum); *************** *** 451,456 **** /* read the strings */ if (fread(s, oldnum, 1, oldrefs) != 1) { ! posterr("cscope: cannot read source file names from file %s\n", reffile); ! myexit(1); } /* change newlines to nulls */ --- 451,456 ---- /* read the strings */ if (fread(s, oldnum, 1, oldrefs) != 1) { ! postfatal("cscope: cannot read source file names from file %s\n", reffile); ! /* NOTREACHED */ } /* change newlines to nulls */ *************** *** 490,495 **** for (i = 0; i < nsrcfiles; ++i) { if (fscanf(oldrefs, "%s", path) != 1) { ! posterr("cscope: cannot read source file name from file %s\n", reffile); ! myexit(1); } srcfiles[i] = stralloc(path); --- 490,495 ---- for (i = 0; i < nsrcfiles; ++i) { if (fscanf(oldrefs, "%s", path) != 1) { ! postfatal("cscope: cannot read source file name from file %s\n", reffile); ! /* NOTREACHED */ } srcfiles[i] = stralloc(path); *************** *** 511,516 **** makefilelist(); if (nsrcfiles == 0) { ! posterr( "cscope: no source files found\n"); ! myexit(1); } /* get include directories from the environment */ --- 511,516 ---- makefilelist(); if (nsrcfiles == 0) { ! postfatal("cscope: no source files found\n"); ! /* NOTREACHED */ } /* get include directories from the environment */ *************** *** 533,540 **** initcompress(); if (linemode == NO || verbosemode == YES) /* display if verbose as well */ ! postmsg("Building cross-reference..."); build(); if (linemode == NO ) ! postmsg(""); /* clear any build progress message */ if (buildonly == YES) { myexit(0); --- 533,540 ---- initcompress(); if (linemode == NO || verbosemode == YES) /* display if verbose as well */ ! postmsg("Building cross-reference..."); build(); if (linemode == NO ) ! clearmsg(); /* clear any build progress message */ if (buildonly == YES) { myexit(0); *************** *** 682,685 **** --- 682,686 ---- } + /* FIXME MTE - should use postfatal here */ void cannotwrite(char *file) *************** *** 731,741 **** if (fscanf(oldrefs, "%d", &i) != 1) { ! posterr("cscope: cannot read list size from file %s\n", reffile); ! myexit(1); } while (--i >= 0) { if (fscanf(oldrefs, "%*s") != 0) { ! posterr("cscope: cannot read list name from file %s\n", reffile); ! myexit(1); } } --- 732,742 ---- if (fscanf(oldrefs, "%d", &i) != 1) { ! postfatal("cscope: cannot read list size from file %s\n", reffile); ! /* NOTREACHED */ } while (--i >= 0) { if (fscanf(oldrefs, "%*s") != 0) { ! postfatal("cscope: cannot read list name from file %s\n", reffile); ! /* NOTREACHED */ } } Index: scanner.l =================================================================== RCS file: /cvsroot/cscope/cscope/src/scanner.l,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -r1.6 -r1.7 *** scanner.l 26 Jun 2001 13:55:07 -0000 1.6 --- scanner.l 8 Jan 2004 14:07:20 -0000 1.7 *************** *** 104,111 **** %} identifier [a-zA-Z_$][a-zA-Z_0-9$]* number \.?[0-9][.0-9a-fA-FlLuUxX]* %start SDL ! %a 4000 %o 7000 %% --- 104,115 ---- %} + + ws [ \t\r\v\f] + wsnl [ \t\r\v\f\n] identifier [a-zA-Z_$][a-zA-Z_0-9$]* number \.?[0-9][.0-9a-fA-FlLuUxX]* + %start SDL ! %a 12000 %o 7000 %% *************** *** 154,158 **** } } ! <SDL>STATE[ \t]+({identifier}|\*) { /* sdl state, treat as function def */ braces = 1; fcndef = YES; --- 158,162 ---- } } ! <SDL>STATE{ws}+({identifier}|\*) { /* sdl state, treat as function def */ braces = 1; fcndef = YES; *************** *** 161,165 **** /* NOTREACHED */ } ! <SDL>ENDSTATE[ \t] { /* end of an sdl state, treat as end of a function */ goto endstate; /* NOTREACHED */ --- 165,169 ---- /* NOTREACHED */ } ! <SDL>ENDSTATE{ws} { /* end of an sdl state, treat as end of a function */ goto endstate; /* NOTREACHED */ *************** *** 183,187 **** /* NOTREACHED */ } ! \#[ \t]*endif/.*\n[ \t\n]*#[ \t]*if { /* attempt to correct erroneous brace count caused by: * --- 187,191 ---- /* NOTREACHED */ } ! \#{ws}*endif/.*\n{wsnl}*#{ws}*if { /* attempt to correct erroneous brace count caused by: * *************** *** 202,206 **** /* NOTREACHED */ } ! \#[ \t]*ifn?(def)? { /* #if, #ifdef or #ifndef */ elseelif = NO; if (pseudoelif == YES) { --- 206,210 ---- /* NOTREACHED */ } ! \#{ws}*ifn?(def)? { /* #if, #ifdef or #ifndef */ elseelif = NO; if (pseudoelif == YES) { *************** *** 221,225 **** /* NOTREACHED */ } ! \#[ \t]*el(se|if) { /* #elif or #else */ elseelif = YES; elif: --- 225,229 ---- /* NOTREACHED */ } ! \#{ws}*el(se|if) { /* #elif or #else */ elseelif = YES; elif: *************** *** 236,240 **** /* NOTREACHED */ } ! \#[ \t]*endif { /* #endif */ endif: if (iflevel > 0) { --- 240,244 ---- /* NOTREACHED */ } ! \#{ws}*endif { /* #endif */ endif: if (iflevel > 0) { *************** *** 335,339 **** /* NOTREACHED */ } ! \#[ \t]*define[ \t]+{identifier} { /* preprocessor macro or constant definition */ --- 339,343 ---- /* NOTREACHED */ } ! \#{ws}*define{ws}+{identifier} { /* preprocessor macro or constant definition */ *************** *** 352,356 **** /* NOTREACHED */ } ! class[ \t]+{identifier}[ \t\na-zA-Z0-9_():]*\{ { /* class definition */ classdef = YES; tagdef = 'c'; --- 356,360 ---- /* NOTREACHED */ } ! class{ws}+{identifier}({wsnl}|[a-zA-Z0-9_():])*\{ { /* class definition */ classdef = YES; tagdef = 'c'; *************** *** 358,367 **** /* NOTREACHED */ } ! (enum|struct|union)/([ \t\n]+{identifier})[ \t\n]*\{ { /* enum/struct/union definition */ tagdef = *(yytext + first); goto ident; /* NOTREACHED */ } ! (enum|struct|union)/[ \t\n]*\{ { /* tag-less e/s/u definition */ tagdef = yytext[first]; if (braces == 0) { --- 362,371 ---- /* NOTREACHED */ } ! (enum|struct|union)/({wsnl}+{identifier}){wsnl}*\{ { /* enum/struct/union definition */ tagdef = *(yytext + first); goto ident; /* NOTREACHED */ } ! (enum|struct|union)/{wsnl}*\{ { /* tag-less e/s/u definition */ tagdef = yytext[first]; if (braces == 0) { *************** *** 372,376 **** goto more; } ! {identifier}/[ \t]*\([ \t\na-zA-Z0-9_*&[\]=,.]*\)[ \t\n()]*[:a-zA-Z_#{] { /* warning: "if (...)" must not overflow yytext, so the content --- 376,380 ---- goto more; } ! {identifier}/{ws}*\(({wsnl}|a-zA-Z0-9_*&[\]=,.])*\)({wsnl}|[()])*[:a-zA-Z_#{] { /* warning: "if (...)" must not overflow yytext, so the content *************** *** 390,394 **** /* NOTREACHED */ } ! {identifier}/[ \t]*\( { /* if a function call */ fcncal: if (fcndef == YES || ppdefine == YES || rules == YES) { token = FCNCALL; --- 394,398 ---- /* NOTREACHED */ } ! {identifier}/{ws}*\( { /* if a function call */ fcncal: if (fcndef == YES || ppdefine == YES || rules == YES) { token = FCNCALL; *************** *** 403,407 **** /* NOTREACHED */ } ! {identifier}/[* \t\n]+[a-zA-Z0-9_] { /* typedef name use */ goto ident; /* NOTREACHED */ --- 407,411 ---- /* NOTREACHED */ } ! {identifier}/([*]|{wsnl})+[a-zA-Z0-9_] { /* typedef name use */ goto ident; /* NOTREACHED */ *************** *** 565,571 **** /* NOTREACHED */ } ! ^[ \t\f]+ { /* don't save leading white space */ } ! \#[ \t]*include[ \t]*["<][^"> \t\n]+ { /* #include file */ char *s; --- 569,575 ---- /* NOTREACHED */ } ! ^{ws}+ { /* don't save leading white space */ } ! \#{ws}*include{ws}*["<][^"> \t\n]+ { /* #include file */ char *s; *************** *** 583,587 **** /* NOTREACHED */ } ! \#[ \t]*{identifier} | /* preprocessor keyword */ {number} | /* number */ . { /* punctuation and operators */ --- 587,591 ---- /* NOTREACHED */ } ! \#{ws}*{identifier} | /* preprocessor keyword */ {number} | /* number */ . { /* punctuation and operators */ |
From: Hans-Bernhard B. <br...@us...> - 2004-01-08 14:07:23
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1:/tmp/cvs-serv3072 Modified Files: ChangeLog Log Message: Fix SF bugs #419510 and 508060. Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.129 retrieving revision 1.130 diff -C2 -r1.129 -r1.130 *** ChangeLog 15 Oct 2003 14:09:30 -0000 1.129 --- ChangeLog 8 Jan 2004 14:07:20 -0000 1.130 *************** *** 1,2 **** --- 1,39 ---- + 2004-01-08 Hans-Bernhard Broeker <br...@ph...> + + * src/display.c (clearmsg): New function. Does essentially the + same thing previously achieved by a rather more cryptic + postmsg(""). + (postfatal): New function to printout a fatal error message and + terminate the program. Works like posterr(), but exits curses + first, so the message should end up visible after the program + exits. Using this instead of posterr()+myexit() fixes SF bug + #419510. + (dispinit): Use postfatal:(). + (postmsg): Use clearmsg(). + (postmsg2): Call curses refresh() after change. + + * src/global.h: Add prototypes for new functions clearmsg() and + postfatal(). + + * src/find.c (putsource): Use postfatal(). + + * src/main.c (main, skiplist): Use postfatal() and clearmsg(). + + * src/command.c (command): Use clearmsg(). + + * src/build.c (build, seek_to_trailer, movefile): Use postfatal(). + + * src/alloc.c (alloctest): Use postfatal(). + + * src/display.c (jumpback): Re-instate signal handler, in an + attempt to fix problems reported with the general behaviour of + signal handlers in cscope. + + * src/scanner.l (ws, wsnl): Two new predefined patterns to catch + not only blanks and tabs, but all generally allowed white-space + characters in source files: form feeds, vertical tabs, carriage + returns. Replaced most occurence of [ \t] and [ \t\n] by these. + This is a back-port from fscanner.l. Should fix SF bug #508060. + Wed Oct 15 16:05:46 2003 Hans-Bernhard Broeker <br...@ph...> |
From: Hans-Bernhard B. <br...@us...> - 2003-10-15 14:10:27
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1:/tmp/cvs-serv31057/src Modified Files: dir.c Log Message: Fix -R search for multi-letter filename extensions Index: dir.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/dir.c,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -r1.19 -r1.20 *** dir.c 2 Jun 2003 10:42:59 -0000 1.19 --- dir.c 15 Oct 2003 14:09:30 -0000 1.20 *************** *** 503,507 **** entry->d_ino != 0 #endif ! && issrcfile(mybasename(path)) && infilelist(path) == NO) { addsrcfile(path); --- 503,507 ---- entry->d_ino != 0 #endif ! && issrcfile(path) && infilelist(path) == NO) { addsrcfile(path); *************** *** 518,580 **** static BOOL ! issrcfile(char *file) { struct stat statstruct; ! char *s; ! /* if there is a file suffix */ ! if ((s = strrchr(file, '.')) != NULL && *++s != '\0') { ! /* if an SCCS or versioned file */ ! if (file[1] == '.' && file + 2 != s) { /* 1 character prefix */ ! switch (*file) { ! case 's': ! case 'S': ! return(NO); ! } } ! if (s[1] == '\0') { /* 1 character suffix */ ! switch (*s) { ! case 'c': ! case 'h': ! case 'l': ! case 'y': ! case 'C': ! case 'G': ! case 'H': ! case 'L': ! return(YES); ! } } ! else if (s[2] == '\0') { /* 2 character suffix */ ! if ((*s == 'b' && s[1] == 'p') || /* breakpoint listing */ ! (*s == 'q' && ! (s[1] == 'c' || s[1] == 'h')) || /* Ingres */ ! (*s == 's' && s[1] == 'd') || /* SDL */ ! (*s == 'c' && s[1] == 'c') || /* C++ source */ ! (*s == 'h' && s[1] == 'h')) { /* C++ header */ ! /* some directories have 2 character ! suffixes so make sure it is a file */ ! if (lstat(file, &statstruct) == 0 && ! S_ISREG(statstruct.st_mode)) { ! return(YES); ! } ! } } ! else if( s[3] == '\0' ) { /* 3 char suffix */ ! if( ! (*s == 't' && s[1] == 'c' && s[2] == 'c' ) || ! /* C++ template source */ ! 0) { ! /* make sure it is a file */ ! if (lstat(file, &statstruct) == 0 && ! S_ISREG(statstruct.st_mode)) { ! return(YES); ! } ! } } } ! return(NO); } --- 518,577 ---- static BOOL ! issrcfile(char *path) { struct stat statstruct; ! char *file = mybasename(path); ! char *s = strrchr(file, '.'); ! /* ensure there is some file suffix */ ! if (s == NULL || *++s == '\0') ! return NO; ! /* if an SCCS or versioned file */ ! if (file[1] == '.' && file + 2 != s) { /* 1 character prefix */ ! switch (*file) { ! case 's': ! case 'S': ! return(NO); } ! } ! ! if (s[1] == '\0') { /* 1 character suffix */ ! switch (*s) { ! case 'c': ! case 'h': ! case 'l': ! case 'y': ! case 'C': ! case 'G': ! case 'H': ! case 'L': ! return(YES); } ! } else if ((s[2] == '\0') /* 2 char suffix */ ! && ((s[0] == 'b' && s[1] == 'p') /* breakpoint listing */ ! || (s[0] == 'q' ! && (s[1] == 'c' || s[1] == 'h')) /* Ingres */ ! || (s[0] == 's' && s[1] == 'd') /* SDL */ ! || (s[0] == 'c' && s[1] == 'c') /* C++ source */ ! || (s[0] == 'h' && s[1] == 'h'))) { /* C++ header */ ! /* some directories have 2 character ! suffixes so make sure it is a file */ ! if (lstat(path, &statstruct) == 0 && ! S_ISREG(statstruct.st_mode)) { ! return(YES); } ! } else if((s[3] == '\0') /* 3 char suffix */ ! /* C++ template source */ ! && (s[0] == 't' && s[1] == 'c' && s[2] == 'c' ) ! ) { ! /* make sure it is a file */ ! if (lstat(path, &statstruct) == 0 && ! S_ISREG(statstruct.st_mode)) { ! return(YES); } } ! return NO; } |
From: Hans-Bernhard B. <br...@us...> - 2003-10-15 14:10:27
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1:/tmp/cvs-serv31057 Modified Files: ChangeLog Log Message: Fix -R search for multi-letter filename extensions Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.128 retrieving revision 1.129 diff -C2 -r1.128 -r1.129 *** ChangeLog 15 Sep 2003 10:58:18 -0000 1.128 --- ChangeLog 15 Oct 2003 14:09:30 -0000 1.129 *************** *** 1,2 **** --- 1,9 ---- + Wed Oct 15 16:05:46 2003 Hans-Bernhard Broeker <br...@ph...> + + * src/dir.c (scan_dir): Don't reduce path to basename before + calling issrcfile. + (issrcfile): Use either basename or full path, as necessary for + the individual tests. Reorganized to reduce nesting. + Mon Sep 15 12:34:46 2003 Hans-Bernhard Broeker <br...@ph...> |
From: Hans-Bernhard B. <br...@us...> - 2003-09-15 11:02:40
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1:/tmp/cvs-serv26423 Modified Files: global.h Log Message: Fix tolower/toupper macro overrides used on BSD platforms. Index: global.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/global.h,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -r1.24 -r1.25 *** global.h 12 Jun 2003 17:11:38 -0000 1.24 --- global.h 15 Sep 2003 11:02:36 -0000 1.25 *************** *** 85,93 **** #endif /* RETSIGTYPE */ #if BSD # undef tolower /* BSD toupper and tolower don't test the character */ # undef toupper ! # define tolower(c) (islower(c) ? (c) : (c) - 'A' + 'a') ! # define toupper(c) (isupper(c) ? (c) : (c) - 'a' + 'A') # if !sun # if !__FreeBSD__ --- 85,94 ---- #endif /* RETSIGTYPE */ + /* FIXME: this testing for platforms is foolish. Stop it! */ #if BSD # undef tolower /* BSD toupper and tolower don't test the character */ # undef toupper ! # define tolower(c) (isupper(c) : (c) - 'A' + 'a' : (c)) ! # define toupper(c) (islower(c) : (c) - 'a' + 'A' : (c)) # if !sun # if !__FreeBSD__ |
From: Hans-Bernhard B. <br...@us...> - 2003-09-15 10:59:53
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1:/tmp/cvs-serv25794/src Modified Files: egrep.y Log Message: Indented, fixed lots of implicit ints in delcarations and casts. Index: egrep.y =================================================================== RCS file: /cvsroot/cscope/cscope/src/egrep.y,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** egrep.y 11 Dec 2002 14:39:09 -0000 1.8 --- egrep.y 15 Sep 2003 10:59:49 -0000 1.9 *************** *** 157,207 **** yylex(void) { ! int cclcnt, x; ! char c, d; ! switch(c = nextch()) { ! case '$': ! case '^': c = '\n'; ! goto defchar; ! case '|': return (OR); ! case '*': return (STAR); ! case '+': return (PLUS); ! case '?': return (QUEST); ! case '(': return (c); ! case ')': return (c); ! case '.': return (DOT); ! case '\0': return (0); ! case '\n': return (OR); ! case '[': ! x = CCL; ! cclcnt = 0; ! count = nxtchar++; ! if ((c = nextch()) == '^') { ! x = NCCL; ! c = nextch(); ! } ! do { ! if (c == '\0') synerror(); ! if (c == '-' && cclcnt > 0 && chars[nxtchar-1] != 0) { ! if ((d = nextch()) != 0) { ! c = chars[nxtchar-1]; ! while ((unsigned)c < (unsigned)d) { ! if (nxtchar >= MAXLIN) overflo(); ! chars[nxtchar++] = ++c; ! cclcnt++; ! } ! continue; ! } ! } ! if (nxtchar >= MAXLIN) overflo(); ! chars[nxtchar++] = c; ! cclcnt++; ! } while ((c = nextch()) != ']'); ! chars[count] = cclcnt; ! return (x); ! case '\\': ! if ((c = nextch()) == '\0') synerror(); ! defchar: ! default: yylval = c; return (CHAR); ! } } --- 157,226 ---- yylex(void) { ! int cclcnt, x; ! char c, d; ! ! switch(c = nextch()) { ! case '|': ! return (OR); ! case '*': ! return (STAR); ! case '+': ! return (PLUS); ! case '?': ! return (QUEST); ! case '(': ! return (c); ! case ')': ! return (c); ! case '.': ! return (DOT); ! case '\0': ! return (0); ! case '\n': ! return (OR); ! case '[': ! x = CCL; ! cclcnt = 0; ! count = nxtchar++; ! if ((c = nextch()) == '^') { ! x = NCCL; ! c = nextch(); ! } ! do { ! if (c == '\0') ! synerror(); ! if (c == '-' ! && cclcnt > 0 ! && chars[nxtchar-1] != 0) { ! if ((d = nextch()) != 0) { ! c = chars[nxtchar-1]; ! while ((unsigned int)c < (unsigned int)d) { ! if (nxtchar >= MAXLIN) ! overflo(); ! chars[nxtchar++] = ++c; ! cclcnt++; ! } ! continue; ! } /* if() */ ! } /* if() */ ! if (nxtchar >= MAXLIN) ! overflo(); ! chars[nxtchar++] = c; ! cclcnt++; ! } while ((c = nextch()) != ']'); ! chars[count] = cclcnt; ! return (x); ! case '\\': ! if ((c = nextch()) == '\0') ! synerror(); ! /* not reached */ ! case '$': ! case '^': ! c = '\n'; ! /* fall through */ ! default: ! yylval = c; ! return (CHAR); ! } } *************** *** 280,375 **** cgotofn(void) { ! int c, i, k; ! int n, s; ! char symbol[NCHARS]; ! int j, pc, pos; ! unsigned nc; ! int curpos, num; ! int number, newpos; ! count = 0; ! for (n=3; n<=line; n++) tmpstat[n] = 0; ! if (cstate(line-1)==0) { ! tmpstat[line] = 1; ! count++; ! out[0] = 1; ! } ! for (n=3; n<=line; n++) initstat[n] = tmpstat[n]; ! count--; /*leave out position 1 */ ! icount = count; ! tmpstat[1] = 0; ! add(state, 0); ! n = 0; ! for (s=0; s<=n; s++) { ! if (out[s] == 1) continue; ! for (i=0; i<NCHARS; i++) symbol[i] = 0; ! num = positions[state[s]]; count = icount; ! for (i=3; i<=line; i++) tmpstat[i] = initstat[i]; pos = state[s] + 1; for (i=0; i<num; i++) { ! curpos = positions[pos]; ! if ((c = name[curpos]) >= 0) { ! if (c < NCHARS) symbol[c] = 1; ! else if (c == DOT) { ! for (k=0; k<NCHARS; k++) ! if (k!='\n') symbol[k] = 1; ! } ! else if (c == CCL) { ! nc = chars[right[curpos]]; ! pc = right[curpos] + 1; ! for (k=0; k<nc; k++) ! symbol[(unsigned)(chars[pc++])] = 1; ! } ! else if (c == NCCL) { ! nc = chars[right[curpos]]; ! for (j = 0; j < NCHARS; j++) { ! pc = right[curpos] + 1; ! for (k = 0; k < nc; k++) ! if (j==(unsigned)(chars[pc++])) goto cont; ! if (j!='\n') symbol[j] = 1; ! cont:; ! } ! } ! } ! pos++; ! } ! for (c=0; c<NCHARS; c++) { ! if (symbol[c] == 1) { /* nextstate(s,c) */ ! count = icount; ! for (i=3; i <= line; i++) tmpstat[i] = initstat[i]; ! pos = state[s] + 1; ! for (i=0; i<num; i++) { ! curpos = positions[pos]; ! if ((k = name[curpos]) >= 0) ! if ( ! (k == c) ! || (k == DOT) ! || (k == CCL && member(c, right[curpos], 1)) ! || (k == NCCL && member(c, right[curpos], 0)) ! ) { ! number = positions[foll[curpos]]; ! newpos = foll[curpos] + 1; ! for (k=0; k<number; k++) { ! if (tmpstat[positions[newpos]] != 1) { ! tmpstat[positions[newpos]] = 1; ! count++; ! } ! newpos++; ! } ! } ! pos++; ! } /* end nextstate */ ! if (notin(n)) { ! if (n >= NSTATES) overflo(); ! add(state, ++n); ! if (tmpstat[line] == 1) out[n] = 1; ! gotofn[s][c] = n; ! } ! else { ! gotofn[s][c] = xstate; } } } ! } } --- 299,404 ---- cgotofn(void) { ! int c, i, k; ! int n, s; ! char symbol[NCHARS]; ! int j, pc, pos; ! unsigned int nc; ! int curpos, num; ! int number, newpos; ! ! count = 0; ! for (n=3; n<=line; n++) ! tmpstat[n] = 0; ! if (cstate(line-1)==0) { ! tmpstat[line] = 1; ! count++; ! out[0] = 1; ! } ! for (n=3; n<=line; n++) ! initstat[n] = tmpstat[n]; ! count--; /*leave out position 1 */ ! icount = count; ! tmpstat[1] = 0; ! add(state, 0); ! n = 0; ! for (s=0; s<=n; s++) { ! if (out[s] == 1) ! continue; ! for (i=0; i<NCHARS; i++) ! symbol[i] = 0; ! num = positions[state[s]]; ! count = icount; ! for (i=3; i<=line; i++) ! tmpstat[i] = initstat[i]; ! pos = state[s] + 1; ! for (i=0; i<num; i++) { ! curpos = positions[pos]; ! if ((c = name[curpos]) >= 0) { ! if (c < NCHARS) { ! symbol[c] = 1; ! } else if (c == DOT) { ! for (k=0; k<NCHARS; k++) ! if (k!='\n') ! symbol[k] = 1; ! } else if (c == CCL) { ! nc = chars[right[curpos]]; ! pc = right[curpos] + 1; ! for (k=0; k<nc; k++) ! symbol[(unsigned int)(chars[pc++])] = 1; ! } else if (c == NCCL) { ! nc = chars[right[curpos]]; ! for (j = 0; j < NCHARS; j++) { ! pc = right[curpos] + 1; ! for (k = 0; k < nc; k++) ! if (j==(unsigned int)(chars[pc++])) ! goto cont; ! if (j!='\n') ! symbol[j] = 1; ! cont:; ! } ! } ! } ! pos++; ! } /* for (i) */ ! for (c=0; c<NCHARS; c++) { ! if (symbol[c] == 1) { ! /* nextstate(s,c) */ count = icount; ! for (i=3; i <= line; i++) ! tmpstat[i] = initstat[i]; pos = state[s] + 1; for (i=0; i<num; i++) { ! curpos = positions[pos]; ! if ((k = name[curpos]) >= 0) ! if ((k == c) ! || (k == DOT) ! || (k == CCL && member(c, right[curpos], 1)) ! || (k == NCCL && member(c, right[curpos], 0)) ! ) { ! number = positions[foll[curpos]]; ! newpos = foll[curpos] + 1; ! for (k = 0; k < number; k++) { ! if (tmpstat[positions[newpos]] != 1) { ! tmpstat[positions[newpos]] = 1; ! count++; } + newpos++; + } } + pos++; + } /* end nextstate */ + if (notin(n)) { + if (n >= NSTATES) + overflo(); + add(state, ++n); + if (tmpstat[line] == 1) + out[n] = 1; + gotofn[s][c] = n; + } else { + gotofn[s][c] = xstate; } ! } /* if (symbol) */ ! } /* for(c) */ ! } /* for(s) */ } *************** *** 404,413 **** member(int symb, int set, int torf) { ! int i, num, pos; ! num = chars[set]; ! pos = set + 1; ! for (i=0; i<(unsigned)num; i++) ! if (symb == (unsigned)(chars[pos++])) return (torf); ! return (!torf); } --- 433,444 ---- member(int symb, int set, int torf) { ! int i, num, pos; ! ! num = chars[set]; ! pos = set + 1; ! for (i=0; i<(unsigned int)num; i++) ! if (symb == (unsigned int)(chars[pos++])) ! return (torf); ! return (!torf); } *************** *** 510,605 **** egrep(char *file, FILE *output, char *format) { ! char *p; ! unsigned cstat; ! int ccount; ! char buf[2*BUFSIZ]; ! char *nlp; ! unsigned int istat; ! int in_line; ! FILE *fptr; ! ! if ((fptr = myfopen(file, "r")) == NULL) { ! return(-1); ! } ! ccount = 0; ! lnum = 1; ! in_line = 0; ! p = buf; ! nlp = p; ! if ((ccount = fread(p, sizeof(char), BUFSIZ, fptr)) <= 0) goto done; ! in_line = 1; ! istat = cstat = (unsigned)gotofn[0]['\n']; ! if (out[cstat]) goto found; ! for (;;) { ! if (!iflag) ! cstat = (unsigned)gotofn[cstat][(unsigned)*p&0377]; ! /* all input chars made positive */ ! else ! cstat = (unsigned)gotofn[cstat][tolower((int)*p&0377)]; ! /* for -i option*/ ! if (out[cstat]) { ! found: for(;;) { ! if (*p++ == '\n') { ! in_line = 0; ! succeed: ! (void) fprintf(output, format, file, lnum); ! if (p <= nlp) { ! while (nlp < &buf[2*BUFSIZ]) (void) putc(*nlp++, output); ! nlp = buf; ! } ! while (nlp < p) (void) putc(*nlp++, output); ! lnum++; ! nlp = p; ! if ((out[(cstat=istat)]) == 0) goto brk2; ! } ! cfound: ! if (--ccount <= 0) { ! if (p <= &buf[BUFSIZ]) { ! ccount = fread(p, sizeof(char), BUFSIZ, fptr); ! } ! else if (p == &buf[2*BUFSIZ]) { ! p = buf; ! ccount = fread(p, sizeof(char), BUFSIZ, fptr); ! } ! else { ! ccount = fread(p, sizeof(char), &buf[2*BUFSIZ] - p, fptr); ! } ! if (ccount <= 0) { ! if (in_line) { ! in_line = 0; ! goto succeed; ! } ! goto done; ! } ! } ! in_line = 1; ! } ! } if (*p++ == '\n') { ! in_line = 0; ! lnum++; ! nlp = p; ! if (out[(cstat=istat)]) goto cfound; ! } ! brk2: if (--ccount <= 0) { ! if (p <= &buf[BUFSIZ]) { ! ccount = fread(p, sizeof(char), BUFSIZ, fptr); ! } ! else if (p == &buf[2*BUFSIZ]) { ! p = buf; ! ccount = fread(p, sizeof(char), BUFSIZ, fptr); } ! else { ! ccount = fread(p, sizeof(char), &buf[2*BUFSIZ] - p, fptr); ! } ! if (ccount <= 0) { ! break; ! } ! } in_line = 1; } ! done: (void) fclose(fptr); ! return(0); } --- 541,638 ---- egrep(char *file, FILE *output, char *format) { ! char *p; ! unsigned int cstat; ! int ccount; ! char buf[2*BUFSIZ]; ! char *nlp; ! unsigned int istat; ! int in_line; ! FILE *fptr; ! ! if ((fptr = myfopen(file, "r")) == NULL) ! return(-1); ! ! ccount = 0; ! lnum = 1; ! in_line = 0; ! p = buf; ! nlp = p; ! if ((ccount = fread(p, sizeof(char), BUFSIZ, fptr)) <= 0) ! goto done; ! in_line = 1; ! istat = cstat = (unsigned int) gotofn[0]['\n']; ! if (out[cstat]) ! goto found; ! for (;;) { ! if (!iflag) ! cstat = (unsigned int) gotofn[cstat][(unsigned int)*p&0377]; ! /* all input chars made positive */ ! else ! cstat = (unsigned int) gotofn[cstat][tolower((int)*p&0377)]; ! /* for -i option*/ ! if (out[cstat]) { ! found: ! for(;;) { if (*p++ == '\n') { ! in_line = 0; ! succeed: ! (void) fprintf(output, format, file, lnum); ! if (p <= nlp) { ! while (nlp < &buf[2*BUFSIZ]) (void) putc(*nlp++, output); ! nlp = buf; ! } ! while (nlp < p) ! (void) putc(*nlp++, output); ! lnum++; ! nlp = p; ! if ((out[(cstat=istat)]) == 0) ! goto brk2; ! } /* if (p++ == \n) */ ! cfound: if (--ccount <= 0) { ! if (p <= &buf[BUFSIZ]) { ! ccount = fread(p, sizeof(char), BUFSIZ, fptr); ! } else if (p == &buf[2*BUFSIZ]) { ! p = buf; ! ccount = fread(p, sizeof(char), BUFSIZ, fptr); ! } else { ! ccount = fread(p, sizeof(char), &buf[2*BUFSIZ] - p, fptr); ! } ! if (ccount <= 0) { ! if (in_line) { ! in_line = 0; ! goto succeed; } ! goto done; ! } ! } /* if(ccount <= 0) */ in_line = 1; + } /* for(ever) */ + } /* if(out[cstat]) */ + if (*p++ == '\n') { + in_line = 0; + lnum++; + nlp = p; + if (out[(cstat=istat)]) + goto cfound; + } + brk2: + if (--ccount <= 0) { + if (p <= &buf[BUFSIZ]) { + ccount = fread(p, sizeof(char), BUFSIZ, fptr); + } else if (p == &buf[2*BUFSIZ]) { + p = buf; + ccount = fread(p, sizeof(char), BUFSIZ, fptr); + } else { + ccount = fread(p, sizeof(char), &buf[2*BUFSIZ] - p, fptr); + } + if (ccount <= 0) + break; } ! in_line = 1; ! } ! done: ! (void) fclose(fptr); ! return(0); } |
From: Hans-Bernhard B. <br...@us...> - 2003-09-15 10:59:08
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1:/tmp/cvs-serv25694/src Modified Files: vp.h Log Message: Include <sys/types.h> before <sys/stat.h> Index: vp.h =================================================================== RCS file: /cvsroot/cscope/cscope/src/vp.h,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** vp.h 28 Jul 2002 15:40:07 -0000 1.5 --- vp.h 15 Sep 2003 10:59:05 -0000 1.6 *************** *** 54,57 **** --- 54,58 ---- #endif + #include <sys/types.h> #include <sys/stat.h> |
From: Hans-Bernhard B. <br...@us...> - 2003-09-15 10:58:31
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1:/tmp/cvs-serv25527 Modified Files: ChangeLog Added Files: ChangeLog.old Log Message: Started a fresh ChangeLog file --- in GNU syntax, this time --- NEW FILE --- (2003/09/04 - broeker) Release of CVS HEAD version as (back-labelled) version version 15.5. (2003/08/14 - broeker) Cleaned up man page, INSTALL and TODO files. (2003/08/14 - broeker) Have configure check for <regex.h>. Bail out if none found. (2003/08/14 - broeker) New options --help and --version. (2003/06/12 - broeker) New option -v to output progress updates even in line mode. To be used by interface kscope. (2003/06/02 - broeker) Use the basename of files only to test for SCCS/RCS files in -R traversal. (2003/04/29 - broeker) Check that a src file is a regular file before trying to scan it. Change from S_IFDIR/S_IFREG bit tests to macros S_ISDIR/S_ISREG. (2003/03/05 - broeker) Remove '-y' option from pipe call to utility "sort". It's long since deprecated, and some modern versions will barf seeing it. (2003/03/02 - broeker) Don't restrict to 14 character filenames any longer. (2003/01/23 - broeker) Update to latest auto* tools. First step towards integration of GNOME GUI version. (2002/12/11 - broeker) Get rid of deprecated ={...} style actions in egrep.y. Use plain {...} instead. (2002/10/29 - broeker) Fix bug #588671: disprefs was still 0 if only 1 very long reference output shown by curses display. (2002/08/27 - broeker) Fix bug #600494: use mygetenv() for HOME, and provide a fall-back if it's not there. (2002/08/15 - broeker) DOS/Cygwin bugfix: avoid setmode() if fopen() failed. (2002/07/27 - broeker) Yet another round of Cygwin-related fixes. Do the #include <fcntl.h> early enough, so checks for O_BINARY work. Make sure that myexit() is always called instead of calling exit() directly. Add AC_EXEEXT to configure.in. (2002/07/10 - broeker) Get rid of assumption about values of access() parameters W_OK and R_OK --- make assumptions only if system doesn't supply values. Add check for existence of lstat(); fall back to stat() if not available. Avoid confusion of DOS' setmode() with BSD function of same name... (2002/07/07 - broeker) Delete tempfile before redirecting to it, to avoid complaints about clobbering from poorly configured default shells. (2002/06/20 - broeker) Fix operation of -C -L0 if pattern contains any upper-case characters. (2002/06/20 - broeker) Fix handling of non-standard whitespace in Flex scanner. Should make it more robust against DOS text files that ended up on a Unix box, and other unexpected characters, and avoid SF bug #508060. (2002/03/16 - broeker) Fix namelist handling bug: ./ in paths would cause search for next name to fail (SF bug #529618). -I/-p and their argument no longer have to be in one line inside the namelist file, and -I pathname can now be quote-escaped. (2002/03/13 - broeker) Add AC_PREREQ() call to configure.in. Enables Cygwin automagic hack to call the right autoconf for us. (2002/03/13 - broeker) Replace all references to manpage 'regcmp(3X)' in messages and comments by regcomp(3), which is what cscope actually uses. (2002/03/08 - broeker) Fix completely broken handling of filenames with blanks in namelist files. Use fgets + sscanf, not fscanf, and don't split at whitespace inside "" quotes. (2001/01/04 - broeker) Survive Cygwin "binmode" mounted filesystems by explicitly forcing text mode for source files. (2002/01/02 - broeker) Updated files supplied or generated by automake to version 1.4-p5, the current recommended version in the 1.4 series. (2002/01/02 - broeker) Add handling of "quoted filenames with blanks in" in namelist files (2001/11/22 - broeker) Quell some compiler warnings caused by missing #includes and private declarations of system library functions. (2001/10/30 - petrs) Added Joe Steffen to author's list as the creator. (2001/10/19 - broeker) Replace usages of freopen() by fclose()/fopen() pairs to work around bug in some Linux libc constellation. (2001/10/10 - broeker) Remove unused argument 'name' of addsrcfile() function. Alternative buffer overflow protection scheme, using "%.*s" format specifiers in ordinary sprintf(); now used throughout dir.c. (2001/10/09 - valentin) Prevention of a possible buffer overflow. (2001/09/27 - broeker) Added autoconf test to use Cygwin's separate -lregex. The regcomp() in libc is not what we want. (2001/09/13 - broeker) Move chunk for malformed CPP directives further down, so it won't incorrectly eat up #else or #endif directives. Fixes bug #460345. (2001/08/27 - broeker) Add C++-style comments to {comment} pattern. Fixes bug #455441: C++ comments in the middle of a function definition caused it not be recognized. (2001/08/15 - broeker) Zero out 'disprefs' whenever the count of references, 'totallines' is set to zero. This makes sure that you can't <Tab> into the selection area if there's nothing in it. (2001/08/13 - jcduell) Revisited inverted index file name fixup routines. (Patch #444669 from SourceForge). (2001/08/03 - broeker) Use %option noyywrap in fscanner.l to avoid problems with broken flex installations that can't find -lfl. (2001/07/12 - dixon) Updated INSTALL with new configure info for HP-UX. (2001/07/11 - broeker) Fixed #if syntax glitch in cohrs' SUNOS change. (2001/07/09 - petrs) Substituted lstat() for stat() to prevent core dumps on looping symbolic references. (2001/07/06 - broeker) Code dealing with database creation ripped out of main.c and moved to a new module build.c. New header file build.h to go with it. (2001/07/05 - cohrs) LEX and SUNOS fix for scanner. (2001/07/05 - broeker) Put in lots of 'static' keywords, added prototypes. (2001/07/05 - broeker) Renamed pclose() function to mypclose(), in order not to cause a conflict with system function having the same name. (2001/07/05 - broeker) Centralisation of BSDism configuration stuff. Removal of some remaining external prototypes from .c files, where they should never be. Added multiple inclusion guards to all headers. Ask for feature instead of testing a list of platform-#defines, wherever possible. (2001/07/05 - broeker) Some post-last-minute DOS/DJGPP build fixes. (2001/07/03 - petrs) Updated the version strings to 16.0a. (2001/07/02 - petrs) Updated the contrib/README to include xcscope. (2001/07/02 - petrs) 15.3 version name, man page update, README update. Make dist includes webcscope directory. (2001/06/29 - ragho) webcscope added to contrib (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. (2001/06/28 - broeker) Added files in packages/MSDOS that help compiling cscope on MSDOS using the DJGPP compiler. (2001/06/28 - broeker) Add test for existence of <sys/termios.h> header, to protect platforms that don't have it. (2001/06/27 - broeker) Yet another set of automake/autoconf changes. Regenerated auto* files checked in, too. We are 'make distcheck' ready, now. Added 'ylwrap' to CVS. (2001/06/26 - broeker) Changed lex/flex handling in automake/autoconf setup to make 'make distcheck' work cleanly: added new files scanner.h and lookup.h to list of sources. Made sure both scanner.l and fscanner.l end up in the distribution tarball, as they should. Removed some quotes from definition of ACNU_DECL_YYTEXT in configure.in which confused autoheader. (2001/06/25 - broeker) Change handling of tag-less enums to same method as used in fscanner.l since 2001/06/19. (2001/06/25 - broeker) Fix SF bug #435535: two uses of yytext[] had been left over in fscanner.l, causing incorrect compression of keywords #define and #include. (2001/06/19 - broeker) More bugfixes and changes to flex scanner. Handling of preprocessing directives treats whitespace and garbage after the keyword more gently. It also avoids treating lex patterns as preprocessing directives. And enum/struct/union definitions without a tag are no longer written out to the database, which should help to get rid of 'cannot get sourceline' error messages. Also a new rule to compress whitespace sequences by means of a flex rule (should to be faster than hand-coding). (2001/06/15 - broeker) Bugfix to flex scanner: comments after an #endif, without any whitespace in between, would be dumped to stdout. (2001/06/15 - broeker) Minor documentation glitch in manpage and online help screen: set of keys to choose from matches found contains 0-9, not 1-9. (2001/06/01 - broeker) New version of fscanner.l, and lots of small changes to other source files, too. Avoids (ab)use of yytext[] as a temporary buffer by unrelated pieces of code, and changes exported variables of the scanned line from lex-internal yyleng and my_yyleng to my_yytext and my_yyleng. New header files scanner.h and lookup.h. (2001/06/01 - broeker) Fix 64bit-related bug in invlib.c that caused the symbol 'sun' to not be found on DigitalUnix/Alpha platform. (2001/05/30 - dixon) arrow and editing keys can be now used at the input line (2001/05/30 - duell) invname database issue fix. (2001/05/20 - garret) Fixed some mishaps in ocs. (2001/04/30 - broeker) Fixed signed char casting bug in dicode compression. Encapsulated dicode compression idioms into macros IS_A_DICODE() and DICODE_COMPRESS(). (2001/04/26 - ogawa) Fix for posterr (2001/04/26 - sorfa) Fixed a SIGSEGV in linemode in find.c. Thanks to OGAWA Hirofumi for pointing out the problem. (2001/04/24 - slutz) STMTMAX increased to 10000 (2001/03/29 - broeker) Some further MSDOS/DJGPP patches. Close file 'refsfound' before unlinking it. Avoid calling curses function nonl(). Replace fork/exec/wait machinery in exec.c by call to lib function spawnvp(). (2001/03/28 - broeker) Added flex-able version of scanner.l to the project, as file src/fscanner.l. Changed configure.in and src/Makefile.am to use it if using 'flex'. (2001/03/27 - broeker) Remove 'extern' declaration of yylval from egrep.y:yylex(). It's not needed, as this is inside the Yacc source itself, where the definition of yylval is directly visible, and it causes problems by incompatible redefinition on Alpha/DigitalUnix using yacc. (2001/03/12 - broeker) Some minor changes for compiling cscope with DJGPP, the MSDOG port of GCC. Mainly non-availability of some Unix features like CLOSE_ON_EXEC for files, and SIGTSTP. (2001/03/12 - broeker) Added 'b' flags and O_BINARY bits to all file-opening calls for (potentially) binary data files, to allow cscope to work on DOS-style platforms. Moved vpopen() and vpfopen() prototypes into vp.h. (2001/03/12 - broeker) rename 'basename' to 'mybasename' --- avoid XPG4 name conflict (2001/02/12 - duell) man page update for CSCOPE_* information (2001/02/09 - duell & hull) Support for CSCOPE_EDITOR, CSCOPE_LINEFLAG and CSCOPE_LINEFLAGS_AFTER_FILE (2001/02/09 - petrs) Updated version number to 15.2b (for beta) (2001/02/09 - chuck & wilfredo) Darwin support (2001/01/24 - petrs) Replaced new style C comments, i.e. // (2000/12/12 - petrs) packages/cscope.spec has now no local directory (2000/12/12 - petrs) contrib/ocs now checks that cscope is in $PATH (2000/12/11 - frost) Safety feature in mypopen.c (2000/11/28 - blank) More FreeBSD support (2000/11/23 - broeker) Added check for snprintf() to configure.in (2000/11/22 - petrs) Updated date to cscope.1 man page and retagged the file (2000/11/22 - petrs) Tagged cvs tree as v15_1 (2000/11/21 - petrs) Added UnixWare 7 packaging scripts (2000/11/20 - petrs) 15.1 version name, man page update, README update (2000/10/09 - atrn) better FreeBSD support (2000/10/02 - fritsch) better BeOS support (2000/10/02 - salz) -i now accepts '-' for a list of files from stdio (2000/09/19 - brent) fixed -R to handle similarly named files (2000/05/31 - mascott) ncurses.h gets picked up correctly for FreeBSD (2000/05/18 - hops) display errors via varargs posterr(ap, ..) start changing sprintfs to snprintfs buildonly not go into curses - set linemode - fixes buildonly coredump explicitly initialise some booleans in main.c handle error messages nicely - curses msgline2 line or stdout - using snprintf+posterr(buf). Clear msg2 line on ^L command.c. Support BS in getline() input.c. Add build support for contrib dir. (2000/05/18 - broeker) move declarations of invlib.c functions to invlib.h, from global.h (2000/05/18 - broeker) it's 'myylineno', not 'yylineno' (2000/05/18 - broeker) don't #include <config.h>, but "config.h" -- it's not a system header file, after all. (2000/05/18 - broeker) don't #include "global.h" from egrep.y -- the extern declaration for yylex() only confuses it, and it doesn't need most of "global.h", anyway. (2000/05/18 - broeker) no more 'extern' declaration in .c files -- they belong into the headers. For now, most of them move to "global.h". (2000/05/18 - broeker) don't cast function pointers -- make all the find*() function follow the same prototype, instead. This affects their definitions, too. (2000/05/17 - sharpe) progress bar, tab between line selection and option, new support for more than nine line selections (2000/05/15 - petr) version 15.0bl3 now, spec file change (2000/05/10 - klausner) NetBSD current support (2000/05/09 - petr) added packages directory and cscope.spec file (2000/05/09 - broeker) alloc.c, invlib.c, invlib.h: initial 64bit support (2000/05/05 - broeker) global.h, invlib.c: change return type of invterm to 'long' (2000/05/05 - broeker) remove superfluous casts from and to type 'void *' in calls to malloc() family of routines (2000/05/04 - hops) configure: find flex libs in /usr/local, cmdline args to specify use of flex/lex, yacc/byacc/bison (2000/05/03 - broeker) some code cleanup (2000/05/03 - broeker) more code cleanup and -Wall warnings removal (2000/05/03 - broeker) major code cleanup and fixing of memory leaks (2000/05/03 - broeker) configure checks for vsnprintf (2000/05/03 - petr) More than 9 select lines displays selection in uppercase (2000/05/02 - petr) Added support for more than 9 select lines (up to 45) temporary option -t enables this feature for testing (2000/05/01 - petr) Updated configure.in (and configure) to handle UW7 (2000/04/28 - petr) Fixed another -q failure on large data (2000/04/28 - petr) Fixed -q failure (2000/04/27 - brent) Add support for 3 letter suffixes (currently .tcc) (2000/04/27 - brent) Add -R option to recurse subdirectories (2000/04/27 - petr) Changed version number to 15.0bl2 (2000/04/27 - uzi) Added autoconf and restructure directories (2000/04/26 - petr) Tagged current source as v15_0_bl1 before autoconf support (2000/04/26 - darrylo) minor fixs in crossref.c and scanner.l (2000/04/26 - petr) changed spelling of psuedo to pseudo in scanner.l (2000/04/26 - uzi) Changes in preparation of autoconf/automake setup (2000/04/26 - uzi) Added k to terse args in cscope man page (2000/04/25 - petr) Added h to terse args in cscope man page (2000/04/25 - petr) Fixed build break with flex (2000/04/25 - petr) Added better support for non-flex lex (2000/04/22 - uzi) Added -h option, long usage help screen. (2000/04/22 - uzi) Added -c and -k support to cscope.files config file. (2000/04/22 - uzi) Added Makefile for Solaris and support for Delete key (2000/04/21 - hops) Changes for osr5 and uw7 builds, add contrib dir (2000/04/21 - petr) Created new build directory with system specific makefiles (2000/04/20 - uzi) -k kernel option and code clean up (from K&R C to ANSI C) (2000/04/20 - edgar) prevention of cscope.out corruption and correct dboffset calulation (2000/04/20 - martin) Use 'env LC_ALL=C sort' rather than 'LC_ALL=C sort' for sorting (2000/04/19 - petr) Added README/NEWS/AUTHORS files (2000/04/19 - jens) Non-preformatted man page (2000/04/19 - petr) Make sure install directory exists with make install (2000/04/19 - petr) Make sure temporary directory exists (2000/04/18 - petr) Remove temporary buffer (2000/04/18 - garyp) Support for .cc and .hh files (2000/04/17 - petr) Initial OpenSource release. Initial Linux port Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.127 retrieving revision 1.128 diff -C2 -r1.127 -r1.128 *** ChangeLog 4 Sep 2003 16:04:39 -0000 1.127 --- ChangeLog 15 Sep 2003 10:58:18 -0000 1.128 *************** *** 1,288 **** ! (2003/08/14 - broeker) Cleaned up man page, INSTALL and TODO files. ! (2003/08/14 - broeker) Have configure check for <regex.h>. Bail out if none ! found. ! (2003/08/14 - broeker) New options --help and --version. ! (2003/06/12 - broeker) New option -v to output progress updates even in ! line mode. To be used by interface kscope. ! (2003/06/02 - broeker) Use the basename of files only to test for SCCS/RCS ! files in -R traversal. ! (2003/04/29 - broeker) Check that a src file is a regular file before trying to ! scan it. Change from S_IFDIR/S_IFREG bit tests to ! macros S_ISDIR/S_ISREG. ! (2003/03/05 - broeker) Remove '-y' option from pipe call to utility "sort". ! It's long since deprecated, and some modern versions ! will barf seeing it. ! (2003/03/02 - broeker) Don't restrict to 14 character filenames any longer. ! (2003/01/23 - broeker) Update to latest auto* tools. First step towards ! integration of GNOME GUI version. ! (2002/12/11 - broeker) Get rid of deprecated ={...} style actions in egrep.y. ! Use plain {...} instead. ! (2002/10/29 - broeker) Fix bug #588671: disprefs was still 0 if only 1 very ! long reference output shown by curses display. ! (2002/08/27 - broeker) Fix bug #600494: use mygetenv() for HOME, and provide ! a fall-back if it's not there. ! (2002/08/15 - broeker) DOS/Cygwin bugfix: avoid setmode() if fopen() failed. ! (2002/07/27 - broeker) Yet another round of Cygwin-related fixes. Do the ! #include <fcntl.h> early enough, so checks for ! O_BINARY work. Make sure that myexit() is always ! called instead of calling exit() directly. Add ! AC_EXEEXT to configure.in. ! (2002/07/10 - broeker) Get rid of assumption about values of access() ! parameters W_OK and R_OK --- make assumptions only ! if system doesn't supply values. Add check for ! existence of lstat(); fall back to stat() if not ! available. Avoid confusion of DOS' setmode() with ! BSD function of same name... ! (2002/07/07 - broeker) Delete tempfile before redirecting to it, to avoid ! complaints about clobbering from poorly configured ! default shells. ! (2002/06/20 - broeker) Fix operation of -C -L0 if pattern contains any ! upper-case characters. ! (2002/06/20 - broeker) Fix handling of non-standard whitespace in Flex ! scanner. Should make it more robust against DOS text ! files that ended up on a Unix box, and other unexpected ! characters, and avoid SF bug #508060. ! (2002/03/16 - broeker) Fix namelist handling bug: ./ in paths would cause ! search for next name to fail (SF bug #529618). ! -I/-p and their argument no longer have to be in ! one line inside the namelist file, and -I pathname ! can now be quote-escaped. ! (2002/03/13 - broeker) Add AC_PREREQ() call to configure.in. Enables Cygwin ! automagic hack to call the right autoconf for us. ! (2002/03/13 - broeker) Replace all references to manpage 'regcmp(3X)' in ! messages and comments by regcomp(3), which is what ! cscope actually uses. ! (2002/03/08 - broeker) Fix completely broken handling of filenames with blanks ! in namelist files. Use fgets + sscanf, not fscanf, and ! don't split at whitespace inside "" quotes. ! (2001/01/04 - broeker) Survive Cygwin "binmode" mounted filesystems by ! explicitly forcing text mode for source files. ! (2002/01/02 - broeker) Updated files supplied or generated by automake to ! version 1.4-p5, the current recommended version in the ! 1.4 series. ! (2002/01/02 - broeker) Add handling of "quoted filenames with blanks in" in ! namelist files ! (2001/11/22 - broeker) Quell some compiler warnings caused by missing #includes ! and private declarations of system library functions. ! (2001/10/30 - petrs) Added Joe Steffen to author's list as the creator. ! (2001/10/19 - broeker) Replace usages of freopen() by fclose()/fopen() pairs ! to work around bug in some Linux libc constellation. ! (2001/10/10 - broeker) Remove unused argument 'name' of addsrcfile() function. ! Alternative buffer overflow protection scheme, using ! "%.*s" format specifiers in ordinary sprintf(); now used ! throughout dir.c. ! (2001/10/09 - valentin) Prevention of a possible buffer overflow. ! (2001/09/27 - broeker) Added autoconf test to use Cygwin's separate ! -lregex. The regcomp() in libc is not what we want. ! (2001/09/13 - broeker) Move chunk for malformed CPP directives further down, so ! it won't incorrectly eat up #else or #endif directives. ! Fixes bug #460345. ! (2001/08/27 - broeker) Add C++-style comments to {comment} pattern. Fixes ! bug #455441: C++ comments in the middle of a function ! definition caused it not be recognized. ! (2001/08/15 - broeker) Zero out 'disprefs' whenever the count of references, ! 'totallines' is set to zero. This makes sure that you ! can't <Tab> into the selection area if there's nothing ! in it. ! (2001/08/13 - jcduell) Revisited inverted index file name fixup routines. ! (Patch #444669 from SourceForge). ! (2001/08/03 - broeker) Use %option noyywrap in fscanner.l to avoid problems ! with broken flex installations that can't find -lfl. ! (2001/07/12 - dixon) Updated INSTALL with new configure info for HP-UX. ! (2001/07/11 - broeker) Fixed #if syntax glitch in cohrs' SUNOS change. ! (2001/07/09 - petrs) Substituted lstat() for stat() to prevent core ! dumps on looping symbolic references. ! (2001/07/06 - broeker) Code dealing with database creation ripped out of ! main.c and moved to a new module build.c. New ! header file build.h to go with it. ! (2001/07/05 - cohrs) LEX and SUNOS fix for scanner. ! (2001/07/05 - broeker) Put in lots of 'static' keywords, added prototypes. ! (2001/07/05 - broeker) Renamed pclose() function to mypclose(), in order not to ! cause a conflict with system function having the same ! name. ! (2001/07/05 - broeker) Centralisation of BSDism configuration stuff. Removal of ! some remaining external prototypes from .c files, where ! they should never be. Added multiple inclusion guards ! to all headers. Ask for feature instead of testing a ! list of platform-#defines, wherever possible. ! (2001/07/05 - broeker) Some post-last-minute DOS/DJGPP build fixes. ! (2001/07/03 - petrs) Updated the version strings to 16.0a. ! (2001/07/02 - petrs) Updated the contrib/README to include xcscope. ! (2001/07/02 - petrs) 15.3 version name, man page update, README update. ! Make dist includes webcscope directory. ! (2001/06/29 - ragho) webcscope added to contrib ! (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. ! (2001/06/28 - broeker) Added files in packages/MSDOS that help compiling ! cscope on MSDOS using the DJGPP compiler. ! (2001/06/28 - broeker) Add test for existence of <sys/termios.h> header, ! to protect platforms that don't have it. ! (2001/06/27 - broeker) Yet another set of automake/autoconf changes. ! Regenerated auto* files checked in, too. We are ! 'make distcheck' ready, now. Added 'ylwrap' to ! CVS. ! (2001/06/26 - broeker) Changed lex/flex handling in automake/autoconf setup ! to make 'make distcheck' work cleanly: added new ! files scanner.h and lookup.h to list of sources. ! Made sure both scanner.l and fscanner.l end up in the ! distribution tarball, as they should. Removed some ! quotes from definition of ACNU_DECL_YYTEXT in ! configure.in which confused autoheader. ! (2001/06/25 - broeker) Change handling of tag-less enums to same method as ! used in fscanner.l since 2001/06/19. ! (2001/06/25 - broeker) Fix SF bug #435535: two uses of yytext[] had been left ! over in fscanner.l, causing incorrect compression of ! keywords #define and #include. ! (2001/06/19 - broeker) More bugfixes and changes to flex scanner. Handling ! of preprocessing directives treats whitespace and ! garbage after the keyword more gently. It also avoids ! treating lex patterns as preprocessing directives. And ! enum/struct/union definitions without a tag are no ! longer written out to the database, which should help ! to get rid of 'cannot get sourceline' error messages. ! Also a new rule to compress whitespace sequences by ! means of a flex rule (should to be faster than ! hand-coding). ! (2001/06/15 - broeker) Bugfix to flex scanner: comments after an #endif, ! without any whitespace in between, would be dumped ! to stdout. ! (2001/06/15 - broeker) Minor documentation glitch in manpage and online help ! screen: set of keys to choose from matches found ! contains 0-9, not 1-9. ! (2001/06/01 - broeker) New version of fscanner.l, and lots of ! small changes to other source files, too. Avoids ! (ab)use of yytext[] as a temporary buffer by unrelated ! pieces of code, and changes exported variables of the ! scanned line from lex-internal yyleng and my_yyleng ! to my_yytext and my_yyleng. New header files scanner.h ! and lookup.h. ! (2001/06/01 - broeker) Fix 64bit-related bug in invlib.c that caused the symbol ! 'sun' to not be found on DigitalUnix/Alpha platform. ! (2001/05/30 - dixon) arrow and editing keys can be now used at the input line ! (2001/05/30 - duell) invname database issue fix. ! (2001/05/20 - garret) Fixed some mishaps in ocs. ! (2001/04/30 - broeker) Fixed signed char casting bug in dicode compression. ! Encapsulated dicode compression idioms into macros ! IS_A_DICODE() and DICODE_COMPRESS(). ! (2001/04/26 - ogawa) Fix for posterr ! (2001/04/26 - sorfa) Fixed a SIGSEGV in linemode in find.c. Thanks to OGAWA Hirofumi ! for pointing out the problem. ! (2001/04/24 - slutz) STMTMAX increased to 10000 ! (2001/03/29 - broeker) Some further MSDOS/DJGPP patches. Close file ! 'refsfound' before unlinking it. Avoid calling curses ! function nonl(). Replace fork/exec/wait machinery in ! exec.c by call to lib function spawnvp(). ! (2001/03/28 - broeker) Added flex-able version of scanner.l to the project, as ! file src/fscanner.l. Changed configure.in and ! src/Makefile.am to use it if using 'flex'. ! (2001/03/27 - broeker) Remove 'extern' declaration of yylval from ! egrep.y:yylex(). It's not needed, as this is inside the ! Yacc source itself, where the definition of yylval is ! directly visible, and it causes problems by incompatible ! redefinition on Alpha/DigitalUnix using yacc. ! (2001/03/12 - broeker) Some minor changes for compiling cscope with DJGPP, the ! MSDOG port of GCC. Mainly non-availability of some ! Unix features like CLOSE_ON_EXEC for files, and SIGTSTP. ! (2001/03/12 - broeker) Added 'b' flags and O_BINARY bits to all file-opening ! calls for (potentially) binary data files, to allow ! cscope to work on DOS-style platforms. Moved vpopen() ! and vpfopen() prototypes into vp.h. ! (2001/03/12 - broeker) rename 'basename' to 'mybasename' --- avoid XPG4 ! name conflict ! (2001/02/12 - duell) man page update for CSCOPE_* information ! (2001/02/09 - duell & hull) Support for CSCOPE_EDITOR, CSCOPE_LINEFLAG and ! CSCOPE_LINEFLAGS_AFTER_FILE ! (2001/02/09 - petrs) Updated version number to 15.2b (for beta) ! (2001/02/09 - chuck & wilfredo) Darwin support ! (2001/01/24 - petrs) Replaced new style C comments, i.e. // ! (2000/12/12 - petrs) packages/cscope.spec has now no local directory ! (2000/12/12 - petrs) contrib/ocs now checks that cscope is in $PATH ! (2000/12/11 - frost) Safety feature in mypopen.c ! (2000/11/28 - blank) More FreeBSD support ! (2000/11/23 - broeker) Added check for snprintf() to configure.in ! (2000/11/22 - petrs) Updated date to cscope.1 man page and retagged the file ! (2000/11/22 - petrs) Tagged cvs tree as v15_1 ! (2000/11/21 - petrs) Added UnixWare 7 packaging scripts ! (2000/11/20 - petrs) 15.1 version name, man page update, README update ! (2000/10/09 - atrn) better FreeBSD support ! (2000/10/02 - fritsch) better BeOS support ! (2000/10/02 - salz) -i now accepts '-' for a list of files from stdio ! (2000/09/19 - brent) fixed -R to handle similarly named files ! (2000/05/31 - mascott) ncurses.h gets picked up correctly for FreeBSD ! (2000/05/18 - hops) display errors via varargs posterr(ap, ..) ! start changing sprintfs to snprintfs ! buildonly not go into curses - set linemode ! - fixes buildonly coredump ! explicitly initialise some booleans in main.c ! handle error messages nicely - curses msgline2 line ! or stdout - using snprintf+posterr(buf). ! Clear msg2 line on ^L command.c. ! Support BS in getline() input.c. ! Add build support for contrib dir. ! (2000/05/18 - broeker) move declarations of invlib.c functions to invlib.h, ! from global.h ! (2000/05/18 - broeker) it's 'myylineno', not 'yylineno' ! (2000/05/18 - broeker) don't #include <config.h>, but "config.h" -- ! it's not a system header file, after all. ! (2000/05/18 - broeker) don't #include "global.h" from egrep.y -- the ! extern declaration for yylex() only confuses ! it, and it doesn't need most of "global.h", ! anyway. ! (2000/05/18 - broeker) no more 'extern' declaration in .c files -- they ! belong into the headers. For now, most of them move to ! "global.h". ! (2000/05/18 - broeker) don't cast function pointers -- make all the ! find*() function follow the same prototype, ! instead. This affects their definitions, too. ! (2000/05/17 - sharpe) progress bar, tab between line selection and option, ! new support for more than nine line selections ! (2000/05/15 - petr) version 15.0bl3 now, spec file change ! (2000/05/10 - klausner) NetBSD current support ! (2000/05/09 - petr) added packages directory and cscope.spec file ! (2000/05/09 - broeker) alloc.c, invlib.c, invlib.h: initial 64bit support ! (2000/05/05 - broeker) global.h, invlib.c: change return type of invterm to ! 'long' ! (2000/05/05 - broeker) remove superfluous casts from and to type 'void *' ! in calls to malloc() family of routines ! (2000/05/04 - hops) configure: find flex libs in /usr/local, ! cmdline args to specify use of flex/lex, yacc/byacc/bison ! (2000/05/03 - broeker) some code cleanup ! (2000/05/03 - broeker) more code cleanup and -Wall warnings removal ! (2000/05/03 - broeker) major code cleanup and fixing of memory leaks ! (2000/05/03 - broeker) configure checks for vsnprintf ! (2000/05/03 - petr) More than 9 select lines displays selection in uppercase ! (2000/05/02 - petr) Added support for more than 9 select lines (up to 45) ! temporary option -t enables this feature for testing ! (2000/05/01 - petr) Updated configure.in (and configure) to handle UW7 ! (2000/04/28 - petr) Fixed another -q failure on large data ! (2000/04/28 - petr) Fixed -q failure ! (2000/04/27 - brent) Add support for 3 letter suffixes (currently .tcc) ! (2000/04/27 - brent) Add -R option to recurse subdirectories ! (2000/04/27 - petr) Changed version number to 15.0bl2 ! (2000/04/27 - uzi) Added autoconf and restructure directories ! (2000/04/26 - petr) Tagged current source as v15_0_bl1 before autoconf support ! (2000/04/26 - darrylo) minor fixs in crossref.c and scanner.l ! (2000/04/26 - petr) changed spelling of psuedo to pseudo in scanner.l ! (2000/04/26 - uzi) Changes in preparation of autoconf/automake setup ! (2000/04/26 - uzi) Added k to terse args in cscope man page ! (2000/04/25 - petr) Added h to terse args in cscope man page ! (2000/04/25 - petr) Fixed build break with flex ! (2000/04/25 - petr) Added better support for non-flex lex ! (2000/04/22 - uzi) Added -h option, long usage help screen. ! (2000/04/22 - uzi) Added -c and -k support to cscope.files config file. ! (2000/04/22 - uzi) Added Makefile for Solaris and support for Delete key ! (2000/04/21 - hops) Changes for osr5 and uw7 builds, add contrib dir ! (2000/04/21 - petr) Created new build directory with system specific makefiles ! (2000/04/20 - uzi) -k kernel option and code clean up (from K&R C to ANSI C) ! (2000/04/20 - edgar) prevention of cscope.out corruption and correct dboffset calulation ! (2000/04/20 - martin) Use 'env LC_ALL=C sort' rather than 'LC_ALL=C sort' for sorting ! (2000/04/19 - petr) Added README/NEWS/AUTHORS files ! (2000/04/19 - jens) Non-preformatted man page ! (2000/04/19 - petr) Make sure install directory exists with make install ! (2000/04/19 - petr) Make sure temporary directory exists ! (2000/04/18 - petr) Remove temporary buffer ! (2000/04/18 - garyp) Support for .cc and .hh files ! (2000/04/17 - petr) Initial OpenSource release. Initial Linux port --- 1,25 ---- ! Mon Sep 15 12:34:46 2003 Hans-Bernhard Broeker <br...@ph...> ! ! * src/egrep.y (yylex, member, egrep, cgotofn): Reindented. Fixed ! implicit int declarations and casts. ! ! * src/global.h (tolower, tolower) [BSD]: Fix override definitions ! for these so they don't mung non-alphabetic input. ! ! Fri Sep 12 09:33:19 2003 Hans-Bernhard Broeker <br...@ph...> ! ! * src/vp.h: Add #include of <sys/types.h> to fix problem on ! Solaris. ! ! Fri Sep 12 09:33:19 2003 Hans-Bernhard Broeker <br...@ph...> ! ! I'm finally starting a new, GNU-format ChangeLog file. The format ! of the previous was too terse to be really useful. This begins ! with the first changes after release 15.5. ! ! * ChangeLog.old: New file. Renamed copy of old-format ChangeLog ! file. ! ! * ChangeLog: Started from scratch. ! ! |
From: Hans-Bernhard B. <br...@us...> - 2003-09-04 17:15:40
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1:/tmp/cvs-serv16710 Modified Files: AUTHORS NEWS Log Message: Updated for 15.5 bugfix release. Index: AUTHORS =================================================================== RCS file: /cvsroot/cscope/cscope/AUTHORS,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -r1.31 -r1.32 *** AUTHORS 30 Oct 2001 21:45:04 -0000 1.31 --- AUTHORS 4 Sep 2003 17:15:34 -0000 1.32 *************** *** 1,4 **** Joe Steffen - Creator of Cscope ! Petr Sorfa <pe...@us...> - Maintainer Simon Cozens - autoconf setup ga...@di... - .cc .hh support --- 1,5 ---- Joe Steffen - Creator of Cscope ! Hans-Bernhard Broeker <br...@ph...> - Maintainer ! Petr Sorfa <pe...@us...> - Initial OpenSource Maintainer Simon Cozens - autoconf setup ga...@di... - .cc .hh support *************** *** 10,14 **** Darrylo Okahata <da...@us...> - code quality improvements Brent Verner <br...@rc...> - -R option to recurse sub directories - Hans-Bernhard Broeker <br...@ph...> - autoconf, memory leaks Thomas Klausner - NetBSD support Andrew Sharpe - progress bar, tab between line selection and prompts and more --- 11,14 ---- Index: NEWS =================================================================== RCS file: /cvsroot/cscope/cscope/NEWS,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** NEWS 2 Jul 2001 16:06:43 -0000 1.2 --- NEWS 4 Sep 2003 17:15:34 -0000 1.3 *************** *** 1,2 **** --- 1,4 ---- + 2003/09/04 - Release of version 15.5. + 2002/08/15 - Release of version 15.4. 2001/07/02 - Release of version 15.3. 2000/04/18 - Release of Version 13.0 into Open Source. Initial Linux port |
From: Hans-Bernhard B. <br...@us...> - 2003-09-04 16:05:10
|
Update of /cvsroot/cscope/cscope In directory sc8-pr-cvs1:/tmp/cvs-serv3346 Modified Files: TODO ChangeLog Log Message: Updated list of things to do. Index: TODO =================================================================== RCS file: /cvsroot/cscope/cscope/TODO,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** TODO 14 Aug 2003 14:37:49 -0000 1.4 --- TODO 4 Sep 2003 16:04:39 -0000 1.5 *************** *** 1,11 **** ! + Add --help option ! ! ? Apply added capability from osr5 codebase + Display the current case mode (^C) onscreen - ? Change to full screen target display and use bottom line for command, - control or fn keys for operations (cf pine) - + emacs like key bindings ^S for searching (^Y) --- 1,6 ---- ! Open + Display the current case mode (^C) onscreen + emacs like key bindings ^S for searching (^Y) *************** *** 18,19 **** --- 13,24 ---- + Provide some how-do-I-use-this-thing doc. + + + Replace invlib.[ch] by real database. Failing that, at least sanitize it. + + Possible changes: + + ? Change to full screen target display and use bottom line for command, + control or fn keys for operations (cf pine) + + ? Apply added capability from osr5 codebase + Index: ChangeLog =================================================================== RCS file: /cvsroot/cscope/cscope/ChangeLog,v retrieving revision 1.126 retrieving revision 1.127 diff -C2 -r1.126 -r1.127 *** ChangeLog 14 Aug 2003 14:39:01 -0000 1.126 --- ChangeLog 4 Sep 2003 16:04:39 -0000 1.127 *************** *** 2,6 **** (2003/08/14 - broeker) Have configure check for <regex.h>. Bail out if none found. ! (2003/08/14 - broeker) New options --help and --version. (2003/06/12 - broeker) New option -v to output progress updates even in line mode. To be used by interface kscope. --- 2,6 ---- (2003/08/14 - broeker) Have configure check for <regex.h>. Bail out if none found. ! (2003/08/14 - broeker) New options --help and --version. (2003/06/12 - broeker) New option -v to output progress updates even in line mode. To be used by interface kscope. |
From: Hans-Bernhard B. <br...@us...> - 2003-08-14 14:50:50
|
Update of /cvsroot/cscope/cscope/src In directory sc8-pr-cvs1:/tmp/cvs-serv27384/src Modified Files: main.c Log Message: Support --help and --version options Index: main.c =================================================================== RCS file: /cvsroot/cscope/cscope/src/main.c,v retrieving revision 1.30 retrieving revision 1.31 diff -C2 -r1.30 -r1.31 *** main.c 12 Jun 2003 17:11:38 -0000 1.30 --- main.c 14 Aug 2003 14:36:17 -0000 1.31 *************** *** 140,143 **** --- 140,161 ---- /* set the options */ while (--argc > 0 && (*++argv)[0] == '-') { + /* HBB 20030814: add GNU-style --help and --version + * options */ + if (strequal(argv[0], "--help") + || strequal(argv[0], "-h")) { + longusage(); + myexit(0); + } + if (strequal(argv[0], "--version") + || strequal(argv[0], "-V")) { + #if CCS + displayversion = YES; + #else + fprintf(stderr, "%s: version %d%s\n", argv0, + FILEVERSION, FIXVERSION); + myexit(0); + #endif + } + for (s = argv[0] + 1; *s != '\0'; s++) { *************** *** 163,175 **** ++argv; goto lastarg; - case 'V': /* print the version number */ - #if CCS - displayversion = YES; - break; - #else - (void) fprintf(stderr, "%s: version %d%s\n", argv0, - FILEVERSION, FIXVERSION); - myexit(0); - #endif case 'b': /* only build the cross-reference */ buildonly = YES; --- 181,184 ---- *************** *** 189,195 **** editallprompt = NO; break; - case 'h': - (void) longusage(); - myexit(1); case 'k': /* ignore DFLT_INCDIR */ kernelmode = YES; --- 198,201 ---- |