# HG changeset patch # User Carl Byington # Date 1280374697 25200 # Node ID 115b871c61a1a13a5635d83bbbc59582613ce2c0 # Parent 4573b536177f3fa5ff235f337d102aa74a3b80ce fixes from fedora for python 2.7 diff -r 4573b536177f -r 115b871c61a1 ChangeLog --- 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) =============================== diff -r 4573b536177f -r 115b871c61a1 NEWS --- 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 diff -r 4573b536177f -r 115b871c61a1 libpst.spec.in --- 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 - 0.6.48-1 +* Wed Jul 28 2010 Carl Byington - 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 - 0.6.47-4 +- hack up configure so that it looks for python 2.7 * Wed Jul 21 2010 David Malcolm - 0.6.47-3 - Rebuilt for https://fedoraproject.org/wiki/Features/Python_2.7/MassRebuild diff -r 4573b536177f -r 115b871c61a1 m4/ax_python.m4 --- 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