changeset 293:5b3e7661adad

prep for fedora build
author Carl Byington <carl@five-ten-sg.com>
date Sun, 10 Jul 2011 16:01:22 -0700
parents e0e5844d91b3
children e63d1d8f4e72
files ChangeLog NEWS configure.in python/Makefile.am
diffstat 4 files changed, 12 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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
--- 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
--- 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
 
 
 
--- 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)