# HG changeset patch # User Carl Byington # Date 1234027769 28800 # Node ID 16770fc771391c473403be9e6ee8adb88f021914 # Parent d314358f201d28263d22990ee9bc59e9e599ce70 fix for const correctness on Fedora 11 diff -r d314358f201d -r 16770fc77139 ChangeLog --- 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 diff -r d314358f201d -r 16770fc77139 NEWS --- 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 diff -r d314358f201d -r 16770fc77139 configure.in --- 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 diff -r d314358f201d -r 16770fc77139 libpst.spec.in --- 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 - 0.6.27-1 +- fix for const correctness on Fedora 11 + * Sat Feb 07 2009 Carl Byington - 0.6.26-1 - patch from Fridrich Strba for building on mingw and general - cleanup of autoconf files. diff -r d314358f201d -r 16770fc77139 src/pst2dii.cpp.in --- 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);