# HG changeset patch # User Carl Byington # Date 1221418579 25200 # Node ID 2e3ec9511166cf3d26f8e77520829b3f9a619d08 # Parent ff1743cbe4aab447ec34c95383262a9777b05c1f update the release notes diff -r ff1743cbe4aa -r 2e3ec9511166 AUTHORS --- a/AUTHORS Sat Sep 13 20:15:40 2008 -0700 +++ b/AUTHORS Sun Sep 14 11:56:19 2008 -0700 @@ -20,3 +20,4 @@ Joachim Metz Robert Simpson Justin Greer + Bharath Acharya diff -r ff1743cbe4aa -r 2e3ec9511166 ChangeLog --- a/ChangeLog Sat Sep 13 20:15:40 2008 -0700 +++ b/ChangeLog Sun Sep 14 11:56:19 2008 -0700 @@ -1,3 +1,8 @@ +LibPST 0.6.19 (2008-09-14) +=============================== + * Fix base64 encoding that could create long lines + * Initial work on a .so shared library from Bharath Acharya. + LibPST 0.6.18 (2008-08-28) =============================== * Fixes for iconv on Mac from Justin Greer. diff -r ff1743cbe4aa -r 2e3ec9511166 NEWS --- a/NEWS Sat Sep 13 20:15:40 2008 -0700 +++ b/NEWS Sun Sep 14 11:56:19 2008 -0700 @@ -1,3 +1,4 @@ +0.6.19 2008-09-14 Initial work on a .so shared library from Bharath Acharya. 0.6.18 2008-08-28 Fixes for iconv on Mac from Justin Greer. 0.6.17 2008-08-05 More fixes for 32/64 bit portability on big endian ppc. 0.6.16 2008-08-05 Use inttypes.h for portable printing of 64 bit items. diff -r ff1743cbe4aa -r 2e3ec9511166 configure.in --- a/configure.in Sat Sep 13 20:15:40 2008 -0700 +++ b/configure.in Sun Sep 14 11:56:19 2008 -0700 @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT(libpst,0.6.18,carl@five-ten-sg.com) +AC_INIT(libpst,0.6.19,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([config.h.in]) AC_CONFIG_HEADER([config.h]) @@ -34,7 +34,7 @@ ) AC_HEADER_DIRENT AC_HEADER_STDC -AC_CHECK_HEADERS([fcntl.h limits.h malloc.h netinet/in.h stdint.h stdlib.h string.h sys/param.h wchar.h]) +AC_CHECK_HEADERS([fcntl.h inttypes.h limits.h stdint.h stdlib.h string.h sys/param.h unistd.h wchar.h]) if test "$my_build_dii" = "yes"; then AC_CHECK_HEADERS([gd.h]) fi diff -r ff1743cbe4aa -r 2e3ec9511166 libpst.spec.in --- a/libpst.spec.in Sat Sep 13 20:15:40 2008 -0700 +++ b/libpst.spec.in Sun Sep 14 11:56:19 2008 -0700 @@ -47,6 +47,10 @@ %changelog +* Sun Sep 14 2008 Carl Byington - 0.6.19-1 +- Fix base64 encoding that could create long lines. +- Initial work on a .so shared library from Bharath Acharya. + * Thu Aug 28 2008 Carl Byington - 0.6.18-1 - Fixes for iconv on Mac from Justin Greer.