aboutsummaryrefslogtreecommitdiffstats
path: root/security
diff options
context:
space:
mode:
authorarved <arved@FreeBSD.org>2006-12-15 03:31:41 +0800
committerarved <arved@FreeBSD.org>2006-12-15 03:31:41 +0800
commitbe82626ae70b241d5841be96af524c19e0c705b6 (patch)
tree98391325ad32649c1cf5406bb89d1e0fb8033e88 /security
parent7155d70575858f2221fe670d70609a18db90bb9d (diff)
downloadfreebsd-ports-gnome-be82626ae70b241d5841be96af524c19e0c705b6.tar.gz
freebsd-ports-gnome-be82626ae70b241d5841be96af524c19e0c705b6.tar.zst
freebsd-ports-gnome-be82626ae70b241d5841be96af524c19e0c705b6.zip
Fix build with gcc41
Reported by: pointyhat
Diffstat (limited to 'security')
-rw-r--r--security/steghide/files/patch-src-AuData.h34
1 files changed, 34 insertions, 0 deletions
diff --git a/security/steghide/files/patch-src-AuData.h b/security/steghide/files/patch-src-AuData.h
new file mode 100644
index 000000000000..7b0382af2bc2
--- /dev/null
+++ b/security/steghide/files/patch-src-AuData.h
@@ -0,0 +1,34 @@
+diff -ur steghide-0.5.1-orig/src/AuData.h steghide-0.5.1/src/AuData.h
+--- steghide-0.5.1-orig/src/AuData.h 2006-03-10 02:17:19.000000000 -0500
++++ src/AuData.h 2006-03-10 02:19:01.000000000 -0500
+@@ -26,22 +26,30 @@
+
+ // AuMuLawAudioData
+ typedef AudioDataImpl<AuMuLaw,BYTE> AuMuLawAudioData ;
++template<>
+ inline BYTE AuMuLawAudioData::readValue (BinaryIO* io) const { return (io->read8()) ; }
++template<>
+ inline void AuMuLawAudioData::writeValue (BinaryIO* io, BYTE v) const { io->write8(v) ; }
+
+ // AuPCM8AudioData
+ typedef AudioDataImpl<AuPCM8,SBYTE> AuPCM8AudioData ;
++template<>
+ inline SBYTE AuPCM8AudioData::readValue (BinaryIO* io) const { return ((SBYTE) io->read8()) ; }
++template<>
+ inline void AuPCM8AudioData::writeValue (BinaryIO* io, SBYTE v) const { io->write8((BYTE) v) ; }
+
+ // AuPCM16AudioData
+ typedef AudioDataImpl<AuPCM16,SWORD16> AuPCM16AudioData ;
++template<>
+ inline SWORD16 AuPCM16AudioData::readValue (BinaryIO* io) const { return ((SWORD16) io->read16_be()) ; }
++template<>
+ inline void AuPCM16AudioData::writeValue (BinaryIO* io, SWORD16 v) const { io->write16_be((UWORD16) v) ; }
+
+ // AuPCM32AudioData
+ typedef AudioDataImpl<AuPCM32,SWORD32> AuPCM32AudioData ;
++template<>
+ inline SWORD32 AuPCM32AudioData::readValue (BinaryIO* io) const { return ((SWORD32) io->read32_be()) ; }
++template<>
+ inline void AuPCM32AudioData::writeValue (BinaryIO* io, SWORD32 v) const { io->write32_be((UWORD32) v) ; }
+
+ #endif // ndef SH_AUDATA_H