aboutsummaryrefslogtreecommitdiff
path: root/security/steghide
diff options
context:
space:
mode:
authorTilman Keskinoz <arved@FreeBSD.org>2004-08-14 09:28:51 +0000
committerTilman Keskinoz <arved@FreeBSD.org>2004-08-14 09:28:51 +0000
commit8b4cbcf502df90be9acf5124c518c9f91e05c871 (patch)
tree68cbf72a6fa8141b651ede6f248568b31d3d20d2 /security/steghide
parent68b31117cb29c4c66f638ca9e4eaeae0a04d6291 (diff)
downloadports-8b4cbcf502df90be9acf5124c518c9f91e05c871.tar.gz
ports-8b4cbcf502df90be9acf5124c518c9f91e05c871.zip
Notes
Diffstat (limited to 'security/steghide')
-rw-r--r--security/steghide/files/patch-AuSampleValues.cc28
1 files changed, 28 insertions, 0 deletions
diff --git a/security/steghide/files/patch-AuSampleValues.cc b/security/steghide/files/patch-AuSampleValues.cc
new file mode 100644
index 000000000000..8df340b9501b
--- /dev/null
+++ b/security/steghide/files/patch-AuSampleValues.cc
@@ -0,0 +1,28 @@
+--- src/AuSampleValues.cc.orig Sat Aug 14 11:20:05 2004
++++ src/AuSampleValues.cc Sat Aug 14 11:20:13 2004
+@@ -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 ;