$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r84961 - website/public_html/live/patches/1_54_0
From: dnljms_at_[hidden]
Date: 2013-07-06 18:09:54
Author: danieljames
Date: 2013-07-06 18:09:54 EDT (Sat, 06 Jul 2013)
New Revision: 84961
URL: http://svn.boost.org/trac/boost/changeset/84961
Log:
Add 1.54.0 patches to site.
Generated using:
{{{
svn diff -c84947 https://svn.boost.org/svn/boost/branches/maintenance \
    | filterdiff --clean \
    > ~/boost/website/live/patches/1_54_0/001-coroutine.patch
svn diff -c84948 https://svn.boost.org/svn/boost/branches/maintenance \
    | filterdiff --clean \
    > ~/boost/website/live/patches/1_54_0/002-date-time.patch
}}}
Added:
   website/public_html/live/patches/1_54_0/
   website/public_html/live/patches/1_54_0/001-coroutine.patch   (contents, props changed)
   website/public_html/live/patches/1_54_0/002-date-time.patch   (contents, props changed)
Added: website/public_html/live/patches/1_54_0/001-coroutine.patch
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ website/public_html/live/patches/1_54_0/001-coroutine.patch	2013-07-06 18:09:54 EDT (Sat, 06 Jul 2013)	(r84961)
@@ -0,0 +1,11 @@
+--- 1_54_0/libs/coroutine/build/Jamfile.v2	(revision 84946)
++++ 1_54_0/libs/coroutine/build/Jamfile.v2	(revision 84947)
+@@ -40,7 +40,7 @@
+     : detail/standard_stack_allocator_posix.cpp
+     ;
+ 
+-explicit yield_sources ;
++explicit allocator_sources ;
+ 
+ lib boost_coroutine
+     : allocator_sources
Added: website/public_html/live/patches/1_54_0/002-date-time.patch
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ website/public_html/live/patches/1_54_0/002-date-time.patch	2013-07-06 18:09:54 EDT (Sat, 06 Jul 2013)	(r84961)
@@ -0,0 +1,11 @@
+--- 1_54_0/boost/date_time/local_time/custom_time_zone.hpp	(revision 84947)
++++ 1_54_0/boost/date_time/local_time/custom_time_zone.hpp	(revision 84948)
+@@ -64,7 +64,7 @@
+     //! True if zone uses daylight savings adjustments
+     virtual bool has_dst() const
+     {
+-      return (dst_calc_rules_); //if calc_rule is set the tz has dst
++      return (bool) dst_calc_rules_; //if calc_rule is set the tz has dst
+     }
+     //! Local time that DST starts -- NADT if has_dst is false
+     virtual posix_time::ptime dst_local_start_time(gregorian::greg_year y) const