From 25dc4150947a3e612c8118838d04b3bbe68441f7 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 17 May 2008 22:47:51 -0400 Subject: [PATCH] - Bumped version to 0.9.7 - Changed some autoconf details - Corrected comment in T.cpp --- configure.ac | 4 ++-- src/T.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 69e2b774e..996a67da2 100644 --- a/configure.ac +++ b/configure.ac @@ -2,7 +2,7 @@ # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) -AC_INIT(task, 0.9.6, bugs@beckingham.net) +AC_INIT(task, 0.9.7, bugs@beckingham.net) AM_INIT_AUTOMAKE AC_CONFIG_SRCDIR([src/task.cpp]) AC_CONFIG_HEADER([auto.h]) @@ -19,7 +19,7 @@ AC_CHECK_LIB(ncurses,initscr) # Checks for header files. AC_HEADER_STDC -AC_CHECK_HEADERS([stdlib.h sys/file.h sys/time.h unistd.h]) +AC_CHECK_HEADERS([stdlib.h sys/file.h sys/stat.h sys/time.h unistd.h]) AC_CHECK_HEADERS([string vector map]) # Checks for typedefs, structures, and compiler characteristics. diff --git a/src/T.cpp b/src/T.cpp index 4ea22deb3..4b62ec12d 100644 --- a/src/T.cpp +++ b/src/T.cpp @@ -500,7 +500,7 @@ int T::determineVersion (const std::string& line) // a UUID followed by a status, then there is still a way to differentiate // between 2 and 3. // - // The danger is that a version 2 binary reads and misinterprets a version 2 + // The danger is that a version 2 binary reads and misinterprets a version 3 // file. This is why it is a good idea to rely on an explicit version // declaration rather than chance positioning. @@ -508,3 +508,4 @@ int T::determineVersion (const std::string& line) return 0; } +////////////////////////////////////////////////////////////////////////////////