# HG changeset patch # User Carl Byington # Date 1252016213 25200 # Node ID be1009c92ac2ec9058de8854a3859f1132cfc32b # Parent adf1db1f0b19569a903fa4288d0ce46f2c4c4875 patch from Fridrich Strba to build with DJGPP DOS cross-compiler diff -r adf1db1f0b19 -r be1009c92ac2 ChangeLog --- a/ChangeLog Tue Jun 23 20:41:00 2009 -0700 +++ b/ChangeLog Thu Sep 03 15:16:53 2009 -0700 @@ -1,3 +1,7 @@ +LibPST 0.6.42 (2009-09-03) +=============================== + * patch from Fridrich Strba to build with DJGPP DOS cross-compiler. + LibPST 0.6.41 (2009-06-23) =============================== * fix ax_python detection - should not use locate command diff -r adf1db1f0b19 -r be1009c92ac2 NEWS --- a/NEWS Tue Jun 23 20:41:00 2009 -0700 +++ b/NEWS Thu Sep 03 15:16:53 2009 -0700 @@ -1,3 +1,4 @@ +0.6.42 2009-09-03 patch from Fridrich Strba to build with DJGPP DOS cross-compiler 0.6.41 2009-06-23 fix ax_python detection - should not use locate command 0.6.40 2009-06-23 fedora 11 has python2.6, remove pdf version of the man pages 0.6.39 2009-06-21 fedora > 10 moved to boost-python-devel diff -r adf1db1f0b19 -r be1009c92ac2 configure.in --- a/configure.in Tue Jun 23 20:41:00 2009 -0700 +++ b/configure.in Thu Sep 03 15:16:53 2009 -0700 @@ -1,5 +1,5 @@ AC_PREREQ(2.59) -AC_INIT(libpst,0.6.41,carl@five-ten-sg.com) +AC_INIT(libpst,0.6.42,carl@five-ten-sg.com) AC_CONFIG_SRCDIR([src/libpst.c]) AC_CONFIG_HEADER([config.h]) AM_INIT_AUTOMAKE diff -r adf1db1f0b19 -r be1009c92ac2 libpst.spec.in --- a/libpst.spec.in Tue Jun 23 20:41:00 2009 -0700 +++ b/libpst.spec.in Thu Sep 03 15:16:53 2009 -0700 @@ -146,6 +146,12 @@ %changelog +* Thu Sep 03 2009 Carl Byington - 0.6.42-1 +- patch from Fridrich Strba to build with DJGPP DOS cross-compiler. + +* Sat Jul 25 2009 Fedora Release Engineering - 0.6.41-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + * Tue Jun 23 2009 Carl Byington - 0.6.41-1 - fix ax_python detection - should not use locate command - checking for fedora versions is not needed diff -r adf1db1f0b19 -r be1009c92ac2 src/define.h --- a/src/define.h Tue Jun 23 20:41:00 2009 -0700 +++ b/src/define.h Thu Sep 03 15:16:53 2009 -0700 @@ -94,6 +94,11 @@ #define gmtime_r(tp,tmp) (gmtime(tp)?(*(tmp)=*gmtime(tp),(tmp)):0) #define ctime_r(tp,tmp) (ctime(tp)?(strcpy((tmp),ctime((tp))),(tmp)):0) #else + #ifdef __DJGPP__ + #define gmtime_r(tp,tmp) (gmtime(tp)?(*(tmp)=*gmtime(tp),(tmp)):0) + #define ctime_r(tp,tmp) (ctime(tp)?(strcpy((tmp),ctime((tp))),(tmp)):0) + #define fseeko(stream, offset, whence) fseek(stream, (long)offset, whence) + #endif #ifdef HAVE_UNISTD_H #include #else