X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Flanguage%2Flexer%2FChangeLog;h=8d69b868f7feb75660863a8c3e083f10922dea4d;hb=fe3a0a8896cc9f099196f0d0228bb0cfa688c34a;hp=db33299a4cd473398effd2f2ac0ac9d5415ac79b;hpb=8381768f3394a907c621cb9acbb77b83f5cd4875;p=pspp diff --git a/src/language/lexer/ChangeLog b/src/language/lexer/ChangeLog index db33299a4c..8d69b868f7 100644 --- a/src/language/lexer/ChangeLog +++ b/src/language/lexer/ChangeLog @@ -1,3 +1,38 @@ +Fri Feb 16 11:14:42 2007 Ben Pfaff + + Better support cross-compiling by using CC_FOR_BUILD and + EXEEXT_FOR_BUILD for q2c. + + * automake.mk: Use EXEEXT_FOR_BUILD and CC_FOR_BUILD to build and + clean q2c. + + * q2c.c: Avoid external dependencies, besides the standard C + library. + +Sun Feb 11 20:31:51 2007 Ben Pfaff + + * q2c.c: Make q2c link under mingw32, by eliminating the + dependency on localtime. Gnulib replaces localtime by a fixed + version, but we don't link q2c against gnulib. q2c only uses + localtime to put the time of processing into the output file, + which I've never in practice found to be useful, so the patch just + drops this feature. + +Wed Dec 13 21:00:24 2006 Ben Pfaff + + * variable-parser.c (parse_variables): If not successful, set + output pointer to NULL and output count to 0. + +Sat Dec 9 18:46:11 2006 Ben Pfaff + + * variable-parser.h: New PV_SAME_WIDTH variable parsing option. + + * variable-parser.c (add_variable): Implement new PV_SAME_WIDTH + option. + (parse_var_set_vars) Ditto. + (array_var_set_lookup_var_idx) Use new var_create, var_destroy + functions. + Sat Dec 2 21:19:50 2006 Ben Pfaff General clean-up.