[SCM] supercollider/master: Fix FTBFS in big endian architectures

fsateler at users.alioth.debian.org fsateler at users.alioth.debian.org
Mon Jul 9 23:56:09 UTC 2012


The following commit has been merged in the master branch:
commit 9001b97bccc93d4d02a5504e52e1a2b378de2b7f
Author: Felipe Sateler <fsateler at debian.org>
Date:   Mon Jul 9 19:55:43 2012 -0400

    Fix FTBFS in big endian architectures
    
    Fix typo in big endian code path

diff --git a/debian/patches/boost-big-endian-typo.patch b/debian/patches/boost-big-endian-typo.patch
new file mode 100644
index 0000000..5646a18
--- /dev/null
+++ b/debian/patches/boost-big-endian-typo.patch
@@ -0,0 +1,13 @@
+From: Felipe Sateler <fsateler at debian.org>
+Description: Remove extra (typo) ')' in statement
+--- a/external_libraries/boost_endian/boost/integer/endian.hpp
++++ b/external_libraries/boost_endian/boost/integer/endian.hpp
+@@ -282,7 +282,7 @@
+ #     endif
+ #   endif
+ #   ifdef BOOST_BIG_ENDIAN  
+-        endian & operator=(T val) { m_value = val); return *this; }
++        endian & operator=(T val) { m_value = val; return *this; }
+         operator T() const        { return m_value; }
+ #   else  
+         endian & operator=(T val) { detail::store_big_endian<T, sizeof(T)>(&m_value, val); return *this; }
diff --git a/debian/patches/series b/debian/patches/series
index 117fe3f..bc84489 100644
--- a/debian/patches/series
+++ b/debian/patches/series
@@ -1,2 +1,3 @@
 update_boostlockfree_prefixhpp.patch
 arm-qreal-is-float.patch
+boost-big-endian-typo.patch

-- 
supercollider packaging



More information about the pkg-multimedia-commits mailing list