# HG changeset patch # User Carl Byington # Date 1245621997 25200 # Node ID fef2214083a4881f5a79bd736b5cda76948f83c3 # Parent 7fcff97ca5a9acaedc387054a9541698bd238e43 ready for new release diff -r 7fcff97ca5a9 -r fef2214083a4 AUTHORS --- 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 Emmanuel Andry hggdh + bharder Testing team: diff -r 7fcff97ca5a9 -r fef2214083a4 ChangeLog --- 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) =============================== diff -r 7fcff97ca5a9 -r fef2214083a4 NEWS --- 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. diff -r 7fcff97ca5a9 -r fef2214083a4 libpst.spec.in --- 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 - 0.6.38-1 +* Mon Jun 21 2009 Carl Byington - 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. diff -r 7fcff97ca5a9 -r fef2214083a4 regression/regression-tests.bash --- 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 diff -r 7fcff97ca5a9 -r fef2214083a4 src/libpst.c --- 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) {