summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcelo Góes <vanquirius@gentoo.org>2005-03-30 01:46:43 +0000
committerMarcelo Góes <vanquirius@gentoo.org>2005-03-30 01:46:43 +0000
commit53a1d7de4b4e481bf7e9a944621b5856c9a520ce (patch)
tree6342a8474dfcc03d6bcdf4affca30723eaf7f7a0 /app-crypt/steghide/files
parentRemove old versions. (diff)
downloadhistorical-53a1d7de4b4e481bf7e9a944621b5856c9a520ce.tar.gz
historical-53a1d7de4b4e481bf7e9a944621b5856c9a520ce.tar.bz2
historical-53a1d7de4b4e481bf7e9a944621b5856c9a520ce.zip
bug 83840
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'app-crypt/steghide/files')
-rw-r--r--app-crypt/steghide/files/steghide-0.5.1-gcc34.patch29
1 files changed, 29 insertions, 0 deletions
diff --git a/app-crypt/steghide/files/steghide-0.5.1-gcc34.patch b/app-crypt/steghide/files/steghide-0.5.1-gcc34.patch
new file mode 100644
index 000000000000..01b49a50c743
--- /dev/null
+++ b/app-crypt/steghide/files/steghide-0.5.1-gcc34.patch
@@ -0,0 +1,29 @@
+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 ;