Mercurial > libpst
changeset 136:16770fc77139
fix for const correctness on Fedora 11
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 07 Feb 2009 09:29:29 -0800 |
parents | d314358f201d |
children | d9d4ae17a2c3 |
files | ChangeLog NEWS configure.in libpst.spec.in src/pst2dii.cpp.in |
diffstat | 5 files changed, 13 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sat Feb 07 08:25:11 2009 -0800 +++ b/ChangeLog Sat Feb 07 09:29:29 2009 -0800 @@ -1,3 +1,7 @@ +LibPST 0.6.26 (2009-02-07) +=============================== + * fix for const correctness on Fedora 11 + LibPST 0.6.26 (2009-02-07) =============================== * patch from Fridrich Strba for building on mingw and
--- a/NEWS Sat Feb 07 08:25:11 2009 -0800 +++ b/NEWS Sat Feb 07 09:29:29 2009 -0800 @@ -1,3 +1,4 @@ +0.6.27 2009-02-07 fix for const correctness on Fedora 11 0.6.26 2009-02-07 patch from Fridrich Strba for building on mingw, and autoconf cleanup, better mime headers 0.6.25 2009-01-16 improve handling of content-type charset values in mime parts 0.6.24 2008-12-11 patch from Chris Eagle to build on cygwin
--- a/configure.in Sat Feb 07 08:25:11 2009 -0800 +++ b/configure.in Sat Feb 07 09:29:29 2009 -0800 @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT(libpst,0.6.26,carl@five-ten-sg.com) +AC_INIT(libpst,0.6.27,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([src/libpst.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE
--- a/libpst.spec.in Sat Feb 07 08:25:11 2009 -0800 +++ b/libpst.spec.in Sat Feb 07 09:29:29 2009 -0800 @@ -47,6 +47,9 @@ %changelog +* Sat Feb 07 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.27-1 +- fix for const correctness on Fedora 11 + * Sat Feb 07 2009 Carl Byington <carl@five-ten-sg.com> - 0.6.26-1 - patch from Fridrich Strba for building on mingw and general - cleanup of autoconf files.
--- a/src/pst2dii.cpp.in Sat Feb 07 08:25:11 2009 -0800 +++ b/src/pst2dii.cpp.in Sat Feb 07 09:29:29 2009 -0800 @@ -286,8 +286,8 @@ } -static void print_pdf_only(const char *line, int color); -static void print_pdf_only(const char *line, int color) +static void print_pdf_only(char *line, int color); +static void print_pdf_only(char *line, int color) { char *p; while ((p = strchr(line, '\n'))) { @@ -301,8 +301,8 @@ } -static void print_pdf(const char *line); -static void print_pdf(const char *line) +static void print_pdf(char *line); +static void print_pdf(char *line) { pst_fwrite(line, 1, strlen(line), dii_file); print_pdf_only(line, black);