Your message dated Sun, 24 Jan 2010 13:57:45 +0100
with message-id <[email protected]>
and subject line Re: reassign to src:sqlite3, found 520557 in 3.5.9-6, fixed
520557 in 3.6.10-1
has caused the Debian Bug report #520557,
regarding lemon: lempar.c not C++ clean
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [email protected]
immediately.)
--
520557: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=520557
Debian Bug Tracking System
Contact [email protected] with problems
--- Begin Message ---
Package: lemon
Version: 3.5.9-6
Severity: serious
Justification: unknown
The lempar.c file includes the following lines:
/* The yyzerominor constant is used to initialize instances of
** YYMINORTYPE objects to zero. */
static const YYMINORTYPE yyzerominor;
This statement doesn't compile with the 4.2 or 4.3 GCC C++ compiler.
bsdlp.cc:113: error: uninitialized const 'yyzerominor'
A simple fix would be to remove the const altogether. Alternatively, the code
could be changed to read:
/* The yyzerominor constant is used to initialize instances of
** YYMINORTYPE objects to zero. */
#if defined (__cplusplus)
static YYMINORTYPE yyzerominor;
#else
static const YYMINORTYPE yyzerominor;
#endif
-- System Information:
Debian Release: lenny/sid
APT prefers testing
APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1,
'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash
Versions of packages lemon depends on:
ii libc6 2.7-14 GNU C Library: Shared libraries
lemon recommends no packages.
-- no debconf information
--- End Message ---
--- Begin Message ---
On Sun, Jan 24, 2010 at 01:53:19PM +0100, Stefano Zacchiroli wrote:
> reassign 520557 src:sqlite3
> found 520557 3.5.9-6
> fixed 520557 3.6.10-1
> thanks
This bug is closed in both testing and unstable since a while, I've
reassigned it to the source package and I'm now re-closing it properly.
Cheers.
--
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -<>- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..| . |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...........| ..: |.... Je dis tu à tous ceux que j'aime
--- End Message ---