Check for posix_fadvise, update TODO.
authorBen Pfaff <blp@gnu.org>
Mon, 29 Mar 2004 23:24:50 +0000 (23:24 +0000)
committerBen Pfaff <blp@gnu.org>
Mon, 29 Mar 2004 23:24:50 +0000 (23:24 +0000)
ChangeLog
TODO
configure.ac

index f3b38da1126b72ca6f56213724721c1653ecc158..429564f0b923a64b90f2801454fbf5a2ab4f0446 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Mon Mar 29 15:22:48 2004  Ben Pfaff  <blp@gnu.org>
+
+       * TODO: Updated.
+
+       * configure.ac: Check for posix_fadvise.
+
 Tue Mar 23 14:21:12 WAST 2004 John Darrington <john@darrington.wattle.id.au>
 
        * Removed dcdflib and replaced with a dependency upon the
diff --git a/TODO b/TODO
index b5ae842d7f8ab18e60a73c2817fdbaa98a7ef2df..d3adff4a07a9c69394f39a0ff3a364b6950b7940 100644 (file)
--- a/TODO
+++ b/TODO
@@ -1,12 +1,10 @@
-Time-stamp: <2004-03-26 01:12:33 blp>
+Time-stamp: <2004-03-29 15:22:28 blp>
 
 What Ben's working on now.
 --------------------------
 
-Procedures need to be able to make multiple passes.
-
-Write a better descriptive stats evaluator based on NR two-pass technique,
-revise all existing code to use it.
+Procedures need to be modified to make multiple passes and use the moments
+class.
 
 Update q2c input format description.
 
@@ -14,6 +12,9 @@ Rewrite output subsystem, break into multiple processes.
 
 CROSSTABS needs to be re-examined.
 
+RANK, which is needed for the Wilcoxon signed-rank statistic, Mann-Whitney U,
+Kruskal-Wallis on NPAR TESTS and for Spearman (in another procedure).
+
 TODO
 ----
 
index 98db30c3cb82684e2c253b56d6644a206d5cd464..4fc3384739d04424f9ebff09c4051cc86850a7f9 100644 (file)
@@ -31,7 +31,6 @@ AC_CHECK_LIB(gsl,gsl_set_error_handler,,AC_MSG_ERROR([You must install libgsl]))
 AC_CHECK_FUNC(getopt_long,,
        AC_MSG_ERROR(`This application depends upon getopt_long'))
 
-  
 AC_CHECK_LIB(ncurses, tgetent, LIBS="-lncurses $LIBS" termcap=yes,
   AC_CHECK_LIB(termcap, tgetent, LIBS="-ltermcap $LIBS" termcap=yes,
                termcap=no))
@@ -91,7 +90,7 @@ AC_REPLACE_FUNCS([memmove memset stpcpy strpbrk strerror strtol strtoul \
                  memchr getline getdelim strcasecmp strncasecmp memmem \
                  strtok_r])
 AC_CHECK_FUNCS([gethostname strstr strtod __setfpucw isinf isnan finite \
-               getpid feholdexcept mkdtemp])
+               getpid feholdexcept mkdtemp posix_fadvise])
 
 AC_PROG_LN_S