Name | Modified | Size |
---|---|---|
.. | ||
Build.com | 21 years ago | 1 KB |
Build.mpw | 21 years ago | 3 KB |
builtins.c | 21 years ago | 7 KB |
builtins.h | 21 years ago | 274 B |
command.c | 21 years ago | 1 KB |
command.h | 21 years ago | 2 KB |
compile.c | 21 years ago | 20 KB |
compile.h | 21 years ago | 2 KB |
execcmd.h | 20 years ago | 421 B |
execmac.c | 20 years ago | 1 KB |
execunix.c | 21 years ago | 8 KB |
execvms.c | 21 years ago | 3 KB |
expand.c | 20 years ago | 13 KB |
expand.h | 21 years ago | 339 B |
filemac.c | 21 years ago | 4 KB |
filent.c | 20 years ago | 6 KB |
fileos2.c | 21 years ago | 3 KB |
filesys.h | 21 years ago | 531 B |
fileunix.c | 21 years ago | 9 KB |
filevms.c | 21 years ago | 7 KB |
glob.c | 21 years ago | 3 KB |
hash.c | 21 years ago | 5 KB |
hash.h | 21 years ago | 539 B |
headers.c | 21 years ago | 3 KB |
headers.h | 21 years ago | 206 B |
jam.c | 20 years ago | 9 KB |
jam.h | 21 years ago | 11 KB |
Jam.html | 21 years ago | 41 KB |
Jambase | 20 years ago | 43 KB |
jambase.c | 21 years ago | 29 KB |
jambase.h | 21 years ago | 373 B |
Jambase.html | 21 years ago | 25 KB |
Jamfile | 20 years ago | 4 KB |
Jamfile.html | 21 years ago | 49 KB |
jamgram.c | 21 years ago | 28 KB |
jamgram.h | 21 years ago | 1 KB |
jamgram.y | 21 years ago | 10 KB |
jamgram.yy | 21 years ago | 8 KB |
jamgramtab.h | 21 years ago | 1 KB |
lists.c | 21 years ago | 5 KB |
lists.h | 21 years ago | 2 KB |
make.c | 21 years ago | 13 KB |
make.h | 21 years ago | 336 B |
make1.c | 20 years ago | 17 KB |
Makefile | 21 years ago | 1 KB |
mkjambase.c | 21 years ago | 2 KB |
newstr.c | 21 years ago | 2 KB |
newstr.h | 21 years ago | 358 B |
option.c | 21 years ago | 2 KB |
option.h | 21 years ago | 568 B |
parse.c | 21 years ago | 2 KB |
parse.h | 21 years ago | 863 B |
patchlevel.h | 20 years ago | 165 B |
pathmac.c | 21 years ago | 6 KB |
pathsys.h | 21 years ago | 1 KB |
pathunix.c | 21 years ago | 5 KB |
pathvms.c | 21 years ago | 9 KB |
Porting | 21 years ago | 2 KB |
README | 21 years ago | 4 KB |
regexp.c | 21 years ago | 31 KB |
regexp.h | 21 years ago | 821 B |
RELNOTES | 20 years ago | 39 KB |
rules.c | 21 years ago | 7 KB |
rules.h | 21 years ago | 6 KB |
scan.c | 21 years ago | 8 KB |
scan.h | 21 years ago | 1 KB |
search.c | 21 years ago | 2 KB |
search.h | 21 years ago | 302 B |
timestamp.c | 21 years ago | 4 KB |
timestamp.h | 21 years ago | 259 B |
variable.c | 20 years ago | 6 KB |
variable.h | 21 years ago | 712 B |
yyacc | 21 years ago | 1 KB |
Change | User | Description | Committed |
---|---|---|---|
4625 | Chris Comparini | Revised fix for the SUBDIR_TOKEN bug reported by Daniel Weber, initially "fixed" by chang...elist 4397. This fix is from Chris Seiwald, who notes that _tokens was originally not intended to have been modified when stripping common elements. In this version, local copies of _tokens and SUBDIR_DOWN are modified instead. « |
20 years ago |
4624 | Chris Comparini | Comments on Link actions being "together". Fixed indentation on a use of SUBDIR_D...OWN, and corrected (I think!) the "Supports" comment at the top. « |
20 years ago |
4623 | Chris Comparini | Bumped version to 2.6rc1. | 20 years ago |
4622 | Chris Comparini | Added section for Jam version 2.6 and noted (most of) the changes checked in on this bran...ch so far. « |
20 years ago |
4621 | Chris Comparini | Reverted declaration of execwait(), as per Chris Seiwald's request. | 20 years ago |
4620 | Chris Comparini | Removed declaration of main as returning int again. | 20 years ago |
4619 | Chris Comparini | Altered implementation of the blank element exclusion code, as per Chris S's suggestion. ... Presently this excludes all blank words from environment variables. « |
20 years ago |
4602 | Chris Comparini | Modified comment on interrupt during make1b(). | 20 years ago |
4600 | Chris Comparini | Re-formatted a comment to 80 columns. | 20 years ago |
4599 | Chris Comparini | Comment and style fixes. | 20 years ago |
4598 | Chris Comparini | Merged from //public. | 20 years ago |
4596 | Chris Comparini | Additional changes from Chris Siewald relating the the "J=" bug reported to the jamming m...ailing list by Paul Forgey on Oct 12. These changes address issues with constructs such as: A = a b c ; B = ; C = A B ; echo $($(C)[1-2]:J=.) ; echo $(A[1-2]:J=.) ; Which now prints: a.b a.b Which seems like the correct behavior to me.. (?) However, this change seems to alter the behavior of this construct: FOO = foo ; VAR = a b ; BAR = FOO VAR ; Echo $($(BAR):J=.) should be $(FOO:J=.).$(VAR:J=.) ; Formerly, this printed to: foo.a.b Now it prints: foo a.b This will be investigated further. « |
20 years ago |
4575 | Chris Comparini | Fix to bug reported by Paul Forgey to the Jamming mailing list on 12 Oct 2004 with subjec...t: [jamming] J= bug? In a nutshell, a join of an expansion of a range of elements specified by $(v[n-m]) of a the :J=x modifier resulted in an empty list being returned from var_expand(). This was due to an incorrect assumption regarding whether or not we were at the end of a list of values to join. The bug manifested itself as: VAR = 1 2 3 4 ; Echo $(VAR[2-3]:J=.) ; # prints nothing! « |
21 years ago |
4399 | Chris Comparini | Generated results of changes from changelist 4392 and 4397. | 21 years ago |
4398 | Chris Comparini |
Contains the results of changelists 4393 and 4394. (Generated file) |
21 years ago |
4397 | Chris Comparini | This is in reference to email from Daniel Weber <DaWeber@harmanbecker.com> on the J...amming mailing list. The problem as posed is essentially that the SUBDIR_TOKENS are not set correctly when you SubInclude a Jamfile whose SubDir is not a direct child of of the SubIncluding Jamfile, and whose TOP is not the same as the including Jamfile. The result of his fix is that the SUBDIR_TOKENS, etc are set as relative to the including Jamfile's root when jam is called from the including tree, and as relative to its own TOP when jam is called from within the sub tree in which the included Jamfile resides. I'm not sure if this is correct behavior - my initial response is that I would expect the SUBDIR_TOKENS, etc. to be relative to the TOP most recently set by a call to SubDir. This seems like the most straightforward and modular possibility - a given Jam project would have the same behavior regardless of whether it is being compiled on its own or as a sub-part of a larger project. Nevertheless, the behavior Mr. Weber describes is clearly wrong so I'm integrating his fix. See change 4396 for a related test bed. « |
21 years ago |
4393 | Chris Comparini | This is probably silly but set VERSION = jam-2.5rc3 from jam-2.5rc1 since it was bugging... me to see the mismatch in greps. (rc3 appears to be the correct version - set in patchlevel.h.) « |
21 years ago |
4392 | Chris Comparini | Link actions are now "together". | 21 years ago |
4380 | Chris Comparini | Integration with slight modification of craig_mspheeters/jam/src/Jamfile with IRIX mips3k... fix, profiling for NT, and increased stack size for NT and Mac. « |
21 years ago |
4379 | Chris Comparini | Support for GNU-style '\n' termination of long filenames.A Submitted to the Jamming maili...ng list by Jose Vasconcellos Tue, 27 Jul 2004 07:03:17 +0530 email subject: "Bug fix: handling library members of non-MS libraries" « |
21 years ago |
4378 | Chris Comparini | Omission of trailing blanks on environment variables, from craig_mcpheeters/jam/src/varia...ble.c. Not completely comfortable with this implementation, but here it is.. « |
21 years ago |
4377 | Chris Comparini | Addition of interrupt check (from craig_mcpheeters/jam/src/...) | 21 years ago |
4376 | Chris Comparini | main declared as returning int. | 21 years ago |
4375 | Chris Comparini | Comment fixes and removal of unuused variables. | 21 years ago |
4374 | Chris Comparini | execwait declared void | 21 years ago |
4373 | Chris Comparini | Use PATH_DELIM instead of "\\" on tempfile, (Modified from cra...ig_mcpheeters/jam/src/execunix.c) « |
21 years ago |
4372 | Chris Comparini | Merged fflush from craig_mepheeters/jam/src/builtins.c (sans \#ifdef) | 21 years ago |
4370 | Chris Comparini | 21 years ago | |
4331 | Chris Comparini |
Branch of what I hope is _everyone's_ jam branches, if that makes sense. |
21 years ago |