You can subscribe to this list here.
| 2003 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(23) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2004 |
Jan
(5) |
Feb
(22) |
Mar
(3) |
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
(3) |
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(5) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <ho...@us...> - 2003-12-13 03:08:30
|
Update of /cvsroot/ganc/ganc/src
In directory sc8-pr-cvs1:/tmp/cvs-serv8473/src
Modified Files:
parser_stuff.c
Log Message:
Fixed little bug in yylex introduced in previous commit
Index: parser_stuff.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/parser_stuff.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** parser_stuff.c 13 Dec 2003 02:56:52 -0000 1.8
--- parser_stuff.c 13 Dec 2003 03:08:27 -0000 1.9
***************
*** 317,320 ****
--- 317,321 ----
previous_token_closing= 0;
return_value= IMPLICIT_PROD;
+ epos= pos;
handled= 1;
} else { // not syntactically open
***************
*** 425,428 ****
--- 426,430 ----
if (epos>pos) initial_pos= pos;
pos= epos;
+
return return_value;
}
|
|
From: <ho...@us...> - 2003-12-13 02:56:56
|
Update of /cvsroot/ganc/ganc/src
In directory sc8-pr-cvs1:/tmp/cvs-serv6664/src
Modified Files:
parser_stuff.c reader_stuff.c syntax.y
Log Message:
Added '--enable-debug' option to 'configure'
First attempt to indicate position whenever there's an error (unsuccesful)
Index: parser_stuff.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/parser_stuff.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** parser_stuff.c 12 Dec 2003 05:46:59 -0000 1.7
--- parser_stuff.c 13 Dec 2003 02:56:52 -0000 1.8
***************
*** 87,91 ****
int base;
} output_format;
-
static struct {
int error; // contains the error # ; zero if no error
--- 87,90 ----
***************
*** 93,96 ****
--- 92,96 ----
} parse_error;
static int previous_token_closing; // set when last token was a 'syntactically closing' token
+ static int initial_pos;
***************
*** 313,339 ****
// we've got an 'entry', lets check it
if (epos>pos) {
! // if just 'syntactically' opened or closed
if (previous_token_closing) {
previous_token_closing= 0;
! return IMPLICIT_PROD;
! }
! aux= input[epos];
! input[epos]= '\0';
! if ((id= CheckFunction (input + pos))!=-1) { // it's a function
! yylval.id= id;
! return_value= FUNCTION;
! } else if (CheckVariable (input + pos)) { // it's a known variable
! copy_text= NewNameListEntry (input + pos);
! yylval.name= copy_text;
! return_value= VARIABLE;
! previous_token_closing_new= 1;
! } else { // it's an 'entry' (either new variable or number)
! copy_text= NewNameListEntry (input + pos);
! yylval.name= copy_text;
! return_value= ENTRY;
! previous_token_closing_new= 1;
}
- input[epos]= aux;
- handled= 1;
} else { // no entry, just an operator (single character)
epos= pos + 1;
--- 313,341 ----
// we've got an 'entry', lets check it
if (epos>pos) {
! // if 'syntactically' opened or closed
if (previous_token_closing) {
previous_token_closing= 0;
! return_value= IMPLICIT_PROD;
! handled= 1;
! } else { // not syntactically open
! aux= input[epos];
! input[epos]= '\0';
! if ((id= CheckFunction (input + pos))!=-1) { // it's a function
! yylval.id= id;
! return_value= FUNCTION;
! } else if (CheckVariable (input + pos)) { // it's a known variable
! copy_text= NewNameListEntry (input + pos);
! yylval.name= copy_text;
! return_value= VARIABLE;
! previous_token_closing_new= 1;
! } else { // it's an 'entry' (either new variable or number)
! copy_text= NewNameListEntry (input + pos);
! yylval.name= copy_text;
! return_value= ENTRY;
! previous_token_closing_new= 1;
! }
! input[epos]= aux;
! handled= 1;
}
} else { // no entry, just an operator (single character)
epos= pos + 1;
***************
*** 345,402 ****
--epos;
previous_token_closing= 0;
! return IMPLICIT_PROD;
}
- copy_text= NewNameListEntry ("ans");
- yylval.name= copy_text;
- return_value= VARIABLE;
- previous_token_closing_new= 1;
}
! if (input[pos]=='(') {
if (previous_token_closing) {
- previous_token_closing= 0;
--epos;
! return IMPLICIT_PROD;
}
}
! if (input[pos]==')') previous_token_closing_new= 1;
! if (input[pos]=='!') previous_token_closing_new= 1;
! if (input[pos]=='^' && input[pos + 1]=='|') {
return_value= BITXOR;
epos= pos + 2;
}
! if (input[pos]=='<' && input[pos + 1]=='<') {
return_value= BITLSHIFT;
epos= pos + 2;
}
! if (input[pos]=='>' && input[pos + 1]=='>') {
return_value= BITRSHIFT;
epos= pos + 2;
}
! if (input[pos]=='&' && input[pos + 1]=='&') {
return_value= LOGICAND;
epos= pos + 2;
}
! if (input[pos]=='|' && input[pos + 1]=='|') {
return_value= LOGICOR;
epos= pos + 2;
}
! if (input[pos]=='!' && input[pos + 1]=='=') {
return_value= LOGICNE;
epos= pos + 2;
}
! if (input[pos]=='=' && input[pos + 1]=='=') {
return_value= LOGICEQ;
epos= pos + 2;
}
! if (input[pos]=='>' && input[pos + 1]=='=') {
return_value= LOGICGE;
epos= pos + 2;
}
! if (input[pos]=='<' && input[pos + 1]=='=') {
return_value= LOGICLE;
epos= pos + 2;
}
--- 347,417 ----
--epos;
previous_token_closing= 0;
! return_value= IMPLICIT_PROD;
! handled= 1;
! } else {
! copy_text= NewNameListEntry ("ans");
! yylval.name= copy_text;
! previous_token_closing_new= 1;
! return_value= VARIABLE;
! handled= 1;
}
}
! if (!handled && input[pos]=='(') {
if (previous_token_closing) {
--epos;
! previous_token_closing= 0;
! return_value= IMPLICIT_PROD;
! handled= 1;
}
}
! if (!handled && input[pos]==')') previous_token_closing_new= 1;
! if (!handled && input[pos]=='!') previous_token_closing_new= 1;
! if (!handled && input[pos]=='^' && input[pos + 1]=='|') {
return_value= BITXOR;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='<' && input[pos + 1]=='<') {
return_value= BITLSHIFT;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='>' && input[pos + 1]=='>') {
return_value= BITRSHIFT;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='&' && input[pos + 1]=='&') {
return_value= LOGICAND;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='|' && input[pos + 1]=='|') {
return_value= LOGICOR;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='!' && input[pos + 1]=='=') {
return_value= LOGICNE;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='=' && input[pos + 1]=='=') {
return_value= LOGICEQ;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='>' && input[pos + 1]=='=') {
return_value= LOGICGE;
epos= pos + 2;
+ handled= 1;
}
! if (!handled && input[pos]=='<' && input[pos + 1]=='=') {
return_value= LOGICLE;
epos= pos + 2;
+ handled= 1;
}
***************
*** 404,408 ****
if (previous_token_closing_new) previous_token_closing= 1;
else previous_token_closing= 0;
!
pos= epos;
return return_value;
--- 419,427 ----
if (previous_token_closing_new) previous_token_closing= 1;
else previous_token_closing= 0;
!
! // update position variable
! /* yylloc.first_column= pos;
! yylloc.first_last_column= epos;*/
! if (epos>pos) initial_pos= pos;
pos= epos;
return return_value;
***************
*** 494,503 ****
/* int i; */
ResetParseError ();
ResetOutputFormat ();
previous_token_closing= 0;
input= text;
! // first of all change to lower case
! //for (i=0; i<strlen (input); ++i) input[i]= tolower (input[i]);
pos= 0;
// Makes a copy of current variable list
--- 513,524 ----
/* int i; */
+ // reset special variables
ResetParseError ();
ResetOutputFormat ();
previous_token_closing= 0;
+ /* yylloc.first_line= yylloc.last_line= 0;
+ yylloc.first_column= yylloc.last_column = 0;*/
input= text;
! initial_pos= 0;
pos= 0;
// Makes a copy of current variable list
***************
*** 519,523 ****
var_list_ini= copy_var_list_ini;
// returns position of error
! error= pos + 1;
} else { // no errors hapenned
// Free copy of variable list
--- 540,544 ----
var_list_ini= copy_var_list_ini;
// returns position of error
! error= initial_pos + 1;
} else { // no errors hapenned
// Free copy of variable list
Index: reader_stuff.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/reader_stuff.c,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** reader_stuff.c 12 Dec 2003 23:31:14 -0000 1.12
--- reader_stuff.c 13 Dec 2003 02:56:52 -0000 1.13
***************
*** 283,287 ****
static void LineIsReady (char *line)
{
! int i, start;
int num_sublines;
int *sublines = NULL;
--- 283,287 ----
static void LineIsReady (char *line)
{
! int i, j, start;
int num_sublines;
int *sublines = NULL;
***************
*** 311,314 ****
--- 311,317 ----
if (error) {
+ /*for (j=0; j<(int) strlen (PROMPT); ++j) printf (" ");
+ for (j=0; j<error - 1; ++j) printf (" ");
+ printf ("^\n");*/
printf ("error: %s", parse_errors[ParseError () - 1]);
Index: syntax.y
===================================================================
RCS file: /cvsroot/ganc/ganc/src/syntax.y,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** syntax.y 12 Dec 2003 05:46:59 -0000 1.4
--- syntax.y 13 Dec 2003 02:56:52 -0000 1.5
***************
*** 6,11 ****
%}
- /* %expect 54 /* /* expect 54 shift/reduce conflicts */
-
%union {
VALUE_TYPE value;
--- 6,9 ----
|
|
From: <ho...@us...> - 2003-12-13 02:56:55
|
Update of /cvsroot/ganc/ganc
In directory sc8-pr-cvs1:/tmp/cvs-serv6664
Modified Files:
configure.in reconf.sh
Log Message:
Added '--enable-debug' option to 'configure'
First attempt to indicate position whenever there's an error (unsuccesful)
Index: configure.in
===================================================================
RCS file: /cvsroot/ganc/ganc/configure.in,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** configure.in 13 Dec 2003 00:25:06 -0000 1.13
--- configure.in 13 Dec 2003 02:56:52 -0000 1.14
***************
*** 3,16 ****
AC_INIT(src/main.c)
AM_CONFIG_HEADER(config.h)
! AM_INIT_AUTOMAKE(ganc, dev)
dnl C stuff
AC_PROG_CC
- dnl uncomment next line to take '-g' out of CFLAGS (no debug information)
- dnl CFLAGS=${CFLAGS//-g/}
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_PROG_CC_C_O
AC_PROG_CPP
CFLAGS="-Wall $CFLAGS"
--- 3,26 ----
AC_INIT(src/main.c)
AM_CONFIG_HEADER(config.h)
! AM_INIT_AUTOMAKE(ganc, cvs)
!
! dnl Do --enable --disable checks
! dnl Check if debug information has been enabled
! AC_ARG_ENABLE([debug], AC_HELP_STRING([--enable-debug], [compile with debug information '-g' (disabled by default)]),
! [COMPILE_DEBUG=$enableval], [COMPILE_DEBUG=no])
! dnl Check if GUI has been disabled by user (enabled by default)
! AC_ARG_ENABLE([gui], AC_HELP_STRING([--disable-gui], [disable GUI (GUI is enabled by default)]),
! [BUILD_GUI=$enableval], [BUILD_GUI=yes])
dnl C stuff
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC
AC_PROG_CC_C_O
AC_PROG_CPP
+
+ AC_MSG_CHECKING(compiling with debugging information)
+ AC_MSG_RESULT($COMPILE_DEBUG)
+ test "$COMPILE_DEBUG" == "no" && CFLAGS=${CFLAGS//-g/}
CFLAGS="-Wall $CFLAGS"
***************
*** 40,47 ****
test "$readline_found" = "no" && AC_MSG_ERROR(GNU readline library not found)
! dnl Check if GUI has been disabled by user (enabled by default)
! AC_ARG_ENABLE([gui], AC_HELP_STRING([--disable-gui], [disable GUI (GUI is enabled by default)]),
! [BUILD_GUI=$enableval], [BUILD_GUI=yes])
!
AC_CHECK_PROG(PKGCONFIG, pkg-config, yes, no)
test "$PKGCONFIG" = "yes" || BUILD_GUI=no
--- 50,54 ----
test "$readline_found" = "no" && AC_MSG_ERROR(GNU readline library not found)
! dnl check for pkg-config
AC_CHECK_PROG(PKGCONFIG, pkg-config, yes, no)
test "$PKGCONFIG" = "yes" || BUILD_GUI=no
***************
*** 81,85 ****
echo $PACKAGE $VERSION
echo
! echo Building GUI ................. : $BUILD_GUI
echo
echo
--- 88,93 ----
echo $PACKAGE $VERSION
echo
! echo Building GUI ............................ : $BUILD_GUI
! echo Compiling with debug information ........ : $COMPILE_DEBUG
echo
echo
Index: reconf.sh
===================================================================
RCS file: /cvsroot/ganc/ganc/reconf.sh,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** reconf.sh 20 Nov 2003 03:31:39 -0000 1.1.1.1
--- reconf.sh 13 Dec 2003 02:56:52 -0000 1.2
***************
*** 2,5 ****
aclocal
- autoconf
automake -a
--- 2,5 ----
aclocal
automake -a
+ autoconf
|
|
From: <ho...@us...> - 2003-12-13 00:25:09
|
Update of /cvsroot/ganc/ganc
In directory sc8-pr-cvs1:/tmp/cvs-serv16152
Modified Files:
configure.in
Log Message:
Added code to configure.in so code can be compiled without debug information
Index: configure.in
===================================================================
RCS file: /cvsroot/ganc/ganc/configure.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -C2 -d -r1.12 -r1.13
*** configure.in 12 Dec 2003 05:46:59 -0000 1.12
--- configure.in 13 Dec 2003 00:25:06 -0000 1.13
***************
*** 7,10 ****
--- 7,12 ----
dnl C stuff
AC_PROG_CC
+ dnl uncomment next line to take '-g' out of CFLAGS (no debug information)
+ dnl CFLAGS=${CFLAGS//-g/}
AM_PROG_CC_STDC
AC_HEADER_STDC
|
|
From: <xa...@us...> - 2003-12-12 23:57:40
|
Update of /cvsroot/ganc/ganc/src
In directory sc8-pr-cvs1:/tmp/cvs-serv11199/src
Modified Files:
callbacks.h callbacks.c
Log Message:
Changed on_exe_button_clicked() signature to avoid some compiler warnings.
Index: callbacks.h
===================================================================
RCS file: /cvsroot/ganc/ganc/src/callbacks.h,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -d -r1.1.1.1 -r1.2
*** callbacks.h 20 Nov 2003 03:31:39 -0000 1.1.1.1
--- callbacks.h 12 Dec 2003 23:57:37 -0000 1.2
***************
*** 2,6 ****
void button_clicked (GtkWidget *widget, gpointer data);
! void on_button_exe_clicked (GtkButton *button, gpointer user_data);
void on_radiobutton_toggled (GtkToggleButton *button, gpointer data);
--- 2,6 ----
void button_clicked (GtkWidget *widget, gpointer data);
! void on_button_exe_clicked (GtkWidget *button, gpointer user_data);
void on_radiobutton_toggled (GtkToggleButton *button, gpointer data);
Index: callbacks.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/callbacks.c,v
retrieving revision 1.8
retrieving revision 1.9
diff -C2 -d -r1.8 -r1.9
*** callbacks.c 12 Dec 2003 23:48:18 -0000 1.8
--- callbacks.c 12 Dec 2003 23:57:37 -0000 1.9
***************
*** 117,121 ****
// sends a return key event, so expression gets evaluated
//
! void on_button_exe_clicked (GtkButton *button, gpointer user_data)
{
/* GdkEventKey event;
--- 117,121 ----
// sends a return key event, so expression gets evaluated
//
! void on_button_exe_clicked (GtkWidget *button, gpointer user_data)
{
/* GdkEventKey event;
|
|
From: <xa...@us...> - 2003-12-12 23:52:07
|
Update of /cvsroot/ganc/ganc In directory sc8-pr-cvs1:/tmp/cvs-serv10228 Modified Files: .cvsignore Log Message: Added more generated files to .cvsignore. Index: .cvsignore =================================================================== RCS file: /cvsroot/ganc/ganc/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 10 Dec 2003 00:38:29 -0000 1.1 --- .cvsignore 12 Dec 2003 23:52:04 -0000 1.2 *************** *** 8,10 **** config.log config.status ! stamp-h --- 8,10 ---- config.log config.status ! stamp-h* |
|
From: <xa...@us...> - 2003-12-12 23:52:07
|
Update of /cvsroot/ganc/ganc/src In directory sc8-pr-cvs1:/tmp/cvs-serv10228/src Modified Files: .cvsignore Log Message: Added more generated files to .cvsignore. Index: .cvsignore =================================================================== RCS file: /cvsroot/ganc/ganc/src/.cvsignore,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** .cvsignore 10 Dec 2003 00:38:27 -0000 1.1 --- .cvsignore 12 Dec 2003 23:52:04 -0000 1.2 *************** *** 3,6 **** --- 3,8 ---- syntax.c syntax.h + syntax.output y.output .deps + ganc |
|
From: <ho...@us...> - 2003-12-12 23:48:21
|
Update of /cvsroot/ganc/ganc/src
In directory sc8-pr-cvs1:/tmp/cvs-serv9551/src
Modified Files:
callbacks.c reader_communication.c
Log Message:
Fixed some warnnings
Index: callbacks.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/callbacks.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** callbacks.c 29 Nov 2003 08:43:43 -0000 1.7
--- callbacks.c 12 Dec 2003 23:48:18 -0000 1.8
***************
*** 46,50 ****
char *text;
int i, pos;
! GdkEventKey event;
const char *label;
int found=0;
--- 46,50 ----
char *text;
int i, pos;
! /* GdkEventKey event; */
const char *label;
int found=0;
***************
*** 119,124 ****
void on_button_exe_clicked (GtkButton *button, gpointer user_data)
{
! GdkEventKey event;
! char ret[]="\n";
SendInputRequest (PIPE_REQUEST_EXECUTE, NULL);
--- 119,124 ----
void on_button_exe_clicked (GtkButton *button, gpointer user_data)
{
! /* GdkEventKey event;
! char ret[]="\n";*/
SendInputRequest (PIPE_REQUEST_EXECUTE, NULL);
***************
*** 155,160 ****
void on_button_clear_clicked (GtkWidget *widget, gpointer data)
{
! GdkEventKey event;
! char text='\0';
SendInputRequest (PIPE_REQUEST_BACKSPACE, NULL);
--- 155,160 ----
void on_button_clear_clicked (GtkWidget *widget, gpointer data)
{
! /*GdkEventKey event;
! char text='\0';*/
SendInputRequest (PIPE_REQUEST_BACKSPACE, NULL);
***************
*** 179,184 ****
void on_button_AC_clicked (GtkWidget *widget, gpointer data)
{
! GdkEventKey event;
! char text[]=" ";
// send input request to clear line
--- 179,184 ----
void on_button_AC_clicked (GtkWidget *widget, gpointer data)
{
! /*GdkEventKey event;
! char text[]=" ";*/
// send input request to clear line
Index: reader_communication.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/reader_communication.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** reader_communication.c 7 Dec 2003 21:52:22 -0000 1.6
--- reader_communication.c 12 Dec 2003 23:48:18 -0000 1.7
***************
*** 1,4 ****
--- 1,5 ----
#include <stdio.h>
#include <stdlib.h>
+ #include <string.h>
#include <gtk/gtk.h>
***************
*** 29,33 ****
case PIPE_REQUEST_TEXT:
fputc (strlen (text), to_reader);
! for (i=0; i<strlen (text); ++i)
fputc ((int) text[i], to_reader);
}
--- 30,34 ----
case PIPE_REQUEST_TEXT:
fputc (strlen (text), to_reader);
! for (i=0; i<(int) strlen (text); ++i)
fputc ((int) text[i], to_reader);
}
|
|
From: <ho...@us...> - 2003-12-12 23:31:17
|
Update of /cvsroot/ganc/ganc/src
In directory sc8-pr-cvs1:/tmp/cvs-serv6677/src
Modified Files:
reader_stuff.c
Log Message:
Added time out to pipe's select
Index: reader_stuff.c
===================================================================
RCS file: /cvsroot/ganc/ganc/src/reader_stuff.c,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** reader_stuff.c 12 Dec 2003 05:46:59 -0000 1.11
--- reader_stuff.c 12 Dec 2003 23:31:14 -0000 1.12
***************
*** 80,84 ****
fd_set set;
! // set time out for select to zero
timeout.tv_sec= 0;
timeout.tv_usec= 50000L;
--- 80,84 ----
fd_set set;
! // set time out for select (if time is 0, ganc uses 100% cpu all the time)
timeout.tv_sec= 0;
timeout.tv_usec= 50000L;
***************
*** 112,119 ****
fd_set set;
! // set time out for select to 0, i.e. just check if there's something in
! // pipe but don't wait any time
timeout.tv_sec= 0;
! timeout.tv_usec= 0;
/* Initialize the file descriptor set. */
--- 112,118 ----
fd_set set;
! // set time out for select
timeout.tv_sec= 0;
! timeout.tv_usec= 1000;
/* Initialize the file descriptor set. */
|
|
From: <xa...@us...> - 2003-12-12 23:21:17
|
Update of /cvsroot/ganc/ganc/src/.deps In directory sc8-pr-cvs1:/tmp/cvs-serv4765 Removed Files: tmp Log Message: removed all files --- tmp DELETED --- |
|
From: <xa...@us...> - 2003-12-12 23:20:12
|
Update of /cvsroot/ganc/ganc/src/.deps In directory sc8-pr-cvs1:/tmp/cvs-serv4516/src/.deps Added Files: tmp Log Message: Mock file (struggling to remove .deps). --- NEW FILE: tmp --- |