diff options
author | rh <rh> | 2000-01-14 14:01:58 +0000 |
---|---|---|
committer | rh <rh> | 2000-01-14 14:01:58 +0000 |
commit | 3214ff342d163fee59ec532df270495dc4133615 (patch) | |
tree | 80a4e131d7b95a7a1dac59bee3e072a4b8ed57d6 /math/pspp/Makefile | |
parent | c5a8cca34a0fb48e078b3358c4b271260ed1c0f4 (diff) | |
download | pkgsrc-3214ff342d163fee59ec532df270495dc4133615.tar.gz |
Update pspp to 0.3.0
Version 0.3.0 changes since 0.2.3:
Bugs fixed:
* Using alphanumeric variables in functions under AGGREGATE
segfaulted. Fixed.
* Under certain circumstances, the final case would be omitted
from the results of an AGGREGATE operation. Fixed.
* Undefined behavior was invoked by referencing a freed pointer
under certain circumstances. Fixed.
* A wrong record size was displayed when paging the active file to
disk. Fixed.
* Not having enough temporary space for sorting caused a core
dump. Fixed.
* Syntax errors in function descriptions on AGGREGATE caused core
dumps. Fixed.
* A null pointer was dereferenced, causing a core dump, when
PERCENTILES was specified on FREQUENCIES. This fixes the
problem, but PSPP still doesn't calculate percentiles.
* SORT always sorted in ascending order. Fixed.
* Some minor memory leaks in the expression parser were removed.
* Many assertions fixed for strict ANSI C compliance.
New features:
* SET ECHO ON now implemented, but turned off by default.
* PRINT specifier supported on END REPEAT.
Other:
* System libgmp2 library is used if installed instead of
unconditionally using the included libgmp2 subset.
* Extensive code cleanup, which continues.
* Added CORRELATIONS command parser, but not implemented.
Diffstat (limited to 'math/pspp/Makefile')
-rw-r--r-- | math/pspp/Makefile | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/math/pspp/Makefile b/math/pspp/Makefile index 7f1a0276b76..70c0404e657 100644 --- a/math/pspp/Makefile +++ b/math/pspp/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2000/01/10 19:11:09 hubertf Exp $ +# $NetBSD: Makefile,v 1.8 2000/01/14 14:01:58 rh Exp $ # -DISTNAME= pspp-0.2.3 +DISTNAME= pspp-0.3.0 CATEGORIES= math MASTER_SITES= ftp://franz.stat.wisc.edu/pub/PSPP/ \ ftp://alpha.gnu.org/gnu/pspp/ \ @@ -15,7 +15,6 @@ MASTER_SITES= ftp://franz.stat.wisc.edu/pub/PSPP/ \ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.gnu.org/software/pspp/ -BUILD_DEPENDS+= autoconf:../../devel/autoconf DEPENDS+= gettext-0.10.*:../../devel/gettext DEPENDS+= ncurses-4.2:../../devel/ncurses @@ -27,8 +26,6 @@ GNU_CONFIGURE= yes USE_GTEXINFO= yes CPPFLAGS+= -Dunix=1 -I${LOCALBASE}/include CONFIGURE_ENV+= CPPFLAGS="${CPPFLAGS}" - -pre-configure: - ( cd ${WRKSRC}; autoconf ) +MAKE_ENV+= pkgsysconfdir="${PREFIX}/etc/pspp" .include "../../mk/bsd.pkg.mk" |