changeset 215:fef2214083a4 stable-0-6-38

ready for new release
author Carl Byington <carl@five-ten-sg.com>
date Sun, 21 Jun 2009 15:06:37 -0700
parents 7fcff97ca5a9
children f651085e33e0
files AUTHORS ChangeLog NEWS libpst.spec.in regression/regression-tests.bash src/libpst.c
diffstat 6 files changed, 6 insertions(+), 17 deletions(-) [+]
line wrap: on
line diff
--- a/AUTHORS	Wed Jun 17 22:11:12 2009 -0700
+++ b/AUTHORS	Sun Jun 21 15:06:37 2009 -0700
@@ -27,6 +27,7 @@
     Fridrich Strba <fstrba@novell.com>
     Emmanuel Andry <eandry@mandriva.org>
     hggdh <hggdh2@gmail.com>
+    bharder <bharder@methodlogic.net>
 
 
 Testing team:
--- a/ChangeLog	Wed Jun 17 22:11:12 2009 -0700
+++ b/ChangeLog	Sun Jun 21 15:06:37 2009 -0700
@@ -1,4 +1,4 @@
-LibPST 0.6.38 (2009-xx-xx)
+LibPST 0.6.38 (2009-06-21)
 ===============================
     * add python module interface to the shared library for easy scripting.
     * the shared library must never write to stdout or stderr.
@@ -18,6 +18,7 @@
       so the topmost level is almost always multipart/mixed.
     * the shared library interface should now be thread safe.
     * patch from Fridrich Strba to build on win32.
+    * remove unreferenced code.
 
 LibPST 0.6.37 (2009-04-17)
 ===============================
--- a/NEWS	Wed Jun 17 22:11:12 2009 -0700
+++ b/NEWS	Sun Jun 21 15:06:37 2009 -0700
@@ -1,4 +1,4 @@
-0.6.38  2009-xx-xx many changes including shared library soname
+0.6.38  2009-06-21 many changes including shared library soname
 0.6.37  2009-04-17 add pst_attach_to_mem() back into the shared library interface.
 0.6.36  2009-04-14 build separate -doc and -devel-doc subpackages
 0.6.35  2009-04-08 properly add trailing mime boundary in all modes, build separate rpms with libpst.so shared.
--- a/libpst.spec.in	Wed Jun 17 22:11:12 2009 -0700
+++ b/libpst.spec.in	Sun Jun 21 15:06:37 2009 -0700
@@ -148,7 +148,7 @@
 
 
 %changelog
-* Mon Jun 08 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.38-1
+* Mon Jun 21 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.38-1
 - add python interface to the shared library.
 - bump soname to version 4 for many changes to the interface.
 - better decoding of recurrence data in appointments.
--- a/regression/regression-tests.bash	Wed Jun 17 22:11:12 2009 -0700
+++ b/regression/regression-tests.bash	Sun Jun 21 15:06:37 2009 -0700
@@ -59,7 +59,7 @@
 
 
 val="valgrind --leak-check=full"
-#val=''
+val=''
 
 pushd ..
 make || exit
@@ -99,7 +99,6 @@
     dopst   2 sample_64.pst
     dopst   3 test.pst
     dopst   4 big_mail.pst
-    exit
     dopst   5 mbmg.archive.pst
     dopst   6 Single2003-read.pst
     dopst   7 Single2003-unread.pst
--- a/src/libpst.c	Wed Jun 17 22:11:12 2009 -0700
+++ b/src/libpst.c	Sun Jun 21 15:06:37 2009 -0700
@@ -275,7 +275,6 @@
 static uint64_t         pst_getIntAtPos(pst_file *pf, int64_t pos);
 static pst_mapi_object* pst_parse_block(pst_file *pf, uint64_t block_id, pst_id2_tree *i2_head);
 static void             pst_printDptr(pst_file *pf, pst_desc_tree *ptr);
-static void             pst_printIDptr(pst_file* pf);
 static void             pst_printID2ptr(pst_id2_tree *ptr);
 static int              pst_process(pst_mapi_object *list, pst_item *item, pst_item_attach *attach);
 static size_t           pst_read_block_size(pst_file *pf, int64_t offset, size_t size, char **buf);
@@ -3680,17 +3679,6 @@
 }
 
 
-static void pst_printIDptr(pst_file* pf) {
-    pst_index_ll *ptr = pf->i_head;
-    DEBUG_ENT("pst_printIDptr");
-    while (ptr) {
-        DEBUG_INFO(("%#"PRIx64" offset=%#"PRIx64" size=%#"PRIx64"\n", ptr->i_id, ptr->offset, ptr->size));
-        ptr = ptr->next;
-    }
-    DEBUG_RET();
-}
-
-
 static void pst_printID2ptr(pst_id2_tree *ptr) {
     DEBUG_ENT("pst_printID2ptr");
     while (ptr) {