Debian Bug report logs -
#274184
steghide: FTBFS with gcc-3.4: expected `,' or `;' before '=' token
Reported by: Andreas Jochens <aj@andaco.de>
Date: Thu, 30 Sep 2004 08:33:01 UTC
Severity: normal
Tags: patch
Fixed in version steghide/0.5.1-5
Done: Ola Lundqvist <opal@debian.org>
Bug is archived. No further changes may be made.
Toggle useless messages
Report forwarded to debian-bugs-dist@lists.debian.org, Ola Lundqvist <opal@debian.org>:
Bug#274184; Package steghide.
(full text, mbox, link).
Acknowledgement sent to Andreas Jochens <aj@andaco.de>:
New Bug report received and forwarded. Copy sent to Ola Lundqvist <opal@debian.org>.
(full text, mbox, link).
Message #5 received at submit@bugs.debian.org (full text, mbox, reply):
Package: steghide
Severity: normal
Tags: patch
When building 'steghide' with gcc-3.4 I get the following error:
AuSampleValues.cc:25: error: expected `,' or `;' before '=' token
AuSampleValues.cc:28: error: too few template-parameter-lists
AuSampleValues.cc:28: error: expected `,' or `;' before '=' token
AuSampleValues.cc:29: error: too few template-parameter-lists
AuSampleValues.cc:29: error: expected `,' or `;' before '=' token
AuSampleValues.cc:32: error: too few template-parameter-lists
AuSampleValues.cc:32: error: expected `,' or `;' before '=' token
AuSampleValues.cc:33: error: too few template-parameter-lists
AuSampleValues.cc:33: error: expected `,' or `;' before '=' token
AuSampleValues.cc:36: error: too few template-parameter-lists
AuSampleValues.cc:36: error: expected `,' or `;' before '=' token
AuSampleValues.cc:37: error: too few template-parameter-lists
AuSampleValues.cc:37: error: expected `,' or `;' before '=' token
make[3]: *** [AuSampleValues.o] Error 1
make[3]: Leaving directory `/steghide-0.5.1/src'
With the attached patch 'steghide' can be compiled using gcc-3.4.
Regards
Andreas Jochens
diff -urN ../tmp-orig/steghide-0.5.1/src/AuSampleValues.cc ./src/AuSampleValues.cc
--- ../tmp-orig/steghide-0.5.1/src/AuSampleValues.cc 2003-09-28 17:30:30.000000000 +0200
+++ ./src/AuSampleValues.cc 2004-09-30 10:20:54.982240968 +0200
@@ -21,17 +21,17 @@
#include "AuSampleValues.h"
// AuMuLawSampleValue
-const BYTE AuMuLawSampleValue::MinValue = 0 ;
-const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
+template <> const BYTE AuMuLawSampleValue::MinValue = 0 ;
+template <> const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
// AuPCM8SampleValue
-const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
-const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
+template <> const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
+template <> const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
// AuPCM16SampleValue
-const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
-const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
+template <> const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
+template <> const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
// AuPCM32SampleValue
-const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
-const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
+template <> const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
+template <> const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
Information forwarded to debian-bugs-dist@lists.debian.org, Ola Lundqvist <opal@debian.org>:
Bug#274184; Package steghide.
(full text, mbox, link).
Acknowledgement sent to opal@debian.org:
Extra info received and forwarded to list. Copy sent to Ola Lundqvist <opal@debian.org>.
(full text, mbox, link).
Message #10 received at 274184@bugs.debian.org (full text, mbox, reply):
Hi
Thanks. Patch is applied and will be uploaded soon.
Regards,
// Ola
On Thu, Sep 30, 2004 at 10:26:31AM +0200, Andreas Jochens wrote:
> Package: steghide
> Severity: normal
> Tags: patch
>
> When building 'steghide' with gcc-3.4 I get the following error:
>
> AuSampleValues.cc:25: error: expected `,' or `;' before '=' token
> AuSampleValues.cc:28: error: too few template-parameter-lists
> AuSampleValues.cc:28: error: expected `,' or `;' before '=' token
> AuSampleValues.cc:29: error: too few template-parameter-lists
> AuSampleValues.cc:29: error: expected `,' or `;' before '=' token
> AuSampleValues.cc:32: error: too few template-parameter-lists
> AuSampleValues.cc:32: error: expected `,' or `;' before '=' token
> AuSampleValues.cc:33: error: too few template-parameter-lists
> AuSampleValues.cc:33: error: expected `,' or `;' before '=' token
> AuSampleValues.cc:36: error: too few template-parameter-lists
> AuSampleValues.cc:36: error: expected `,' or `;' before '=' token
> AuSampleValues.cc:37: error: too few template-parameter-lists
> AuSampleValues.cc:37: error: expected `,' or `;' before '=' token
> make[3]: *** [AuSampleValues.o] Error 1
> make[3]: Leaving directory `/steghide-0.5.1/src'
>
> With the attached patch 'steghide' can be compiled using gcc-3.4.
>
> Regards
> Andreas Jochens
>
> diff -urN ../tmp-orig/steghide-0.5.1/src/AuSampleValues.cc ./src/AuSampleValues.cc
> --- ../tmp-orig/steghide-0.5.1/src/AuSampleValues.cc 2003-09-28 17:30:30.000000000 +0200
> +++ ./src/AuSampleValues.cc 2004-09-30 10:20:54.982240968 +0200
> @@ -21,17 +21,17 @@
> #include "AuSampleValues.h"
>
> // AuMuLawSampleValue
> -const BYTE AuMuLawSampleValue::MinValue = 0 ;
> -const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
> +template <> const BYTE AuMuLawSampleValue::MinValue = 0 ;
> +template <> const BYTE AuMuLawSampleValue::MaxValue = BYTE_MAX ;
>
> // AuPCM8SampleValue
> -const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
> -const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
> +template <> const SBYTE AuPCM8SampleValue::MinValue = SBYTE_MIN ;
> +template <> const SBYTE AuPCM8SampleValue::MaxValue = SBYTE_MAX ;
>
> // AuPCM16SampleValue
> -const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
> -const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
> +template <> const SWORD16 AuPCM16SampleValue::MinValue = SWORD16_MIN ;
> +template <> const SWORD16 AuPCM16SampleValue::MaxValue = SWORD16_MAX ;
>
> // AuPCM32SampleValue
> -const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
> -const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
> +template <> const SWORD32 AuPCM32SampleValue::MinValue = SWORD32_MIN ;
> +template <> const SWORD32 AuPCM32SampleValue::MaxValue = SWORD32_MAX ;
>
>
--
--------------------- Ola Lundqvist ---------------------------
/ opal@debian.org Annebergsslingan 37 \
| opal@lysator.liu.se 654 65 KARLSTAD |
| +46 (0)54-10 14 30 +46 (0)70-332 1551 |
| http://www.opal.dhs.org UIN/icq: 4912500 |
\ gpg/f.p.: 7090 A92B 18FE 7994 0C36 4FE4 18A1 B1CF 0FE5 3DD9 /
---------------------------------------------------------------
Reply sent to Ola Lundqvist <opal@debian.org>:
You have taken responsibility.
(full text, mbox, link).
Notification sent to Andreas Jochens <aj@andaco.de>:
Bug acknowledged by developer.
(full text, mbox, link).
Message #15 received at 274184-close@bugs.debian.org (full text, mbox, reply):
Source: steghide
Source-Version: 0.5.1-5
We believe that the bug you reported is fixed in the latest version of
steghide, which is due to be installed in the Debian FTP archive:
steghide_0.5.1-5.diff.gz
to pool/main/s/steghide/steghide_0.5.1-5.diff.gz
steghide_0.5.1-5.dsc
to pool/main/s/steghide/steghide_0.5.1-5.dsc
steghide_0.5.1-5_i386.deb
to pool/main/s/steghide/steghide_0.5.1-5_i386.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to 274184@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Ola Lundqvist <opal@debian.org> (supplier of updated steghide package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Sat, 2 Oct 2004 20:10:39 +0200
Source: steghide
Binary: steghide
Architecture: source i386
Version: 0.5.1-5
Distribution: unstable
Urgency: low
Maintainer: Ola Lundqvist <opal@debian.org>
Changed-By: Ola Lundqvist <opal@debian.org>
Description:
steghide - A steganography hiding tool
Closes: 274184
Changes:
steghide (0.5.1-5) unstable; urgency=low
.
* Applied patch from Andreas Jochens <aj@andaco.de> so it can build
with gcc 3.4, closes: #274184.
* Updated standards version to 3.6.1.
* Refixed so that INSTALL and COPYING information is not in the
deb archive.
Files:
5bdd4712994e440a03bdb501c865a0f7 603 misc optional steghide_0.5.1-5.dsc
60dad46bd7a07769af4dc84414f09f21 63644 misc optional steghide_0.5.1-5.diff.gz
30d393610e421e09c166129d1756032b 175162 misc optional steghide_0.5.1-5_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
iD8DBQFBXvrnGKGxzw/lPdkRAnpaAJ9ISGVsrhDvQXjmd2wQNaI+BPu9FQCfVk85
i2fW5mDYizGEvOqEengDGNI=
=cFij
-----END PGP SIGNATURE-----
Send a report that this bug log contains spam.
Debian bug tracking system administrator <owner@bugs.debian.org>.
Last modified:
Mon Jul 15 16:04:49 2024;
Machine Name:
buxtehude
Debian Bug tracking system
Debbugs is free software and licensed under the terms of the GNU
Public License version 2. The current version can be obtained
from https://bugs.debian.org/debbugs-source/.
Copyright © 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson,
2005-2017 Don Armstrong, and many other contributors.