Your message dated Sat, 25 Feb 2006 11:24:24 +0100
with message-id <[EMAIL PROTECTED]>
and subject line oftc-hybrid: #287846 done
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--- Begin Message ---
Package: oftc-hybrid
Severity: normal
Tags: patch
When building 'oftc-hybrid' on amd64 with gcc-4.0,
I get the following error:
gcc -I../include -I../adns -g -ggdb -DNDEBUG -DIRCD_PREFIX=\"/usr\" -c
whowas.c
bison -y -d ircd_parser.y
ircd_parser.y:290.28: warning: stray `,' treated as white space
ircd_parser.y:291.28: warning: stray `,' treated as white space
gcc -I../include -I../adns -g -ggdb -DNDEBUG -DIRCD_PREFIX=\"/usr\" -I. -c
y.tab.c
ircd_parser.y:61: error: static declaration of 'yy_aconf' follows non-static
declaration
../include/s_conf.h:56: error: previous declaration of 'yy_aconf' was here
make[2]: *** [y.tab.o] Error 1
make[2]: Leaving directory `/oftc-hybrid-1.1.1/src'
With the attached patch 'oftc-hybrid' can be compiled
on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/oftc-hybrid-1.1.1/src/ircd_parser.y ./src/ircd_parser.y
--- ../tmp-orig/oftc-hybrid-1.1.1/src/ircd_parser.y 2004-12-30
15:02:16.215942544 +0100
+++ ./src/ircd_parser.y 2004-12-30 15:01:38.879618528 +0100
@@ -58,7 +58,7 @@
int yyparse();
static struct ConfItem *yy_achead = NULL;
-static struct ConfItem *yy_aconf = NULL;
+struct ConfItem *yy_aconf = NULL;
static struct ConfItem *yy_aprev = NULL;
static int yy_acount = 0;
static struct ConfItem *yy_hconf;
--- End Message ---
--- Begin Message ---
This package has been removed from unstable.
--- End Message ---