Here are my results so far: Fedora Core 4: everything compiles and checks ok
Mac OS X 10.4.1: The old problem of off_t not being declared in flip.c is back as shown below during make: flip.c: In function 'flip_file': flip.c:438: error: 'off_t' undeclared (first use in this function) flip.c:438: error: (Each undeclared identifier is reported only once flip.c:438: error: for each function it appears in.) flip.c:438: error: parse error before 'i' make[3]: *** [flip.o] Error 1 This is fixed by adding #include <sys/types.h> in flip.c after <stdlib.h> Make check produces the following two errors (match-files.sh and sysfile-info.sh): ./command/match-files.sh: line 169: 8437 Abort trap $SUPERVISOR $here/../src/pspp -o raw-ascii $name.pspp >/dev/null 2>&1 run ff-ss.pspp NO RESULT FAIL: command/match-files.sh 12c12 < Endian: Big. --- > Endian: Little. compare output FAILED FAIL: command/sysfile-info.sh Running make distcheck produces the following messages: rm -rf $backupdir; exit $rc pspp.info: Bad address pspp.info: Bad address pspp.info: Bad address makeinfo: Removing output file `pspp.info' due to errors; use --force to preserve. make[3]: *** [pspp.info] Error 1 make[2]: *** [all-recursive] Error 1 make[1]: *** [all] Error 2 make: *** [distcheck] Error 2 Haven't looked into what the "Bad address" issue may be yet. Marshall -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ben Pfaff Sent: Monday, July 04, 2005 2:08 AM To: [email protected] Subject: PSPP 0.4.0 release candidate 1 available PSPP 0.4.0 release candidate 1 is available from: http://xenon.stanford.edu/~blp/pspp-0.4.0rc1.tar.gz If no one reports anything worth fixing within the next few days, I'll rename this as 0.4.0, upload it to alpha.gnu.org, and send up release announcements to the usual places. P.C.J.G. Brunier: Can you grab the NEWS file and make sure that the website has it? I made a few updates tonight. Thanks! Changes from 0.3.0 to 0.4.0: New build dependencies: * The GNU Scientific Library (libgsl), version 1.6 or later. * The GNU multiprecision arithmetic library (libgmp). * libplot from GNU plotutils is optional. Without it, the new graphing features will not work. If you do not have it installed, you must run `configure' with --without-libplot. Newly implemented commands and statistical features: * EXAMINE, including its graphing features. * FREQUENCIES now supports percentiles. * ONEWAY. * PERMISSIONS. * SHOW. * SORT CASES now sorts stably, that is, two cases with equal sort criteria will be in the same relative order before and after the sort. * T-TEST (re-written). * DATE and USE. These commands are parsed but otherwise ignored, to enhance compatibility with certain command files that invoke them unnecessarily. * VARIABLE WIDTH, VARIABLE ALIGNMENT, and VARIABLE LEVEL. These currently have no effect on PSPP output, but their values are written to and read from system files and thus may affect third-party software. * SET EPOCH implemented. * DATA LIST FREE and DATA LIST LIST now support arbitrary field delimiters. * FILE HANDLE now supports custom tab widths. Long variable names (and other identifiers) are now supported. Up to the first 64 bytes of each identifier is significant. PSPP now reads and writes system files compatible with SPSS version 12. New --algorithm and --syntax command line options allow SPSS-compatible or enhanced modes to be selected. Support for transformation expressions has been rewritten and significantly improved. Refer to the manual for details. Calculation of moments (mean, standard deviation, kurtosis, skewness) has been rewritten and should now be more accurate. In --algorithm=enhanced mode moments may be more accurate than SPSS in some cases. Numerous bugs have been fixed, too many to mention here. Many new tests have been added, leading to the discovery and fixing of many of these bugs. The ASCII output driver can now squeeze multiple blank lines into single blank lines. Much of the code has been rewritten and refactored. It is now much cleaner. The FILE TYPE and REPEATING DATA commands have been disabled for this release because their implementations were deemed too buggy to be useful. They will be fixed and replaced in a future release. New pspp-mode for Emacs (in pspp-mode.el). Added rudimentary command-line completion for interactive input. lib/julcal and lib/dcdflib are no longer used, so they have been removed. For developers, the build system now requires Autoconf 2.58 and Automake 1.7. The included gettext has been updated to version 0.12.1. -- Ben Pfaff email: [EMAIL PROTECTED] web: http://benpfaff.org _______________________________________________ pspp-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/pspp-dev _______________________________________________ pspp-dev mailing list [email protected] http://lists.gnu.org/mailman/listinfo/pspp-dev
