Your message dated Fri, 20 Mar 2009 16:01:41 -0700
with message-id <[email protected]>
and subject line already fixed upstream since 3.6.7
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 ---
Package: lemon
Version: 3.6.10-1
This bug has already been fixed by upstream, in version 3.6.7, which
appears never to have been uploaded to Debian. The 3.6.10-1 and later
packages (now available in unstable) should not have the problem.
zw
--- End Message ---