[SCM] ffado/master: Drop obsolete bigendian patch

adiknoth-guest at users.alioth.debian.org adiknoth-guest at users.alioth.debian.org
Thu Oct 4 20:07:55 UTC 2012


The following commit has been merged in the master branch:
commit eb6be18debedc9a2f725be0f55ad31438d03db1f
Author: Adrian Knoth <adi at drcomp.erfurt.thur.de>
Date:   Thu Oct 4 18:39:55 2012 +0200

    Drop obsolete bigendian patch
    
    Integrated upstream

diff --git a/debian/patches/fix_ftbfs_bigendian.patch b/debian/patches/fix_ftbfs_bigendian.patch
deleted file mode 100644
index cf910e5..0000000
--- a/debian/patches/fix_ftbfs_bigendian.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From: Adrian Knoth <adi at drcomp.erfurt.thur.de>
-Forwarded: not-needed
-Origin: http://subversion.ffado.org/changeset/2169
-Bug-Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=678347
-Description: Fix FTBFS on Big Endian platforms
---- a/src/rme/rme_avdevice.cpp
-+++ b/src/rme/rme_avdevice.cpp
-@@ -61,27 +61,21 @@
- // opposed to bus order, which is big endian).  Therefore define our own
- // 32-bit byteswap function to do this.
- #if __BYTE_ORDER == __BIG_ENDIAN
--static inline uint32_t
--ByteSwapToDevice32(uint32_t d)
--{
--    return byteswap_32(d);
--}
--ByteSwapFromDevice32(uint32_t d)
--{
--    return byteswap_32(d);
--}
-+#define RME_BYTESWAP32(x)	ByteSwap32(x)
- #else
-+#define RME_BYTESWAP32(x)	(x)
-+#endif
-+
- static inline uint32_t
- ByteSwapToDevice32(uint32_t d)
- {
--    return d;
-+    return RME_BYTESWAP32(d);
- }
- static inline uint32_t
- ByteSwapFromDevice32(uint32_t d)
- {
--    return d;
-+    return RME_BYTESWAP32(d);
- }
--#endif
- 
- Device::Device( DeviceManager& d,
-                       std::auto_ptr<ConfigRom>( configRom ))

-- 
Free Firewire Audio Drivers (ffado.org) packaging



More information about the pkg-multimedia-commits mailing list