From 30dc62703d4dd20a5e5f8815da0b7f342f06c97a Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Fri, 23 May 2014 16:26:55 -0400 Subject: [PATCH] TD-56 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - TD-56 File.cpp needs to include on Solaris (thanks to Tatjana Heuѕer). --- ChangeLog | 2 ++ src/File.cpp | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/ChangeLog b/ChangeLog index 3e634c83b..568645264 100644 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,8 @@ - TD-45 Fix preprocessor define (thanks to Jochen Sprickerhof). - TD-55 TLSServer/Client need to include on Solaris (thanks to Tatjana Heuser). +- TD-56 File.cpp needs to include on Solaris (thanks to Tatjana + Heuѕer). - #1255 l10n translation utility improvements (thanks to Renato Alves). - #1473 Make TASK_RCDIR customizable (thanks to Elias Probst). - #1486 Truncated sentence in task-sync(5) manpage (thanks to Jakub Wilk). diff --git a/src/File.cpp b/src/File.cpp index 6c4e0080a..1712ee786 100644 --- a/src/File.cpp +++ b/src/File.cpp @@ -28,7 +28,12 @@ #include #include #include +#ifdef SOLARIS +#include // for flock() replacement +#include // for memset() +#else #include +#endif #include #include #include