[pkg-boost-commits] r14289 - in boost/branches/1.34.1/debian: . patches

smr at alioth.debian.org smr at alioth.debian.org
Mon Oct 27 05:45:08 UTC 2008


Author: smr
Date: 2008-10-27 05:45:08 +0000 (Mon, 27 Oct 2008)
New Revision: 14289

Added:
   boost/branches/1.34.1/debian/patches/endian.patch
Modified:
   boost/branches/1.34.1/debian/changelog
   boost/branches/1.34.1/debian/patches/series
Log:
Patch endian.h to add more processors.

Modified: boost/branches/1.34.1/debian/changelog
===================================================================
--- boost/branches/1.34.1/debian/changelog	2008-09-28 07:15:59 UTC (rev 14288)
+++ boost/branches/1.34.1/debian/changelog	2008-10-27 05:45:08 UTC (rev 14289)
@@ -1,3 +1,10 @@
+boost (1.34.1-12) unstable; urgency=low
+
+  * debian/patches/endian.patch: New.  Add cases for more processors
+    (thanks Thiemo Seufer).  Closes: #503572.
+
+ -- Steve M. Robbins <smr at debian.org>  Mon, 27 Oct 2008 00:42:54 -0500
+
 boost (1.34.1-11) unstable; urgency=low
 
   * debian/control: Add python-dev to libboost-python-dev depends.

Added: boost/branches/1.34.1/debian/patches/endian.patch
===================================================================
--- boost/branches/1.34.1/debian/patches/endian.patch	                        (rev 0)
+++ boost/branches/1.34.1/debian/patches/endian.patch	2008-10-27 05:45:08 UTC (rev 14289)
@@ -0,0 +1,23 @@
+--- boost-1.34.1.orig/boost/detail/endian.hpp
++++ boost-1.34.1/boost/detail/endian.hpp
+@@ -51,8 +51,8 @@
+ #elif defined(__sparc) || defined(__sparc__) \
+    || defined(_POWER) || defined(__powerpc__) \
+    || defined(__ppc__) || defined(__hpux) \
+-   || defined(_MIPSEB) || defined(_POWER) \
+-   || defined(__s390__)
++   || defined(__hppa) || defined(_MIPSEB) \
++   || defined(__ARMEB__) || defined(__s390__)
+ # define BOOST_BIG_ENDIAN
+ # define BOOST_BYTE_ORDER 4321
+ #elif defined(__i386__) || defined(__alpha__) \
+@@ -61,7 +61,8 @@
+    || defined(_M_ALPHA) || defined(__amd64) \
+    || defined(__amd64__) || defined(_M_AMD64) \
+    || defined(__x86_64) || defined(__x86_64__) \
+-   || defined(_M_X64)
++   || defined(_M_X64) || defined(_MIPSEL) \
++   || defined(__ARMEL__)
+ 
+ # define BOOST_LITTLE_ENDIAN
+ # define BOOST_BYTE_ORDER 1234

Modified: boost/branches/1.34.1/debian/patches/series
===================================================================
--- boost/branches/1.34.1/debian/patches/series	2008-09-28 07:15:59 UTC (rev 14288)
+++ boost/branches/1.34.1/debian/patches/series	2008-10-27 05:45:08 UTC (rev 14289)
@@ -1,3 +1,4 @@
+endian.patch
 suppress-compiler-warnings.patch
 gcc-4.3.patch
 function-template-thread-safety.patch




More information about the pkg-boost-commits mailing list