Mercurial > libpst
changeset 401:c1b1bbd42696
Markus Schnalke - fix from Debian for vcard version format
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 22 Mar 2020 18:13:33 -0700 |
parents | c6b10ac09bb6 |
children | 37cd2aea5d4a |
files | AUTHORS ChangeLog NEWS configure.ac libpst.spec.in src/readpst.c |
diffstat | 6 files changed, 13 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/AUTHORS Sun Jan 12 15:31:30 2020 -0800 +++ b/AUTHORS Sun Mar 22 18:13:33 2020 -0700 @@ -46,6 +46,7 @@ Alfredo Esteban <aedelatorre@gmail.com> Tim Dufrane <tim.dufrane@gmail.com> Paul Wise <pabs3@bonedaddy.net> + <debianoli@debianforum.de> Testing team: Mac OSX - Michael Watson <mike@mikeandgayle.com>
--- a/ChangeLog Sun Jan 12 15:31:30 2020 -0800 +++ b/ChangeLog Sun Mar 22 18:13:33 2020 -0700 @@ -1,3 +1,7 @@ +LibPST 0.6.75 (2020-03-22) +=============================== + * Markus Schnalke - fix from Debian for vcard version format. + LibPST 0.6.74 (2020-01-12) =============================== * Paul Wise - many changes for Debian.
--- a/NEWS Sun Jan 12 15:31:30 2020 -0800 +++ b/NEWS Sun Mar 22 18:13:33 2020 -0700 @@ -1,3 +1,4 @@ +0.6.75 2020-03-22 Markus Schnalke - fix from Debian for vcard version format. 0.6.74 2020-01-12 Paul Wise - many changes for Debian. 0.6.73 2019-07-25 Tim Dufrane - fix segfault in pst_close() 0.6.72 2018-08-01 Alfredo Esteban - add -l and -f options to lspst.
--- a/configure.ac Sun Jan 12 15:31:30 2020 -0800 +++ b/configure.ac Sun Mar 22 18:13:33 2020 -0700 @@ -1,5 +1,5 @@ AC_PREREQ(2.60) -AC_INIT(libpst,0.6.74,carl@five-ten-sg.com) +AC_INIT(libpst,0.6.75,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([src/libpst.c]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4]) @@ -21,7 +21,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:16:1' +libpst_version_info='5:17:1' AC_SUBST(LIBPST_VERSION_INFO, [$libpst_version_info]) libpst_so_major='4' AC_SUBST(LIBPST_SO_MAJOR, [$libpst_so_major]) @@ -56,6 +56,7 @@ # 0.6.69 libpst.so.4 libpst.so.4.1.14 # 0.6.73 libpst.so.4 libpst.so.4.1.15 # 0.6.74 libpst.so.4 libpst.so.4.1.16 +# 0.6.75 libpst.so.4 libpst.so.4.1.17
--- a/libpst.spec.in Sun Jan 12 15:31:30 2020 -0800 +++ b/libpst.spec.in Sun Mar 22 18:13:33 2020 -0700 @@ -176,6 +176,9 @@ %changelog +* Sun Mar 22 2020 Carl Byington <carl@five-ten-sg.com> 0.6.75-1 +- Markus Schnalke - fix from Debian for vcard version format. + * Sun Jan 12 2020 Carl Byington <carl@five-ten-sg.com> 0.6.74-1 - Paul Wise - many changes for debian: - Add missing linking with zlib and libpthread/librt
--- a/src/readpst.c Sun Jan 12 15:31:30 2020 -0800 +++ b/src/readpst.c Sun Mar 22 18:13:33 2020 -0700 @@ -2015,7 +2015,7 @@ write_extra_categories(f_output, item); - fprintf(f_output, "VERSION: 3.0\n"); + fprintf(f_output, "VERSION:3.0\n"); fprintf(f_output, "END:VCARD\n\n"); if (result) free(result); DEBUG_RET();