# HG changeset patch # User Carl Byington # Date 1310338882 25200 # Node ID 5b3e7661adad96b68fa357a9ecf3c1b8de04de3d # Parent e0e5844d91b35344175ca10e42ee5c8a4c2a4249 prep for fedora build diff -r e0e5844d91b3 -r 5b3e7661adad ChangeLog --- a/ChangeLog Sun Jun 19 09:08:29 2011 -0700 +++ b/ChangeLog Sun Jul 10 16:01:22 2011 -0700 @@ -1,3 +1,10 @@ +LibPST 0.6.53 (2011-07-10) +=============================== + * add Status: header in output + * allow fork for parallel processing of individual email folders + in separate mode + * proper handling of --with-boost-python option + LibPST 0.6.52 (2011-05-22) =============================== * fix dangling freed pointer in embedded rfc822 message processing diff -r e0e5844d91b3 -r 5b3e7661adad NEWS --- a/NEWS Sun Jun 19 09:08:29 2011 -0700 +++ b/NEWS Sun Jul 10 16:01:22 2011 -0700 @@ -1,3 +1,4 @@ +0.6.53 2011-07-10 allow fork for parallel processing of individual email folders in separate mode 0.6.52 2011-05-22 fix dangling freed pointer; allow broken outlook internet header field 0.6.51 2011-04-17 fix for buffer overrun; attachment size fetched twice 0.6.50 2010-12-24 rfc2047 and rfc2231 encoding for non-ascii headers and attachment filenames diff -r e0e5844d91b3 -r 5b3e7661adad configure.in --- a/configure.in Sun Jun 19 09:08:29 2011 -0700 +++ b/configure.in Sun Jul 10 16:01:22 2011 -0700 @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT(libpst,0.6.52,carl@five-ten-sg.com) +AC_INIT(libpst,0.6.53,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([src/libpst.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE @@ -19,7 +19,7 @@ # 6. libtool will build libpst.so.x.y.z where the SONAME is libpst.so.x # and x=current-age, y=age, z=revision -libpst_version_info='5:2:1' +libpst_version_info='5:3:1' AC_SUBST(LIBPST_VERSION_INFO, [$libpst_version_info]) libpst_so_major='4' AC_SUBST(LIBPST_SO_MAJOR, [$libpst_so_major]) @@ -37,6 +37,7 @@ # 0.6.50 libpst.so.4 libpst.so.4.1.0 # 0.6.51 libpst.so.4 libpst.so.4.1.1 # 0.6.52 libpst.so.4 libpst.so.4.1.2 +# 0.6.53 libpst.so.4 libpst.so.4.1.3 diff -r e0e5844d91b3 -r 5b3e7661adad python/Makefile.am --- a/python/Makefile.am Sun Jun 19 09:08:29 2011 -0700 +++ b/python/Makefile.am Sun Jul 10 16:01:22 2011 -0700 @@ -10,7 +10,7 @@ pythonlib_LTLIBRARIES = _libpst.la _libpst_la_LDFLAGS = -module $(NO_UNDEFINED) -avoid-version _libpst_la_SOURCES = python-libpst.cpp -_libpst_la_LIBADD = -lboost_python ../src/libpst.la +_libpst_la_LIBADD = -l@BOOST_PYTHON_LIB@ ../src/libpst.la # set the include path found by configure INCLUDES= -I$(srcdir)/.. -I$(srcdir)/../src $(all_includes) -I$(PYTHON_INCLUDE_DIR)