Mercurial > libpst
changeset 253:115b871c61a1
fixes from fedora for python 2.7
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Wed, 28 Jul 2010 20:38:17 -0700 |
parents | 4573b536177f |
children | fb66d428347d |
files | ChangeLog NEWS libpst.spec.in m4/ax_python.m4 |
diffstat | 4 files changed, 10 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Jul 24 12:07:56 2010 -0700 +++ b/ChangeLog Wed Jul 28 20:38:17 2010 -0700 @@ -1,6 +1,8 @@ -LibPST 0.6.48 (2010-07-24) +LibPST 0.6.48 (2010-07-28) =============================== * fix for broken internet headers from Outlook. + * fix ax_python.m4 to look for python2.7 + * Subpackage Licensing, add COPYING to -libs. LibPST 0.6.47 (2010-05-07) ===============================
--- a/NEWS Sat Jul 24 12:07:56 2010 -0700 +++ b/NEWS Wed Jul 28 20:38:17 2010 -0700 @@ -1,4 +1,4 @@ -0.6.48 2010-07-24 fix for broken internet headers from Outlook +0.6.48 2010-07-28 fix for broken internet headers from Outlook 0.6.47 2010-05-07 patches from Kenneth Berland for solaris 0.6.46 2010-02-13 fixes for fedora 13 change in implicit dso linking semantics 0.6.45 2009-11-18 patch from Hugo DesRosiers to export categories and notes into vcards
--- a/libpst.spec.in Sat Jul 24 12:07:56 2010 -0700 +++ b/libpst.spec.in Wed Jul 28 20:38:17 2010 -0700 @@ -147,8 +147,12 @@ %changelog -* Sat Jul 24 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.48-1 +* Wed Jul 28 2010 Carl Byington <carl@five-ten-sg.com> - 0.6.48-1 - fix for broken internet headers from Outlook +- fix ax_python.m4 to look for python2.7 + +* Mon Jul 26 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.47-4 +- hack up configure so that it looks for python 2.7 * Wed Jul 21 2010 David Malcolm <dmalcolm@redhat.com> - 0.6.47-3 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild
--- a/m4/ax_python.m4 Sat Jul 24 12:07:56 2010 -0700 +++ b/m4/ax_python.m4 Wed Jul 28 20:38:17 2010 -0700 @@ -59,7 +59,7 @@ [ AC_MSG_CHECKING(for python build information) AC_MSG_RESULT([]) -for python in python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python; do +for python in python2.7 python2.6 python2.5 python2.4 python2.3 python2.2 python2.1 python; do AC_CHECK_PROGS(PYTHON_BIN, [$python]) ax_python_bin=$PYTHON_BIN if test x$ax_python_bin != x; then