?
I have researched and found nothing regarding the problem I am having compiling the flow-tools-0.66 on Fedora Core3. I have provided the following error
I can run the ./configure no problem, but when I attempt to run the make I receive this.
flow-cat.c: In function `main':
flow-cat.c:555: error: label at end of compound statement
make[1]: *** [flow-cat.o] Error 1
make[1]: Leaving directory `/usr/local/src/flow-tools-0.66/src'
make: *** [all-recursive] Error 1
A quick Google search for the error message shows several programs that have the similar error. I found two fixes to the problem; adding a "break;" or a ";" at the end of the label. I am not sure which is better. :(
Here is a quick patch of the "break;" method:
------------------------------
*** flow-cat.c.orig Wed Dec 29 17:17:04 2004
--- flow-cat.c Wed Dec 29 17:17:26 2004
***************
*** 551,556 ****
--- 551,557 ----
break;next_file: + break;
} /* FOREACH filename in dir */
------------------------------
I am not a C-hacker by any stretch, so this fix comes with no guarantee and has not been tested. (Just trying to help :) )
Devon _______________________________________________ Flow-tools mailing list [EMAIL PROTECTED] http://mailman.splintered.net/mailman/listinfo/flow-tools
