- Fix "changes meaning of keywords" in boost python

- Resolves: #432694
This commit is contained in:
Petr Machata 2008-02-14 13:24:24 +00:00
parent eb542eb2e7
commit ac5861b705
2 changed files with 17 additions and 1 deletions

View File

@ -162,3 +162,15 @@ diff -urp boost_1_34_1/boost/date_time/date_facet.hpp boost_1_34_1-pm/boost/date
typedef std::vector<std::basic_string<CharT> > input_collection_type;
typedef format_date_parser<date_type, CharT> format_date_parser_type;
// date_generators stuff goes here
diff -urp boost_1_34_1/boost/python/detail/def_helper.hpp boost_1_34_1-pm/boost/python/detail/def_helper.hpp
--- boost_1_34_1/boost/python/detail/def_helper.hpp 2004-09-16 03:00:28.000000000 +0200
+++ boost_1_34_1-pm/boost/python/detail/def_helper.hpp 2008-02-14 13:26:23.000000000 +0100
@@ -155,7 +155,7 @@ namespace detail
, T3 const&
, T4 const&
, default_call_policies
- , keywords<0>
+ , boost::python::detail::keywords<0>
, char const*
, void(not_specified::*)() // A function pointer type which is never an
// appropriate default implementation

View File

@ -1,7 +1,7 @@
Name: boost
Summary: The Boost C++ Libraries
Version: 1.34.1
Release: 11%{?dist}
Release: 12%{?dist}
License: Boost Software License (GPL-Compatible, Free Software License)
URL: http://www.boost.org/
Group: System Environment/Libraries
@ -203,6 +203,10 @@ rm -rf $RPM_BUILD_ROOT
%doc %{_docdir}/boost-%{version}
%changelog
* Thu Feb 14 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-12
- Fix "changes meaning of keywords" in boost python
- Resolves: #432694
* Wed Feb 13 2008 Petr Machata <pmachata@redhat.com> - 1.34.1-11
- Fix "changes meaning of special_values_parser" in boost date_time
- Resolves: #432433