[pkg-boost-commits] r14330 - in boost/branches/1.36.0/debian: . patches

smr at alioth.debian.org smr at alioth.debian.org
Sun Nov 16 17:28:48 UTC 2008


Author: smr
Date: 2008-11-16 17:28:47 +0000 (Sun, 16 Nov 2008)
New Revision: 14330

Modified:
   boost/branches/1.36.0/debian/changelog
   boost/branches/1.36.0/debian/patches/atomic_count_gcc.patch
Log:
Fix detection of GCC >= 4.2.

Modified: boost/branches/1.36.0/debian/changelog
===================================================================
--- boost/branches/1.36.0/debian/changelog	2008-11-16 05:53:21 UTC (rev 14329)
+++ boost/branches/1.36.0/debian/changelog	2008-11-16 17:28:47 UTC (rev 14330)
@@ -1,3 +1,9 @@
+boost1.36 (1.36.0-8) unstable; urgency=low
+
+  * patches/atomic_count_gcc.patch: Fix detection of GCC >= 4.2.
+
+ -- Steve M. Robbins <smr at debian.org>  Sun, 16 Nov 2008 11:26:30 -0600
+
 boost1.36 (1.36.0-7) unstable; urgency=low
 
   * patches/atomic_count_gcc.patch: New.  GCC version >= 4.2 has moved

Modified: boost/branches/1.36.0/debian/patches/atomic_count_gcc.patch
===================================================================
--- boost/branches/1.36.0/debian/patches/atomic_count_gcc.patch	2008-11-16 05:53:21 UTC (rev 14329)
+++ boost/branches/1.36.0/debian/patches/atomic_count_gcc.patch	2008-11-16 17:28:47 UTC (rev 14330)
@@ -5,7 +5,7 @@
  //
  
 -#include <bits/atomicity.h>
-+#if defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 420 ) 
++#if defined( __GNUC__ ) && ( __GNUC__ * 100 + __GNUC_MINOR__ >= 402 )
 +#  include <ext/atomicity.h>
 +#else
 +#  include <bits/atomicity.h>




More information about the pkg-boost-commits mailing list