From: Ben Pfaff Date: Mon, 29 Mar 2004 23:24:50 +0000 (+0000) Subject: Check for posix_fadvise, update TODO. X-Git-Tag: v0.4.0~301 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=75ee3943826ac638a279a81a6d49de09e3e695cf Check for posix_fadvise, update TODO. --- diff --git a/ChangeLog b/ChangeLog index f3b38da1..429564f0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +Mon Mar 29 15:22:48 2004 Ben Pfaff + + * TODO: Updated. + + * configure.ac: Check for posix_fadvise. + Tue Mar 23 14:21:12 WAST 2004 John Darrington * Removed dcdflib and replaced with a dependency upon the diff --git a/TODO b/TODO index b5ae842d..d3adff4a 100644 --- 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 ---- diff --git a/configure.ac b/configure.ac index 98db30c3..4fc33847 100644 --- a/configure.ac +++ b/configure.ac @@ -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