* Various cleanups for release.
[make.git] / ChangeLog
blobbfd80eb9c554c73cee852f2999173aaa004e934f
1 1999-09-10  Paul Eggert  <eggert@twinsun.com>
3         * acinclude.m4 (AC_SYS_LARGEFILE_FLAGS): If on HP-UX 10.20 or
4         later, and using GCC, define __STDC_EXT__; this works around a
5         bug in GCC 2.95.1.
7 1999-09-08  Paul D. Smith  <psmith@gnu.org>
9         * main.c (print_version): Ugh.  GLIBC's configure tries to check
10         make version strings and is too aggressive with their matching
11         expressions.  I've struck a deal with them to leave the version
12         output as-is for 3.78, and they'll change their configure checks
13         so that I can change this back in the future.
15 1999-09-07  Eli Zaretskii  <eliz@is.elta.co.il>
17         * job.c (construct_command_argv_internal) [__MSDOS__]: Add "echo"
18         and "unset" to the list of builtin shell commands.
20         * configh.DOS.template (MAKE_HOST): Define to "i386-pc-msdosdjgpp"
21         which is the canonical name of the DJGPP host.
23 1999-09-05  Paul D. Smith  <psmith@gnu.org>
25         * Version 3.77.95 released.
27         * make.texinfo (Make Errors): Document some new jobserver error
28         messages.
30 1999-09-04  Eli Zaretskii  <eliz@is.elta.co.il>
32         * make.texinfo (Make Errors): Document the hint about 8 spaces
33         instead of a TAB.
34         (Call Function, Quick Reference): Use @code{$(1)}, not @var.
36         * main.c (main) [__MSDOS__]: Say "on this platform" instead of "on
37         MS-DOS", since the MSDOS version could run on Windows.
39 1999-09-03  Paul D. Smith  <psmith@gnu.org>
41         * remake.c (notice_finished_file): Always set mtime_before_update
42         if it's not been set, not just if we ran some rules.  Otherwise we
43         may have a situation where a target's prerequisite was rebuilt but
44         not changed, so this target's rules weren't run, then
45         update_goal_chain() sees mtime_before_update != last_mtime and
46         thinks that the top-level target changed when it really didn't.
47         This can cause an infinite loop when remaking makefiles.
48         (update_goal_chain): If we get back to the top and we don't know
49         what the goal's last_mtime was, find it now.  We need to know so
50         we can compare it to mtime_before_update later (this is only
51         crucial when remaking makefiles--should we only do it then?)
53 1999-09-02  Paul D. Smith  <psmith@gnu.org>
55         * read.c (read_makefile): If "override" appears as the first
56         prerequisite, look further to ensure this is really a
57         target-specific variable definition, and not just some
58         prerequisite named "override".
60 1999-09-01  Paul D. Smith  <psmith@gnu.org>
62         * function.c (IS_PATHSEP) [WINDOWS32]: Allow backslash separators
63         for W32 platforms.
64         * read.c (record_files) [WINDOWS32]: Allow backslash separators
65         for W32 platforms.
66         * implicit.c (pattern_search) [WINDOWS32]: Allow backslash
67         separators for W32 platforms.
69         * configure.in (MAKE_HOST): Define it to be the canonical build
70         host info, now that we need AC_CANONICAL_HOST anyway (for large
71         file support).
72         * version.c (make_host): Define a variable to MAKE_HOST so we're
73         sure to get it from the local config.h.
74         * main.c (print_version): Use it in the version information.
75         * config.ami.template: Add MAKE_HOST.
76         * configh.dos.template: Ditto.
77         * config.h.W32.template: Ditto.
78         * config.h-vms.template: Ditto.
80         * main.c (main): Close the jobserver file descriptors if we need
81         to re-exec ourselves.
82         Also print more reasonable error if users force -jN for submakes.
83         This may be common for a while until people use the jobserver
84         feature.  If it happens, we ignore the existing jobserver stuff
85         and use whatever they specified on the commandline.
86         (define_makeflags): Fixed a long-standing bug: if a long name
87         only option comes immediately after a single letter option with no
88         argument, then the option string is constructed incorrectly.  For
89         example, with -w and --jobserver-fds you get "-w-jobserver-fds..."
90         instead of "-w --jobserver-fds..."; add in an extra " -".
92         * make.texinfo (Phony Targets): Add another example of using
93         .PHONY with subdirectories/recursive make.
95 1999-08-30  Paul D. Smith  <psmith@gnu.org>
97         * README.W32.template: Renamed from README.W32 so it's
98         autogenerated during the dist.  A few minor modifications.
100         * configure.in: Check for kstat_open before AC_FUNC_GETLOADAVG
101         since the latter needs to know whether the former exists to give
102         an accurate result.
104 1999-08-26  Rob Tulloh  <rob_tulloh@dev.tivoli.com>
106         * NMakefile [WINDOWS32]: Now more robust. If you change a file
107         under w32/subproc, the make.exe will be relinked. Also added some
108         tests to make sure erase commands won't fail when executed in a
109         pristine build environment.
111         * w32/subproc/sub_proc.c [WINDOWS32]: Added support for
112         HAVE_CYGWIN_SHELL. If you are using the Cygwin B20.1 release, it
113         is now possible to have have native support for this shell without
114         having to rely on klutzy BATCH_MODE_ONLY_SHELL.
116         * config.h.W32 [WINDOWS32]: Added HAVE_CYGWIN_SHELL macro which
117         users can define if they want to build make to use this shell.
119         * README.W32 [WINDOWS32]: Added informaton about
120         HAVE_CYGWIN_SHELL. Cleaned up text a bit to make it more current.
122 1999-08-26  Paul Eggert  <eggert@twinsun.com>
124         Support large files in AIX, HP-UX, and IRIX.
126         * acinclude.m4 (AC_LFS): Remove.  Superseded by AC_SYS_LARGEFILE.
127         (AC_SYS_LARGEFILE_FLAGS, AC_SYS_LARGEFILE_SPACE_APPEND,
128         AC_SYS_LARGEFILE_MACRO_VALUE, AC_SYS_LARGEFILE): New macros.
129         (jm_AC_TYPE_UINTMAX_T): Check for busted compilers that can't
130         shift or divide unsigned long long.
131         (AM_PROG_CC_STDC): New macro; a temporary workaround of a bug in
132         automake 1.4.
134         * configure.in (AC_CANONICAL_HOST): Add; required by new
135         AC_SYS_LARGEFILE.
136         (AC_SYS_LARGEFILE): Renamed from AC_LFS.
137         (AM_PROG_CC_STDC): Add.
139         * config.guess, config.sub: New files, needed for AC_CANONICAL_HOST.
141 1999-08-25  Paul Eggert  <eggert@twinsun.com>
143         * make.h (CHAR_MAX): New macro.
144         * main.c (struct command_switch): c is now int,
145         so that it can store values greater than CHAR_MAX.
146         (switches): Replace small numbers N with CHAR_MAX+N-1,
147         to avoid problems with non-ASCII character sets.
148         (short_option): New macro.
149         (init_switches, print_usage, define_makeflags): Use it instead of
150         isalnum.
152 1999-08-25  Paul D. Smith  <psmith@gnu.org>
154         * Version 3.77.94 released.
156         * main.c (main) [__MSDOS__]: If the user uses -j, warn that it's
157         not supported and reset it.
159         * make.h (ISDIGIT): Obtained this from the textutils distribution.
160         * main.c (decode_switches): Use it.
161         * function.c (is_numeric): Use it.
163         * main.c (struct command_switch): Store the switch char in an
164         unsigned char to shut up GCC about using it with ctype.h macros.
165         Besides, it _is_ always unsigned.
167 1999-08-24  Paul D. Smith  <psmith@gnu.org>
169         * make.texinfo: Change "dependency" to "prerequisite" and
170         "dependencies" to "prerequisites".  Various other cleanups related
171         to the terminology change.
172         * file.c: Change debugging and error messages to use
173         "prerequisite" instead of "dependency".
174         * implicit.c: Ditto.
175         * remake.c: Ditto.
176         * NEWS: Document it.
178 1999-08-23  Paul D. Smith  <psmith@gnu.org>
180         * remake.c (update_file): Move the considered check into the
181         double-colon rule loop, so we consider double-colon rules
182         individually (otherwise after the first is pruned, the rest won't
183         get run).
185         * README.template: Minor changes.
187         Remove the debugging features of the jobserver, so it no longer
188         writes distinct tokens to the pipe.  Thus, we don't need to store
189         the token we get.  A side effect of this is to remove a potential
190         "unavailable token" situation: make-1 invokes make-2 with its
191         special token and make-3 with a normal token; make-2 completes.
192         Now we're waiting for make-3 but using 2 tokens; our special token
193         is idle.  In the new version we don't have special tokens per se,
194         we merely decide if we already have a child or not.  If we don't,
195         we don't need a token.  If we do, we have to get one to run the
196         next child.  Similar for putting tokens back: if we're cleaning up
197         the last child, we don't put a token back.  Otherwise, we do.
199         * main.c: Add a new, internal flag --jobserver-fds instead of
200         overloading the meaning of -j.  Remove job_slots_str and add the
201         stringlist jobserver_fds.
202         (struct command_switch): We don't need the int_string type.
203         (switches[]): Add a new option for --jobserver-fds and remove
204         conditions around -j.  Make the description for the former 0 so it
205         doesn't print during "make --help".
206         (main): Rework jobserver parsing.  If we got --jobserver-fds
207         make sure it's valid.  We only get one and job_slots must be 0.
208         If we're the toplevel make (-jN without --jobserver-fds) create
209         the pipe and write generic tokens.
210         Create the stringlist struct for the submakes.
211         Clean up the stringlist where necessary.
212         (init_switches): Remove int_string handling.
213         (print_usage): Don't print internal flags (description ptr is 0).
214         (decode_switches): Remove int_string handling.
215         (define_makeflags): Remove int_string handling.
217         * job.c: Remove my_job_token flag and all references to the
218         child->job_token field.
219         (free_job_token): Remove this and merge it into free_child().
220         (reap_children): Rework the "reaped a child" logic slightly.
221         Don't call defunct free_job_token anymore.  Always call
222         free_child, even if we're dying.
223         (free_child): If we're not freeing the only child, put a token
224         back in the pipe.  Then, if we're dying, don't bother to free.
225         (new_job): If we are using the jobserver, loop checking to see if
226         a) there are no children or b) we get a token from the pipe.
228         * job.h (struct child): Remove the job_token field.
230 1999-08-20  Paul D. Smith  <psmith@gnu.org>
232         * variable.c (try_variable_definition): Allocate for variable
233         expansion in f_append with a simple variable: if we're looking at
234         target-specific variables we don't want to trash the buffer.
235         Noticed by Reiner Beninga <Reiner.Beninga@mchp.siemens.de>.
237 1999-08-16  Eli Zaretskii  <eliz@is.elta.co.il>
239         * main.c (main) [__MSDOS__]: Mirror any backslashes in argv[0], to
240         avoid problems in shell commands that use backslashes as escape
241         characters.
243 1999-08-16  Paul D. Smith  <psmith@gnu.org>
245         * Version 3.77.93 released.
247 1999-08-13  Paul D. Smith  <psmith@gnu.org
249         * function.c (func_if): New function $(if ...) based on the
250         original by Han-Wen but reworked quite a bit.
251         (function_table): Add it.
252         * NEWS: Introduce it.
253         * make.texinfo (If Function): Document it.
255         * job.c (free_job_token): Check for EINTR when writing tokens to
256         the jobserver pipe.
258 1999-08-12  Paul D. Smith  <psmith@gnu.org>
260         Another jobserver algorithm change.  We conveniently forgot that
261         the blocking bit is shared by all users of the pipe, it's not a
262         per-process setting.  Since we have many make processes all
263         sharing the pipe we can't use the blocking bit as a signal handler
264         flag.  Instead, we'll dup the pipe's read FD and have the SIGCHLD
265         handler close the dup'd FD.  This will cause the read() to fail
266         with EBADF the next time we invoke it, so we know we need to reap
267         children.  We then re-dup and reap.
269         * main.c (main): Define the job_rfd variable to hold the dup'd FD.
270         Actually dup the read side of the pipe.  Don't bother setting the
271         blocking bit on the file descriptor.
272         * make.h: Declare the job_rfd variable.
273         * job.c (child_handler): If the dup'd jobserver pipe is open,
274         close it and assign -1 to job_rfd to notify the main program that
275         we got a SIGCHLD.
276         (start_job_command): Close the dup'd FD before exec'ing children.
277         Since we open and close this thing so often it doesn't seem
278         worth it to use the close-on-exec bit.
279         (new_job): Remove code for testing/setting the blocking bit.
280         Instead of EAGAIN, test for EBADF.  If the dup'd FD has been
281         closed, re-dup it before we reap children.
283         * function.c (func_shell): Be a little more accurate about the
284         length of the error string to allocate.
286         * expand.c (variable_expand_for_file): If there's no filenm info
287         (say, from a builtin command) then reset reading_file to 0.
289 1999-08-09  Paul D. Smith  <psmith@gnu.org>
291         * maintMakefile: Use g in sed (s///g) to replace >1 variable per
292         line.
294         * Makefile.DOS.template [__MSDOS__]: Fix mostlyclean-aminfo to
295         remove the right files.
297 1999-08-01  Eli Zaretskii  <eliz@is.elta.co.il>
299         * function.c (msdos_openpipe) [__MSDOS__]: *Really* return a FILE
300         ptr.
302 1999-08-01  Paul D. Smith  <psmith@gnu.org>
304         New jobserver algorithm to avoid a possible hole where we could
305         miss SIGCHLDs and get into a deadlock.  The original algorithm was
306         suggested by Roland McGrath with a nice refinement by Paul Eggert.
307         Many thanks as well to Tim Magill and Howard Chu, who also
308         provided many viable ideas and critiques.  We all had a fun week
309         dreaming up interesting ways to use and abuse UNIX syscalls :).
311         Previously we could miss a SIGCHLD if it happened after we reaped
312         the children but before we re-entered the blocking read.  If this
313         happened to all makes and/or all children, make would never wake
314         up.
316         We avoid this by having the SIGCHLD handler reset the blocking bit
317         on the jobserver pipe read FD (normally read does block in this
318         algorithm).  Now if the handler is called between the time we reap
319         and the time we read(), and there are no tokens available, the
320         read will merely return with EAGAIN instead of blocking.
322         * main.c (main): Set the blocking bit explicitly here.
323         * job.c (child_handler): If we have a jobserver pipe, set the
324         non-blocking bit for it.
325         (start_waiting_job): Move the token stuff back to new_job; if we
326         do it here then we're not controlling the number of remote jobs
327         started!
328         (new_job): Move the check for job slots to _after_ we've created a
329         child structure.  If the read returns without getting a token, set
330         the blocking bit then try to reap_children.
332         * make.h (EINTR_SET): Define to test errno if EINTR is available,
333         or 0 otherwise.  Just some code cleanup.
334         * arscan.c (ar_member_touch): Use it.
335         * function.c (func_shell): Use it.
336         * job.c (reap_children): Use it.
337         * remake.c (touch_file): Use it.
339 1999-07-28  Paul D. Smith  <psmith@gnu.org>
341         * make.h: Define _() and N_() macros as passthrough to initiate
342         NLS support.
343         * <all>: Add _()/N_() around translatable strings.
345 1999-07-27  Paul D. Smith  <psmith@gnu.org>
347         * read.c: Make sure make.h comes before other headers.
349 1999-07-26  Paul D. Smith  <psmith@gnu.org>
351         * make.texinfo (Quick Reference): Update with the new features.
353 1999-07-25  Eli Zaretskii  <eliz@is.elta.co.il>
355         * remake.c [__MSDOS__]: Don't include variables.h, it's already
356         included.
358         * function.c (msdos_openpipe) [__MSDOS__]: Return FILE ptr.
359         (func_shell) [__MSDOS__]: Fix the argument list.
361         * Makefile.DOS.template: Update from Makefile.in.
363         * README.DOS.template: Configure command fixed.
365         * configh.dos.template: Update to provide definitions for
366         uintmax_t, fd_set_size_t, and HAVE_SELECT.
368 1999-07-24  Paul D. Smith  <psmith@gnu.org>
370         * Version 3.77.91 released.
372         * configure.in: Changes to the boostrapping code: if build.sh.in
373         doesn't exist configure spits an error and generates an empty
374         build.sh file which causes make to be confused.
375         * maintMakefile: Don't build README early.
377 1999-07-23  Paul D. Smith  <psmith@gnu.org>
379         * job.c (my_job_token): This variable controls whether we've
380         handed our personal token to a subprocess or not.  Note we could
381         probably infer this from the value of job_slots_used, but it's
382         clearer to just keep it separately.  Job_slots_used isn't really
383         relevant when running the job server.
384         (free_job_token): New function: free a job token.  If we don't
385         have one, no-op.  If we have the personal token, reclaim it.  If
386         we have another token, write it back to the pipe.
387         (reap_children): Call free_job_token.
388         (free_child): Call free_job_token.
389         (start_job_command): Remove duplicate test for '+' in the command.
390         If we don't appear to be running a recursive make, close the
391         jobserver filedescriptors.
392         (start_waiting_job): If our personal token is available, use that
393         instead of going to the server pipe.
394         (*): Add the token value to many debugging statements, and print
395         the child target name in addition to the ptr hex value.
396         Change the default "no token" value from '\0' to '-' so it looks
397         better in the output.
399         * main.c (main): Install the child_handler with sigaction()
400         instead of signal() if we have it.  On SysV systems, signal() uses
401         SysV semantics which are a pain.  But sigaction() always does what
402         we want.
403         (main): If we got job server FDs from the environment, test them
404         to see if they're open.  If not, the parent make closed them
405         because it didn't think we were a submake.  Print a warning and
406         suggestion to use "+" on the submake invocation, and hard-set to
407         -j1 for this instance of make.
408         (main): Change the algorithm for assigning slots to be more
409         robust.  Previously make checked to see if it thought a subprocess
410         was a submake and if so, didn't give it a token.  Since make's
411         don't consume tokens we could spawn many of makes fighting for a
412         small number of tokens.  Plus this is unreliable because submakes
413         might not be recognized by the parent (see above) then all the
414         tokens could be used up by unrecognized makes, and no one could
415         run.  Now every make consumes a token from its parent.  However,
416         the make can also use this token to spawn a child.  If the make
417         wants more than one, it goes to the jobserver pipe.  Thus there
418         will never be more than N makes running for -jN, and N*2 processes
419         (N makes and their N children).  Every make can always run at
420         least one job, and we'll never deadlock.  (Note the closing of the
421         pipe for non-submakes also solves this, but this is still a better
422         algorithm.)  So!  Only put N-1 tokens into the pipe, since the
423         topmost make keeps one for itself.
425         * configure.in: Find sigaction.  Disable job server support unless
426         the system provides it, in addition to either waitpid() or
427         wait3().
429 1999-07-22  Rob Tulloh  <rob_tulloh@dev.tivoli.com>
431         * arscan.c (ar_member_touch) [WINDOWS32]: The ar_date field is a
432         string on Windows, not a timestamp.
434 1999-07-21  Paul D. Smith  <psmith@gnu.org>
436         * Version 3.77.90 released.
438         * Makefile.am (AUTOMAKE_OPTIONS): Require automake 1.4.
440         * function.c: Rearrange so we don't need to predeclare the
441         function_table array; K&R C compilers don't like that.
443         * acinclude.m4 (AC_FUNC_SELECT): Ouch; this requires an ANSI C
444         compiler!  Change to work with K&R compilers as well.
446         * configure.in (AC_OUTPUT): Put build.sh back.  I don't know how I
447         thought it would work this way :-/.  We'll have to think of
448         something else.
449         * Makefile.am: Remove rule to create build.sh.
451         * default.c (default_suffix_rules): Rearrange the default command
452         lines to conform to POSIX rules (put the filename argument $<
453         _after_ the OUTPUT_OPTION, not before it).
455         * various: Changed !strncmp() calls to strneq() macros.
457         * misc.c (sindex): Make slightly more efficient.
459         * dir.c (file_impossible): Change savestring(X,strlen(X)) to xstrdup().
460         * implicit.c (pattern_search): Ditto.
461         * main.c (enter_command_line_file): Ditto.
462         (main): Ditto.
463         * misc.c (copy_dep_chain): Ditto.
464         * read.c (read_makefile): Ditto.
465         (parse_file_seq): Ditto.
466         (tilde_expand): Ditto.
467         (multi_glob): Ditto.
468         * rule.c (install_pattern_rule): Ditto.
469         * variable.c (define_variable_in_set): Ditto.
470         (define_automatic_variables): Ditto.
471         * vpath.c (construct_vpath_list): Ditto.
473         * misc.c (xrealloc): Some reallocs are non-standard: work around
474         them in xrealloc by calling malloc if PTR is NULL.
475         * main.c (main): Call xrealloc() directly instead of testing for
476         NULL.
478         * function.c (func_sort): Don't try to free NULL; some older,
479         non-standard versions of free() don't like it.
481         * configure.in (--enable-dmalloc): Install some support for using
482         dmalloc (http://www.dmalloc.com/) with make.  Use --enable-dmalloc
483         with configure to enable it.
485         * function.c (function_table_entry): Whoops!  The function.c
486         rewrite breaks backward compatibility: all text to a function is
487         broken into arguments, and extras are ignored.  So $(sort a,b,c)
488         returns "a"!  Etc.  Ouch.  Fix it by making a positive value in
489         the REQUIRED_ARGS field mean exactly that many arguments to the
490         function; any "extras" are considered part of the last argument as
491         before.  A negative value means at least that many, but may be
492         more: in this case all text is broken on commas.
493         (handle_function): Stop when we've seen REQUIRED_ARGS args, if >0.
494         (expand_builtin_function): Compare number of args to the absolute
495         value of REQUIRED_ARGS.
497 1999-07-20  Paul D. Smith  <psmith@gnu.org>
499         * job.c (start_job_command): Ensure that the state of the target
500         is cs_running.  It might not be if we skipped all the lines due to
501         -n (for example).
503         * commands.c (execute_file_commands): If we discover that the
504         command script is empty and succeed early, set cs_running so the
505         modtime of the target is still rechecked.
507         * rule.c (freerule): Free the dependency list for the rule.
509         * implicit.c (pattern_search): When turning an intermediate file
510         into a real target, keep the also_make list.
511         Free the dep->name if we didn't use it during enter_file().
513 1999-07-16  Paul D. Smith  <psmith@gnu.org>
515         * read.c (read_makefile): Don't allocate the commands buffer until
516         we're sure we found a makefile and won't return early (mem leak).
518         * job.c (start_job_command): Broken #ifdef test: look for F_SETFD,
519         not FD_SETFD.  Close-on-exec isn't getting set on the bad_stdin
520         file descriptor and it's leaking :-/.
521         * getloadavg.c (getloadavg): Ditto.
523 1999-07-15  Paul D. Smith  <psmith@gnu.org>
525         * read.c (read_makefile): Fix some potential memory stomps parsing
526         `define' directives where no variable name is given.
528         * function.c (func_call): Rename from func_apply.  Various code
529         cleanup and tightening.
530         (function_table): Add "call" as a valid builtin function.
532         * make.texinfo (Call Function): Document it.
534         * NEWS: Announce it.
536 1999-07-09  Eli Zaretskii  <eliz@is.elta.co.il>
538         * variable.c (try_variable_definition) [__MSDOS__, WINDOWS32]:
539         Treat "override SHELL=" the same as just "SHELL=".
541 1999-07-09  Paul D. Smith  <psmith@gnu.org>
543         * job.c (start_waiting_job): Don't get a second job token if we
544         already have one; if we're waiting on the load to go down
545         start_waiting_job() might get called twice on the same file.
547         * filedef.h (struct file): Add new field, mtime_before_update.
548         When notice_finished_file runs it assigns the cached last_mtime to
549         this field.
550         * remake.c (update_goal_chain): Notice that a file wasn't updated
551         by asking if it changed (g->changed) and comparing the current
552         cached time (last_mtime) with the previous one, stored in
553         mtime_before_update.  The previous check ("did last_mtime changed
554         during the run of update_file?") fails for parallel builds because
555         last_mtime is set during reap_children, before update_file is run.
556         This causes update_goal_chain to always return -1 (nothing
557         rebuilt) when running parallel (-jN).  This is OK during "normal"
558         builds since our caller (main) treats these cases identically in
559         that case, but if when rebuilding makefiles the difference is very
560         important, as it controls whether we re-exec or not.
561         * file.c (file_hash_enter): Copy the mtime_before_update field.
562         (snap_deps): Initialize mtime_before_update to -1.
563         * main.c (main): Initialize mtime_before_update on old (-o) and
564         new (-W) files.
566 1999-07-08  Paul D. Smith  <psmith@gnu.org>
568         * main.c (switches): Define a new switch -R (or
569         --no-builtin-variables).  This option disables the defining of all
570         the GNU make builtin variables.
571         (main): If -R was given, force -r as well.
572         * default.c (define_default_variables): Test the new flag.
573         * make.h: Declare global flag.
574         * make.texinfo (Options Summary): Document the new option.
575         (Implicit Variables): Ditto.
577 1999-07-06  Paul D. Smith  <psmith@gnu.org>
579         * make.texinfo (Options Summary): Correct examples in
580         --print-data-base option summary (problem reported by David Morse
581         <morse@nichimen.com>).
583         * arscan.c: Add support for archives in Windows (VC++).  Frank
584         Libbrecht <frankl@abzx.belgium.hp.com> provided info on how to do
585         this.
586         * NMakefile.template (CFLAGS_any): Remove NO_ARCHIVES from the
587         compile line.
588         * build_w32.bat: Ditto.
590         * remake.c (no_rule_error): Fix -include/sinclude so it doesn't
591         give errors if you try to -include the same file twice.
592         (updating_makefiles): New variable: we need to know this info in
593         no_rule_error() so we know whether to print an error or not.
594         (update_file_1): Unconditionally call no_rule_error(), don't try
595         to play games with the dontcare flag.
597 1999-06-14  Paul D. Smith  <psmith@gnu.org>
599         * make.texinfo (Remaking Makefiles): Add a description of how to
600         prevent implicit rule searches for makefiles.
602         * make.1: Remove statement that make continues processing when -v
603         is given.
605 1999-06-14  Paul D. Smith  <psmith@gnu.org>
607         * read.c (read_makefile): Cast -1 arguments to
608         variable_expand_string() to long.  Alexandre Sauve
609         <Alexandre.SAUVE@ifp.fr> reports that without casts, this breaks
610         on a NEC SUPER-UX SX-4 system (and it's wrong without a cast
611         anyway).  Of course, (a) I'd really love to start using function
612         prototypes, and (b) there's a whole slew of issues related to int
613         vs. long and signed vs. unsigned in the length handling of
614         variable buffers, etc.  Gross.  Needs a complete mucking-out.
615         * expand.c (variable_expand): Ditto.
617         * acinclude.m4 (AC_FUNC_SELECT): Slight enhancement for AIX 3.2 by
618         Lars Hecking <lhecking@nmrc.ucc.ie>.
620         * read.c (get_next_mword): Allow colons to be escaped in target
621         names: fix for regression failure.
623 1999-04-26  Paul D. Smith  <psmith@gnu.org>
625         * main.c (main): Reset read_makefiles to empty after processing so
626         we get the right error message.
628 1999-04-25  Paul D. Smith  <psmith@gnu.org>
630         * make.texinfo: Updates to @dircategory and @direntry suggested by
631         Karl Berry <karl@cs.umb.edu>.
633 1999-04-23  Eli Zaretskii  <eliz@is.elta.co.il>
635         * job.c (start_job_command) [__MSDOS__]: Call unblock_sigs before
636         turning off dos_command_running, so child's signals produce the
637         right effect.
639         * commands.c (fatal_error_signal) [__MSDOS__]: Use EXIT_FAILURE
640         instead of 1.
642 1999-04-18  Eli Zaretskii  <eliz@is.elta.co.il>
644         * configh.dos.template: Update to recognize that version 2.02 of
645         DJGPP contains sys_siglist stuff.
647 1999-04-14  Paul D. Smith  <psmith@gnu.org>
649         * make.texinfo (Options/Recursion): Document the job server.
650         (Parallel): Tweaks.
652 1999-04-13  Paul D. Smith  <psmith@gnu.org>
654         Implement a new "job server" feature; the implementation was
655         suggested by Howard Chu <hyc@highlandsun.com>.
657         * configure.in (job-server): New disable option for job server
658         support--it's enabled by default.  If it works well this will go
659         away.
661         * NEWS: Summarize the new feature.
663         * acconfig.h: New definition MAKE_JOBSERVER if job server support
664         is enabled.
665         * config.h-vms.template: Undef MAKE_JOBSERVER for this port.
666         * config.h.W32.template: Ditto.
667         * config.ami.template: Ditto.
669         * main.c (struct command_switch): Add a new type: int_string.
670         (switches[]) Use int_string for -j if MAKE_JOBSERVER.
671         (init_switches): Initialize the new int_string switch type.
672         (print_usage): New function, extracted from decode_switches().
673         (decode_switches): Call it.  Decode the new int_string switch type.
674         (define_makeflags): Add new int_string switch data to MAKEFLAGS.
675         (job_fds[]) Array to contain the pipe file descriptors.
676         (main): Parse the job_slots_str option results.  If necessary,
677         create the pipe and seed it with tokens.  Set the non-blocking bit
678         for the read fd.  Enable the signal handler for SIGCHLD even if we
679         have a non-hanging wait; it's needed to interrupt the select() in
680         job.c:start_waiting_job().
682         * make.h: Declare job_fds[].
684         * job.h (struct child): Add job_token field to store the token for
685         this job (if any).
687         * job.c (reap_children): When a child is fully reaped, release the
688         token back into the pipe.
689         (free_child): If the child to be freed still has a token, put it
690         back.
691         (new_job): Initialize the job_token member.
692         (start_waiting_job): For local jobs, if we're using the pipe, get
693         a token before we check the load, etc.  We do this by performing a
694         non-blocking read in a loop.  If the read fails, no token is
695         available.  Do a select on the fd to wait for a token.  We need to
696         re-enable the signal handler for SIGCHLD even if we have a
697         non-hanging waitpid() or wait3(), so that the signal will
698         interrupt the select() and we can wake up to reap children.
699         (child_handler): Re-enable the signal handler.  The count is still
700         kept although it's not needed or used unless you don't have
701         waitpid() or wait3().
703 1999-04-10  Paul D. Smith  <psmith@gnu.org>
705         * main.c (main): Reset the considered bit on all the makefiles if
706         something failed to update; we need to examine them again if they
707         appear as normal targets in order to get the proper error message.
709 1999-04-09  Paul D. Smith  <psmith@gnu.org>
711         Performance enhancement from Tim Magill <tim.magill@telops.gte.com>.
713         * remake.c (update_file): If you have large numbers of
714         dependencies and you run in parallel, make can spend considerable
715         time each pass through the graph looking at branches it has
716         already seen.  Since we only reap_children() when starting a pass,
717         not in the middle, if a branch has been seen already in that pass
718         nothing interesting can happen until the next pass.  So, we toggle
719         a bit saying whether we've seen this target in this pass or not.
720         (update_goal_chain): Initially set the global considered toggle to
721         1, since all targets initialize their boolean to 0.  At the end of
722         each pass, toggle the global considered variable.  * filedef.h
723         (struct file): Per-file considered toggle bit.  * file.c: New
724         global toggle variable considered.
726 1999-04-05  Paul D. Smith  <psmith@gnu.org>
728         * arscan.c (ar_scan): Added support for ARFZMAG (compressed
729         archives?) for Digital UNIX C++.  Information provided by
730         Patrick E. Krogel <pekrogel@mtu.edu>.
731         (ar_member_touch): Ditto.
733 1999-04-03  Paul D. Smith  <psmith@gnu.org>
735         * remake.c (f_mtime): If: a) we found a file and b) we didn't
736         create it and c) it's not marked as an implicit target and d) it
737         is marked as an intermediate target, then it was so marked due to
738         an .INTERMEDIATE special target, but it already existed in the
739         directory.  In this case, unset the intermediate flag so we won't
740         delete it when make is done.  It feels like it would be cleaner to
741         put this check in update_file_1() but I worry it'll get missed...
743 1999-04-01  Paul D. Smith  <psmith@gnu.org>
745         * job.c (construct_command_argv_internal): Use bcopy() to copy
746         overlapping strings, rather than strcpy().  ISO C says the latter
747         is undefined.  Found this in a bug report from 1996!  Ouch!
749 1999-03-31  Paul D. Smith  <psmith@gnu.org>
751         * read.c (readline): Ignore carriage returns at the end of the
752         line, to allow Windows-y CRLF line terminators.
754 1999-03-30  Paul D. Smith  <psmith@gnu.org>
756         * configure.in: Don't put build.sh here, since build.sh.in doesn't
757         exist initially.  This cause autoreconf and automake to fail when
758         run on a clean CVS checkout.  Instead, we create build.sh in the
759         Makefile (see below).
761         * Makefile.am: Remove BUILT_SOURCES; this is no longer relevant.
762         Put those files directly into EXTRA_DIST so they're distributed.
763         Create a local build rule to create build.sh.
764         Create a local maintainer-clean rule to delete all the funky
765         maintainers files.
767         * maintMakefile: Makefile.in depends on README, since automake
768         fails if it doesn't exist.  Also don't remove glob/Makefile.in
769         here, as it causes problems.
771 1999-03-26  Paul D. Smith  <psmith@gnu.org>
773         * configure.in: Substitute GLOBLIB if we need the link the
774         glob/libglob.a library.
775         * Makefile.am (make_LDADD): Use the subst variable GLOBLIB so we
776         don't link the local libglob.a at all if we don't need it.
777         * build.template: Don't compile glob/*.o unless we want globlib.
778         * maintMakefile (build.sh.in): Substitute the glob/*.o files
779         separately.
781 1999-03-25  Paul D. Smith  <psmith@gnu.org>
783         * make.texinfo: Various typos and additions, pointed out by James
784         G. Sack <jsack@dornfeld.com>.
786 1999-03-22  Paul D. Smith  <psmith@gnu.org>
788         * make.texinfo (Functions): Add a new section documenting the new
789         $(error ...) and $(warning ...) functions.  Also updated copyright
790         dates.
791         * NEWS: Updated for the new functions.
792         * function.c (func_error): Implement the new $(error ...) and
793         $(warning ...) functions.
794         (function_table): Insert new functions into the table.
795         (func_firstword): Don't call find_next_token() with argv[0]
796         itself, since that function modifies the pointer.
797         * function.c: Cleanups and slight changes to the new method of
798         calling functions.
800 1999-03-20  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
802         * function.c: Rewrite to use one C function per make function,
803         instead of a huge switch statement.  Also allows some cleanup of
804         multi-architecture issues, and a cleaner API which makes things
805         like func_apply() simple.
807         * function.c (func_apply): Initial implementation.  Expand either
808         a builtin function or a make variable in the context of some
809         arguments, provided as $1, $2, ... $N.
811 1999-03-19  Eli Zaretskii  <eliz@is.elta.co.il>
812 1999-03-19  Rob Tulloh  <rob_tulloh@dev.tivoli.com>
814         * job.c (construct_command_argv_internal): Don't treat _all_
815         backslashes as escapes, only those which really escape a special
816         character.  This allows most normal "\" directory separators to be
817         treated normally.
819 1999-03-05  Paul D. Smith  <psmith@gnu.org>
821         * configure.in: Check for a system strdup().
822         * misc.c (xstrdup): Created.  Suggestion by Han-Wen Nienhuys
823         <hanwen@cs.uu.nl>.
824         * make.h: Prototype xstrdup().
825         * remake.c (library_search): Use it.
826         * main.c (main): Use it.
827         (find_and_set_default_shell): Use it.
828         * job.c (construct_command_argv_internal): Use it.
829         * dir.c (find_directory): Use it.
831         * Makefile.am, configure.in: Use AC_SUBST_FILE to insert the
832         maintMakefile instead of "include", to avoid automake 1.4
833         incompatibility.
835 1999-03-04  Paul D. Smith  <psmith@gnu.org>
837         * amiga.c, amiga.h, ar.c, arscan.c, commands.c, commands.h,
838         * default.c, dep.h, dir.c, expand.c, file.c, filedef.h, function.c,
839         * implicit.c, job.c, job.h, main.c, make.h, misc.c, read.c, remake.c
840         * remote-cstms.c, remote-stub.c, rule.h, variable.c, variable.h,
841         * vpath.c, Makefile.ami, NMakefile.template, build.template,
842         * makefile.vms: Updated FSF address in the copyright notice.
844         * variable.c (try_variable_definition): If we see a conditional
845         variable and we decide to set it, re-type it as recursive so it
846         will be expanded properly later.
848 1999-02-22  Paul D. Smith  <psmith@gnu.org>
850         * NEWS: Mention new .LIBPATTERNS feature.
852         * make.texinfo (Libraries/Search): Describe the use and
853         ramifications of the new .LIBPATTERNS variable.
855         * remake.c (library_search): Instead of searching only for the
856         hardcoded expansion "libX.a" for a library reference "-lX", we
857         obtain a list of patterns from the .LIBPATTERNS variable and
858         search those in order.
860         * default.c: Added a new default variable .LIBPATTERNS.  The
861         default for UNIX is "lib%.so lib%.a".  Amiga and DOS values are
862         also provided.
864         * read.c: Remove bogus HAVE_GLOB_H references; always include
865         vanilla glob.h.
867 1999-02-21  Paul D. Smith  <psmith@gnu.org>
869         * function.c (expand_function): Set value to 0 to avoid freeing it.
870         * variable.c (pop_variable_scope): Free the value of the variable.
871         (try_variable_definition): For simple variables, use
872         allocated_variable_expand() to avoid stomping on the variable
873         buffer when we still need it for other things.
875         * arscan.c: Modified to support AIX 4.3 big archives.  The changes
876         are based on information provided by Phil Adams
877         <padams@austin.ibm.com>.
879 1999-02-19  Paul D. Smith  <psmith@gnu.org>
881         * configure.in: Check to see if the GNU glob library is already
882         installed on the system.  If so, _don't_ add -I./glob to the
883         compile line.  Using the system glob code with the local headers
884         is very bad mojo!
885         Rewrite SCCS macros to use more autoconf facilities.
887         * Makefile.am: Move -Iglob out of INCLUDES; it'll get added to
888         CPPFLAGS by configure now.
889         Automake 1.4 introduced its own "include" feature which conflicts
890         with the maintMakefile stuff.  A hack that seems to work is add a
891         space before the include :-/.
893         * build.template: Move -Iglob out of the compile line; it'll get
894         added to CPPFLAGS by configure now.
896 1999-02-16  Glenn D. Wolf  <Glenn_Wolf@email.sps.mot.com>
898         * arscan.c (ar_scan) [VMS]: Initialized VMS_member_date before
899         calling lbr$get_index since if the archive is empty,
900         VMS_get_member_info won't get called at all, and any leftover date
901         will be used.  This bug shows up if any member of any archive is
902         made, followed by a dependency check on a different, empty
903         archive.
905 1998-12-13  Martin Zinser  <zinser@decus.decus.de>
907         * config.h-vms [VMS]: Set _POSIX_C_SOURCE.  Redefine the getopt
908         functions so we don't use the broken VMS versions.
909         * makefile.com [VMS]: Allow debugging.
910         * dir.c (dir_setup_glob) [VMS]: Don't extern stat() on VMS.
912 1998-11-30  Paul D. Smith  <psmith@gnu.org>
914         * signame.c (init_sig): Check the sizes of signals being set up to
915         avoid array overwrites (if the system headers have problems).
917 1998-11-17  Paul D. Smith  <psmith@gnu.org>
919         * read.c (record_files): Clean up some indentation.
921 1998-11-08  Han-Wen Nienhuys  <hanwen@cs.uu.nl>
923         * rule.c (print_rule_data_base): Fix arguments to fatal() call.
925 1998-10-13  Paul D. Smith  <psmith@gnu.org>
927         * job.c (start_job_command): If the command list resolves to no
928         chars at all (e.g.: "foo:;$(empty)") then command_ptr is NULL;
929         quit early.
931 1998-10-12  Andreas Schwab  <schwab@issan.cs.uni-dortmund.de>
933         * rule.c (print_rule_data_base): Ignore num_pattern_rules if it is
934         zero.
936 1998-10-09  Paul D. Smith  <psmith@gnu.org>
938         * read.c (read_makefile): Allow non-empty lines to expand to the
939         empty string after variable, etc., expansion, and be ignored.
941 1998-09-21  Paul D. Smith  <psmith@gnu.org>
943         * job.c (construct_command_argv_internal): Only add COMMAND.COM
944         "@echo off" line for non-UNIXy shells.
946 1998-09-09  Paul D. Smith  <psmith@gnu.org>
948         * w32/subproc/sub_proc.c: Add in missing HAVE_MKS_SHELL tests.
950 1998-09-04  Paul D. Smith  <psmith@gnu.org>
952         * read.c (read_makefile): If we hit the "missing separator" error,
953         check for the common case of 8 spaces instead of a TAB and give an
954         extra comment to help people out.
956 1998-08-29  Paul Eggert  <eggert@twinsun.com>
958         * configure.in (AC_STRUCT_ST_MTIM_NSEC):
959         Renamed from AC_STRUCT_ST_MTIM.
961         * acinclude.m4 (AC_STRUCT_ST_MTIM_NSEC):  Likewise.
962         Port to UnixWare 2.1.2 and pedantic Solaris 2.6.
964         * acconfig.h (ST_MTIM_NSEC):
965         Renamed from HAVE_ST_MTIM, with a new meaning.
967         * filedef.h (FILE_TIMESTAMP_FROM_S_AND_NS):
968         Use new ST_MTIM_NSEC macro.
970 1998-08-26  Paul D. Smith  <psmith@gnu.org>
972         * remake.c (check_dep): For any intermediate file, not just
973         secondary ones, try implicit and default rules if no explicit
974         rules are given.  I'm not sure why this was restricted to
975         secondary rules in the first place.
977 1998-08-24  Paul D. Smith  <psmith@gnu.org>
979         * make.texinfo (Special Targets): Update documentation for
980         .INTERMEDIATE: if used with no dependencies, then it does nothing;
981         old docs said it marked all targets as intermediate, which it
982         didn't... and which would be silly :).
984         * implicit.c (pattern_search): If we find a dependency in our
985         internal tables, make sure it's not marked intermediate before
986         accepting it as a found_file[].
988 1998-08-20  Paul D. Smith  <psmith@gnu.org>
990         * ar.c (ar_glob): Use existing alpha_compare() with qsort.
991         (ar_glob_alphacompare): Remove it.
993         Modify Paul Eggert's patch so we don't abandon older systems:
995         * configure.in: Warn the user if neither waitpid() nor wait3() is
996         available.
998         * job.c (WAIT_NOHANG): Don't syntax error on ancient hosts.
999         (child_handler, dead_children): Define these if WAIT_NOHANG is not
1000         available.
1001         (reap_children): Only track the dead_children count if no
1002         WAIT_NOHANG.  Otherwise, it's a boolean.
1004         * main.c (main): Add back signal handler if no WAIT_NOHANG is
1005         available; only use default signal handler if it is.
1007 1998-08-20  Paul Eggert  <eggert@twinsun.com>
1009         Install a more robust signal handling mechanism for systems which
1010         support it.
1012         * job.c (WAIT_NOHANG): Define to a syntax error if our host
1013         is truly ancient; this should never happen.
1014         (child_handler, dead_children): Remove.
1015         (reap_children): Don't try to keep separate track of how many
1016         dead children we have, as this is too bug-prone.
1017         Just ask the OS instead.
1018         (vmsHandleChildTerm): Fix typo in error message; don't mention
1019         child_handler.
1021         * main.c (main): Make sure we're not ignoring SIGCHLD/SIGCLD;
1022         do this early, before we could possibly create a subprocess.
1023         Just use the default behavior; don't have our own handler.
1025 1998-08-18  Eli Zaretskii  <eliz@is.elta.co.il>
1027         * read.c (read_makefile) [__MSDOS__, WINDOWS32]: Add code to
1028         recognize library archive members when dealing with drive spec
1029         mess.  Discovery and initial fix by George Racz <gracz@mincom.com>.
1031 1998-08-18  Paul D. Smith  <psmith@gnu.org>
1033         * configure.in: Check for stdlib.h explicitly (some hosts have it
1034         but don't have STDC_HEADERS).
1035         * make.h: Use HAVE_STDLIB_H.  Clean up some #defines.
1036         * config.ami: Re-compute based on new config.h.in contents.
1037         * config.h-vms: Ditto.
1038         * config.h.W32: Ditto.
1039         * configh.dos: Ditto.
1041         * dir.c (find_directory) [WINDOWS32]: Windows stat() fails if
1042         directory names end with `\' so strip it.
1044 1998-08-17  Paul D. Smith  <psmith@gnu.org>
1046         * make.texinfo: Added copyright year to the printed copy.  Removed
1047         the price from the manual.  Change the top-level reference to
1048         running make to be "Invoking make" instead of "make Invocation",
1049         to comply with GNU doc standards.
1051         * make.h (__format__, __printf__): Added support for these in
1052         __attribute__ macro.
1053         (message, error, fatal): Use ... prototype form under __STDC__.
1054         Add __format__ attributes for printf-style functions.
1056         * configure.in (AC_FUNC_VPRINTF): Check for vprintf()/_doprnt().
1058         * misc.c (message, error, fatal): Add preprocessor stuff to enable
1059         creation of variable-argument functions with appropriate
1060         prototypes, that works with ANSI, pre-ANSI, varargs.h, stdarg.h,
1061         v*printf(), _doprnt(), or none of the above.  Culled from GNU
1062         fileutils and slightly modified.
1063         (makefile_error, makefile_error): Removed (merged into error() and
1064         fatal(), respectively).
1065         * amiga.c: Use them.
1066         * ar.c: Use them.
1067         * arscan.c: Use them.
1068         * commands.c: Use them.
1069         * expand.c: Use them.
1070         * file.c: Use them.
1071         * function.c: Use them.
1072         * job.c: Use them.
1073         * main.c: Use them.
1074         * misc.c: Use them.
1075         * read.c: Use them.
1076         * remake.c: Use them.
1077         * remote-cstms.c: Use them.
1078         * rule.c: Use them.
1079         * variable.c: Use them.
1081         * make.h (struct floc): New structure to store file location
1082         information.
1083         * commands.h (struct commands): Use it.
1084         * variable.c (try_variable_definition): Use it.
1085         * commands.c: Use it.
1086         * default.c: Use it.
1087         * file.c: Use it.
1088         * function.c: Use it.
1089         * misc.c: Use it.
1090         * read.c: Use it.
1091         * rule.c: Use it.
1093 1998-08-16  Paul Eggert  <eggert@twinsun.com>
1095         * filedef.h (FILE_TIMESTAMP_PRINT_LEN_BOUND): Add 10, for nanoseconds.
1097 1998-08-16  Paul Eggert  <eggert@twinsun.com>
1099         * filedef.h (FLOOR_LOG2_SECONDS_PER_YEAR): New macro.
1100         (FILE_TIMESTAMP_PRINT_LEN_BOUND): Tighten bound, and try to
1101         make it easier to understand.
1103 1998-08-14  Paul D. Smith  <psmith@gnu.org>
1105         * read.c (read_makefile): We've already unquoted any colon chars
1106         by the time we're done reading the targets, so arrange for
1107         parse_file_seq() on the target list to not do so again.
1109 1998-08-05  Paul D. Smith  <psmith@gnu.org>
1111         * configure.in: Added glob/configure.in data.  We'll have the glob
1112         code include the regular make config.h, rather than creating its
1113         own.
1115         * getloadavg.c (main): Change return type to int.
1117 1998-08-01  Paul Eggert  <eggert@twinsun.com>
1119         * job.c (reap_children): Ignore unknown children.
1121 1998-07-31  Paul D. Smith  <psmith@gnu.org>
1123         * make.h, filedef.h, dep.h, rule.h, commands.h, remake.c:
1124         Add prototypes for functions.  Some prototypes needed to be moved
1125         in order to get #include order reasonable.
1127 1998-07-30  Paul D. Smith  <psmith@gnu.org>
1129         * make.h: Added MIN/MAX.
1130         * filedef.h: Use them; remove FILE_TIMESTAMP_MIN.
1132 1998-07-30  Paul Eggert  <eggert@twinsun.com>
1134         Add support for sub-second timestamp resolution on hosts that
1135         support it (just Solaris 2.6, so far).
1137         * acconfig.h (HAVE_ST_MTIM, uintmax_t): New undefs.
1138         * acinclude.m4 (jm_AC_HEADER_INTTYPES_H, AC_STRUCT_ST_MTIM,
1139         jm_AC_TYPE_UINTMAX_T): New defuns.
1140         * commands.c (delete_target): Convert file timestamp to
1141         seconds before comparing to archive timestamp.  Extract mod
1142         time from struct stat using FILE_TIMESTAMP_STAT_MODTIME.
1143         * configure.in (C_STRUCT_ST_MTIM, jm_AC_TYPE_UINTMAX_T): Add.
1144         (AC_CHECK_LIB, AC_CHECK_FUNCS): Add clock_gettime.
1145         * file.c (snap_deps): Use FILE_TIMESTAMP, not time_t.
1146         (file_timestamp_now, file_timestamp_sprintf): New functions.
1147         (print_file): Print file timestamps as FILE_TIMESTAMP, not
1148         time_t.
1149         * filedef.h: Include <inttypes.h> if available and if HAVE_ST_MTIM.
1150         (FILE_TIMESTAMP, FILE_TIMESTAMP_STAT_MODTIME, FILE_TIMESTAMP_MIN,
1151         FILE_TIMESTAMPS_PER_S, FILE_TIMESTAMP_FROM_S_AND_NS,
1152         FILE_TIMESTAMP_DIV, FILE_TIMESTAMP_MOD, FILE_TIMESTAMP_S,
1153         FILE_TIMESTAMP_NS, FILE_TIMESTAMP_PRINT_LEN_BOUND): New macros.
1154         (file_timestamp_now, file_timestamp_sprintf): New decls.
1155         (struct file.last_mtime, f_mtime, file_mtime_1, NEW_MTIME):
1156         time_t -> FILE_TIMESTAMP.
1157         * implicit.c (pattern_search): Likewise.
1158         * vpath.c (vpath_search, selective_vpath_search): Likewise.
1159         * main.c (main): Likewise.
1160         * remake.c (check_dep, name_mtime, library_search, f_mtime): Likewise.
1161         (f_mtime): Use file_timestamp_now instead of `time'.
1162         Print file timestamp with file_timestamp_sprintf.
1163         * vpath.c (selective_vpath_search): Extract file time stamp from
1164         struct stat with FILE_TIMESTAMP_STAT_MODTIME.
1166 1998-07-28  Paul D. Smith  <psmith@gnu.org>
1168         * Version 3.77 released.
1170         * dosbuild.bat: Change to DOS CRLF line terminators.
1172         * make-stds.texi: Update from latest version.
1174         * make.texinfo (Options Summary): Clarify that the -r option
1175         affects only rules, not builtin variables.
1177 1998-07-27  Paul D. Smith  <psmith@gnu.org>
1179         * make.h: Make __attribute__ resolve to empty for non-GCC _and_
1180         for GCC pre-2.5.x.
1182         * misc.c (log_access): Print UID/GID's as unsigned long int for
1183         maximum portability.
1185         * job.c (reap_children): Print PIDs as long int for maximum
1186         portability.
1188 1998-07-24  Eli Zaretskii  <eliz@is.elta.co.il>
1190         * Makefile.DOS (*_INSTALL, *_UNINSTALL): Replace `true' with `:'.
1192 1998-07-25  Paul D. Smith  <psmith@gnu.org>
1194         * Version 3.76.94 released.
1196 1998-07-23  Paul D. Smith  <psmith@gnu.org>
1198         * config.h.W32.template: Make sure all the #defines of macros here
1199         have a value (e.g., use ``#define HAVE_STRING_H 1'' instead of
1200         just ``#define HAVE_STRING_H''.  Keeps the preprocessor happy in
1201         some contexts.
1203         * make.h: Remove __attribute__((format...)) stuff; using it with
1204         un-prototyped functions causes older GCC's to fail.
1206         * Version 3.76.93 released.
1208 1998-07-22  Paul D. Smith  <psmith@gnu.org>
1210         * file.c (print_file_data_base): Fix average calculation.
1212 1998-07-20  Paul D. Smith  <psmith@gnu.org>
1214         * main.c (die): Postpone the chdir() until after
1215         remove_intermediates() so that intermediate targets with relative
1216         pathnames are removed properly.
1218 1998-07-17  Paul D. Smith  <psmith@gnu.org>
1220         * filedef.h (struct file): New flag: did we print an error or not?
1222         * remake.c (no_rule_error): New function to print error messages,
1223         extraced from remake_file().
1225         * remake.c (remake_file): Invoke the new error print function.
1226         (update_file_1): Invoke the error print function if we see that we
1227         already tried this target and it failed, but that an error wasn't
1228         printed for it.  This can happen if a file is included with
1229         -include or sinclude and couldn't be built, then later is also
1230         the dependency of another target.  Without this change, make just
1231         silently stops :-/.
1233 1998-07-16  Paul D. Smith  <psmith@gnu.org>
1235         * make.texinfo: Removed "beta" version designator.
1236         Updated ISBN for the next printing.
1238 1998-07-13  Paul Eggert  <eggert@twinsun.com>
1240         * acinclude.m4: New AC_LFS macro to determine if special compiler
1241         flags are needed to allow access to large files (e.g., Solaris 2.6).
1242         * configure.in: Invoke it.
1244 1998-07-08  Eli Zaretskii  <eliz@is.elta.co.il>
1246         * Makefile.DOS: track changes in Makefile.in.
1248 1998-07-07  Paul D. Smith  <psmith@gnu.org>
1250         * remote-cstms.c (start_remote_job): Move gethostbyaddr() to the
1251         top so host is initialized early enough.
1253         * acinclude.m4: New file.  Need some special autoconf macros to
1254         check for network libraries (-lsocket, -lnsl, etc.) when
1255         configuring Customs.
1257         * configure.in (make_try_customs): Invoke new network libs macro.
1259 1998-07-06  Paul D. Smith  <psmith@gnu.org>
1261         * Version 3.76.92 released.
1263         * README.customs: Added to the distribution.
1265         * configure.in (make_try_customs): Rewrite to require an installed
1266         Customs library, rather than looking at the build directory.
1268         * Makefile.am (man_MANS): Install make.1.
1269         * make.1: Renamed from make.man.
1271         * make.texinfo (Bugs): New mailing list address for GNU make bug
1272         reports.
1274 1998-07-02  Paul D. Smith  <psmith@gnu.org>
1276         * Version 3.76.91 released.
1278         * default.c: Added default rule for new-style RCS master file
1279         storage; ``% :: RCS/%''.
1280         Added default rules for DOS-style C++ files with suffix ".cpp".
1281         They use the new LINK.cpp and COMPILE.cpp macros, which are set by
1282         default to be equal to LINK.cc and COMPILE.cc.
1284 1998-06-19  Eli Zaretskii  <eliz@is.elta.co.il>
1286         * job.c (start_job_command): Reset execute_by_shell after an empty
1287         command was skipped.
1289 1998-06-09  Paul D. Smith  <psmith@gnu.org>
1291         * main.c (main): Keep track of the temporary filename created when
1292         reading a makefile from stdin (-f-) and attempt to remove it
1293         as soon as we know we're not going to re-exec.  If we are, add it
1294         to the exec'd make's cmd line with "-o" so the exec'd make doesn't
1295         try to rebuild it.  We still have a hole: if make re-execs then
1296         the temporary file will never be removed.  To fix this we'd need
1297         a brand new option that meant "really delete this".
1298         * AUTHORS, getopt.c, getopt1.c, getopt.h, main.c (print_version):
1299         Updated mailing addresses.
1301 1998-06-08  Paul D. Smith  <psmith@gnu.org>
1303         * main.c (main): Andreas Luik <luik@isa.de> points out that the
1304         check for makefile :: rules with commands but no dependencies
1305         causing a loop terminates incorrectly.
1307         * maintMakefile: Make a template for README.DOS to update version
1308         numbers.
1310 1998-05-30  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1312         * remake.c (update_file_1): Don't free the memory for the
1313         dependency structure when dropping a circular dependency.
1315 1998-05-30  Eli Zaretskii  <eliz@is.elta.co.il>
1317         * dir.c (file_exists_p, file_impossible_p, file_impossible)
1318         [__MSDOS__, WINDOWS32]: Retain trailing slash in "d:/", and make
1319         dirname of "d:foo" be "d:".
1321 1998-05-26  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1323         * read.c (read_makefile): Avoid running past EOS when scanning
1324         file name after `include'.
1326 1998-05-26  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1328         * make.texinfo (Flavors): Correct description of conditional
1329         assignment, which is not equivalent to ifndef.
1330         (Setting): Likewise.
1332 1998-05-24  Paul D. Smith  <psmith@gnu.org>
1334         * arscan.c (ar_name_equal): strncmp() might be implemented as a
1335         macro, so don't put preprocessor conditions inside the arguments
1336         list.
1338 1998-05-23  Eli Zaretskii  <eliz@is.elta.co.il>
1340         * read.c (read_makefile) [__MSDOS__, WINDOWS32]: Skip colons in
1341         drive specs when parsing targets, target-specific variables and
1342         static pattern rules.  A colon can only be part of drive spec if
1343         it is after the first letter in a token.
1345 1998-05-22  Eli Zaretskii  <eliz@is.elta.co.il>
1347         * remake.c (f_mtime) [__MSDOS__]: Allow up to 3 sec of skew before
1348         yelling bloody murder.
1350         * dosbuild.bat: Use -DINCLUDEDIR= and -DLIBDIR= where appropriate.
1352         * read.c (parse_file_seq): Combine the special file-handling code
1353         for WINDOWS32 and __MSDOS__ into a single snippet.
1354         (get_next_mword) [__MSDOS__, WINDOWS32]: Allow a word to include a
1355         colon as part of a drive spec.
1357         * job.c (batch_mode_shell) [__MSDOS__]: Declare.
1359 1998-05-20  Paul D. Smith  <psmith@gnu.org>
1361         * Version 3.76.90 released.
1363 1998-05-19  Paul D. Smith  <psmith@gnu.org>
1365         * make.texinfo (Make Errors): Added a new appendix describing
1366         common errors make might generate and how to resolve them (or at
1367         least more information on what they mean).
1369         * maintMakefile (NMAKEFILES): Use the new automake 1.3 feature
1370         to create a dependency file to construct Makefile.DOS, SMakefile,
1371         and NMakefile.
1372         (.dep_segment): Generate the dependency fragment file.
1374 1998-05-14  Paul D. Smith  <psmith@gnu.org>
1376         * make.man: Minor changes.
1378 1998-05-13  Paul D. Smith  <psmith@gnu.org>
1380         * function.c (pattern_matches,expand_function): Change variables
1381         and types named "word" to something else, to avoid compilation
1382         problems on Cray C90 Unicos.
1383         * variable.h: Modify the function prototype.
1385 1998-05-11  Rob Tulloh  <rob_tulloh@tivoli.com>
1387         * job.c (construct_command_argv_internal) [WINDOWS32]: Turn off
1388         echo when using a batch file, and make sure the command ends in a
1389         newline.
1391 1998-05-03  Paul D. Smith  <psmith@gnu.org>
1393         * configure.in (make_try_customs): Add some customs flags if the
1394         user configures custom support.
1396         * job.c, remote-cstms.c: Merge in changes for custom library.
1398         * remote-stub.c: Add option to stub start_remote_job_p().
1400 1998-05-01  Paul D. Smith  <psmith@gnu.org>
1402         * remake.c (f_mtime): Install VPATH+ handling for archives; use
1403         the hname field instead of the name field, and rehash when
1404         appropriate.
1406 1998-04-30  Paul D. Smith  <psmith@gnu.org>
1408         * rule.c (print_rule_data_base): Print out any pattern-specific
1409         variable values into the rules database.
1411         * variable.c (print_variable_set): Make this variable extern, to
1412         be called by print_rule_data_base() for pattern-specific variables.
1414         * make.texinfo (Pattern-specific): Document pattern-specific
1415         variables.
1417 1998-04-29  Paul D. Smith  <psmith@gnu.org>
1419         * expand.c (variable_expand_for_file): Make static; its only
1420         called internally.  Look up this target in the list of
1421         pattern-specific variables and insert the variable set into the
1422         queue to be searched.
1424         * filedef.h (struct file): Add a new field to hold the
1425         previously-found pattern-specific variable reference.  Add a new
1426         flag to remember whether we already searched for this file.
1428         * rule.h (struct pattern_var): New structure for storing
1429         pattern-specific variable values.  Define new function prototypes.
1431         * rule.c: New variables pattern_vars and last_pattern_var for
1432         storage and handling of pattern-specific variable values.
1433         (create_pattern_var): Create a new pattern-specific variable value
1434         structure.
1435         (lookup_pattern_var): Try to match a target to one of the
1436         pattern-specific variable values.
1438 1998-04-22  Paul D. Smith  <psmith@gnu.org>
1440         * make.texinfo (Target-specific): Document target-specific
1441         variables.
1443 1998-04-21  Paul D. Smith  <psmith@gnu.org>
1445         * variable.c (define_variable_in_set): Made globally visible.
1446         (lookup_variable_in_set): New function: like lookup_variable but
1447         look only in a specific variable set.
1448         (target_environment): Use lookup_variable_in_set() to get the
1449         correct export rules for a target-specific variable.
1450         (create_new_variable_set): Create a new variable set, and just
1451         return it without installing it anywhere.
1452         (push_new_variable_scope): Reimplement in terms of
1453         create_new_variable_set.
1455         * read.c (record_target_var): Like record_files, but instead of
1456         files create a target-specific variable value for each of the
1457         listed targets.  Invoked from read_makefile() when the target line
1458         turns out to be a target-specific variable assignment.
1460 1998-04-19  Paul D. Smith <psmith@gnu.org>
1462         * read.c (read_makefile): Rewrite the entire target parsing
1463         section to implement target-specific variables.  In particular, we
1464         cannot expand the entire line as soon as it's read in, since we
1465         may want to evaluate parts of it with different variable contexts
1466         active.  Instead, start expanding from the beginning until we find
1467         the `:' (or `::'), then determine what kind of line this is and
1468         continue appropriately.
1470         * read.c (get_next_mword): New function to parse a makefile line
1471         by "words", considering an entire variable or function as one
1472         word.  Return the type read in, along with its starting position
1473         and length.
1474         (enum make_word_type): The types of words that are recognized by
1475         get_next_mword().
1477         * variable.h (struct variable): Add a flag to specify a per-target
1478         variable.
1480         * expand.c: Make variable_buffer global.  We need this during the
1481         new parsing of the makefile.
1482         (variable_expand_string): New function.  Like variable_expand(),
1483         but start at a specific point in the buffer, not the beginning.
1484         (variable_expand): Rewrite to simply call variable_expand_string().
1486 1998-04-13  Paul D. Smith  <psmith@gnu.org>
1488         * remake.c (update_goal_chain): Allow the rebuilding makefiles
1489         step to use parallel jobs.  Not sure why this was disabled:
1490         hopefully we won't find out :-/.
1492 1998-04-11  Paul D. Smith  <psmith@gnu.org>
1494         * main.c (main): Set the CURDIR makefile variable.
1495         * make.texinfo (Recursion): Document it.
1497 1998-03-17  Paul D. Smith  <psmith@gnu.org>
1499         * misc.c (makefile_fatal): If FILE is nil, invoke plain fatal().
1500         * variable.c (try_variable_definition): Use new feature.
1502 1998-03-10  Paul D. Smith  <psmith@gnu.org>
1504         * main.c (main): Don't pass included, rebuilt makefiles to
1505         re-exec'd makes with -o.  Reopens a possible loop, but it caused
1506         too many problems.
1508 1998-03-02  Paul D. Smith  <psmith@gnu.org>
1510         * variable.c (try_variable_definition): Implement ?=.
1511         * make.texinfo (Setting): Document it.
1513 1998-02-28  Eli Zaretskii  <eliz@is.elta.co.il>
1515         * job.c (start_job_command): Reset execute_by_shell after an empty
1516         command, like ":", has been seen.
1518 Tue Oct 07 15:00:00 1997  Phil Brooks <phillip_brooks@hp.com>
1520         * make.h [WINDOWS32]: make case sensitivity configurable
1521         * dir.c [WINDOWS32]: make case sensitivity configurable
1522         * README.W32: Document case sensitivity
1523         * config.ami: Share case warping code with Windows
1525 Mon Oct  6 18:48:45 CDT 1997 Rob Tulloh <rob_tulloh@dev.tivoli.com>
1527         * w32/subproc/sub_proc.c: Added support for MKS toolkit shell
1528         (turn on HAVE_MKS_SHELL).
1529         * read.c [WINDOWS32]: Fixed a problem with multiple target rules
1530         reported by Gilbert Catipon (gcatipon@tibco.com).  If multiple
1531         path tokens in a rule did not have drive letters, make would
1532         incorrectly concatenate the 2 tokens together.
1533         * main.c/variable.c [WINDOWS32]: changed SHELL detection code to
1534         follow what MSDOS did. In addition to watching for SHELL variable
1535         updates, make's main will attempt to default the value of SHELL
1536         before and after makefiles are parsed.
1537         * job.c/job.h [WINDOWS32]: The latest changes made to enable use
1538         of the GNUWIN32 shell from make could cause make to fail due to a
1539         concurrency condition between parent and child processes.  Make
1540         now creates a batch file per job instead of trying to reuse the
1541         same singleton batch file.
1542         * job.c/job.h/function.c/config.h.W32 [WINDOWS32]: Renamed macro
1543         from HAVE_CYGNUS_GNUWIN32_TOOLS to BATCH_MODE_ONLY_SHELL. Reworked
1544         logic to reduce complexity. WINDOWS32 now uses the unixy_shell
1545         variable to detect Bourne-shell compatible environments. There is
1546         also a batch_mode_shell variable that determines whether not
1547         command lines should be executed via script files. A WINDOWS32
1548         system with no sh.exe installed would have unixy_shell set to
1549         FALSE and batch_mode_shell set to TRUE. If you have a unixy shell
1550         that does not behave well when invoking things via 'sh -c xxx',
1551         you may want to turn on BATCH_MODE_ONLY_SHELL and see if things
1552         improve.
1553         * NMakefile: Added /D DEBUG to debug build flags so that unhandled
1554         exceptions could be debugged.
1556 Mon Oct  6 00:04:25 1997  Rob Tulloh <rob_tulloh@dev.tivoli.com>
1558         * main.c [WINDOWS32]: The function define_variable() does not
1559         handle NULL. Test before calling it to set Path.
1560         * main.c [WINDOWS32]: Search Path again after makefiles have been
1561         parsed to detect sh.exe.
1562         * job.c [WINDOWS32]: Added support for Cygnus GNU WIN32 tools.
1563         To use, turn on HAVE_CYGNUS_GNUWIN32_TOOLS in config.h.W32.
1564         * config.h.W32: Added HAVE_CYGNUS_GNUWIN32_TOOLS macro.
1566 Sun Oct  5 22:43:59 1997  John W. Eaton <jwe@bevo.che.wisc.edu>
1568         * glob/glob.c (glob_in_dir) [VMS]: Globbing shouldn't be
1569         case-sensitive.
1570         * job.c (child_execute_job) [VMS]: Use a VMS .com file if the
1571         command contains a newline (e.g. from a define/enddef block).
1572         * vmsify.c (vmsify): Return relative pathnames wherever possible.
1573         * vmsify.c (vmsify): An input string like "../.." returns "[--]".
1575 Wed Oct  1 15:45:09 1997  Rob Tulloh <rob_tulloh@tivoli.com>
1577         * NMakefile: Changed nmake to $(MAKE).
1578         * subproc.bat: Take the make command name from the command
1579         line. If no command name was given, default to nmake.
1580         * job.c [MSDOS, WINDOWS32]: Fix memory stomp: temporary file names
1581         are now always created in heap memory.
1582         * w32/subproc/sub_proc.c: New implementation of make_command_line()
1583         which is more compatible with different Bourne shell implementations.
1584         Deleted the now obsolete fix_command_line() function.
1585         * main.c [WINDOWS32]: Any arbitrary spelling of Path can be
1586         detected. Make will ensure that the special spelling `Path' is
1587         inserted into the environment when the path variable is propagated
1588         within itself and to make's children.
1589         * main.c [WINDOWS32]: Detection of sh.exe was occurring too
1590         soon. The 2nd check for the existence of sh.exe must come after
1591         the call to read_all_makefiles().
1593 Fri Sep 26 01:14:18 1997  <zinser@axp602.gsi.de>
1595         * makefile.com [VMS]: Fixed definition of sys.
1596         * readme.vms: Comments on what's changed lately.
1598 Fri Sep 26 01:14:18 1997  John W. Eaton <jwe@bevo.che.wisc.edu>
1600         * read.c (read_all_makefiles): Allow make to find files named
1601         "MAKEFILE" with no extension on VMS.
1602         * file.c (lookup_file): Lowercase filenames on VMS.
1604 1997-09-29  Paul D. Smith  <psmith@baynetworks.com>
1606         * read.c (read_makefile): Reworked target detection again; the old
1607         version had an obscure quirk.
1609 Fri Sep 19 09:20:49 1997  Paul D. Smith  <psmith@baynetworks.com>
1611         * Version 3.76.1 released.
1613         * Makefile.am: Add loadavg files to clean rules.
1615         * configure.in (AC_OUTPUT): Remove stamp-config; no longer needed.
1616         * Makefile.ami (distclean): Ditto.
1617         * SMakefile (distclean): Ditto.
1619         * main.c (main): Arg count should be int, not char!  Major braino.
1621 Tue Sep 16 10:18:22 1997  Paul D. Smith  <psmith@baynetworks.com>
1623         * Version 3.76 released.
1625 Tue Sep  2 10:07:39 1997  Paul D. Smith  <psmith@baynetworks.com>
1627         * function.c (expand_function): When processing $(shell...)
1628         translate a CRLF (\r\n) sequence as well as a newline (\n) to a
1629         space.  Also remove an ending \r\n sequence.
1630         * make.texinfo (Shell Function): Document it.
1632 Fri Aug 29 12:59:06 1997  Rob Tulloh  <rob_tulloh@tivoli.com>
1634         * w32/pathstuff.c (convert_Path_to_windows32): Fix problem where
1635         paths which contain single character entries like `.' are not
1636         handled correctly.
1638         * README.W32: Document path handling issues on Windows systems.
1640 Fri Aug 29 02:01:27 1997  Paul D. Smith  <psmith@baynetworks.com>
1642         * Version 3.75.93.
1644 Thu Aug 28 19:39:06 1997  Rob Tulloh  <rob_tulloh@tivoli.com>
1646         * job.c (exec_command) [WINDOWS32]: If exec_command() is invoked
1647         from main() to re-exec make, the call to execvp() would
1648         incorrectly return control to parent shell before the exec'ed
1649         command could run to completion. I believe this is a feature of
1650         the way that execvp() is implemented on top of WINDOWS32 APIs. To
1651         alleviate the problem, use the supplied process launch function in
1652         the sub_proc library and suspend the parent process until the
1653         child process has run.  When the child exits, exit the parent make
1654         with the exit code of the child make.
1656 Thu Aug 28 17:04:47 1997  Paul D. Smith  <psmith@baynetworks.com>
1658         * Makefile.DOS.template (distdir): Fix a line that got wrapped in
1659         email.
1661         * Makefile.am (loadavg): Give the necessary cmdline options when
1662         linking loadavg.
1664         * configure.in: Check for pstat_getdynamic for getloadvg on HP.
1666         * job.c (start_job_command) [VMS, _AMIGA]: Don't perform empty
1667         command optimization on these systems; it doesn't make sense.
1669 Wed Aug 27 17:09:32 1997  Paul D. Smith  <psmith@baynetworks.com>
1671         * Version 3.75.92
1673 Tue Aug 26 11:59:15 1997  Paul D. Smith  <psmith@baynetworks.com>
1675         * main.c (print_version): Add '97 to copyright years.
1677         * read.c (do_define): Check the length of the array before looking
1678         at a particular offset.
1680         * job.c (construct_command_argv_internal): Examine the last byte
1681         of the previous arg, not the byte after that.
1683 Sat Aug 23 1997  Eli Zaretskii  <eliz@is.elta.co.il>
1685         * Makefile.DOS.template: New file (converted to Makefile.DOS in
1686         the distribution).
1688         * configure.bat: Rewrite to use Makefile.DOS instead of editing
1689         Makefile.in.  Add support for building from outside of the source
1690         directory.  Fail if the environment block is too small.
1692         * configh.dos: Use <sys/config.h>.
1694         * README.DOS: Update instructions.
1696 Fri Aug 22 1997  Eli Zaretskii  <eliz@is.elta.co.il>
1698         * job.c (start_job_command) [__MSDOS__]: Don't test for "/bin/sh"
1699         literally, use value of unixy_shell instead.
1701         * filedef.h (NEW_MTIME): Use 1 less than maximum possible value if
1702         time_t is unsigned.
1704 Sat Aug 16 00:56:15 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
1706         * vmsify.c (vmsify, case 11): After translating `..' elements, set
1707         nstate to N_OPEN if there are still more elements to process.
1708         (vmsify, case 2): After translating `foo/bar' up to the slash,
1709         set nstate to N_OPEN, not N_DOT.
1711 Fri Aug  8 15:18:09 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
1713         * dir.c (vmsstat_dir): Leave name unmodified on exit.
1714         * make.h (PATH_SEPARATOR_CHAR): Set to comma for VMS.
1715         * vpath.c: Fix comments to refer to path separator, not colon.
1716         (selective_vpath_search): Avoid Unixy slash handling for VMS.
1718 Thu Aug  7 22:24:03 1997  John W. Eaton  <jwe@bevo.che.wisc.edu>
1720         * ar.c [VMS]: Don't declare ar_member_touch.
1721         Delete VMS version of ar_member_date.
1722         Enable non-VMS versions of ar_member_date and ar_member_date_1 for
1723         VMS too.
1724         * arscan.c (VMS_get_member_info): New function.
1725         (ar_scan): Provide version for VMS systems.
1726         (ar_name_equal): Simply compare name and mem on VMS systems.
1727         Don't define ar_member_pos or ar_member_touch on VMS systems.
1729         * config.h-vms (pid_t, uid_t): Don't define.
1731         * remake.c: Delete declaration of vms_stat.
1732         (name_mtime): Don't call vms_stat.
1733         (f_mtime) [VMS]: Funky time value manipulation no longer necessary.
1735         * file.c (print_file): [VMS] Use ctime, not cvt_time.
1737         * make.h [VMS]: Don't define POSIX.
1739         * makefile.com (filelist): Include ar and arscan.
1740         Also include them in the link commands.
1741         Don't define NO_ARCHIVES in cc command.
1743         * makefile.vms (ARCHIVES, ARCHIVES_SRC): Uncomment.
1744         (defines): Delete NO_ARCHIVES from list.
1746         * remake.c (f_mtime): Only check to see if intermediate file is
1747         out of date if it also exists (i.e., mtime != (time_t) -1).
1749         * vmsdir.h (u_long, u_short): Skip typedefs if using DEC C.
1751 Fri Jun 20 23:02:07 1997  Rob Tulloh  <rob_tulloh@tivoli.com>
1753         * w32/subproc/sub_proc.c: Get W32 sub_proc to handle shebang
1754         (#!/bin/sh) in script files correctly.
1755         Fixed a couple of memory leaks.
1756         Fixed search order in find_file() (w32/subproc/sub_proc.c) so that
1757         files with extensions are preferred over files without extensions.
1758         Added search for files with .cmd extension too.
1759         * w32/subproc/misc.c (arr2envblk): Fixed memory leak.
1761 Mon Aug 18 09:41:08 1997  Paul D. Smith  <psmith@baynetworks.com>
1763         * Version 3.75.91
1765 Fri Aug 15 13:50:54 1997  Paul D. Smith  <psmith@baynetworks.com>
1767         * read.c (do_define): Remember to count the newline after the endef.
1769 Thu Aug 14 23:14:37 1997  Paul D. Smith  <psmith@baynetworks.com>
1771         * many: Rewrote builds to use Automake 1.2.
1773         * AUTHORS: New file.
1774         * maintMakefile: Contains maintainer-only make snippets.
1775         * GNUmakefile: This now only runs the initial auto* tools.
1776         * COPYING,texinfo.tex,mkinstalldirs,install-sh: Removed (obtained
1777         automatically by automake).
1778         * compatMakefile: Removed (not needed anymore).
1779         * README,build.sh.in: Removed (built from templates).
1780         * config.h.in,Makefile.in: Removed (built by tools).
1782 Wed Aug 13 02:22:08 1997  Paul D. Smith  <psmith@baynetworks.com>
1784         * make.texinfo: Updates for DOS/Windows information (Eli Zaretskii)
1785         * README,README.DOS: Ditto.
1787         * remake.c (update_file_1,f_mtime): Fix GPATH handling.
1788         * vpath.c (gpath_search): Ditto.
1790         * file.c (rename_file): New function: rehash, but also rename to
1791         the hashname.
1792         * filedef.h: Declare it.
1794         * variable.c (merge_variable_set_lists): Remove free() of variable
1795         set; since various files can share variable sets we don't want to
1796         free them here.
1798 Tue Aug 12 10:51:54 1997  Paul D. Smith  <psmith@baynetworks.com>
1800         * configure.in: Require autoconf 2.12
1802         * make.texinfo: Replace all "cd subdir; $(MAKE)" examples with a
1803         more stylistically correct "cd subdir && $(MAKE)".
1805         * main.c: Global variable `clock_skew_detected' defined.
1806         (main): Print final warning if it's set.
1807         * make.h: Declare it.
1808         * remake.c (f_mtime): Test and set it.
1810         * job.c (start_job_command): Add special optimizations for
1811         "do-nothing" rules, containing just the shell no-op ":".  This is
1812         useful for timestamp files and can make a real difference if you
1813         have a lot of them (requested by Fergus Henderson <fjh@cs.mu.oz.au>).
1815         * configure.in,Makefile.in: Rewrote to use the new autoconf
1816         program_transform_name macro.
1818         * function.c (function_strip): Strip newlines as well as spaces
1819         and TABs.
1821 Fri Jun  6 23:41:04 1997  Rob Tulloh <rob_tulloh@tivoli.com>
1823         * remake.c (f_mtime): Datestamps on FAT-based files are rounded to
1824         even seconds when stored, so if the date check fails on WINDOWS32
1825          systems, see if this "off-by-one" error is the problem.
1827         * General: If your TZ environment variable is not set correctly
1828         then all your timestamps will be off by hours.  So, set it!
1830 Mon Apr  7 02:06:22 1997  Paul D. Smith  <psmith@baynetworks.com>
1832         * Version 3.75.1
1834         * compatMakefile (objs): Define & use the $(GLOB) variable so
1835         that it's removed correctly from build.sh.in when it's built.
1837         * configure.in: On Solaris we can use the kstat_*() functions to
1838         get load averages without needing special permissions.  Add a
1839         check for -lkstat to see if we have it.
1841         * getloadavg.c (getloadavg): Use HAVE_LIBKSTAT instead of SUN5 as
1842         the test to enable kstat_open(), etc. processing.
1844 Fri Apr  4 20:21:18 1997  Eli Zaretskii  <eliz@is.elta.co.il>
1846         * <lots>: Fixes to work in the DJGPP DOS environment.
1848 Mon Mar 31 02:42:52 1997  Paul D. Smith  <psmith@baynetworks.com>
1850         * function.c (expand_function): Added new function $(wordlist).
1852         * make.texinfo (Filename Functions): Document $(wordlist) function.
1854         * vpath.c (build_vpath_lists): Construct the GPATH variable
1855         information in the same manner we used to construct VPATH.
1856         (gpath_search): New function to search GPATH.
1858         * make.h: Declare the new function.
1860         * remake.c (update_file_1): Call it, and keep VPATH if it's found.
1862         * make.texinfo (Search Algorithm): Document GPATH variable.
1864 Sun Mar 30 20:57:16 1997  Paul D. Smith  <psmith@baynetworks.com>
1866         * main.c (handle_non_switch_argument): Defined the MAKECMDGOALS
1867         variable to contain the user options passed in on the cmd line.
1869         * make.texinfo (Goals): Document MAKECMDGOALS variable.
1871         * remake.c (f_mtime): Print a warning if we detect a clock skew
1872         error, rather than failing.
1874         * main.c (main): If we rebuild any makefiles and need to re-exec,
1875         add "-o<mkfile>" options for each makefile rebuilt to avoid
1876         infinite looping.
1878 Fri Mar 28 15:26:05 1997  Paul D. Smith  <psmith@baynetworks.com>
1880         * job.c (construct_command_argv_internal): Track whether the last
1881         arg in the cmd string was empty or not (Roland).
1882         (construct_command_argv_internal): If the shell line is empty,
1883         don't do anything (Roland).
1885         * glob/glob.h,glob/glob.c,glob/fnmatch.c,glob/fnmatch.h: Install
1886         the latest changes from the GLIBC version of glob (Ulrich Drepper).
1888         * getloadavg.c,make-stds.texi: New version (Roland).
1890         * (ALL): Changed WIN32 to W32 or WINDOWS32 (RMS).
1892 Mon Mar 24 15:33:34 1997  Rob Tulloh  <rob_tulloh@tivoli.com>
1894         * README.W32: Describe preliminary FAT support.
1896         * build_w32.bat: Use a variable for the final exe name.
1898         * dir.c (find_directory): W32: Find the filesystem type.
1899         (dir_contents_file_exists_p): W32: for FAT filesystems, always
1900         rehash since FAT doesn't change directory mtime on change.
1902         * main.c (handle_runtime_exceptions): W32: Add an
1903         UnhandledExceptionFilter so that when make bombs due to ^C or a
1904         bug, it won't cause a GUI requestor to pop up unless debug is
1905         turned on.
1906         (main): Call it.
1908 Mon Mar 24 00:57:34 1997  Paul D. Smith  <psmith@baynetworks.com>
1910         * configure.in, config.h.in, config.ami, config.h-vms, config.h.w32:
1911         Check for memmove() function.
1913         * make.h (bcopy): If memmove() available, define bcopy() to use it.
1914         Otherwise just use bcopy().  Don't use memcpy(); it's not guaranteed
1915         to handle overlapping moves.
1917         * read.c (read_makefile): Fix some uninitialized memory reads
1918         (reported by Purify).
1920         * job.c (construct_command_argv_internal): Use bcopy() not
1921         strcpy(); strcpy() isn't guaranteed to handle overlapping moves.
1923         * Makefile.in: Change install-info option ``--infodir'' to
1924         ``--info-dir'' for use with new texinfo.
1926         * function.c (expand_function): $(basename) and $(suffix) should
1927         only search for suffixes as far back as the last directory (e.g.,
1928         only the final filename in the path).
1930 Sun Mar 23 00:13:05 1997  Paul D. Smith  <psmith@baynetworks.com>
1932         * make.texinfo: Add @dircategory/@direntry information.
1933         (Top): Remove previous reference to (dir) (from RMS).
1934         (Static Usage): Add "all:" rule to example.
1935         (Automatic Dependencies): fix .d file creation example.
1937         * Install VPATH+ patch:
1939         * filedef.h (struct file): Add in hname field to store the hashed
1940         filename, and a flag to remember if we're using the vpath filename
1941         or not.  Renamed a few functions for more clarity.
1943         * file.c (lookup_file,enter_file,file_hash_enter): Store filenames
1944         in the hash table based on their "hash name".  We can change this
1945         while keeping the original target in "name".
1946         (rehash_file): Renamed from "rename_file" to be more accurate.
1947         Changes the hash name, but not the target name.
1949         * remake.c (update_file_1): Modify -d output for more detailed
1950         VPATH info.  If we don't need to rebuild, use the VPATH name.
1951         (f_mtime): Don't search for vpath if we're ignoring it.  Call
1952         renamed function rehash_file.  Call name_mtime instead of
1953         file_mtime, to avoid infinite recursion since the file wasn't
1954         actually renamed.
1956         * implicit.c (pattern_search): if we find an implicit file in
1957         VPATH, save the original name not the VPATH name.
1959         * make.texinfo (Directory Search): Add a section on the new VPATH
1960         functionality.
1962 Sun Dec  1 18:36:04 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
1964         * dir.c (file_exists_p, file_impossible, file_impossible_p): If
1965         dirname is empty replace it by the name of the root directory.
1966         Note that this doesn't work (yet) for W32, Amiga, or VMS.
1968 Tue Oct 08 13:57:03 1996  Rob Tulloh  <tulloh@tivoli.com>
1970         * main.c (main): W32 bug fix for PATH vars.
1972 Tue Sep 17 1996  Paul Eggert  <eggert@twinsun.com>
1974         * filedef.h (NEW_MTIME): Don't assume that time_t is a signed
1975         32-bit quantity.
1977         * make.h: (CHAR_BIT, INTEGER_TYPE_SIGNED, INTEGER_TYPE_MAXIMUM,
1978         INTEGER_TYPE_MINIMUM): New macros.
1980 Tue Aug 27 01:06:34 1996  Roland McGrath  <roland@baalperazim.frob.com>
1982         * Version 3.75 released.
1984         * main.c (print_version): Print out bug-reporting address.
1986 Mon Aug 26 19:55:47 1996  Roland McGrath  <roland@baalperazim.frob.com>
1988         * main.c (print_data_base): Don't declare ctime; headers do it for us
1989         already.
1991 Sun Jul 28 15:37:09 1996  Rob Tulloh (tulloh@tivoli.com)
1993         * w32/pathstuff.c: Turned convert_vpath_to_w32() into a
1994         real function. This was done so that VPATH could contain
1995         white space separated pathnames. Please note that directory
1996         paths (in VPATH/vpath context) containing white space are not
1997         supported (just as they are not under Unix). See README.W32
1998         for suggestions.
2000         * w32/include/pathstuff.h: Added prototype for the new
2001         function convert_vpath_to_w32. Deleted macro for same.
2003         * README.W32: Added some notes about why I chose not to try
2004         and support pathnames which contain white space and some
2005         workaround suggestions.
2007 Thu Jul 25 19:53:31 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2009         * GNUmakefile (mkdep-nolib): Use -MM option unconditionally.
2011         * Version 3.74.7.
2013         * main.c (define_makeflags): Back up P to point at null terminator
2014         when killing final space and dash before setting MFLAGS.
2016         From Robert Hoehne <robert.hoehne@Mathematik.TU-Chemnitz.DE>:
2017         * dir.c [__MSDOS__ && DJGPP > 1]: Include <libc/dosio.h> and defin
2018         `__opendir_flags' initialized to 0.
2019         (dosify) [__MSDOS__ && DJGPP > 1]: Return name unchanged if _USE_LFN.
2020         (find_directory) [__MSDOS__ && DJGPP > 1]: If _USE_LGN, set
2021         __opendir_flags to __OPENDIR_PRESERVE_CASE.
2023         * vmsfunctions.c (vms_stat): `sys$dassgn (DevChan);' added by kkaempf.
2025         * GNUmakefile (w32files): Add NMakefile.
2027         * NMakefile (LDFLAGS_debug): Value fixed by tulloh.
2029 Sat Jul 20 12:32:10 1996  Klaus Kämpf (kkaempf@progis.de)
2031         * remake.c (f_mtime) [VMS]: Add missing `if' conditional for future
2032         modtime check.
2033         * config.h-vms, makefile.vms, readme.vms, vmsify.c: Update address.
2035 Sat Jul 20 05:29:43 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2037         * configure.in: Require autoconf 2.10 or later.
2039 Fri Jul 19 16:57:27 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2041         * Version 3.74.6.
2043         * GNUmakefile (w32files): New variable.
2044         (distfiles): Add it.
2045         * w32: Updated by Rob Tulloh.
2047         * makefile.vms (LOADLIBES): Fix typo.
2049 Sun Jul 14 12:59:27 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2051         * job.c (construct_command_argv_internal): Fix up #else, #endifs.
2053         * configh.dos: Define HAVE_DIRENT_H instead of DIRENT.
2055         * remake.c (f_mtime): Don't compare MTIME to NOW if MTIME == -1.
2057         * Version 3.74.5.
2059         * main.c (main): Exit with status 2 when update_goal_chain returns 2.
2061 Sat Jun 22 14:56:05 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2063         * configure.in: Don't check for _sys_siglist.
2064         * make.h [HAVE__SYS_SIGLIST]: Don't test this; just punt if there is
2065         no strsignal or sys_siglist.
2067         * read.c (conditional_line): Strip ws in `ifeq (a , b)' so it is the
2068         same as `ifeq (a, b)'.
2070         * job.c (reap_children): Don't call die if handling_fatal_signal.
2072         * file.c (file_hash_enter): Allow renaming :: to : when latter is
2073         non-target, or : to :: when former is non-target.
2075         * job.c (start_job_command): Call block_sigs.
2076         (block_sigs): New function, broken out of start_job_command.
2077         (reap_children): Block fatal signals around removing dead child from
2078         chain and adjusting job_slots_used.
2079         * job.h: Declare block_sigs.
2081         * remote-stub.c (remote_setup, remote_cleanup): New (empty) functions.
2082         * main.c (main): Call remote_setup.
2083         (die): Call remote_cleanup.
2085         * job.c (reap_children): Quiescent value of shell_function_pid is
2086         zero, not -1.
2088         * main.c (print_version): Add 96 to copyright years.
2090 Sat Jun 15 20:30:01 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>
2092         * read.c (find_char_unquote): Avoid calling strlen on every call
2093         just to throw away the value most of the time.
2095 Sun Jun  2 12:24:01 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2097         * main.c (decode_env_switches): Prepend '-' to ARGV[1] if it contains
2098         no '=', regardless of ARGC.
2099         (define_makeflags): Elide leading '-' from MAKEFLAGS value if first
2100         word is short option, regardless of WORDS.
2102 Wed May 22 17:24:51 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2104         * makefile.vms: Set LOADLIBES.
2105         * makefile.com (link_using_library): Fix typo.
2107 Wed May 15 17:37:26 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2109         * dir.c (print_dir_data_base): Use %ld dev and ino and cast them to
2110         long.
2112 Wed May 15 10:14:14 CDT 1996  Rob Tulloh  <tulloh@tivoli.com>
2114         * dir.c: W32 does not support inode. For now, fully qualified
2115         pathname along with st_mtime will be keys for files.
2116         Fixed problem where vpath can be confused when files
2117         are added to a directory after the directory has already been
2118         read in. The code now attempts to reread the directory if it
2119         discovers that the datestamp on the directory has changed since
2120         it was cached by make. This problem only seems to occur on W32
2121         right now so it is lumped under port #ifdef WINDOWS32.
2123         * function.c: W32: call subproc library (CreateProcess()) instead of
2124         fork/exec.
2126         * job.c: W32: Added the code to do fork/exec/waitpid style processing
2127         on W32 systems via calls to subproc library.
2129         * main.c: W32: Several things added here. First, there is code
2130         for dealing with PATH and SHELL defaults. Make tries to figure
2131         out if the user has %PATH% set in the environment and sets it to
2132         %Path% if it is not set already. Make also looks to see if sh.exe
2133         is anywhere to be found. Code path through job.c will change
2134         based on existence of a working Bourne shell. The checking for
2135         default shell is done twice: once before makefiles are read in
2136         and again after. Fall back to MSDOS style execution mode if no sh.exe
2137         is found. Also added some debug support that allows user to pause make
2138         with -D switch and attach a debugger. This is especially useful for
2139         debugging recursive calls to make where problems appear only in the
2140         sub-make.
2142         * make.h: W32: A few macros and header files for W32 support.
2144         * misc.c: W32: Added a function end_of_token_w32() to assist
2145         in parsing code in read.c.
2147         * read.c: W32: Fixes similar to MSDOS which allow colon to
2148         appear in filenames. Use of colon in filenames would otherwise
2149         confuse make.
2151         * remake.c: W32: Added include of io.h to eliminate compiler
2152         warnings. Added some code to default LIBDIR if it is not set
2153         on W32.
2155         * variable.c: W32: Added support for detecting Path/PATH
2156         and converting them to semicolon separated lists for make's
2157         internal use. New function sync_Path_environment()
2158         which is called in job.c and function.c before creating a new
2159         process. Caller must set Path in environment since we don't
2160         have fork() to do this for us.
2162         * vpath.c: W32: Added detection for filenames containing
2163         forward or backward slashes.
2165         * NMakefile: W32: Visual C compatible makefile for use with nmake.
2166         Use this to build GNU make the first time on Windows NT or Windows 95.
2168         * README.W32: W32: Contains some helpful notes.
2170         * build_w32.bat: W32: If you don't like nmake, use this the first
2171         time you build GNU make on Windows NT or Windows 95.
2173         * config.h.W32: W32 version of config.h
2175         * subproc.bat: W32: A bat file used to build the
2176         subproc library from the top-level NMakefile. Needed because
2177         WIndows 95 (nmake) doesn't allow you to cd in a make rule.
2179         * w32/include/dirent.h
2180         * w32/compat/dirent.c: W32: opendir, readdir, closedir, etc.
2182         * w32/include/pathstuff.h: W32: used by files needed functions
2183         defined in pathstuff.c (prototypes).
2185         * w32/include/sub_proc.h: W32: prototypes for subproc.lib functions.
2187         * w32/include/w32err.h: W32: prototypes for w32err.c.
2189         * w32/pathstuff.c: W32: File and Path/Path conversion functions.
2191         * w32/subproc/build.bat: W32: build script for subproc library
2192         if you don't wish to use nmake.
2194         * w32/subproc/NMakefile: W32: Visual C compatible makefile for use
2195         with nmake. Used to build subproc library.
2197         * w32/subproc/misc.c: W32: subproc library support code
2198         * w32/subproc/proc.h: W32: subproc library support code
2199         * w32/subproc/sub_proc.c: W32: subproc library source code
2200         * w32/subproc/w32err.c: W32: subproc library support code
2202 Mon May 13 14:37:42 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2204         * Version 3.74.4.
2206         * GNUmakefile (vmsfiles): Fix typo.
2208         * GNUmakefile (amigafiles): Add amiga.h.
2210 Sun May 12 19:19:43 1996  Aaron Digulla   <digulla@fh-konstanz.de>
2212         * dir.c: New function: amigafy() to fold filenames
2213         Changes HASH() to HASHI() to fold filenames on Amiga.
2214         Stringcompares use strieq() instead of streq()
2215         The current directory on Amiga is "" instead of "."
2216         * file.c: Likewise.
2218         * amiga.c: New function wildcard_expansion(). Allows to use
2219         Amiga wildcards with $(wildcard )
2221         * amiga.h: New file. Prototypes for amiga.c
2223         * function.c: Use special function wildcard_expansion() for
2224         $(wildcard ) to allow Amiga wildcards
2225         The current directory on Amiga is "" instead of "."
2227         * job.c: No Pipes on Amiga, too
2228         (load_too_high) Neither on Amiga
2229         ENV variable on Amiga are in a special directory and are not
2230         passed as third argument to main().
2232         * job.h: No envp on Amiga
2234         * make.h: Added HASHI(). This is the same as HASH() but converts
2235         it's second parameter to lowercase on Amiga to fold filenames.
2237         * main.c: (main), variable.c Changed handling of ENV-vars. Make
2238         stores now the names of the variables only and reads their contents
2239         when they are accessed to reflect that these variables are really
2240         global (ie. they CAN change WHILE make runs !) This handling is
2241         made in lookup_variable()
2243         * Makefile.ami: renamed file.h to filedep.h
2244         Updated dependencies
2246         * read.c: "find_semicolon" is declared as static but never defined.
2247         No difference between Makefile and makefile on Amiga; added
2248         SMakefile to *default_makefiles[].
2249         (read_makefile) SAS/C want's two_colon and pattern_percent be set
2250         before use.
2251         The current directory on Amiga is "" instead of "."
2252         Strange #endif moved.
2254         * README.Amiga: updated feature list
2256         * SMakefile: Updated dependencies
2258         * variable.c: Handling of ENV variable happens inside lookup_variable()
2260 Sat May 11 17:58:32 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2262         * variable.c (try_variable_definition): Count parens in lhs variable
2263         refs to avoid seeing =/:=/+= inside a ref.
2265 Thu May  9 13:54:49 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2267         * commands.c (fatal_error_signal) [SIGQUIT]: Make SIGQUIT check
2268         conditional.
2270         * main.c (main): Use unsigned for fread return.
2272         * read.c (parse_file_seq): Use `int' for char arg to avoid widening
2273         conflict issues.
2274         * dep.h: Fix prototype.
2276         * function.c (expand_function) [_AMIGA]: Fix some typos.
2277         (patsubst_expand): Make len vars unsigned.
2279         * GNUmakefile (globfiles): Add AmigaDOS support files.
2280         (distfiles): Add $(amigafiles).
2281         (amigafiles): New variable.
2283 Thu Nov  7 10:18:16 1995  Aaron Digulla   <digulla@fh-konstanz.de>
2285         * Added Amiga support in commands.c, dir.c, function.c,
2286         job.c, main.c, make.h, read.c, remake.c
2287         * commands.c: Amiga has neither SIGHUP nor SIGQUIT
2288         * dir.c: Amiga has filenames with Upper- and Lowercase,
2289         but "FileName" is the same as "filename". Added strieq()
2290         which is use to compare filenames. This is like streq()
2291         on all other systems. Also there is no such thing as
2292         "." under AmigaDOS.
2293         * function.c: On Amiga, the environment is not passed as envp,
2294         there are no pipes and Amiga can't fork. Use my own function
2295         to create a new child.
2296         * job.c: default_shell is "" (The system automatically chooses
2297         a shell for me). Have to use the same workaround as MSDOS for
2298         running batch commands. Added HAVE_SYS_PARAM_H. NOFILE isn't
2299         known on Amiga. Cloned code to run children from MSDOS. Own
2300         version of sh_chars[] and sh_cmds[]. No dup2() or dup() on Amiga.
2301         * main.c: Force stack to 20000 bytes. Read environment from ENV:
2302         device. On Amiga, exec_command() does return, so I exit()
2303         afterwards.
2304         * make.h: Added strieq() to compare filenames.
2305         * read.c: Amiga needs special extension to have passwd. Only
2306         one include-dir. "Makefile" and "makefile" are the same.
2307         Added "SMakefile".  Added special code to handle device names (xxx:)
2308         and "./" in rules.
2309         * remake.c: Only one lib-dir. Amiga link-libs are named "%s.lib"
2310         instead of "lib%s.a".
2311         * main.c, rule.c, variable.c: Avoid floats at all costs.
2312         * vpath.c: Get rid of as many alloca()s as possible.
2314 Thu May  9 13:20:43 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>
2316         * read.c (read_makefile): Grok `sinclude' as alias for `-include'.
2318 Wed Mar 20 09:52:27 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
2320         * GNUmakefile (vmsfiles): New variable.
2321         (distfiles): Include $(vmsfiles).
2323 Tue Mar 19 20:21:34 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
2325         Merged VMS port from Klaus Kaempf <kkaempf@didymus.rmi.de>.
2326         * make.h (PARAMS): New macro.
2327         * config.h-vms: New file.
2328         * makefile.com: New file.
2329         * makefile.vms: New file.
2330         * readme.vms: New file.
2331         * vmsdir.h: New file.
2332         * vmsfunctions.c: New file.
2333         * vmsify.c: New file.
2334         * file.h: Renamed to filedef.h to avoid conflict with VMS system hdr.
2335         * ar.c: Added prototypes and changes for VMS.
2336         * commands.c: Likewise.
2337         * commands.h: Likewise.
2338         * default.c: Likewise.
2339         * dep.h: Likewise.
2340         * dir.c: Likewise.
2341         * expand.c: Likewise.
2342         * file.c: Likewise.
2343         * function.c: Likewise.
2344         * implicit.c: Likewise.
2345         * job.c: Likewise.
2346         * job.h: Likewise.
2347         * main.c: Likewise.
2348         * make.h: Likewise.
2349         * misc.c: Likewise.
2350         * read.c: Likewise.
2351         * remake.c: Likewise.
2352         * remote-stub.c: Likewise.
2353         * rule.c: Likewise.
2354         * rule.h: Likewise.
2355         * variable.c: Likewise.
2356         * variable.h: Likewise.
2357         * vpath.c: Likewise.
2358         * compatMakefile (srcs): Rename file.h to filedef.h.
2360 Sat Aug 19 23:11:00 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
2362         * remake.c (check_dep): For a secondary file, try implicit and
2363         default rules if appropriate.
2365 Wed Aug  2 04:29:42 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
2367         * remake.c (check_dep): If an intermediate file exists,
2368         do consider its actual date.
2370 Sun Jul 30 00:49:53 1995  Richard Stallman  <rms@mole.gnu.ai.mit.edu>
2372         * file.h (struct file): New field `secondary'.
2373         * file.c (snap_deps): Check for .INTERMEDIATE and .SECONDARY.
2374         (remove_intermediates): Don't delete .SECONDARY files.
2376 Sat Mar  2 16:26:52 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
2378         * compatMakefile (srcs): Add getopt.h; prepend $(srcdir)/ to getopt*.
2380 Fri Mar  1 12:04:47 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
2382         * Version 3.74.3.
2384         * remake.c (f_mtime): Move future modtime check before FILE is
2385         clobbered by :: loop.
2387         * dir.c: Use canonical code from autoconf manual for dirent include.
2388         [_D_NAMLEN]: Redefine NAMLEN using this.
2389         (dir_contents_file_exists_p): Use NAMLEN macro.
2390         (read_dirstream) [_DIRENT_HAVE_D_NAMLEN]: Only set d_namlen #if this.
2392         * compatMakefile (objs): Add missing backslash.
2394 Wed Feb 28 03:56:20 1996  Roland McGrath  <roland@charlie-brown.gnu.ai.mit.edu>
2396         * default.c (default_terminal_rules): Remove + prefix from RCS cmds.
2397         (default_variables): Put + prefix in $(CHECKOUT,v) value instead.
2399         * remake.c (f_mtime): Check for future timestamps; give error and mark
2400         file as "failed to update".
2402 Fri Jan 12 18:09:36 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2404         * job.c: Don't declare unblock_sigs; job.h already does.
2406 Sat Jan  6 16:24:44 1996  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2408         * acconfig.h (HAVE_SYSCONF_OPEN_MAX): #undef removed.
2410         * job.c (NGROUPS_MAX): Don't try to define this macro.
2412 Fri Dec 22 18:44:44 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2414         * compatMakefile (GETOPT, GETOPT_SRC, GLOB): Variables removed.
2415         (objs, srcs): Include their values here instead of references.
2417 Thu Dec 14 06:21:29 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2419         * Version 3.74.2.
2421         * job.c (reap_children): Call unblock_sigs after start_job_command.
2423 Thu Dec 14 07:22:03 1995  Roland McGrath  <roland@duality.gnu.ai.mit.edu>
2425         * dir.c (dir_setup_glob): Don't use lstat; glob never calls it anyway.
2426         Avoid & before function names to silence bogus sunos4 compiler.
2428         * configure.in: Remove check for `sysconf (_SC_OPEN_MAX)'.
2430 Tue Dec 12 00:48:42 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2432         * Version 3.74.1.
2434         * dir.c (read_dirstream): Fix braino: fill in the buffer when not
2435         reallocating it!
2437 Mon Dec 11 22:26:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2439         * misc.c (collapse_continuations): Fix skipping of trailing \s so
2440         it can never dereference before the beginning of the array.
2442         * read.c (find_semicolon): Function removed.
2443         (read_makefile): Don't use find_semicolon or remove_comments for
2444         rule lines.  Use find_char_unquote directly and handle quoted comments
2445         properly.
2447         * default.c: Remove all [M_XENIX] code.
2449         * dir.c [HAVE_D_NAMLEN]: Define this for __GNU_LIBRARY__ > 1.
2450         (D_NAMLEN): Macro removed.
2451         (FAKE_DIR_ENTRY): New macro.
2452         (dir_contents_file_exists_p): Test HAVE_D_NAMLEN instead of using
2453         D_NAMLEN.
2454         (read_dirstream): Return a struct dirent * for new glob interface.
2455         (init_dir): Function removed.
2456         (dir_setup_glob): New function.
2457         * main.c (main): Don't call init_dir.
2458         * read.c (multi_glob): Call dir_setup_glob on our glob_t and use
2459         GLOB_ALTDIRFUNC flag.
2461         * misc.c (safe_stat): Function removed.
2462         * read.c, commands.c, remake.c, vpath.c: Use plain stat instead of
2463         safe_stat.
2465 Sat Nov 25 20:35:18 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2467         * job.c [HAVE_UNION_WAIT]: Include sys/wait.h.
2469         * main.c (log_working_directory): Made global.
2470         Print entering msg only once.
2471         * make.h (log_working_directory): Declare it.
2472         * misc.c (message): Take new arg PREFIX.  Print "make: " only if
2473         nonzero.  Call log_working_directory.
2474         * remake.c: Pass new arg in `message' calls.
2475         * job.c (start_job_command): Pass new arg to `message'; fix
2476         inverted test in that call.
2478 Tue Nov 21 19:01:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2480         * job.c (start_job_command): Use `message' to print the command,
2481         and call it with null if the command is silent.
2482         * remake.c (touch_file): Use message instead of printf.
2484 Tue Oct 10 14:59:30 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2486         * main.c (enter_command_line_file): Barf if NAME is "".
2488 Sat Sep  9 06:33:20 1995  Roland McGrath  <roland@whiz-bang.gnu.ai.mit.edu>
2490         * commands.c (delete_target): Ignore unlink failure if it is ENOENT.
2492 Thu Aug 17 15:08:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2494         * configure.in: Don't check for getdtablesize.
2495         * job.c (getdtablesize): Remove decls and macros.
2497 Thu Aug 10 19:10:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2499         * main.c (define_makeflags): Omit command line variable
2500         definitions from MFLAGS value.
2502         * arscan.c (ar_scan) [AIAMAG]: Check for zero MEMBER_OFFSET,
2503         indicating a valid, but empty, archive.
2505 Mon Aug  7 15:40:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2507         * dir.c (file_impossible_p): Correctly reset FILENAME to name
2508         within directory before hash search.
2510         * job.c (child_error): Do nothing if IGNORED under -s.
2512         * job.c (exec_command): Correctly use ARGV[0] for script name when
2513         running shell directly.
2515 Tue Aug  1 14:39:14 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2517         * job.c (child_execute_job): Close STDIN_FD and STDOUT_FD after
2518         dup'ing from them.  Don't try to close all excess descriptors;
2519         getdtablesize might return a huge value.  Any open descriptors in
2520         the parent should have FD_CLOEXEC set.
2521         (start_job_command): Set FD_CLOEXEC flag on BAD_STDIN descriptor.
2523 Tue Jun 20 03:47:15 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2525         * read.c (read_all_makefiles): Properly append default makefiles
2526         to the end of the `read_makefiles' chain.
2528 Fri May 19 16:36:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2530         * Version 3.74 released.
2532 Wed May 10 17:43:34 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2534         * Version 3.73.3.
2536 Tue May  9 17:15:23 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2538         * compatMakefile ($(infodir)/make.info): Make sure $$dir is set in
2539         install-info cmd.
2541 Wed May  3 15:56:06 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2543         * file.c (print_file): Grok update_status of 1 for -q.
2545 Thu Apr 27 12:39:35 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2547         * Version 3.73.2.
2549 Wed Apr 26 17:15:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2551         * file.c (remove_intermediates): Fix inverted test to bail under
2552         -n for signal case.  Bail under -q or -t.
2553         Skip files with update_status==-1.
2555         * job.c (job_next_command): Skip empty lines.
2556         (new_job): Don't test the return of job_next_command.
2557         Just let start_waiting_job handle the case of empty commands.
2559 Wed Apr 19 03:25:54 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2561         * function.c [__MSDOS__]: Include <fcntl.h>.  From DJ Delorie.
2563         * Version 3.73.1.
2565 Sat Apr  8 14:53:24 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2567         * remake.c (notice_finished_file): Set FILE->update_status to zero
2568         if it's -1.
2570 Wed Apr  5 00:20:24 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2572         * Version 3.73 released.
2574 Tue Mar 28 13:25:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2576         * main.c (main): Fixed braino in assert.
2578         * Version 3.72.13.
2580 Mon Mar 27 05:29:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2582         * main.c: Avoid string in assert expression.  Some systems are broken.
2584 Fri Mar 24 00:32:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2586         * main.c (main): Handle 1 and 2 returns from update_goal_chain
2587         makefile run properly.
2589         * Version 3.72.12.
2591         * main.c (handle_non_switch_argument): New function, broken out of
2592         decode_switches.
2593         (decode_switches): Set optind to 0 to reinitialize getopt, not to 1.
2594         When getopt_long returns EOF, break the loop and handle remaining args
2595         with a simple second loop.
2597         * remake.c (remake_file): Set update_status to 2 instead of 1 for
2598         no rule to make.  Mention parent (dependent) in error message.
2599         (update_file_1): Handle FILE->update_status == 2 in -d printout.
2600         * job.c (start_job_command, reap_children): Set update_status to 2
2601         instead of 1 for failed commands.
2603 Tue Mar 21 16:23:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2605         * job.c (search_path): Function removed (was already #if 0'd out).
2606         * configure.in: Remove AC_TYPE_GETGROUPS; nothing needs it any more.
2608 Fri Mar 17 15:57:40 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2610         * configure.bat: Write @CPPFLAGS@ translation.
2612 Mon Mar 13 00:45:59 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2614         * read.c (parse_file_seq): Rearranged `l(a b)' -> `l(a) l(b)' loop
2615         to not skip the elt immediately preceding `l(...'.
2617 Fri Mar 10 13:56:49 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2619         * Version 3.72.11.
2621         * read.c (find_char_unquote): Make second arg a string of stop
2622         chars instead of a single stop char.  Stop when any char in the
2623         string is hit.  All callers changed.
2624         (find_semicolon): Pass stop chars "#;" to one find_char_unquote call,
2625         instead of using two calls.  If the match is not a ; but a #,
2626         return zero.
2627         * misc.c: Changed find_char_unquote callers here too.
2629         * Version 3.72.10.
2631         * read.c (read_makefile, parse_file_seq): Fix typo __MS_DOS__ ->
2632         __MSDOS__.
2634         * GNUmakefile (globfiles): Add glob/configure.bat.
2635         (distfiles): Add configh.dos, configure.bat.
2637 Wed Mar  8 13:10:57 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2639         Fixes for MS-DOS from DJ Delorie.
2640         * read.c (read_makefile, parse_file_seq) [__MS_DOS__]: Don't see :
2641         as separator in "C:\...".
2642         * configh.dos (STDC_HEADERS): Define only if undefined.
2643         (HAVE_SYS_PARAM_H): Don't define this.
2644         (HAVE_STRERROR): Define this.
2645         * job.c (construct_command_argv_internal) [__MSDOS__]: Fix typos.
2647         * Version 3.72.9.
2649         * main.c (decode_switches): Reset optind to 1 instead of 0.
2651 Tue Mar  7 17:31:06 1995  Roland McGrath  <roland@geech.gnu.ai.mit.edu>
2653         * main.c (decode_switches): If non-option arg is "-", ignore it.
2655 Mon Mar  6 23:57:38 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2657         * Version 3.72.8.
2659 Wed Feb 22 21:26:36 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2661         * Version 3.72.7.
2663 Tue Feb 21 22:10:43 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2665         * main.c (main): Pass missing arg to tmpnam.
2667         * configure.in: Check for strsignal.
2668         * job.c (child_error): Use strsignal.
2669         * main.c (main): Don't call signame_init #ifdef HAVE_STRSIGNAL.
2671         * misc.c (strerror): Fix swapped args in sprintf.
2673 Mon Feb 13 11:50:08 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2675         * configure.in (CFLAGS, LDFLAGS): Don't set these variables.
2677 Fri Feb 10 18:44:12 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2679         * main.c (print_version): Add 95 to copyright years.
2681         * Version 3.72.6.
2683         * job.c (start_job_command): Remember to call notice_finished_file
2684         under -n when not recursing.  To do this, consolidate that code
2685         under the empty command case and goto there for the -n case.
2687 Tue Feb  7 13:36:03 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2689         * make.h [! STDC_HEADERS]: Don't declare qsort.  Sun headers
2690         declare it int.
2692 Mon Feb  6 17:37:01 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2694         * read.c (read_makefile): For bogus line starting with tab, ignore
2695         it if blank after removing comments.
2697         * main.c: Cast results of `alloca' to `char *'.
2698         * expand.c: Likewise.
2700 Sun Feb  5 18:35:46 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2702         * Version 3.72.5.
2704         * configure.in: Check for mktemp.
2705         * main.c (main) [! HAVE_MKTEMP]: Use tmpnam instead of mktemp.
2707         * configure.in (make_cv_sysconf_open_max): New check for `sysconf
2708         (_SC_OPEN_MAX)'.
2709         * acconfig.h: Added #undef HAVE_SYSCONF_OPEN_MAX.
2710         * job.c [HAVE_SYSCONF_OPEN_MAX] (getdtablesize): Define as macro
2711         using sysconf.
2713 Fri Jan 27 04:42:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2715         * remake.c (update_file_1): When !MUST_MAKE, don't set
2716         FILE->update_status to zero before calling notice_finished_file.
2717         (notice_finished_file): Touch only when FILE->update_status is zero.
2718         (remake_file): Set FILE->update_status to zero after not calling
2719         execute_file_command and deciding to touch instead.
2721 Thu Jan 26 01:29:32 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2723         * main.c (debug_signal_handler): New function; toggles debug_flag.
2724         (main): Handle SIGUSR1 with that.
2726 Mon Jan 16 15:46:56 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2728         * compatMakefile (realclean): Remove Info files.
2730 Sun Jan 15 08:23:09 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2732         * Version 3.72.4.
2734         * job.c (start_job_command): Save and restore environ around vfork
2735         call.
2736         (search_path): Function #if 0'd out.
2737         (exec_command): Use execvp instead of search_path.
2739         * expand.c (variable_expand): Rewrote computed variable name and
2740         substitution reference handling to be simpler.  First expand the
2741         entire text between the parens if it contains any $s, then examine
2742         the result of that for subtitution references and do no further
2743         expansion while parsing them.
2745         * job.c (construct_command_argv_internal): Handle " quoting too,
2746         when no backslash, $ or ` characters appear inside the quotes.
2748         * configure.in (union wait check): If WEXITSTATUS and WTERMSIG are
2749         defined, just use int.
2751 Tue Jan 10 06:27:27 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2753         * default.c (default_variables) [__hpux]: Remove special
2754         definition of ARFLAGS.  Existence of the `f' flag is not
2755         consistent across HPUX versions; and one might be using GNU ar
2756         anyway.
2758         * compatMakefile (clean): Don't remove Info files.
2760         * compatMakefile (check): Remove gratuitous target declaration.
2762 Sat Jan  7 11:38:23 1995  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2764         * compatMakefile (ETAGS, CTAGS): Don't use -t.
2766         * arscan.c (ar_name_equal) [cray]: Subtract 1 like [__hpux].
2768         * main.c (decode_switches): For --help, print usage to stdout.
2770 Mon Dec  5 12:42:18 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2772         * Version 3.72.3.
2774         * remake.c (update_file_1): Do set_command_state (FILE,
2775         cs_not_started) only if old state was deps_running.
2777 Mon Nov 28 14:24:03 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2779         * job.c (start_waiting_job): Use set_command_state.
2781         * build.template (CPPFLAGS): New variable.
2782         (prefix, exec_prefix): Set from @...@.
2783         (compilation loop): Pass $CPPFLAGS to compiler.
2785         * GNUmakefile (build.sh.in): Make it executable.
2787         * GNUmakefile (globfiles): Add configure.in, configure.
2789         * Version 3.72.2.
2791         * configure.in (AC_OUTPUT): Don't write glob/Makefile.
2793         * configure.in (AC_CHECK_SYMBOL): Use AC_DEFINE_UNQUOTED.
2795         * configure.in: Don't check for ranlib.
2797 Tue Nov 22 22:42:40 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2799         * remake.c (notice_finished_file): Only mark also_make's as
2800         updated if really ran cmds.
2802 Tue Nov 15 06:32:46 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2804         * configure.in: Put dnls before random whitespace.
2806 Sun Nov 13 05:02:25 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2808         * compatMakefile (CPPFLAGS): New variable, set from @CPPFLAGS@.
2809         (RANLIB): Variable removed.
2810         (prefix, exec_prefix): Set these from @...@.
2811         (.c.o): Use $(CPPFLAGS).
2812         (glob/libglob.a): Don't pass down variables to sub-make.
2813         glob/Makefile should be configured properly by configure.
2814         (distclean): Remove config.log and config.cache (autoconf stuff).
2816 Mon Nov  7 13:58:06 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2818         * acconfig.h: Add #undef HAVE_UNION_WAIT.
2819         * configure.in: Converted to Autoconf v2.
2820         * dir.c: Test HAVE_DIRENT_H, HAVE_SYS_DIR_H, HAVE_NDIR_H instead
2821         of DIRENT, SYSDIR, NDIR.
2822         * build.sh.in (prefix, exec_prefix): Set these from @...@.
2823         (CPPFLAGS): New variable, set from @CPPFLAGS@.
2824         (compiling loop): Pass $CPPFLAGS before $CFLAGS.
2825         * install.sh: File renamed to install-sh.
2827         * main.c (define_makeflags): When no flags, set WORDS to zero.
2829 Sun Nov  6 18:34:01 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2831         * Version 3.72.1.
2833         * main.c (define_makeflags): Terminate properly when FLAGSTRING is
2834         empty.
2836 Fri Nov  4 16:02:51 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2838         * Version 3.72.
2840 Tue Nov  1 01:18:10 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2842         * Version 3.71.5.
2844         * job.c (start_job_command): When ARGV is nil, only set
2845         update_state and call notice_finished_file if job_next_command
2846         returns zero.
2848         * job.c (start_job_command): Call notice_finished_file for empty
2849         command line.
2851 Thu Oct 27 02:02:45 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2853         * file.c (snap_deps): Set COMMANDS_SILENT for .SILENT, not
2854         COMMANDS_NOERROR.
2856 Wed Oct 26 02:14:10 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2858         * Version 3.71.4.
2860 Tue Oct 25 22:49:24 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2862         * file.c (snap_deps): Set command_flags bits in all :: entries.
2864 Mon Oct 24 18:47:50 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2866         * make.h (posix_pedantic): Declare it.
2867         * main.c (main): Move checks .IGNORE, .SILENT, .POSIX to
2868         snap_deps.
2869         * file.c (snap_deps): Check .IGNORE, .SILENT, .POSIX here instead
2870         of in main.  If .IGNORE has deps, OR COMMANDS_NOERROR into their
2871         command_flags and don't set -i.  Likewise .SILENT.
2872         * job.c (start_job_command): In FLAGS initialization, OR in
2873         CHILD->file->command_flags.
2874         * file.h (struct file): New member `command_flags'.
2876 Sun Oct 16 01:01:51 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2878         * main.c (switches): Bump flag values for --no-print-directory and
2879         --warn-undefined-variables, so neither is 1 (which indicates a
2880         nonoption argument).
2882 Sat Oct 15 23:39:48 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2884         * main.c (main): Add missing code in .IGNORE test.
2886 Mon Oct 10 04:09:03 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2888         * variable.c (define_automatic_variables): Define +D and +F.
2890 Sat Oct  1 04:07:48 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2892         * main.c (main): Define hidden automatic variable with command
2893         vars, and MAKEOVERRIDES to a reference to that.
2894         (define_makeflags): If posix_pedantic, write a reference to that
2895         instead.
2897 Thu Sep 29 00:14:26 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2899         * main.c (posix_pedantic): New variable.
2900         (main): Set posix_pedantic if .POSIX is a target.
2901         Fix .IGNORE and .SILENT checks to require is_target.
2903         * commands.c (set_file_variables): Define new automatic variable
2904         $+, like $^ but before calling uniquize_deps.
2906         * job.c (reap_children): Call delete_child_targets for non-signal
2907         error if .DELETE_ON_ERROR is a target.
2909 Tue Sep 27 01:57:14 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2911         * Version 3.71.3.
2913 Mon Sep 26 18:16:55 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2915         * job.c (reap_children): Don't change C->file->command_state when
2916         dying.  Test it only after calling start_job_command for a new
2917         command line.  When no more cmds, just set C->file->update_status.
2918         (start_job_command): When the last line is empty or under -n, set
2919         C->file->update_status.
2920         (start_waiting_job): Grok cs_not_started after start_job_command
2921         as success.
2922         (new_job): Set C->file->update_status when there are no cmds.
2923         (job_next_command): When out of lines, don't set
2924         CHILD->file->update_status or CHILD->file->command_state.
2926         * main.c (quote_as_word): Renamed from shell_quote.  Take new arg;
2927         if nonzero, also double $s.
2928         (main): Define MAKEOVERRIDES from command_variables here.
2929         (define_makeflags): Don't use command_variables here; instead write a
2930         reference $(MAKEOVERRIDES) in MAKEFLAGS.  Make vars recursive.
2932         * dir.c [__MSDOS__]: Fixed typo.
2934         * vpath.c (selective_vpath_search): Reset EXISTS when stat fails.
2936 Sat Sep 10 03:01:35 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2938         * remake.c: Include <assert.h> and use assert instead of printfs
2939         and abort.
2941         * main.c (decode_switches): Loop until optind hits ARGC, not just
2942         until getopt_long returns EOF.  Initialize C to zero before loop;
2943         in loop if C is EOF, set optarg from ARGV[optind++], else call
2944         getopt_long.
2945         (decode_env_switches): Use variable_expand instead of
2946         allocated_variable_expand.  Allocate a fresh buffer to copy split
2947         words into; scan characters by hand to break words and
2948         debackslashify.
2949         (shell_quote): New function.
2950         (define_makeflags): Allocate doubled space for switch args, and command
2951         variable names and values; use shell_quote to quote those things.
2953 Fri Sep  9 01:37:47 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2955         * Version 3.71.2.
2957         * acconfig.h: Add HAVE_SYS_SIGLIST and HAVE__SYS_SIGLIST.
2959         * main.c (decode_switches): The non-option return from getopt is
2960         1, not 0.
2961         (command_variables): New type and variable.
2962         (decode_switches, decode_env_switches): After making a variable
2963         definition, record the struct variable pointer in the
2964         command_variables chain.
2965         (define_makeflags): If ALL, write variable definitions for
2966         command_variables.
2968         * main.c (other_args): Variable removed.
2969         (goals, lastgoal): New static variables (moved from auto in main).
2970         (main): Don't process OTHER_ARGS at all.
2971         Don't set variable MAKEOVERRIDES at all; define MAKE to just
2972         $(MAKE_COMMAND).
2973         (init_switches): Prepend a - {return in order} instead of a +
2974         {require order}.
2975         (decode_switches): Don't set OTHER_ARGS at all.
2976         Grok '\0' return from getopt_long as non-option argument; try
2977         variable definition and (if !ENV) enter goal targets here.
2978         (decode_env_switches): Use allocated_variable_expand to store value.
2979         Use find_next_token to simplify word-splitting loop.  Don't
2980         prepend a dash to uninterpreted value.  Instead, if split into
2981         only one word, try variable definition and failing that prepend a
2982         dash to the word and pass it to decode_switches as a single arg.
2984 Wed Sep  7 03:02:46 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
2986         * remake.c (notice_finished_file): Only recheck modtimes if
2987         FILE->command_state was cs_running on entry (meaning the commands
2988         actually just ran).
2989         (update_file_1): Whenever we set FILE->update_status, call
2990         notice_finished_file instead of just set_command_state.
2991         * job.c (start_job_command): Whenever we set
2992         CHILD->file->update_status, call notice_finished_file instead of
2993         just set_command_state.
2995 Tue Sep  6 19:13:54 1994  Roland McGrath  <roland@geech.gnu.ai.mit.edu>
2997         * default.c: Add missing ".
2999         * job.c: Changed all assignments of command_state members to calls
3000         to set_command_state.
3001         * remake.c: Likewise.
3002         * file.c (set_command_state): New function.
3003         * file.h: Declare set_command_state.
3005         * main.c (init_switches): Put a + first in options.
3007 Mon Jul 25 18:07:46 1994  Roland McGrath  <roland@churchy.gnu.ai.mit.edu>
3009         Merge MSDOS/GO32 port from DJ Delorie <dj@ctron.com>.
3010         * vpath.c: Changed all uses of ':' to PATH_SEPARATOR_CHAR.
3011         * main.c (directory_before_chdir): New variable, moved out of main
3012         (was local).
3013         (main) [__MSDOS__]: Look for \ or : to delimit last component of
3014         PROGRAM.  Don't frob ARGV[0] before setting MAKE_COMMAND variable.
3015         (die): Change back to `directory_before_chdir' before dying.
3016         * make.h (PATH_SEPARATOR_CHAR): New macro; differing defns for
3017         [__MSDOS__] and not.
3018         * job.c [__MSDOS__]: Include <process.h>.
3019         [__MSDOS__] (dos_pid, dos_status, dos_bname, dos_bename,
3020         dos_batch_file): New variables.
3021         (reap_children) [__MSDOS__]: Don't call wait; just examine those vars.
3022         (unblock_sigs) [__MSDOS__]: Do nothing.
3023         (start_job_command) [__MSDOS__]: Use spawnvpe instead of vfork & exec.
3024         (load_too_high) [__MSDOS__]: Always return true.
3025         (search_path) [__MSDOS__]: Check for : or / in FILE to punt.
3026         Use PATH_SEPARATOR_CHAR instead of ':'.
3027         (construct_command_argv_internal) [__MSDOS__]: Wholly different
3028         values for sh_chars and sh_cmds.  Wholly new code to handle shell
3029         scripts.
3030         * function.c (expand_function: `shell') [__MSDOS__]: Wholly new
3031         implementation.
3032         * dir.c [__MSDOS__] (dosify): New function.
3033         (dir_contents_file_exists_p) [__MSDOS__]: Call it on FILENAME and
3034         process the result instead of FILENAME itself.
3035         (file_impossible_p) [__MSDOS__]: Likewise.
3036         * default.c [__MSDOS__]: Define GCC_IS_NATIVE.
3037         (default_suffix_rules) [__MSDOS__]: Use `y_tab.c' instead of `y.tab.c'.
3038         (default_variables) [GCC_IS_NATIVE]: Set CC and CXX to `gcc', YACC to
3039         `bison -y', and LEX to `flex'.
3040         * configure.bat, configh.dos: New files.
3041         * commands.c (fatal_error_signal) [__MSDOS__]: Just remove
3042         intermediates and exit.
3044         * commands.c (set_file_variables): Add parens in length
3045         computation in .SUFFIXES dep loop to quiet compiler warning.  From
3046         Jim Meyering.
3048         * read.c (read_makefile): Free FILENAME if we allocated it.  From
3049         Jim Meyering.
3051 Mon Jul  4 17:47:08 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3053         * misc.c (safe_stat): New function, EINTR-safe wrapper around stat.
3054         * vpath.c (selective_vpath_search): Use safe_stat in place of stat.
3055         * read.c (construct_include_path): Use safe_stat in place of stat.
3056         * job.c (search_path): Use safe_stat in place of stat.
3057         * dir.c (find_directory): Use safe_stat in place of stat.
3058         * commands.c (delete_target): Use safe_stat in place of stat.
3059         * arscan.c (ar_member_touch) [EINTR]: Do EINTR looping around fstat.
3060         * remake.c (name_mtime): Use safe_stat in place of stat.
3061         (touch_file) [EINTR]: Do EINTR looping around fstat.
3063 Fri Jun 24 05:40:24 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3065         * read.c (read_makefile): Check for a shell command first, and
3066         then strip leading tabs before further checking if it's not a
3067         shell command line.
3069         * make.h [__arm]: Undefine POSIX.
3070         [!__GNU_LIBRARY__ && !POSIX && !_POSIX_VERSION]: Don't declare system
3071         functions that return int.
3073         * job.c (construct_command_argv_internal): After swallowing a
3074         backslash-newline combination, if INSTRING is set goto string_char
3075         (new label) for normal INSTRING handling code.
3077 Sat Jun  4 01:11:20 1994  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
3079         * configure.in: Don't check for sys_siglist and _sys_siglist with
3080         AC_HAVE_FUNCS.  Instead use two AC_COMPILE_CHECKs.
3082 Mon May 23 18:20:38 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3084         * Version 3.71.1 released.
3086         * make.h [!__GNU_LIBRARY__ && !POSIX]: Also test #ifndef
3087         _POSIX_VERSION for these declarations.
3089         * misc.c [GETLOADAVG_PRIVILEGED] [POSIX]: Remove bogus #ifndefs
3090         around #undefs of HAVE_SETREUID and HAVE_SETREGID.
3092 Sat May 21 16:26:38 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3094         * Version 3.71 released.
3096         * misc.c [GETLOADAVG_PRIVILEGED] [POSIX]: Don't test [HAVE_SETUID]
3097         and [HAVE_SETGID].  Every system has those, and configure doesn't
3098         check for them.
3100         * make.h [_POSIX_VERSION]: Don't #define POSIX #ifdef ultrix.
3102         * compatMakefile (loadavg): Depend on and use loadavg.c instead of
3103         getloadavg.c.
3104         (loadavg.c): Link or copy it from getloadavg.c.
3105         (distclean): Remove loadavg.c.
3107 Mon May 16 22:59:04 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3109         * Version 3.70.4.
3111         * misc.c [GETLOADAVG_PRIVILEGED] [! POSIX]: Undefine HAVE_SETEUID
3112         and HAVE_SETEGID.
3114         * default.c (default_terminal_rules): In SCCS rules, put
3115         $(SCCS_OUTPUT_OPTION) before $<.  On some systems -G is grokked
3116         only before the file name.
3117         * configure.in (SCCS_GET_MINUS_G check): Put -G flag before file name.
3119 Tue May 10 16:27:38 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3121         * job.c (construct_command_argv_internal): Swallow
3122         backslash-newline combinations inside '' strings too.
3124 Thu May  5 04:15:10 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3126         * read.c (do_define): Call collapse_continuations on each line
3127         before all else.
3129 Mon Apr 25 19:32:02 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3131         * job.c (construct_command_argv_internal): Notice newline inside
3132         '' string when RESTP is non-null.
3134 Fri Apr 22 17:33:30 1994  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
3136         * Version 3.70.3.
3138         * remake.c (update_goal_chain): Reset FILE to G->file after the
3139         double-colon loop so it is never null for following code.
3141         * read.c (read_makefile): Fix `override define' parsing to skip
3142         whitespace after `define' properly.
3144         * compatMakefile (srcdir): Define as @srcdir@; don't reference
3145         $(VPATH).
3146         (glob/Makefile): New target.
3148 Thu Apr 21 16:16:55 1994  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
3150         * Version 3.70.2.
3152         * misc.c (remove_comments): Use find_char_unquote.
3153         * make.h (find_char_unquote): Declare it.
3154         * read.c (find_char_unquote): New function, generalized from
3155         find_percent.
3156         (find_percent, find_semicolon, parse_file_seq): Use that.
3158 Wed Apr 20 18:42:39 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3160         * implicit.c (pattern_search): Always allocate new storage for
3161         FILE->stem.  It is not safe to store STEM's address because it
3162         might be auto storage.
3164         * configure.in: Check for seteuid and setegid.
3165         * misc.c [HAVE_SETEUID]: Declare seteuid.
3166         [HAVE_SETEGID]: Declare setegid.
3167         (make_access, user_access) [HAVE_SETEUID]: Use seteuid.
3168         [HAVE_SETEGID]: Use setegid.
3170         * remake.c (update_goal_chain): Set STATUS to FILE->update_status,
3171         to preserve whether it's 2 for error or 1 for -q trigger.  When
3172         STATUS gets nonzero and -q is set, always stop immediately.
3173         * main.c (main, decode_switches): Die with 2 for errors.
3174         (main): Accept 2 return from update_goal_chain and die with that.
3175         * misc.c (fatal, makefile_fatal): Die with 2; 1 is reserved for -q
3176         answer.
3177         * job.c (reap_children): Die with 2 for error.
3178         (start_job_command): Set update_status to 2 for error.  Set it to
3179         1 when we would run a command and question_flag is set.
3181         * read.c (read_makefile): Don't mark makefiles as precious.  Just
3182         like other targets, they can be left inconsistent and in need of
3183         remaking by aborted commands.
3185         * read.c (read_makefile): Write no error msg for -include file.
3187 Tue Apr  5 05:22:19 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3189         * commands.c (fatal_error_signal): Don't unblock signals.
3191         * file.h (struct file): Change member `double_colon' from flag to
3192         `struct file *'.
3193         * read.c (record_files): Set double_colon pointer instead of flag.
3194         * main.c (main): When disqualifying makefiles for updating, use
3195         double_colon pointer to find all entries for a file.
3196         * file.c (enter_file): If there is already a double-colon entry
3197         for the file, set NEW->double_colon to that pointer.
3198         (file_hash_enter): Use FILE->double_colon to find all entries to
3199         set name.
3200         * remake.c (update_goal_chain): Do inner loop on double-colon entries.
3201         (update_file): Use FILE->double_colon pointer to find all entries.
3202         (f_mtime): Likewise.
3203         (notice_finished_file): Propagate mtime change to all entries.
3205         * variable.c (try_variable_definition): Return after abort.
3207 Fri Apr  1 18:44:15 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3209         * read.c (read_makefile): Remove unused variable.
3210         (parse_file_seq): When removing an elt that is just `)', properly
3211         fix up the previous elt's next pointer.
3213 Mon Mar 28 18:31:49 1994  Roland McGrath  (roland@mole.gnu.ai.mit.edu)
3215         * configure.in: Do AC_SET_MAKE.
3216         * GNUmakefile (Makefile.in): Edit MAKE assignment into @SET_MAKE@.
3218 Fri Mar  4 00:02:32 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3220         * function.c (subst_expand): If BY_WORD or SUFFIX_ONLY is set and
3221         the search string is the empty string, find a match at the end of
3222         each word (using end_of_token in place of sindex).
3224         * misc.c (end_of_token): Don't treat backslashes specially; you
3225         can no longer escape blanks with backslashes in export, unexport,
3226         and vpath.  This was never documented anyway.
3228 Thu Mar  3 23:53:46 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3230         * read.c (read_makefile): Variable name for `define' is not just
3231         first token; use whole rest of line and strip trailing blanks.
3233 Wed Feb 16 16:03:45 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3235         * Version 3.70.1.
3237         * read.c (read_makefile): Add -d msg stating args.
3239         * read.c (read_makefile): Use isspace to skip over leading
3240         whitespace, and explicitly avoid skipping over tabs.  Don't want
3241         to skip just spaces though; formfeeds et al should be skipped.
3243         * default.c (default_variables) [__hpux]: Add f in ARFLAGS.
3245         * arscan.c (ar_name_equal) [__hpux]: Subtract 2 instead of 1 from
3246         sizeof ar_name for max length to compare.
3248         * misc.c [GETLOADAVG_PRIVILEGED] [POSIX]: Undefine HAVE_SETREUID
3249         #ifdef HAVE_SETUID; likewise HAVE_SETREGID and HAVE_SETGID.
3251         * main.c (main): Call user_access after setting `program', in case
3252         it needs to use it in an error message.
3254         * read.c (read_makefile): Ignore an empty line starting with a tab.
3256 Thu Feb 10 21:45:31 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3258         * configure.in (AC_SYS_SIGLIST_DECLARED): Use this instead of
3259         AC_COMPILE_CHECK that is now its contents.
3261 Fri Feb  4 16:28:54 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3263         * make.h: #undef strerror after #include <string.h>.
3264         [! ANSI_STRING]: Declare strerror.
3266 Thu Feb  3 02:21:22 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3268         * misc.c (strerror): #undef any macro before function definition.
3270 Mon Jan 31 19:07:23 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3272         * variable.c (try_variable_definition): Calculate BEG before loop
3273         to strip blanks by decrementing END.  Don't decr END to before BEG.
3275         * read.c (read_makefile): Skip over leading space characters, but
3276         not tabs, after removing continuations and comments (it used to
3277         use isspace).
3279 Tue Jan 25 16:45:05 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3281         * variable.c (define_automatic_variables): In $(@D) et al, use
3282         patsubst to remove trailing slash.
3284         * commands.c (delete_target): New function, broken out of
3285         delete_child_targets.  Check for archive members and give special msg.
3286         (delete_child_targets): Use delete_target.
3288 Mon Jan 17 17:03:22 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3290         * default.c (default_suffix_rules): Use $(TEXI2DVI_FLAGS) in
3291         texi2dvi rules. Use $(MAKEINFO_FLAGS) in makeinfo rules.
3293 Tue Jan 11 19:29:55 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3295         * GNUmakefile (tarfiles): Omit make-doc.
3296         (make-$(version).tar): Include make.info*.
3298 Fri Jan  7 16:27:00 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3300         * compatMakefile (configure, config.h.in): Comment out rules.
3302 Thu Jan  6 18:08:08 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3304         * compatMakefile (binprefix, manprefix): New variables.
3305         (instname): Variable removed.
3306         (install): Use $({bin,man}prefix)make in place of $(instname).
3307         File targets likewised renamed.
3309 Mon Jan  3 17:50:25 1994  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3311         * Version 3.70 released.
3313 Thu Dec 23 14:46:54 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3315         * Version 3.69.3.
3317         * read.c (parse_file_seq): Inside multi-word archive ref
3318         translation loop, check NEW1==0 at end and break out of the loop.
3320         * GNUmakefile (make-$(version).tar): Distribute install.sh.
3321         * install.sh: New file.
3323         * configure.in (SCCS_GET_MINUS_G check): Put redirection for admin
3324         cmds outside subshell parens, to avoid "command not found" msgs
3325         from the shell.
3327 Wed Dec 22 17:00:43 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3329         * configure.in (SCCS_GET_MINUS_G check): Put -G flag last in get cmd.
3330         Redirect output & error from get to /dev/null.
3331         Fix reversed sense of test.
3333 Fri Dec 17 15:31:36 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3335         * configure.in (SCCS_GET_MINUS_G check): Use parens instead of
3336         braces inside if condition command; some shells lose.
3338 Thu Dec 16 15:10:23 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3340         * Version 3.69.2.
3342         * arscan.c [M_UNIX]: Move #undef M_XENIX for PORTAR stuff.
3343         (PORTAR) [M_XENIX]: Define to 0 instead of 1.
3345         * main.c (define_makeflags): Only export MAKEFLAGS if !ALL.
3347 Wed Dec 15 17:47:48 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3349         * main.c (main): Cast result of pointer arith to unsigned int
3350         before passing to define_variable for envars.  Matters when
3351         sizeof(unsigned)!=sizeof(ptrdiff_t).
3353 Tue Dec 14 14:21:16 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3355         * configure.in: Add new check for SCCS_GET_MINUS_G.
3356         * config.h.in: Add #undef SCCS_GET_MINUS_G.
3357         * default.c (default_terminal_rules): Use `$(SCCS_OUTPUT_OPTION)' in
3358         place of `-G $@' in SCCS commands.
3359         (default_variables) [SCCS_GET_MINUS_G]: Define SCCS_OUTPUT_OPTION
3360         to "-G$@".
3362         * configure.in (AC_OUTPUT): Put touch stamp-config in second arg
3363         (so it goes in config.status), rather than afterward.
3365         * ar.c (ar_member_date): Don't call enter_file on the archive file
3366         if it doesn't exist (by file_exists_p).
3368         * compatMakefile ($(infodir)/make.info): Replace `$$d/foo.info'
3369         with `$$dir/make.info' in install-info invocation (oops).
3371         * vpath.c (construct_vpath_list): Only set LASTPATH set PATH when
3372         we do not unlink and free PATH.
3374         * file.c (print_file_data_base): Fix inverted calculation for
3375         average files per hash bucket.
3377         * read.c (readline): When we see a NUL, give only a warning and
3378         synthesize a newline to terminate the building line (used to
3379         fatal).  Move fgets call into the loop condition, and after the
3380         loop test ferror (used to test !feof in the loop).
3382 Fri Dec  3 16:40:31 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3384         * configure.in: Check for strerror in AC_HAVE_FUNCS.
3386 Thu Dec  2 15:37:50 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3388         Differentiate different flavors of missing makefile error msgs,
3389         removing gratuitous `fopen: ' and giving caller for included makefiles.
3390         * misc.c [! HAVE_STRERROR]: Define our own strerror here.
3391         (perror_with_name, pfatal_with_name): Use strerror instead of
3392         replicating its functionality.
3393         * read.c (read_makefile): Return int instead of void.
3394         (read_all_makefiles, read_makefile): Change callers to notice zero
3395         return and give error msg.
3397 Thu Nov 11 11:47:36 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3399         * Version 3.69.1.
3401         * default.c: Put `-G $@' before $< in SCCS cmds.
3403 Wed Nov 10 06:06:14 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3405         * read.c (read_makefile): After trying a variable defn, notice if
3406         the line begins with a tab, and diagnose an error.
3408 Sun Nov  7 08:07:37 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3410         * Version 3.69.
3412 Wed Nov  3 06:54:33 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3414         * Version 3.68.10.
3416         * implicit.c (try_implicit_rule): Look for a normal rule before an
3417         archive rule.
3419 Fri Oct 29 16:45:28 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3421         * function.c (expand_function: `sort'): Double NWORDS when it
3422         overflows, instead of adding five.
3424         * compatMakefile (clean): Remove loadavg.
3426 Wed Oct 27 17:58:33 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3428         * Version 3.68.9.
3430         * file.h (NEW_MTIME): Define new macro.
3431         * main.c (main): Set time of NEW_FILES to NEW_MTIME, not to
3432         current time returned from system.  Removed variable NOW.
3433         * remake.c (notice_finished_file): Use NEW_MTIME in place of
3434         current time here too.
3436 Tue Oct 26 19:45:35 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3438         * Version 3.68.8.
3440         * remake.c (update_file_1): Don't clear MUST_MAKE when FILE has no
3441         cmds and !DEPS_CHANGED unless also !NOEXIST.
3443 Mon Oct 25 15:25:21 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3445         * read.c (parse_file_seq): When converting multi-word archive
3446         refs, ignore a word beginning with a '('.
3448 Fri Oct 22 02:53:38 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3450         * configure.in: Check for sys/timeb.h.
3451         * make.h [HAVE_SYS_TIMEB_H]: Test this before including it.
3453 Thu Oct 21 16:48:17 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3455         * Version 3.68.7.
3457         * rule.c (convert_suffix_rule): New local TARGPERCENT.  Set it to
3458         TARGNAME+1 for "(%.o)", to TARGNAME for "%.?".  Use it in place of
3459         TARGNAME to initialize PERCENTS[0].
3461 Mon Oct 18 06:49:35 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3463         * configure.in: Use AC_HAVE_HEADERS(unistd.h) instead of AC_UNISTD_H.
3464         Remove AC_USG; it is no longer used.
3466         * file.c (print_file): New function, broken out of
3467         print_file_data_base.
3468         (print_file_data_base): Call it.
3469         * rule.c (print_rule): New function, broken out of
3470         print_rule_data_base.
3471         (print_rule_data_base): Call it.
3473 Thu Oct 14 14:54:03 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3475         * default.c (install_default_suffix_rules): New function, broken
3476         out of install_default_implicit_rules.
3477         (install_default_implicit_rules): Move suffix rule code there.
3478         * make.h: Declare install_default_suffix_rules.
3479         * main.c (main): Call install_default_suffix_rules before reading
3480         makefiles.  Move convert_to_pattern call before
3481         install_default_implicit_rules.
3483         * job.h (struct child): Make `pid' member type `pid_t' instead of
3484         `int'.
3486         * compatMakefile (RANLIB): New variable, set by configure.
3487         (glob/libglob.a): Pass RANLIB value down to submake.
3489         Fixes for SCO 3.2 "devsys 4.2" from pss@tfn.com (Peter Salvitti).
3490         * make.h: Include <sys/timeb.h> before <time.h> for SCO lossage.
3491         * job.c [! getdtablesize] [! HAVE_GETDTABLESIZE]: If NOFILE is not
3492         defined but NOFILES_MAX is, define it to be that.
3494 Mon Oct 11 19:47:33 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3496         * GNUmakefile (make-$(version).tar): Depend on acconfig.h, so it
3497         is distributed.
3499 Sun Oct  3 15:15:33 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3501         * default.c (default_terminal_rules): Add `-G $@' to SCCS get cmds.
3503 Tue Sep 28 14:18:20 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3505         * job.c (construct_command_argv_internal): Add ^ to SH_CHARS; it
3506         is another symbol for | in some shells.
3507         * main.c (main): Add it to CMD_DEFS quoting list as well.
3509 Mon Sep 20 18:05:24 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3511         * job.c (construct_command_argv_internal): Remove '=' from
3512         SH_CHARS.  Only punt on '=' if it is unquoted in a word before the
3513         first word without an unquoted '='.
3515         * main.c (define_makeflags): Set v_export for MAKEFLAGS.
3517 Fri Sep 17 00:37:18 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3519         * remake.c (update_file_1): Use .DEFAULT cmds for phony targets.
3521         * make.h [_AIX && _POSIX_SOURCE]: Define POSIX.
3523         * commands.c (delete_child_targets): Don't delete phony files.
3525         * job.c (start_job_command): Set COMMANDS_RECURSE in FLAGS if we
3526         see a `+' at the beginning of the command line.
3528 Thu Sep  9 17:57:14 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3530         * Version 3.68.6.
3532 Wed Sep  8 20:14:21 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3534         * main.c (define_makeflags): Define MAKEFLAGS with o_file, not o_env.
3536 Mon Aug 30 12:31:58 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3538         * expand.c (variable_expand): Fatal on an unterminated reference.
3540 Thu Aug 19 16:27:53 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3542         * Version 3.68.5.
3544         * variable.c (define_automatic_variables): Define new o_default
3545         variable `MAKE_VERSION' from version_string and remote_description.
3547         * make.h (version_string, remote_description): Declare these here.
3548         * main.c: Don't declare version_string.
3549         (print_version): Don't declare remote_description.
3551 Wed Aug 18 15:01:24 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3553         * read.c (read_makefile): Free space pointed to by CONDITIONALS
3554         before restoring the old pointer.
3556 Mon Aug 16 17:33:36 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3558         * compatMakefile ($(objs)): Depend on config.h.
3560         * GNUmakefile (build.sh.in): Depend on compatMakefile.
3562         * configure.in: Touch stamp-config after AC_OUTPUT.
3564 Fri Aug 13 16:04:22 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3566         * Version 3.68.4.
3568 Thu Aug 12 17:18:57 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3570         * make.h: Include <config.h> instead of "config.h".
3572 Wed Aug 11 02:35:25 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3574         * main.c (main): Make all variables interned from ENVP be v_export.
3575         * variable.c (try_variable_definition): In v_default case, don't
3576         check for an o_file variable that `getenv' finds.
3578         * job.c (reap_children): New local variable ANY_LOCAL; set it
3579         while setting ANY_REMOTE.  If !ANY_LOCAL, don't wait for local kids.
3581         * main.c (main): Don't call decode_env_switches on MFLAGS.  DOC THIS.
3583         * function.c (expand_function): #if 0 out freeing of ENVP since it
3584         is environ.
3586 Mon Aug  9 17:37:20 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3588         * Version 3.68.3.
3590         * remote-stub.c (remote_status): Set errno to ECHILD before return.
3591         * job.c (reap_children): Scan the chain for remote children and
3592         never call remote_status if there are none.
3594         * function.c (expand_function: `shell'): #if 0 out calling
3595         target_environment; just set ENVP to environ instead.
3597         * job.c (reap_children): Check for negative return from
3598         remote_status and fatal for it.
3599         When blocking local child wait returns 0, then try a blocking call
3600         to remote_status.
3602 Tue Aug  3 00:19:00 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3604         * compatMakefile (clean): Delete make.info* and make.dvi here.
3605         (distclean): Not here.
3607         * dep.h (RM_*): Use #defines instead of enum to avoid lossage from
3608         compilers that don't like enum values used as ints.
3610 Mon Aug  2 16:46:34 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3612         * compatMakefile (loadavg): Add $(LOADLIBES).
3614 Sun Aug  1 16:01:15 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3616         * Version 3.68.2.
3618         * compatMakefile (loadavg, check-loadavg): New targets.
3619         (check): Depend on check-loadavg.
3621         * compatMakefile (glob/libglob.a): Depend on config.h.
3623         * misc.c (log_access): Write to stderr instead of stdout.
3625 Fri Jul 30 00:07:02 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3627         * Version 3.68.1.
3629 Thu Jul 29 23:26:40 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3631         * configure.in (SYS_SIGLIST_DECLARED): In test program include
3632         <unistd.h> #ifdef HAVE_UNISTD_H.
3634         * compatMakefile (.PHONY): Put after `all' et al.
3636         * configure.in: Add AC_IRIX_SUN.
3638 Wed Jul 28 17:41:12 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3640         * Version 3.68.
3642 Mon Jul 26 14:36:49 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3644         * Version 3.67.8.
3646 Sun Jul 25 22:09:08 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3648         * Version 3.67.7.
3650         * compatMakefile ($(infodir)/make.info): Don't use $(instname).
3651         Run install-info script if present.
3653 Fri Jul 23 16:03:50 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3655         * make.h [STAT_MACROS_BROKEN]: Test this instead of [uts].
3657         * configure.in: Add AC_STAT_MACROS_BROKEN.
3659 Wed Jul 14 18:48:11 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3661         * Version 3.67.6.
3663         * read.c (read_makefile): Recognize directive `-include', like
3664         `include' but sets RM_DONTCARE flag.
3666         * variable.c (target_environment): If FILE is nil, use
3667         current_variable_set_list in place of FILE->variables.
3668         * function.c (expand_function: `shell'): Get an environment for
3669         the child from target_environment instead of using environ.
3671         * dep.h: Declare read_all_makefiles here.
3672         (RM_*): Define new enum constants.
3673         * read.c (read_makefile): Second arg is FLAGS instead of TYPE.
3674         Treat it as a bit mask containing RM_*.
3675         (read_all_makefiles): For default makefiles, set D->changed to
3676         RM_DONTCARE instead of 1.
3677         * main.c: Don't declare read_all_makefiles here.
3678         (main): Check `changed' member of read_makefiles elts for RM_*
3679         flags instead of specific integer values.
3681 Mon Jul 12 22:42:17 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3683         * make.h [sequent && i386]: #undef POSIX.  From trost@cse.ogi.edu.
3685 Thu Jul  8 19:51:23 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3687         * vpath.c (construct_vpath_list): If ELEM is zero 0, free PATTERN
3688         as well as VPATH.
3689         (build_vpath_lists): Empty `vpaths' around construct_vpath_list
3690         call for $(VPATH).  Expand $(strip $(VPATH)), not just $(VPATH).
3692         * rule.c (convert_suffix_rule): Use alloca instead of xmalloc for
3693         PERCENTS, whose storage is not consumed by create_pattern_rule.
3695         * make.h [__mips && _SYSTYPE_SVR3]: #undef POSIX.
3697 Wed Jun 30 18:11:40 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3699         * Version 3.67.5.
3701         * rule.c (max_pattern_targets): New variable.
3702         (count_implicit_rule_limits): Compute its value.
3703         * rule.h: Declare it.
3704         * implicit.c (pattern_search): Make TRYRULES max_target_patterns
3705         times bigger.  Move adding new TRYRULES elt inside the inner
3706         targets loop, so each matching target gets its own elt in MATCHES
3707         and CHECKED_LASTSLASH.
3709         * file.c (remove_intermediates): If SIG!=0 say `intermediate file'
3710         instead of just `file' in error msg.
3712 Fri Jun 25 14:55:15 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3714         * job.c (construct_command_argv): Turn off
3715         --warn-undefined-variables around expansion of SHELL and IFS.
3716         * read.c (tilde_expand): Likewise for HOME.
3717         (read_all_makefiles): Likewise for MAKEFILES.
3718         * vpath.c (build_vpath_lists): Likewise for VPATH.
3720         * main.c (warn_undefined_variables_flag): New flag variable.
3721         (switches): Add --warn-undefined-variables.
3722         * make.h (warn_undefined_variables_flag): Declare it.
3723         * expand.c (warn_undefined): New function.
3724         (reference_variable): Call it if the variable is undefined.
3725         (variable_expand): In substitution ref, call warn_undefined if the
3726         variable is undefined.
3728         * default.c (default_pattern_rules): Add `%.c: %.w %.ch' and
3729         `%.tex: %.w %.ch' rules.
3730         (default_suffix_rules: .w.c, .w.tex): Pass three args: $< - $@.
3731         (default_suffixes): Add `.ch'.
3733 Mon Jun 21 17:55:39 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3735         * default.c (default_suffixes): Replace `.cweb' with `.w'.
3736         (default_suffix_rules): Rename `.cweb.c' and `.cweb.tex' to `.w.c'
3737         and `.w.tex'.
3739 Fri Jun 11 14:42:09 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3741         * compatMakefile ($(bindir)/$(instname)): Add missing backslash.
3743 Thu Jun 10 18:14:08 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3745         * Version 3.67.4.
3747         * read.c (multi_glob): Don't free OLD and OLD->name in the
3748         FOUND!=0 fork.  Use new block-local variable F instead of
3749         clobbering OLD.
3751         * ar.c (glob_pattern_p): New function, snarfed from glob/glob.c.
3752         (ar_glob): Call it; return nil immediately if MEMBER_PATTERN
3753         contains no metacharacters.
3755 Wed Jun  9 16:25:35 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3757         * ar.c (ar_glob{_match,_alphacompare}): New function.
3759         * dep.h [! NO_ARCHIVES]: Declare it.
3760         * read.c (multi_glob) [! NO_ARCHIVES]: Use it on archive member elts.
3762         * read.c (read_makefile): Pass flag (1) to parse_file_seq, not to
3763         multi_glob (which doesn't take a 3rd arg).
3764         * rule.c (install_pattern_rule): Likewise.
3765         * default.c (set_default_suffixes): Here too.
3766         * function.c (string_glob): Don't pass gratuitous arg to multi_glob.
3768         * read.c (parse_file_seq) [! NO_ARCHIVES]: Add post-processing
3769         loop to translate archive refs "lib(a b)" into "lib(a) lib(b)".
3771 Mon Jun  7 19:26:51 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3773         * compatMakefile (installdirs): Actually pass directory names.
3774         ($(bindir)/$(instname)): Test chgrp&&chmod exit status with `if';
3775         if it fails, echo a warning msg, but don't make the rule fail.
3777         * read.c (tilde_expand): New function, broken out of tilde_expand.
3778         (multi_glob): Call it.
3779         (construct_include_path): Expand ~ in directory names.
3780         * dep.h: Declare tilde_expand.
3781         * main.c (enter_command_line_file): Expand ~ at the start of NAME.
3782         (main): Expand ~ in -C args.
3783         * read.c (read_makefile): Expand ~ in FILENAME unless TYPE==2.
3785 Fri Jun  4 13:34:47 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3787         * main.c (decode_env_switches): Use xmalloc instead of alloca for ARGS.
3789         * main.c (main): Put result of alloca in temporary variable with
3790         simple assignment, to make SGI compiler happy.
3792 Thu Jun  3 20:15:46 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3794         * Version 3.67.3.
3796         * main.c (main): Before re-execing, remove intermediate files, and
3797         print the data base under -p.  Sexier debugging message.
3799         * implicit.c (pattern_search): Allocate an extra copy of the name
3800         of a winning intermediate file when putting it in FOUND_FILES.
3802 Wed Jun  2 16:38:08 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3804         * read.c (read_makefile): Pass flag (1) to parse_file_seq, not to
3805         multi_glob (which doesn't take a 3rd arg).
3807         * dir.c (dir_contents_file_exists_p): When reading dirents, ignore
3808         chars within D_NAMLEN that are NULs.
3810         * main.c (decode_switches): Don't savestring ARGV[0] to put it
3811         into `other_args'.
3812         For string switch, don't savestring `optarg'.
3813         (main): Don't free elts of makefiles->list that are "-".
3814         Use alloca'd rather than savestring'd storage for elts of
3815         makefiles->list that are temporary file names.
3816         * read.c (read_all_makefiles): Don't free *MAKEFILES.
3817         * file.c (enter_file): Don't strip `./'s.
3818         * main.c (enter_command_line_file): New function.
3819         (main): Use it in place of enter_file for command-line goals from
3820         other_files, and for old_files and new_files.
3822 Mon May 31 18:41:40 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3824         * Version 3.67.2.
3826         * compatMakefile (.SUFFIXES): Add .info.
3827         ($(infodir)/$(instname).info): Find make.info* in cwd if there,
3828         else in $srcdir.  Use basename to remove dir name from installed name.
3830 Thu May 27 17:35:02 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3832         * implicit.c (pattern_search): When interning FOUND_FILES, try
3833         lookup_file first; if found, free the storage for our copy of the name.
3835 Wed May 26 14:31:20 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3837         * Version 3.67.1.
3839         * main.c (decode_switches): In usage msg, write `--switch=ARG' or
3840         `--switch[=OPTARG]' rather than `--switch ARG' or `--switch [ARG]'.
3842 Mon May 24 16:17:31 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3844         * rule.c (convert_suffix_rule): New function.
3845         (convert_to_pattern): Use it instead of doing all the work here
3846         several times.
3847         For target suffix `.a', generate both the archive magic rule and
3848         the normal rule.
3850         * compatMakefile (distclean): Remove stamp-config.
3852 Sat May 22 16:15:18 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3854         * Version 3.67.
3856         * file.c (remove_intermediates): Don't write extra space after `rm'.
3858         * main.c (struct command_switch.type): Remove `usage_and_exit'.
3859         (print_usage_flag): New variable.
3860         (switches: --help): Make type `flag', to set print_usage_flag.
3861         (init_switches): Remove `usage_and_exit' case.
3862         (decode_switches): Likewise.
3863         (decode_switches): Print usage if print_usage_flag is set.
3864         When printing usage, die with status of BAD.
3865         (main): Die with 0 if print_version_flag.
3867 Fri May 21 16:09:28 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3869         * Version 3.66.
3871 Wed May 19 21:30:44 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3873         * compatMakefile (installdirs): New target.
3874         (install): Depend on it.
3876 Sun May 16 20:15:07 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3878         * Version 3.65.2.
3880 Fri May 14 16:40:09 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3882         * vpath.c (construct_vpath_list): In removal loop for DIRPATH==0,
3883         set LASTPATH to PATH, not NEXT.
3885         * dir.c (read_dirstream): Break out of loop after incrementing
3886         DS->buckets such that it reaches DIRFILE_BUCKETS; avoid trying to
3887         dereference DS->contents->files[DIRFILE_BUCKETS].
3889         * read.c (read_makefile): Clear no_targets after reading a
3890         targetful rule line.
3892         * main.c (main): If print_version_flag is set, exit after printing
3893         the version.
3894         (switches): Change --version docstring to say it exits.
3896         * make.h [butterfly]: #undef POSIX.
3898 Wed May 12 15:20:21 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
3900         * Version 3.65.1.
3902         * arscan.c (ar_scan) [! AIAMAG]: Don't declare LONG_NAME.
3903         [AIAMAG]: Pass TRUNCATE flag arg to (*FUNCTION), always zero.
3905         * function.c (handle_function): Use fatal instead of
3906         makefile_fatal when reading_filename is nil.
3908         * configure.in: Add AC_GETGROUPS_T.
3909         * job.c (search_path): Use GETGROUPS_T in place of gid_t.
3911 Sun May  9 15:41:25 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3913         * Version 3.65.
3915 Fri May  7 18:34:56 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3917         * function.c (handle_function): Fatal for unmatched paren.
3919 Thu May  6 16:13:41 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3921         * Version 3.64.3.
3923         * commands.c (handling_fatal_signal): New variable.
3924         (fatal_error_signal): Set it.
3925         * job.c (reap_children): Avoid nonreentrant operations if that is set.
3926         * make.h: Declare handling_fatal_signal.
3928         * expand.c (reference_variable): New function, snippet of code
3929         broken out of simple-reference case of variable_expand.
3930         (variable_expand): Use it for simple refs.
3931         (variable_expand): When checking for a computed variable name,
3932         notice a colon that comes before the final CLOSEPAREN.  Expand
3933         only up to the colon, and then replace the pending text with a
3934         copy containing the expanded name and fall through to subst ref
3935         handling.
3936         (variable_expand): Don't bother expanding the name if a colon
3937         appears before the first $.
3938         (expand_argument): Use alloca instead of savestring.
3939         (variable_expand): For subst ref, expand both sides of = before
3940         passing to [pat]subst_expand.  Use find_percent instead of lindex
3941         to check the lhs for a %.
3943 Wed May  5 14:45:52 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3945         * Version 3.64.2.
3947 Mon May  3 17:00:32 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3949         * arscan.c (ar_name_equal) [AIAMAG]: Abort if TRUNCATED is nonzero.
3951         * read.c (read_makefile): Pass extra arg of 1 to parse_file_seq,
3952         not to multi_glob.
3954 Thu Apr 29 19:47:33 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3956         * Version 3.64.1.
3958         * arscan.c (ar_scan): New local flag var LONG_NAME.  Set it when
3959         we read the member name in any of the fashions that allow it to be
3960         arbitrarily long.  Pass its negation to FUNCTION.
3961         (describe_member): Take TRUNCATED from ar_scan and print it.
3962         (ar_name_equal): Take new arg TRUNCATED; if nonzero, compare only
3963         the first sizeof (struct ar_hdr.ar_name) chars.
3964         (ar_member_pos): Take TRUNCATED from ar_scan, pass to ar_name_equal.
3965         * ar.c (ar_member_date_1): Likewise.
3967 Wed Apr 28 21:18:22 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3969         * job.c (reap_children): Before calling start_job_command to start
3970         the next command line, reset C->remote by calling start_remote_job_p.
3972 Mon Apr 26 15:56:15 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
3974         * arscan.c (ar_scan): New local var NAMEMAP.
3975         In loop, rename NAME to NAMEBUF; new var NAME is a pointer; new
3976         flag IS_NAMEMAP.  When extracting the member name, always put a
3977         null at its end first.  If the name is "//" or "/ARFILENAMES", set
3978         IS_NAMEMAP.  If we have already read in NAMEMAP, and NAME looks
3979         like " /N", get full name from NAMEMAP+N.
3980         Else if NAME looks like "#1/N", read N chars from the
3981         elt data to be the full name.  At end of loop, if IS_NAMEMAP, read
3982         the elt's data into alloca'd NAMEMAP.
3983         (ar_name_equal): #if 0 truncating code.
3985         * make.h: Don't declare vfork at all.  It returns int anyway,
3986         unless <unistd.h> declared it; and we conflicted with some systems.
3988         * main.c (define_makeflags): If FLAGSTRING[1] is '-', define
3989         MAKEFLAGS to all of FLAGSTRING, not &FLAGSTRING[1].  Don't want to
3990         define it to something like "-no-print-directory".
3991         Use %g format instead of %f for floating-valued things.
3993 Thu Apr 22 18:40:58 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
3995         * GNUmakefile (Makefile.in): Use a substitution ref on nolib-deps
3996         to change remote-%.dep to remote-stub.dep.
3998 Wed Apr 21 15:17:54 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4000         * Version 3.64.
4002 Fri Apr 16 14:22:22 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4004         * compatMakefile (install): Remove - prefix from chgrp+chmod.
4006         * Version 3.63.8.
4008 Thu Apr 15 18:24:07 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4010         * acconfig.h: New file; contains "#undef SCCS_GET" for autoheader.
4011         * configure.in: If /usr/sccs/get exists, define SCCS_GET to that,
4012         else to "get".
4013         * default.c (default_variables): Set GET to macro SCCS_GET.
4015         * read.c (parse_file_seq): Take extra arg STRIP; strip `./' only
4016         if nonzero.  I hope this is the last time this argument is added
4017         or removed.
4018         (read_makefile): Pass it 1 when parsing include file names.
4019         Pass it 1 when parsing target file names.
4020         Pass it 1 when parsing static pattern target pattern names.
4021         * rule.c (install_pattern_rule): Pass it 1 when parsing rule deps.
4022         * default.c (set_default_suffixes): Pass it 1 when parsing
4023         default_suffixes.
4024         * function.c (string_glob): Pass it 0 here.
4026 Wed Apr 14 11:32:05 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4028         * misc.c (log_access): New function.
4029         ({init,user,make,child}_access): Call it.
4030         (child_access): Abort if !access_inited.
4032         * main.c (switches: --no-print-directory): Use 1 instead of -1 for
4033         single-letter option.
4034         (init_switches, decode_switches, define_makeflags): An option with
4035         no single-letter version is no longer indicated by a value of -1;
4036         instead a value that is !isalnum.
4037         (init_switches): Don't put such switches into the string, only
4038         into the long_option table.
4040         * make.h [!NSIG] [!_NSIG]: #define NSIG 32.
4042         * job.c [HAVE_WAITPID]: Remove #undef HAVE_UNION_WAIT.  AIX's
4043         bsdcc defined WIF* to use union wait.
4045         * main.c (struct command_switch): Change member `c' to type int.
4046         (switches): Make const.
4047         (decode_switches): Use `const struct command_switch *'.
4048         (define_makeflags): Likewise.
4050         * default.c (default_suffix_rules): Add `-o $@' to makeinfo rules.
4052 Mon Apr 12 12:30:04 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4054         * Version 3.63.7.
4056         * configure.in (AC_HAVE_HEADERS): Check for string.h and memory.h.
4057         Removed AC_MEMORY_H.
4058         * make.h [USG, NeXT]: Don't test these.
4059         [HAVE_STRING_H]: Test this to include string.h and define ANSI_STRING.
4060         [HAVE_MEMORY_H]: Test this instead of NEED_MEMORY_H.
4061         [! ANSI_STRING]: Put decls of bcopy et al here.
4062         [sparc]: Don't test this for alloca.h; HAVE_ALLOCA_H is sufficient.
4063         [HAVE_SIGSETMASK]: Test this rather than USG.
4064         [__GNU_LIBRARY__ || POSIX]: Don't #include <unistd.h> again.
4065         * main.c (main): Handle SIGCHLD if defined, and SIGCLD if defined.
4066         It doesn't hurt to do both if they are both defined, and testing
4067         USG is useless.
4068         * dir.c: Rationalize directory header conditionals.
4069         * arscan.c [HAVE_FCNTL_H]: Test this rather than USG || POSIX.
4071         * default.c (default_suffixes): Add `.txinfo'.
4072         (default_suffix_rules): Add `.txinfo.info' and `.txinfo.dvi' rules.
4074         * variable.c (try_variable_definition): Replace RECURSIVE flag
4075         with enum FLAVOR, which can be simple, recursive, or append.
4076         Recognize += as append flavor.  Set new variable VALUE in a switch
4077         on FLAVOR.  For append flavor, prepend the variable's old value.
4078         If the variable was previously defined recursive, set FLAVOR to
4079         recursive; if it was defined simple, expand the new value before
4080         appending it to the old value.  Pass RECURSIVE flag to
4081         define_variable iff FLAVOR == recursive.
4083         * variable.c (try_variable_definition): Use alloca and bcopy for
4084         NAME, instead of savestring.  Might as well use stack storage
4085         since we free it immediately anyway.
4087 Thu Apr  8 18:04:43 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4089         * job.c (start_waiting_jobs): Move decl of JOB outside of loop.
4091         * main.c (define_makeflags): Rename `struct flag' member `switch'
4092         to `cs', which is not a reserved word.
4094 Wed Apr  7 15:30:51 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4096         * job.c (new_job): Call start_waiting_jobs first thing.
4097         (start_waiting_job): Changed return type from void to int.
4098         Return 0 when putting the child on the waiting_jobs chain.
4099         (start_waiting_jobs): Don't check load and job_slots here.
4100         Always take a job off the chain and call start_waiting_job on it;
4101         give up and return when start_waiting_job returns zero.
4103         * main.c (define_makeflags: struct flag): Change member `char c' to
4104         `struct command_switch *switch'.
4105         (ADD_FLAG): Set that to CS instead of CS->c.
4106         If CS->c is -1, increment FLAGSLEN for the long name.
4107         When writing out FLAGS, handle FLAGS->switch->c == -1 and write
4108         the long name instead.
4110         * compatMakefile (stamp-config): New target of old config.h rule.
4111         Touch stamp-config after running config.status.
4112         (config.h): Just depend on stamp-config, and have empty commands.
4114 Mon Apr  5 20:14:02 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4116         * job.c [HAVE_WAITPID]: #undef HAVE_UNION_WAIT.
4118         * configure.in (AC_HAVE_FUNCS): Check for psignal.
4120 Fri Apr  2 17:15:46 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4122         * main.c (long_option_aliases): Remove "new"; it is already an
4123         unambiguous prefix of "new-file".
4125 Sun Mar 28 16:57:17 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4127         * Version 3.63.6.
4129 Wed Mar 24 14:26:19 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4131         * vpath.c (selective_vpath_search): When adding the
4132         name-within-directory at the end of NAME, and we don't add a
4133         slash, don't copy FILENAME in one char too far into NAME.
4135         * variable.c (define_automatic_variables): Find default_shell's
4136         length with strlen, not numerology.
4138 Wed Mar 17 20:02:27 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4140         * main.c (define_makeflags): Add the elts of a string option in
4141         reverse order, so they come out right when reversed again.
4143 Fri Mar 12 15:38:45 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4145         * compatMakefile (make.info): Use `-o make.info'.
4147 Thu Mar 11 14:13:00 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4149         * compatMakefile (REMOTE): Set to @REMOTE@; change comments to
4150         reflect new use.
4151         (objs): Replace remote.o with remote-$(REMOTE).o.
4152         (srcs): Replace remote.c with remote-$(REMOTE).c.
4153         (remote.o): Rule removed.
4155         * configure.in (REMOTE): Subst this in Makefile et al; default "stub".
4156         Use AC_WITH to grok --with-customs arg to set REMOTE=cstms.
4157         * GNUmakefile (build.sh.in): Filter out remote-% from objs list.
4158         * build.template (REMOTE): New var; set to @REMOTE@.
4159         (objs): Add remote-${REMOTE}.o.
4161 Wed Mar 10 15:12:24 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4163         * Version 3.63.5.
4165         * implicit.c (pattern_search): Fix "dependent"->"dependency" in
4166         "Rejecting impossible" -d msg.
4168         * file.c (file_hash_enter): New local vars {OLD,NEW}BUCKET.  Store
4169         mod'd values there; never mod {OLD,NEW}HASH.
4171 Mon Mar  8 13:32:48 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4173         * remake.c [eta10]: Include <fcntl.h> instead of <sys/file.h>.
4175         * compatMakefile (VPATH): Set this to @srcdir@.
4176         (srcdir): Set this to $(VPATH).
4178         * main.c (main): New local var DIRECTORY_BEFORE_CHDIR.  Save in it
4179         a copy of CURRENT_DIRECTORY after the first getcwd.  Use it
4180         instead of CURRENT_DIRECTORY when chdir'ing back before re-execing.
4182         * remake.c (notice_finished_file): Pass missing SEARCH arg to f_mtime.
4184         * read.c (read_makefile): Remove extraneous arg to parse_file_seq.
4186 Mon Feb 22 14:19:38 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4188         * compatMakefile ($(infodir)/$(instname).info): Use , instead of /
4189         as the sed delimiter char.
4191 Sun Feb 21 14:11:04 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4193         * Version 3.63.4.
4195         * rule.h (struct rule): Removed `subdir' member.
4196         * rule.c (new_pattern_rule): No need to clear it.
4197         (count_implicit_rule_limits): Set the `changed' flag in each dep
4198         that refers to a nonexistent directory.  No longer set rule-global
4199         `subdir' flag with that information.
4200         (print_rule_data_base): Don't record info on `subdir' flags.
4202         * implicit.c (pattern_search): Check the DEP->changed flag rather
4203         than the (now gone) RULE->subdir flag.  Also test CHECK_LASTSLASH;
4204         if it is set, the file might exist even though the DEP->changed
4205         flag is set.
4207         * rule.c (count_implicit_rule_limits): Pass "", not ".", as file
4208         name arg to dir_file_exists_p to check for existence of directory.
4210         * implicit.c (pattern_search): Inside dep-finding loop, set
4211         CHECK_LASTSLASH from the value recorded in CHECKED_LASTSLASH[I],
4212         rather than computing it anew.
4214         * commands.c (set_file_variables): Must alloca space for PERCENT
4215         and copy it, to avoid leaving the trailing `)' in the value.
4217         * misc.c (remove_comments): Fixed backslash-checking loop
4218         condition to allow it to look at the first char on the line.
4219         P2 >= LINE, not P2 > LINE.
4221         * compatMakefile ($(bindir)/$(instname)): Before moving $@.new to
4222         $@, rm $@.old and mv $@ to $@.old.
4224         * variable.c (try_variable_definition): Take new args FILENAME and
4225         LINENO.  Fatal if the variable name is empty.
4226         * read.c (read_makefile): Change callers.
4227         * main.c (main): Likewise.
4229         * compatMakefile (group): Define to @KMEM_GROUP@, autoconf magic
4230         that configure will replace with the group owning /dev/kmem.
4232 Mon Feb  8 14:26:43 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4234         * vpath.c (vpath_search): Take second arg MTIME_PTR, pass thru to
4235         selective_vpath_search.
4236         (selective_vpath_search): Take second arg MTIME_PTR.
4237         If the dir cache thinks a file exists, stat it to make sure, and
4238         put the modtime in *MTIME_PTR.
4239         * remake.c (library_search): Take second arg MTIME_PTR.
4240         When we find a match, record its mtime there.
4241         Pass MTIME_PTR through to vpath_search to do same.
4242         (f_mtime): Pass &MTIME as new 2nd arg to {vpath,library}_search;
4243         store it in FILE->last_mtime if set nonzero.
4244         * implicit.c (pattern_search): Pass nil 2nd arg to vpath_search.
4246         * compatMakefile (remote.o): Prepend `$(srcdir)/' to `remote-*.c',
4247         so globbing looks somewhere it will find things.
4249         * compatMakefile ($(infodir)/$(instname).info): Install `make.info*'
4250         not `$(srcdir)/make.info*'; no need to use basename.
4252 Fri Feb  5 12:52:43 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4254         * Version 3.63.3.
4256         * compatMakefile (install): Add missing ;\s.
4258         Make -, @, and + prefixes on a pre-expanded command line affect
4259         all lines in the expansion, not just the first.
4260         * commands.h (struct commands): Replace `lines_recurse' member
4261         with `lines_flags'.
4262         (COMMANDS_{RECURSE,SILENT,NOERROR}): New macros, bits to set in
4263         that flag byte.
4264         * commands.c (chop_commands): Set `lines_flags' instead of
4265         `lines_recurse'.  Record not only + but also @ and - prefixes.
4266         * remake.c (notice_finished_file): Check the COMMANDS_RECURSE bit
4267         in FILE->cmds->lines_flags, rather than FILE->cmds->lines_recurse.
4268         * job.c (start_job_command): Replaced RECURSIVE and NOPRINT local
4269         var with FLAGS; initialize it to the appropriate `lines_flags' byte.
4270         Set CHILD->noerror if the COMMANDS_NOERROR bit is set in FLAGS.
4271         Set the COMMANDS_SILENT bit in FLAGS for a @ prefix.
4273         * remake.c (update_goal_chain): Set G->file to its prev after
4274         checking for G being finished, since that check needs to examine
4275         G->file.
4277         * configure.in (union wait check) [HAVE_WAITPID]: Try using
4278         waitpid with a `union wait' STATUS arg.  If waitpid and union wait
4279         don't work together, we should not use union wait.
4281         * Version 3.63.2.
4283         * remake.c (update_goal_chain): When G->file->updated, move
4284         G->file to its prev.  We aren't finished until G->file is nil.
4286 Thu Feb  4 12:53:04 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4288         * main.c (starting_directory): New global variable.
4289         (main): Set it to cwd after doing -Cs.
4290         (log_working_directory): Use it, rather than computing each time.
4291         * make.h: Declare it.
4293         * compatMakefile (SHELL): Define to /bin/sh for losing Unix makes.
4295         * main.c (decode_env_switches): Allocate (1 + LEN + 1) words for
4296         ARGV, rather than LEN words plus one byte.
4298 Wed Feb  3 18:13:52 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4300         * compatMakefile ($(bindir)/$(instname)): Put - before
4301         install_setgid command line, so its failure won't be an error.
4302         (infodir): New variable.
4303         (install): Depend on $(infodir)/$(instname).info.
4304         ($(infodir)/$(instname).info): New target.
4306         * read.c (read_makefile): If FILENAMES is nil when we see a line
4307         starting with a tab, don't treat it as a command.  Just fall
4308         through, rather than giving an error.
4310         * read.c (read_makefile): If the NO_TARGETS flag is set when we see a
4311         command line, don't clear it before continuing.  We want
4312         subsequent command lines to be ignored as well.
4314         * job.c (new_job): Before expanding each command line, collapse
4315         backslash-newline combinations that are inside var or fn references.
4317 Mon Feb  1 16:00:13 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4319         * compatMakefile (exec_prefix): Default to $(prefix), not /usr/local.
4321         * compatMakefile (make.info): Pass -I$(srcdir) to makeinfo.
4323         * job.c [POSIX] (unblock_sigs): Made global.
4324         [!POSIX] (unblock_sigs): Move defns to job.h.
4325         * job.h [POSIX] (unblock_sigs): Declare.
4327 Sun Jan 31 19:11:05 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4329         * read.c (read_makefile): In vpath parsing, after finding the
4330         pattern token, take entire rest of line as the search path, not
4331         just the next token.
4333         * compatMakefile (remote.o): Depend on remote-*.c.
4335 Thu Jan 28 16:40:29 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4337         * commands.c (set_file_variables): Don't define any F or D versions.
4338         * variable.c (define_automatic_variables): Define them here as
4339         recursively-expanded variables that use the dir and notdir funcs.
4341         * variable.c (target_environment): In v_default case, don't export
4342         o_default or o_automatic variables.
4344         * configure.in (union wait check): Remove ` and ' inside C code;
4345         they confuse the shell script.
4347 Mon Jan 25 13:10:42 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4349         * Version 3.63.1.
4351         * vpath.c (construct_vpath_list): When skipping further processing
4352         of an elt that is ".", don't also skip the code that pushes P past
4353         the next separator.
4355         * compatMakefile (distclean): Don't remove make-*.
4357         * configure.in (HAVE_UNION_WAIT): Try to use WEXITSTATUS if it's
4358         defined.  If one cannot use WEXITSTATUS with a `union wait'
4359         argument, we don't want to believe the system has `union wait' at all.
4361         * remake.c (update_file): Do nothing to print "up to date" msgs.
4362         (update_goal_chain): Do it here instead.
4363         Use the `changed' flag of each goal's `struct dep' to keep track
4364         of whether files_remade (now commands_started) changed around a
4365         call to update_file for that goal.
4366         When a goal is finished, and its file's update_status is zero (i.e.,
4367         success or nothing done), test the `changed' flag and give an "up
4368         to date" msg iff it is clear.
4369         * make.h (files_remade): Renamed to commands_started.
4370         * remake.c: Changed defn.
4371         (update_goal_chain): Changed uses.
4372         * job.c (start_job_command): Increment commands_started here.
4373         (reap_children): Not here.
4375         * remake.c (update_goal_chain): Don't do anything with files'
4376         `prev' members.  update_file now completely handles this.
4378         * variable.c (target_environment): Don't expand recursive
4379         variables if they came from the environment.
4381         * main.c (define_makeflags): For flags with omitted optional args,
4382         store {"", 0} with ADD_FLAG.  When constructing FLAGSTRING, a flag
4383         so stored cannot have more flags appended to the same word.
4385 Fri Jan 22 14:46:16 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4387         * variable.c (print_variable_set): In vars/bucket calculation,
4388         don't spuriously multiply by 100.
4390         * Version 3.63.
4392         * job.c [!HAVE_UNION_WAIT] (WTERMSIG, WCOREDUMP, WEXITSTATUS):
4393         Don't define if already defined.
4395         * remake.c (update_file): Don't keep track of the command_state before
4396         calling update_file_1.  Remove local variable COMMANDS_FINISHED,
4397         and don't test it to decide to print the "is up to date" msg.
4398         Testing for files_remade having changed should always be sufficient.
4399         The old method lost when we are called in the goal chain run on a
4400         makefile, because the makefile's command_state is already
4401         `cs_finished' from the makefile chain run.
4403         * misc.c [HAVE_SETRE[GU]ID]: Test these to decl setre[gu]id.
4405         * configure.in: Rewrote wait checking.
4406         Use AC_HAVE_HEADERS to check for <sys/wait.h>.
4407         Use AC_HAVE_FUNCS to check for waitpid and wait3.
4408         Use a compile check to test just for `union wait'.
4409         * job.c: Rewrote conditionals accordingly.
4410         [HAVE_WAITPID]: Test this only to define WAIT_NOHANG.
4411         [HAVE_WAIT3]: Likewise.
4412         [HAVE_UNION_WAIT]: Test this to define WAIT_T and W*.
4414         * configure.in: Set CFLAGS and LDFLAGS before all checks.
4416         * dir.c: Add static forward decls of {open,read}_dirstream.
4418 Thu Jan 21 17:18:00 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4420         * Version 3.62.31.
4422         * job.c [NGROUPS_MAX && NGROUPS_MAX==0]: #undef NGROUPS_MAX.
4424         * compatMakefile (CFLAGS, LDFLAGS): Set to @CFLAGS@/@LDFLAGS@.
4425         * build.template (CFLAGS, LDFLAGS): Same here.
4426         * configure.in: AC_SUBST(CFLAGS) and LDFLAGS.
4427         Set them to -g if not defined in the environment.
4429         * remake.c (library_search): Use LIBNAME consistently, setting it
4430         only once, to be the passed name sans `-l'.
4431         Pass new var FILE to be modified by vpath_search.
4433 Mon Jan 18 14:53:54 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4435         * Version 3.62.30.
4437         * job.c (start_waiting_jobs): Return when job_slots_used is equal to
4438         job_slots.
4440         * configure.in: Add AC_CONST for the sake of getopt.
4442         * read.c (read_makefile): Continue after parsing `override'
4443         directive, rather than falling through to lossage.
4444         Check for EOL or blank after "override define".
4446         * compatMakefile (.c.o, remote.o): Put $(CFLAGS) after other switches.
4448 Fri Jan 15 12:52:52 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4450         * Version 3.62.29.
4452         * main.c (define_makeflags): After writing everything into
4453         FLAGSTRING, only back up two chars if [-1] is a dash, meaning we
4454         just wrote " -".  Always terminate the string at *P.
4456         * remake.c (library_search): When constructing names in std dirs,
4457         use &(*LIB)[2] for the stem, not LIBNAME (which points at the
4458         buffer we are writing into!).
4460 Thu Jan 14 13:50:06 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4462         * read.c (read_makefile): Set IN_IGNORED_DEFINE for "override
4463         define" when IGNORING is true.
4465         * compatMakefile (distclean): Remove config.status and build.sh.
4467 Wed Jan 13 16:01:12 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4469         * Version 3.62.28.
4471         * misc.c (xmalloc, xrealloc): Cast result of malloc/realloc to
4472         (char *).
4474         * arscan.c (ar_scan) [AIAMAG]: Cast read arg to (char *).
4476         * variable.c (define_automatic_variables): Override SHELL value for
4477         origin o_env_override as well as o_env.
4479         * GNUmakefile (build.sh.in): Don't replace %globobjs%.  Instead,
4480         add the names of the glob objects (w/subdir) to %objs%.
4481         * build.template (globobjs): Removed.
4482         Take basename of $objs before linking.
4484 Tue Jan 12 12:31:06 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4486         * Version 3.62.27.
4488         * configure.in (AC_OUTPUT): Also edit build.sh.
4489         * build.template: New file.
4490         * GNUmakefile (build.sh.in): New rule to create it from build.template.
4491         (make-$(version).tar.Z): Depend on build.sh.in.
4493         * main.c (die): Call print_data_base if -p.
4494         (main): Don't call it here.
4496         * compatMakefile (defines): Add @DEFS@.  configure should turn this
4497         into -DHAVE_CONFIG_H.
4499 Mon Jan 11 14:39:23 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4501         * Version 3.62.26.
4503         * misc.c (init_access): Surround with #ifdef GETLOADAVG_PRIVILEGED.
4504         ({make,user,child}_access) [! GETLOADAVG_PRIVILEGED]: Make no-op.
4505         * compatMakefile (install_setgid): New var, set by configure.
4506         (install): Install setgid $(group) only if $(install_setgid) is true.
4508 Fri Jan  8 15:31:55 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4510         * job.c (load_too_high): If getloadavg fails with errno==0, give a
4511         message saying that load limits are not supported.
4513         * vpath.c (construct_vpath_list): Rewrote path deletion code to
4514         not try to use PATH's next link after freeing PATH.
4516         * main.c (define_makeflags): Rewritten; now handles string-valued
4517         option, and has no arbitrary limits.
4518         (switches): Set `toenv' flag for -I and -v.
4520         * main.c (decode_env_switches): Cast return value of alloca to char *.
4522         * misc.c (child_access) [HAVE_SETREUID, HAVE_SETREGID]: Use
4523         setre[gu]id in place of set[gu]id.
4525 Wed Jan  6 15:06:12 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4527         * main.c (main): Define MAKEOVERRIDES, MAKE, and MAKE_COMMAND with
4528         origin o_default.
4530         * make.h [POSIX]: Don't test this to use ANSI_STRING.
4531         Testing STDC_HEADERS should be sufficient.
4533         * job.h: Declare start_waiting_jobs.
4535         * read.c (read_makefile): Add missing parens in if stmt that find
4536         conditional directives.
4538         * main.c (main): Declare init_dir.
4539         * implicit.c (pattern_search): Always use two % specs in a
4540         DEBUGP2, and always pass two non-nil args.
4541         Cast field width args to int.
4542         Add missing parens in !RULE->subdir if stmt.
4543         * function.c (expand_function, patsubst_expand): Add parens around
4544         assignments inside `while' stmts.
4545         * commands.c (print_commands): Cast field width args to int.
4547         * read.c (do_define): Cast return value of alloca to (char *).
4549         * main.c (init_switches): New function, broken out of decode_switches.
4550         (decode_switches): Take new arg ENV.  If set, ignore non-option
4551         args; print no error msgs; ignore options with clear `env' flags.
4552         (decode_env_switches): Rewritten to chop envar value into words
4553         and pass them to decode_switches.
4554         (switches): Set `env' flag for -I and -v.
4556         * dir.c (init_dir): Cast free to __glob_closedir_hook's type.
4558 Tue Jan  5 14:52:15 1993  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4560         * Version 3.62.25.
4562         * job.c [HAVE_SYS_WAIT || !USG]: Don't #include <sys/time.h> and
4563         <sys/resource.h>.  <sys/time.h> interacts badly with <time.h>, and
4564         we don't need these anyway.
4566         * configure.in (AC_HAVE_FUNCS): Check for setre[gu]id.
4567         * misc.c ({user,make}_access): Test #ifndef HAVE_SETRE[GU]ID, not
4568         #ifdef POSIX || USG.  SunOS 4.1 is supposedly POSIX.1 compliant,
4569         but its set[gu]id functions aren't; its setre[gu]id functions work.
4571         * misc.c ({user,make,child}_access): Give name of caller in error msgs.
4573         * job.c (load_too_high): Say "cannot enforce load limit" in error msg.
4575         * configure.in: Call AC_PROG_CC.
4576         * compatMakefile (CC): Define to @CC@ (autoconf magic).
4578         * compatMakefile: Add .NOEXPORT magic target.
4580 Mon Jan  4 17:00:03 1993  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4582         * main.c (print_version): Updated copyright to include 93.
4584 Thu Dec 31 12:26:15 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4586         * make.h [_AIX]: Don't declare alloca.
4588 Tue Dec 29 13:45:13 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4590         * Version 3.62.24.
4592         * compatMakefile (objs): Add signame.o.
4593         (srcs): Add signame.[ch].
4595         * compatMakefile (srcs): Add config.h.in.
4596         (remote.o): Add -I. before -I$(srcdir).
4598 Mon Dec 28 15:51:26 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4600         * Version 3.62.23.
4602         * read.c (readline): Fatal when LEN==0, indicating a line starting
4603         with a NUL.
4604         (readline): Take new arg LINENO, for use in error msg.
4605         (read_makefile, do_define): Pass it.
4607         * compatMakefile (glob/libglob.a): Pass -DHAVE_CONFIG_H in CPPFLAGS.
4608         (.c.o): Add -I. before -I$(srcdir).
4610 Wed Dec 23 12:12:04 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4612         * read.c (read_makefile): Accept and ignore a rule with no targets.
4614         * compatMakefile (ALLOCA_SRC): New variable.
4615         (srcs): Include its value.
4617         * read.c (struct conditional): Renamed member `max_ignoring' to
4618         `allocated'; added new member `seen_else'.
4619         (conditional_line): Initialize seen_else flag when starting an `if...';
4620         set it when we see an `else'; fatal if set when we see `else'.
4621         (read_makefile): Fatal "missing `endif'" if there are any pending
4622         conditionals, not just if we are still ignoring.
4624 Tue Dec 22 15:36:28 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4626         * compatMakefile (manext): Set to 1, not l.
4627         ($(mandir)/$(instname).$(manext)): Use $(srcdir) for make.man in cmds.
4629         * file.c (file_hash_enter): Don't call uniquize_deps here.
4630         * read.c (record_files): Likewise.
4631         * implicit.c (pattern_search): Likewise.
4632         * commands.c (set_file_variables): Call it only here.
4634         * default.c (default_variables) [__convex__]: FC=fc.
4636         * variable.c (target_environment): Expand the values of recursively
4637         expanded variables when putting them into the environment.
4638         * expand.c (recursively_expand): Made global.
4639         * make.h (recursively_expand): Declare it.
4641         * remake.c (check_dep): Set FILE->command_state to cs_deps_running
4642         when a dep's command_state is cs_running or cs_deps_running.
4644         * read.c (read_makefile): Changed error msg for spurious cmds to
4645         not say "first target".
4647 Sun Dec 20 17:56:09 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
4649         * configure.in: Do AC_CONFIG_HEADER right after AC_INIT.
4650         * make.h (HAVE_CONFIG_H): #include "config.h", then #define this.
4651         * compatMakefile (config.h, configure, config.h.in): New rules.
4652         (defines): Removed @DEFS@.
4654 Thu Dec 17 16:11:40 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4656         * compatMakefile (realclean): Just depend on distclean; no cmds.
4657         (distclean): Do what realclean did before; also remove Makefile and
4658         config.h; don't remove configure.
4659         (info, dvi): New targets; depend on make.{info,dvi}.
4660         (doc): Removed target.
4661         (MAKEINFO, TEXI2DVI): New vars.
4662         (make.info, make.dvi): Use them instead of explicit cmds.
4664 Wed Dec 16 16:25:24 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4666         * configure.in: Added fcntl.h to AC_HAVE_HEADERS.  getloadavg cares.
4668 Wed Dec  9 15:21:01 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4670         * main.c (long_option_aliases): Add --new-file alias for -W.
4672         * default.c (default_variables): Change all C++ to CXX and C++FLAGS
4673         to CXXFLAGS.
4675         * read.c (do_define): Expand the variable name before using it.
4677         * main.c (main): Define variable "MAKE_COMMAND" to argv[0];
4678         define "MAKE=$(MAKE_COMMAND) $(MAKEOVERRIDES)" always.
4680         * remake.c (library_search): Search for libNAME.a in cwd; look in
4681         vpath before looking in standard dirs, not after.
4682         Changed order of std dirs to: /lib, /usr/lib, ${prefix}/lib.
4684 Mon Nov 23 14:57:34 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4686         * default.c (default_pattern_rules, default_terminal_rules): Added
4687         brackets around initializers.
4689         * variable.c (try_variable_definition): Don't check for LINE[0]=='\t'.
4690         (try_variable_definition): Expand the name before defining the var.
4692         * job.c (init_siglist): Removed function.
4693         Removed decl of `sys_siglist'.
4694         * make.h [! HAVE_SYS_SIGLIST]: #include "signame.h".
4695         [HAVE_SYS_SIGLIST && !SYS_SIGLIST_DECLARED]: Declare sys_siglist
4696         only under these conditions.
4697         * main.c (main): Don't declare init_siglist.
4698         (main) [! HAVE_SYS_SIGLIST]: Call signame_init instead of init_siglist.
4700 Wed Nov 18 14:52:51 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4702         * read.c (record_files): Don't try to append to FIRSTDEPS if it's
4703         nil; instead just set it to MOREDEPS.
4705 Mon Nov 16 17:49:17 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4707         * vpath.c (construct_vpath_list): Initialize P to DIRPATH before
4708         loop that sets MAXELEM.
4710 Fri Nov 13 18:23:18 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4712         * Version 3.62.22.
4714 Thu Nov 12 15:45:31 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4716         * job.c (start_job_command): Under -n, increment files_remade after
4717         processing (i.e., printing) all command lines.
4719 Tue Nov 10 15:33:53 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4721         * read.c (record_files): Append new deps if this rule has no
4722         commands; prepend them to existing deps if this rule has no commands.
4724         * dir.c (open_dirstream): Return nil if DIR->contents->files is nil.
4726         * read.c (parse_file_seq): Removed last arg STRIP.  Always strip `./'s.
4727         (read_makefile): Changed callers.
4728         * function.c (string_glob): Likewise.
4729         * rule.c (install_pattern_rule): Likewise.
4731 Mon Nov  9 17:50:16 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4733         * remake.c (files_remade): Made global.
4734         (notice_finished_file): Don't increment files_remade here; this
4735         function gets called in many situations where no remaking was in
4736         fact done.
4737         * job.c (reap_children): Do it here instead, when we know that
4738         actual commands have been run for the file.
4739         * make.h (files_remade): Declare it.
4741 Thu Nov  5 18:26:10 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4743         * vpath.c (construct_vpath_list): Allow blanks as well as colons to
4744         separate elts in the search path.
4746         * read.c (read_makefile): Don't fatal on extra tokens in `vpath'.
4747         The search path can contain spaces now.
4749 Tue Nov  3 20:44:32 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4751         * compatMakefile (check): New target; no-op.
4753         * file.c (file_hash_enter): Mod OLDHASH by FILE_BUCKETS after
4754         testing for OLDHASH==0 but before using the value.
4755         (rename_file): Don't mod OLDHASH by FILE_BUCKETS before passing it
4756         to file_hash_enter.
4758         * file.c (rename_file): Notice when OLDFILE->cmds came from
4759         default.c, and don't try to print ->filename in that case.
4761 Sun Oct 25 01:48:23 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4763         * remake.c (update_file): Don't process F->also_make here.
4764         (notice_finished_file): Don't process FILE->also_make if no attempt
4765         to update FILE was actually made.
4766         Fixed to call f_mtime directly to refresh their modtimes.
4768 Sat Oct 24 22:08:59 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4770         * read.c (find_percent): Don't increment P again after skipping
4771         an escaped %.
4773         * expand.c (variable_expand): In call to patsubst_expand, don't
4774         find `%'s ourselves; let that function do it.
4776         * read.c (read_makefile: record_waiting_files): Don't call
4777         record_files if FILENAMES is nil.
4778         (read_makefile): All alternatives in the parsing, except for rule
4779         lines, fall through to the end of the loop.  At the end of the
4780         loop, do record_waiting_files so we notice later spurious cmds.
4782 Fri Oct 23 15:57:37 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4784         * variable.c (define_automatic_variables): Free old value of SHELL
4785         before replacing it.
4787 Thu Oct 15 18:57:56 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4789         * compatMakefile (.c.o): Add -I$(srcdir)/glob to flags.
4791         * dir.c (open_dirstream): Cast return value to __ptr_t.
4793         * default.c (default_variables: "GET") [_IBMR2]: Use USG defn.
4795         * make.h (MAXPATHLEN): Moved out of #ifndef POSIX.
4796         (GET_PATH_MAX): Moved from #ifdef POSIX to #ifdef PATH_MAX #else.
4797         Define as (get_path_max ()).
4798         [! PATH_MAX] (NEED_GET_PATH_MAX): Define.
4799         [! PATH_MAX] (get_path_max): Declare fn.
4800         * misc.c [NEED_GET_PATH_MAX] (get_path_max): New function.
4802 Mon Oct 12 13:34:45 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4804         * Version 3.62.21.
4806         * job.c (sys_siglist): Only declare #ifndef SYS_SIGLIST_DECLARED.
4807         * make.h [! HAVE_SYS_SIGLIST && HAVE__SYS_SIGLIST]: #define
4808         SYS_SIGLIST_DECLARED.
4810         * dir.c (file_impossible): When initializing DIR->contents, set
4811         DIR->contents->dirstream to nil.
4813         * compatMakefile (GLOB): Define new variable.
4814         (objs): Use it, rather than glob/libglob.a explicitly.
4816         * read.c (parse_file_seq): When stripping "./", handle cases like
4817         ".///foo" and "./////".
4818         * file.c (lookup_file, enter_file): Likewise.
4820 Sun Oct 11 17:00:35 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4822         * dir.c (struct dirstream, {open,read}_dirstream): New
4823         data type and functions to read a directory sequentially.
4824         (init_dir): New function to hook it into glob.
4825         * main.c (main): Call init_dir.
4827         * compatMakefile (objs): Added glob/libglob.a.
4828         * configure.in: Remove code to test for glob.
4830 Fri Oct  9 12:08:30 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4832         * read.c (record_files): Generalized test for NAME pointing
4833         somewhere into F->name.
4835         * variable.c (define_variable_in_set): Free old value when replacing.
4837         * read.c (do_define): Free the linebuffer before returning.
4838         (record_files): When clearing .SUFFIXES deps, free their data.
4839         (multi_glob): Free OLD and its data when replacing it with results
4840         of glob run.
4842         * commands.c (set_file_variables): Use alloca in place of xmalloc
4843         for temp space for $^, $?, et al.
4845         * dir.c (struct directory): New member `contents' replaces `files'
4846         and `dirstream'.
4847         (struct directory_contents): New type.
4848         (directories_contents): New hash table.
4849         (dir_struct_file_exists_p): Take a struct directory_contents.
4850         (dir_file_exists_p): Pass it the `contents' member of the dir found.
4851         (dir_struct_file_exists_p): Renamed to dir_contents_file_exists_p;
4852         made static.  Return 0 if DIR is nil (meaning it couldn't be stat'd).
4853         (dir_file_exists_p, find_directory): Change all callers.
4854         (file_impossible): Use DIR->contents, initializing it if nil.
4855         (print_dir_data_base): Use DIR->contents, and print out device and
4856         inode numbers with each directory.
4858         * Changes for performance win from John Gilmore <gnu@cygnus.com>:
4859         * dir.c (DIRECTORY_BUCKETS): Increase to 199.
4860         (DIRFILE_BUCKETS): Decrease to 107.
4861         (find_directory): Allocate and zero a multiple of
4862         sizeof (struct dirfile *), not of sizeof (struct dirfile).
4863         (dir_struct_file_exists_p): New function, nearly all code from
4864         dir_file_exists_p.
4865         (dir_file_exists_p): Just call find_directory+dir_struct_file_exists_p.
4866         * vpath.c (selective_vpath_search): Remove redundant
4867         dir_file_exists_p call.
4869         * configure.in: Comment out glob check; always use our code.
4871 Fri Oct  2 19:41:20 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4873         * make.h [! HAVE_SYS_SIGLIST && HAVE__SYS_SIGLIST]: #define
4874         HAVE_SYS_SIGLIST; after doing #define sys_siglist _sys_siglist, we
4875         do have it.
4877 Wed Sep 30 19:21:01 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4879         * main.c (main): Don't do -w automatically if -s.
4881 Tue Sep 29 21:07:55 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4883         * main.c (printed_version): Move variable inside print_version.
4884         (print_version): Return immediately if printed_version is set.
4885         (die): Don't test printed_version here.
4886         (decode_switches): Under -v, do print_version before giving usage.
4887         (DESCRIPTION_COLUMN): New macro.
4888         (decode_switches): Use it when printing the usage message.
4889         Leave at least two spaces between options and their descriptions.
4891 Fri Sep 25 13:12:42 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4893         * Version 3.62.20.
4895 Wed Sep 16 16:15:22 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4897         * read.c (read_makefile): Save errno value from trying to open
4898         FILENAME, and restore it before erring; otherwise we get the errno
4899         value from the last elt of the search path.
4901 Tue Sep 15 15:12:47 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4903         * main.c (long_option_aliases): Add --stop for -S.
4905         * read.c (word1eq): Do strncmp before dereferencing someplace that
4906         may be out in space.
4908 Wed Sep  9 15:50:41 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4910         * remake.c (notice_finished_file): If all the command lines were
4911         recursive, don't do the touching.
4913         * job.c (start_job_command): Don't check for + here.
4914         * commands.c (chop_commands): Do it here instead.
4916         * default.c (default_terminal_rules): Prepend + to cmds for RCS.
4918 Wed Sep  2 17:53:08 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4920         * compatMakefile (objs): Include $(ALLOCA).
4922         * make.h [CRAY]: Move #define signal bsdsignal to before #includes.
4924 Thu Aug 27 17:45:43 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
4926         * read.c (default_include_directories): Add INCLUDEDIR first.
4927         * compatMakefile (includedir): Define.
4928         (defines): Add -D for INCLUDEDIR="$(includedir)".
4930         * read.c (read_makefile): Grok multiple files in `include';
4931         globbing too.
4933         * remake.c (library_search): New function.
4934         (library_file_mtime): Remove function.
4935         (f_mtime): Use library_search instead of library_file_mtime.
4936         * compatMakefile (libdir): Define.
4937         (defines): Add -D for LIBDIR="$(libdir)".
4938         * make.texinfo (Libraries/Search): Document change.
4940         * file.c (rename_file): Fix file_hash_enter call with missing arg.
4942 Wed Aug 26 17:10:46 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4944         * Version 3.62.19.
4946         * main.c (main): Set command_state to cs_finished for temp files
4947         made for stdin makefiles.
4949         * main.c (decode_switches): Don't tell getopt to return non-option
4950         args in order.
4951         Ignore an argument of `-'.
4953 Thu Aug 20 13:36:04 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4955         * job.c (start_job_command): If (touch_flag && !RECURSIVE), ignore
4956         the command line and go to the next.
4957         (notice_finished_file): Under -t, touch FILE.
4958         * remake.c (remake_file): Don't touch it here.
4960 Wed Aug 19 16:06:09 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4962         * function.c (pattern_matches): Use temporary for strlen (WORD)
4963         instead of two function calls.
4965         * compatMakefile (LOAD_AVG): Remove variable and comments.
4967 Tue Aug 18 14:58:58 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
4969         * make.texinfo (Running): Node renamed to `make Invocation'.
4971 Fri Aug 14 12:27:10 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4973         * arscan.c (ar_name_equal): Don't compare [MAX-3..MAX] if
4974         NAMELEN != MEMLEN.
4976 Thu Aug 13 17:50:09 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4978         * Version 3.62.18.
4980         * main.c: Don't #include <time.h>; make.h already does.
4982 Mon Aug 10 17:03:01 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4984         * implicit.c (pattern_search): Fixed copying of suffix when building
4985         also_make elts.
4987         * function.c (expand_function: `shell'): Make sure BUFFER is
4988         null-terminated before replacing newlines.
4990         * compatMakefile (mandir): Use man$(manext), not always manl.
4992 Sun Aug  2 01:42:50 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
4994         * rule.c (new_pattern_rule): Not static.
4995         * rule.h: Declare it.
4997         * file.c (file_hash_enter): New function, most code from rename_file.
4998         (rename_file): Call it.
4999         * file.h (file_hash_enter): Declare it.
5001         * dep.h: Doc fix.
5003 Thu Jul 30 15:40:48 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5005         * main.c (decode_switches): Handle usage_and_exit when building
5006         long options vector.
5008         * default.c (default_terminal_rules): Make RCS rules use $(CHECKOUT,v).
5009         (default_variables): Define CHECKOUT,v (hairy).
5011         * make.h [!HAVE_SYS_SIGLIST && HAVE__SYS_SIGLIST]: #define
5012         sys_siglist to _sys_siglist.
5014 Sun Jul 26 16:56:32 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5016         * NEWS: Add header and tail copyright info like Emacs NEWS.
5018         * make.h [ANSI_STRING]: Don't #define index, rindex, bcmp, bzero,
5019         bcopy if already #define'd.
5020         [STDC_HEADERS] (qsort, abort, exit): Declare here.
5021         [! __GNU_LIBRARY__ && !POSIX]: Not here.
5023         * make.h [_AIX]: #pragma alloca first thing.
5025         * job.c (start_waiting_job): Set the command_state to cs_running
5026         when we queue a job on waiting_jobs.
5028 Fri Jul 24 02:16:28 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5030         * variable.c (define_automatic_variables): Use "" instead of nil
5031         for empty value.
5033 Thu Jul 23 22:31:18 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5035         * Version 3.62.17.
5037         * main.c (struct command_switch.type): Add alternative usage_and_exit.
5038         (command_switches): Add -h/--help.
5040 Thu Jul 16 14:27:50 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5042         * GNUmakefile (make-$(version).tar.Z): Include NEWS, not CHANGES.
5043         * README.template: Mention NEWS.
5044         * CHANGES: Renamed to NEWS.
5046         * main.c [! STDC_HEADERS] [sun]: Don't declare exit.
5048 Tue Jul 14 18:48:41 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5050         * main.c (main): Set -o files' command_states to cs_finished.
5052         * rule.c (count_implicit_rule_limits): Decrement num_pattern_rules
5053         when tossing a rule.
5055         * main.c (main): Use alloca only in simple local var assignment,
5056         for braindead SGI compiler.
5058         * rule.c (print_rule_data_base): Barf if num_pattern_rules is
5059         inconsistent with the number computed when listing them.
5061 Mon Jul 13 17:51:53 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5063         * commands.c (set_file_variables): For $? and $^ elts that are archive
5064         member refs, use member name only.
5066 Fri Jul 10 00:05:04 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5068         * variable.h (struct variable.export): Add new alternative v_ifset.
5069         * variable.c (target_environment): Check for it.
5070         (define_automatic_variables): Set it for MAKEFILES.
5072 Thu Jul  9 21:24:28 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5074         * compatMakefile (objs): Remove getloadavg.o; $(extras) gets it.
5075         (remote.o): Use $(srcdir)/remote.c, not $remote.c<.
5076         (distclean, mostlyclean): New targets.
5078 Tue Jul  7 19:12:49 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5080         * Version 3.62.16.
5082         * compatMakefile (config.status): Remove rule.
5084         * job.c (start_waiting_job): Free C after using C->file, not before.
5086 Sat Jul  4 20:51:49 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5088         * commands.c, job.c, main.c, make.h, remote-cstms.c: Use #ifdef
5089         HAVE_* instead of #ifndef *_MISSING.
5090         * configure.in: Use AC_HAVE_FUNCS instead of AC_MISSING_FUNCS (gone).
5092 Thu Jul  2 18:47:52 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5094         * main.c (main): makelevel>0 or -C implies -w.
5096 Tue Jun 30 20:50:17 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5098         * file.c, job.c, function.c: Don't #include <errno.h>.
5099         make.h: Do it here instead.
5100         * arscan.c (ar_member_touch): Don't declare errno.
5102 Thu Jun 25 17:06:55 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5104         * GNUmakefile (make-$(version).tar.Z): Depend on INSTALL, configure.in.
5106         * remake.c (update_file): If commands or deps are running after
5107         update_file_1 returns, break out of the :: rule (->prev) loop and
5108         just return.
5110         * job.c (job_next_command): New function; code from start_job.
5111         (start_job_command): Renamed from start_job.  Call job_next_command
5112         and recurse for empty command lines and -n.
5113         (start_waiting_job): Call start_job_command, not start_job.
5114         (new_job): Call job_next_command to prime the child structure, and
5115         then call start_waiting_job.
5116         (reap_children): Use job_next_command and start_job_command.
5117         (start_waiting_job): Call start_remote_job_p here, and store its
5118         result in C->remote.  If zero, check the load average and
5119         maybe put C on waiting_jobs.
5120         (start_job_command): Test CHILD->remote rather than calling
5121         start_remote_job_p.  Don't do load avg checking at all here.
5123         * main.c (main): Don't handle SIGILL, SIGIOT, SIGEMT, SIGBUS,
5124         SIGSEGV, SIGFPE or SIGTRAP.
5126         * compatMakefile (glob/libglob.a): Don't pass srcdir to sub-make.
5127         configure will set it in glob/Makefile.
5129 Wed Jun 24 19:40:34 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5131         * dir.c [DIRENT] (direct): Don't define to dirent.
5132         [! DIRENT] (direct): Define to dirent.
5133         (dir_file_exists_p): Use struct dirent instead of struct direct.
5135         * make.h (getcwd): No space between macro and ( for args!
5137         * job.c (start_job): Don't put the job on waiting_jobs if
5138         job_slots_used==0.
5140         * make.texinfo (Missing): Shortened title.
5142 Tue Jun 23 18:42:21 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5144         * file.c (remove_intermediates): Print "rm" commands under -n.
5146 Mon Jun 22 16:20:02 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5148         * Version 3.62.15.
5150 Fri Jun 19 16:20:26 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5152         * arscan.c [M_UNIX]: #undef M_XENIX.
5154 Wed Jun 17 17:59:28 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5156         * default.c (default_terminal_rules): Put @ prefix on RCS cmds.
5158 Tue Jun 16 19:24:17 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5160         * compatMakefile (getloadavg.o): Removed special rule.
5161         (CFLAGS): Don't include $(defines).
5162         (.c.o): Define suffix rule.
5163         (glob/libglob.a): Pass CPPFLAGS=$(defines) to submake.
5164         (GETOPT_SRC, srcs, tagsrcs): Prefix files with $(srcdir)/.
5166         * arscan.c (ar_name_equal): Moved local vars inside #if'd block.
5168         * make.h (max): Removed.
5169         * expand.c (variable_buffer_output): Don't use it.
5171         * compatMakefile (INSTALL): Define.
5172         (Makefile): New rule to make from Makefile.in.
5173         (srcdir): Define.
5174         (VPATH): Define.
5175         (getloadavg.o, remote.o): Use autoconf $foo< hack.
5177         * commands.c (fatal_error_signal): Removed return.
5179 Mon Jun 15 17:42:51 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5181         * Version 3.62.14.
5183         * make.texinfo (Summary): New node.
5184         (Special Targets): Mention .EXPORT_ALL_VARIABLES here.
5186         * variable.c (max): Moved to make.h.
5188         * compatMakefile (objs, srcs): Added ar & arscan.
5190         * job.c (start_waiting_job): New function, 2nd half of new_job.
5191         (new_job): Call it.
5192         (start_waiting_jobs): New function.
5193         * remake.c (update_goal_chain): Call start_waiting_jobs at the top
5194         of the main loop.
5195         * compatMakefile (objs, srcs): Removed load, added getloadavg.
5197 Fri Jun 12 19:33:16 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5199         * job.c (load_too_high): New function.  Uses getloadavg.
5200         (waiting_jobs): New variable.
5201         (start_job): Don't call wait_to_start_job.  Instead, if
5202         load_too_high returns nonzero, add the child to the
5203         `waiting_jobs' chain and return without starting the job.
5205 Thu Jun 11 00:05:28 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5207         * expand.c (variable_buffer_output): Made global again.
5208         * variable.h: And declare it.
5210         * arscan.c (PORTAR): Define for all systems if PORT5AR is not defined.
5211         (AR_NAMELEN, AR_TRAILING_SLASH): Removed.
5212         (ar_scan): Don't use it.  Don't #ifdef AR_TRAILING_SLASH; just look
5213         for a slash in the archive at run time.
5214         (ar_name_equal): Rewrote .o hacking to not use AR_NAMELEN, and to
5215         cope with trailing-slash and non-trailing-slash archives.
5217         * main.c (main) [! SETVBUF_REVERSED]: Test this instead of USGr3 et al.
5218         [SETVBUF_REVERSED]: Always allocate a buffer ourselves.
5220         * load.c (load_average) [sgi]: Use sysmp call.
5222         * compatMakefile (INSTALL_DATA, INSTALL_PROGRAM): Define.
5223         ($(bindir)/$(instname), $(mandir)/make.$(manext)): Use them.
5225         * make.h [HAVE_VFORK_H]: #include <vfork.h>.
5226         (vfork, VFORK_NAME): Don't define.
5227         * job.c (start_job): Use "vfork" in place of VFORK_NAME.
5229         * make.h [HAVE_LIMITS_H, HAVE_SYS_PARAM_H]: If #define'd, #include
5230         the each file.  Rearranged PATH_MAX hacking.
5231         * job.c: Rearranged NGROUPS_MAX hacking.
5233         * remake.c (fstat, time): Don't declare.
5235         * compatMakefile (defines): Value is @DEFS@.
5236         (LOADLIBES): Value is @LIBS@.
5237         (extras): Value is @LIBOBJS@.
5238         (ARCHIVES, ARCHIVES_SRC, ALLOCASRC): Removed.
5239         * arscan.c, ar.c: Surround body with #ifndef NO_ARCHIVES.
5241         * misc.c [! HAVE_UNISTD_H]: Test instead of !POSIX to decl get*id.
5243         * make.h [GETCWD_MISSING]: Test instead of !USG && !POSIX et al.
5244         (getcwd): Just declare if present.  If not, declare as a macro
5245         using getwd, and declare getwd.
5246         [PATH_MAX] (GET_PATH_MAX): #define to PATH_MAX.
5247         * main.c (main, log_working_directory): Use getcwd instead of getwd.
5249         * main.c (main) [SETLINEBUF_MISSING]: Test this instead of USG.
5251         * make.h (SIGHANDLER, SIGNAL): Removed.
5252         (RETSIGTYPE): Define if not #define'd.
5253         * main.c (main): Use signal in place of SIGNAL.
5255         * main.c [SYS_SIGLIST_MISSING]: Test instead of USG.
5257         * job.c (search_path) [GETGROUPS_MISSING]: Test instead of USG.
5258         [HAVE_UNISTD_H]: Test instead of POSIX to not decl getgroups.
5260         * main.c [! HAVE_UNISTD_H]: Test instead of !POSIX to decl chdir.
5261         [! STDC_HEADERS]: Test instead of !POSIX to decl exit & atof.
5263         * job.c (child_handler), commands.c (fatal_error_signal): Return
5264         RETSIGTYPE instead of int.
5265         * main.c (main): Declare fatal_error_signal and child_handler here
5266         to return RETSIGTYPE; removed top-level decl of former.
5268         * commands.c (fatal_error_signal), job.c (unblock_sigs, start_job),
5269         main.c [SIGSETMASK_MISSING]: Test this instead of USG.
5271 Wed Jun 10 22:06:13 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5273         * job.c [HAVE_WAITPID]: Test this instead of USG.
5274         [! HAVE_UNISTD_H]: Test this instead of !POSIX to declare misc fns.
5275         (GID_T): Don't #define.
5276         (search_path): Use gid_t instead of GID_T.
5277         [GETDTABLESIZE_MISSING, SYS_SIGLIST_MISSING, DUP2_MISSING]: Test
5278         these individually instead of USG for all.
5279         * make.h (ctime): Don't declare.  #include time.h instead.
5280         [HAVE_UNISTD_H]: #include <unistd.h> and #define POSIX #ifdef
5281         _POSIX_VERSION.
5282         * dir.c [__GNU_LIBRARY__] (D_NAMLEN): Define to use d_namlen member.
5283         * make.h [NEED_MEMORY_H]: Only include memory.h #ifdef this.
5285         * arscan.c: Removed #ifdef mess about string.h et al.
5286         Just #include make.h instead.
5287         * make.h (fstat, atol): Declare.
5289         * commands.c (fatal_error_signal): Don't use sigmask to check for
5290         propagated signals; use ||s instead.
5291         (PROPAGATED_SIGNAL_MASK): Removed.
5292         (fatal_error_signal) [POSIX]: Use sigprocmask in place of sigsetmask.
5294         * variable.c (variable_buffer, variable_buffer_length,
5295         initialize_variable_output, variable_output): Moved to expand.c;
5296         made all static.
5297         (struct output_state, save_variable_output,
5298         restore_variable_output): Removed.
5299         * expand.c (initialize_variable_output): Put a NUL at the beginning
5300         of the new buffer after allocating it.
5301         (allocated_variable_expand_for_file): Don't use
5302         {save,restore}_variable_output.  Do it by hand instead, keeping
5303         state on the stack instead of malloc'ing it.
5304         (allocated_variable_expand): Removed.
5305         * variable.h (allocated_variable_expand): Define here as macro.
5306         (variable_buffer_output, initialize_variable_output,
5307         save_variable_output, restore_variable_output): Removed decls.
5309         * read.c (conditional_line): For an if cmd, if any elt of the
5310         conditionals stack is ignoring, just push a new level that ignores
5311         and return 1; don't evaluate the condition.
5313 Thu Jun  4 21:01:20 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5315         * main.c (main): Put #ifdef's around frobbing SIGSYS and SIGBUS.
5317         * job.c (getdtablesize): Don't declare or #define if already #define'd.
5319 Wed Jun  3 23:42:36 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5321         * file.c (snap_deps): If `.EXPORT_ALL_VARIABLES' is a target, set
5322         export_all_variables.
5323         * make.texinfo (Variables/Recursion): Document .EXPORT_ALL_VARIABLES.
5325 Tue Jun  2 21:08:35 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5327         * Version 3.62.13.
5329         * commands.c (set_file_variables): Calculate length for ^D and ?D
5330         individually, making sure to give them at least enough space for "./".
5332         * make.h [CRAY]: #define signal to bsdsignal.
5334         * default.c (default_variables) [CRAY]: Define PC, SEGLDR,
5335         CF77PPFLAGS, CF77PP, CFT, CF, and FC.
5337         * arscan.c (AR_HDR_SIZE): Define to sizeof (struct ar_hdr), if it
5338         wasn't defined by <ar.h>.
5340 Thu May 28 00:56:53 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5342         * Version 3.62.12.
5344 Tue May 26 01:26:30 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5346         * rule.c (new_pattern_rule): Initialize LASTRULE to nil, not
5347         pattern_rules.
5349 Mon May 25 19:02:15 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5351         * main.c (decode_switches): Initialize all the long_option elt members.
5353 Thu May 21 16:34:24 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5355         * make.texinfo (Text Functions): Correct filter-out description.
5357 Tue May 19 20:50:01 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5359         * compatMakefile (realclean): Don't remove backup files.
5361         * main.c (decode_switches): Allocate ARGC+1 elts in `other_args'.
5363 Sun May 17 16:38:48 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5365         * Version 3.62.11.
5367 Thu May 14 16:42:33 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5369         * job.c (reap_children): Don't die if wait returns EINTR.
5371 Wed May 13 18:28:25 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5373         * job.c (reap_children): Always run the next command for a
5374         successful target.  If we are going to die, we don't want to leave
5375         the target partially made.
5377 Tue May 12 00:39:19 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5379         * job.c (construct_command_argv_internal): After loop, if we only
5380         have one word, check it for being a shell command.
5382         * main.c (decode_switches): Allocate ARGC slots in other_args to
5383         begin with, so we never need to worry about growing it.
5384         If we get a non-option arg and POSIXLY_CORRECT is in the
5385         environment, break out of the loop.  After the loop, add all remaining
5386         args to other_args list.
5388         * main.c (decode_switches): For positive_int and floating switches
5389         when optarg is nil, use next arg if it looks right (start with a
5390         digit, or maybe decimal point for floating).
5392         * variable.c (define_automatic_variables): Always set SHELL to
5393         default if it comes from the environment.  Set its export bit.
5394         * make.texinfo (Environment): Document change.
5396 Mon May 11 00:32:46 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5398         * Version 3.62.10.
5400         * compatMakefile (tags, TAGS): Use vars for cmds.
5401         (ETAGS, CTAGS): Define.
5403         * main.c (decode_switches): If a switches elt has a nil long_name,
5404         make the long option name elt be "".
5405         Fixed loop to not ignore all the options.
5407         * make.texinfo (Option Summary): Added long options.
5409         * main.c (switches): Changed -m's description to "-b".
5410         (decode_switches): When printing the usage message, don't print
5411         switches whose descriptions start with -.
5412         When constructing the list of names for switch -C, search the
5413         switches vector for switches whose descriptions are "-C".
5415         * main.c (switches): Call -S --no-keep-going, not --dont-keep-going.
5416         Call -I --include-dir, not --include-path.
5417         (long_option_aliases): Added --new == -W, --assume-new == -W,
5418         --assume-old == -o, --max-load == -l, --dry-run == -n, --recon == -n,
5419         --makefile == -f.
5421         * main.c (switches): Removed bogus "silent" elt.
5422         (long_option_aliases): Define new var.
5423         (decode_switches): Add long_option_aliases onto the end of the long
5424         options vector created for getopt_long.
5425         Look through long_option_aliases for extra names to list
5426         in usage message.
5428 Sat May  9 00:21:05 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5430         * main.c (log_working_directory): Fixed to properly not print the
5431         leaving message when we haven't printed the entering message.
5433 Fri May  8 21:55:35 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5435         * main.c (struct command_switch): Added elts `long_name',
5436         `description', and `argdesc'.
5437         (switches): Added initializers for new members.
5438         (decode_switches): Rewritten to use getopt_long.
5439         * compatMakefile (GETOPT, GETOPT_SRC): Define.
5440         (objs, srcs): Include them.
5442         * job.c (child_died): Renamed to dead_children; made static.
5443         (child_handler): Increment dead_children instead of setting child_died.
5444         (reap_children): Decrement dead_children instead of clearing
5445         child_died.  The point of all this is to avoid printing "waiting
5446         for unfinished jobs" when we don't actually need to block.
5447         This happened when multiple SIGCHLDs before reap_children was called.
5449         * job.c (reap_children): If ERR is set, so we don't call start_job
5450         on the child being reaped, instead set its command_state to
5451         cs_finished.
5452         (reap_children, child_handler, new_job): I added several
5453         debugging printf's while fixing this.  I left them in if (debug_flag)
5454         because they may be useful for debugging this stuff again.
5456 Wed May  6 22:02:37 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5458         * read.c (read_makefile): v_export is not 1.
5460 Mon May  4 17:27:37 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5462         * Version 3.62.9.
5464         * variable.c (export_all_variables): New variable.
5465         (target_environment): Export variables whose `export' member is
5466         v_default if export_all_variables is set and their names are benign.
5467         * variable.h: Declare export_all_variables.
5468         * read.c (read_makefile): If export or unexport is given with no
5469         args, set or clear export_all_variables, respectively.
5471         * variable.c (target_environment): Exclude MAKELEVEL in the loop,
5472         so it isn't duplicated when we add it at the end.
5474 Sun May  3 17:44:48 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5476         * Version 3.62.8.
5478         * variable.h (struct variable): Added new member `export'.
5479         * variable.c (define_variable_in_set): Initialize it to v_default.
5480         (target_environment): Don't check for .NOEXPORT.
5481         Export variables whose `export' member is v_default and that would
5482         have been exported under .NOEXPORT, and variables whose `export'
5483         member is v_export.
5484         (try_variable_definition): Return the variable defined.
5485         * variable.h (try_variable_definition): Changed decl.
5486         * read.c (read_makefile): Recognize `export' and `unexport' directives.
5488 Fri May  1 11:39:38 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5490         * main.c (main) [POSIX]: Reversed args to sigaddset.
5492 Thu Apr 30 17:33:32 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5494         * job.c [POSIX || !USG] (unblock_sigs): New fn.
5495         (start_job): Block signals before forking.
5496         (new_job): Unblock signals after putting the new child on the chain.
5497         * main.c (main) [POSIX]: Use sigset_t fatal_signal_set instead of
5498         int fatal_signal_mask.
5500         * load.c [sgi] (LDAV_CVT): Define.
5502 Wed Apr 29 17:15:59 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5504         * Version 3.62.7.
5506         * load.c (load_average) [sgi]: Clear the high bit of the address
5507         from the symbol table before looking it up in kmem.
5509         * misc.c (fatal, makefile_fatal): Put *** in fatal error messages.
5510         (remake_file): No longer needed in message here.
5512         * main.c (die): Call reap_children with BLOCK==1.
5514 Tue Apr 28 20:44:35 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5516         * rule.c (freerule): Don't set LASTRULE->next if LASTRULE is nil.
5518 Sun Apr 26 15:09:51 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5520         * rule.c (count_implicit_rule_limits): Initialize LASTRULE to nil,
5521         not to head of chain.  Extract next ptr before we might do
5522         freerule, and use that for next iteration.
5523         (freerule): Still do next ptr frobbing if LASTRULE is nil.
5525 Tue Apr 21 03:16:29 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5527         * job.c (child_error): Removed extra %s from error msg format.
5529         * Version 3.62.6.
5531         * job.c (reap_children): Don't start later commands in a sequence
5532         if ERR is nonzero.
5534         * job.c (new_job): Always call reap_children with BLOCK==0 first thing.
5536         * job.c (reap_children): New function; work that used to be done in
5537         child_handler.
5538         (child_died): New global var.
5539         (child_handler): Now just sets child_died.
5540         (wait_for_children): Removed.
5541         (unknown_children_possible, block_signals, unblock_signals,
5542         push_signals_blocked_p, pop_signals_blocked_p): Removed.
5543         (child_execute_job): Removed call to unblock_signals.
5544         (new_job): Removed calls to push_signals_blocked_p and
5545         pop_signals_blocked_p.
5546         * job.h: Declare reap_children, not wait_for_children.
5547         * commands.c (fatal_error_signal), job.c (new_job),
5548         load.c [LDAV_BASED] (wait_to_start_job), main.c (die),
5549         remake.c (update_goal_chain), function.c (expand_function: `shell'):
5550         Changed wait_for_children calls to reap_children.
5551         Some needed to be loops to wait for all children to die.
5552         * commands.c (fatal_error_signal), main.c (main,
5553         log_working_directory), function.c (expand_function): Removed calls
5554         to push_signals_blocked_p and pop_signals_blocked_p.
5555         * job.h: Removed decls.
5557         * job.h: Added copyright notice.
5559 Wed Apr 15 02:02:40 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5561         * job.c (child_error): No *** for ignored error.
5563 Tue Apr 14 18:31:21 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5565         * implicit.c (DEBUGP2): Use do ... while (0) instead of if ... else to
5566         avoid compiler warnings.
5568         * read.c (parse_file_seq): Don't remove ./ when it is followed by a
5569         blank.
5571 Mon Apr 13 21:56:15 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5573         * make.h (DEBUGPR): Use do ... while (0) instead of if ... else to
5574         avoid compiler warnings.
5576         * remake.c (notice_finished_file): Run file_mtime on the also_make
5577         files, so vpath_search can happen.
5579         * GNUmakefile (tests): Use perl test suite from csa@sw.stratus.com.
5580         (alpha-files): Include test suite tar file.
5582 Fri Apr  3 00:50:13 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5584         * Version 3.62.5.
5586 Wed Apr  1 05:31:18 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5588         * remake.c (update_file, update_file_1): Do check_renamed on elts
5589         of dep chains when traversing them.  Something unrelated might have
5590         renamed one of the files the dep chain points to.
5592         * file.c (rename_file): If FILE has been renamed, follow its
5593         `renamed' ptr, so we get to the final real FILE.  Using the renamed
5594         ones loses because they are not in the hash table, so the removal
5595         code loops infinitely.
5597         * read.c (read_all_makefiles): Clobber null terminator into
5598         MAKEFILES expansion, so string passed to read_makefile is properly
5599         terminated.
5601 Mon Mar 30 20:18:02 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5603         * commands.c (set_file_variables): $* for archive member with
5604         explicit cmds is stem of member, not of whole `lib(member)'.
5606 Thu Mar 26 15:24:38 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5608         * Version 3.62.4.
5610 Tue Mar 24 05:20:51 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5612         * rule.c (new_pattern_rule): Rules are identical only if all their
5613         targets match (regardless of order).
5615 Wed Mar 11 13:49:54 1992  Roland McGrath  (roland@geech.gnu.ai.mit.edu)
5617         * remake.c (remake_file): Changed error "no way to make" to "no
5618         rule to make".  Fiat Hugh.
5620         * make.texinfo (Last Resort): Describe %:: rules and new .DEFAULT
5621         behavior.
5623         * remake.c (update_file_1): Only use .DEFAULT cmds if FILE is not a
5624         target.
5626 Tue Mar 10 18:13:13 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5628         * remote-stub.c, remote-cstms.c (start_remote_job): Take new arg,
5629         environment to pass to child.
5630         * job.c (start_job): Pass it.
5632 Mon Mar  9 19:00:11 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5634         * file.c (enter_file): Also strip ./s here, to get command-line
5635         target names.
5637         * remote-cstms.c: Add comment telling people to leave me alone.
5639         * compatMakefile (manpage install): Remove target before copying.
5641 Tue Mar  3 18:43:21 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5643         * make.texinfo (Missing): Renamed to "Incompatibilities and ...".
5644         Added paragraph describing $? incompatibility with Unix and POSIX.2.
5646 Sun Mar  1 15:50:54 1992  Roland McGrath  (roland@nutrimat.gnu.ai.mit.edu)
5648         * function.c (expand_function: `shell'): Don't declare fork or pipe.
5649         Use vfork instead of fork.
5651 Tue Feb 25 22:05:32 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5653         * make.texinfo (Chained Rules): Clarify .PRECIOUS to save
5654         intermediate files.
5656         * load.c [sun] (LDAV_CVT): Define to divide by FSCALE.
5658 Sun Feb 16 02:05:16 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5660         * Version 3.62.3.
5662 Sat Feb 15 17:12:20 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5664         * compatMakefile (makeinfo): Use emacs batch-texinfo-format fn.
5666 Fri Feb 14 00:11:55 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5668         * read.c (read_makefile): Correctly handle define & endef in ifdefs.
5670         * read.c (record_files): Pass arg for %s in error msg.
5672         * main.c (main) [__IBMR2, POSIX]: Use correct (a la USGr3) setvbuf
5673         call.
5675 Wed Feb 12 12:07:39 1992  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5677         * make.texinfo (Libraries/Search): Say it does /usr/local/lib too.
5679 Sun Feb  9 23:06:24 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5681         * read.c (read_makefile): Check for extraneous `endef' when ignoring.
5683 Thu Feb  6 16:15:48 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5685         * Version 3.62.2.
5687 Tue Feb  4 20:04:46 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5689         * job.c (construct_command_argv_internal): Correctly ignore
5690         whitespace after backslash-NL.
5692 Fri Jan 31 18:30:05 1992  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5694         * compatMakefile: Ignore errors from chgrp and chmod when installing.
5696 Wed Jan 29 18:13:30 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5698         * main.c (main): When setting MAKELEVEL in the env to re-exec,
5699         allocate space so as not to clobber past the end of the old string.
5701         * make.h [HAVE_ALLOCA_H]: Include <alloca.h>
5702         * compatMakefile (defines): Document HAVE_ALLOCA_H.
5704 Mon Jan 20 13:40:05 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5706         * make.h [VFORK_MISSING]: Use fork instead.
5707         * compatMakefile (defines): Document same.
5709         * job.c (construct_command_argv_internal): Don't create an empty
5710         arg if backslash-NL is at beginning of word.
5712 Sun Jan 19 16:26:53 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5714         * main.c [DGUX]: Call setvbuf as for USGr3.
5716         * job.c (construct_command_argv_internal): Notice correctly that
5717         backslash-NL is the end of the arg (because it is replaced with a
5718         space).
5720 Thu Jan 16 18:42:38 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5722         * job.c (construct_command_argv_internal): If SHELL is nil, set it
5723         to default_shell before proceeding.
5725         * make.h [sgi]: No alloca.h, after all.
5727 Wed Jan 15 12:30:04 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5729         * read.c (multi_glob): Cons up the chain of the results of glob
5730         from back to front, so it comes out in forward order.
5732         * job.c (construct_command_argv_internal): Don't eat char following
5733         backslash-NL.
5735 Mon Jan 13 19:16:56 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5737         * Version 3.62.1.
5739         * default.c (default_variables) [ultrix]: GET=get, like USG.
5741         * job.c (construct_command_argv_internal): Remove tabs following
5742         backslash-NL combos in the input line, so they don't show up when
5743         that line is printed.
5745         * read.c (read_makefile): Don't collapse_continuations the line on
5746         input; do it on the copy we do remove_comments on.
5747         For rule lines, collapse_continuations the line after chopping
5748         ";cmds" off the end, so we don't eat conts in the cmds.
5749         Give error for ";cmds" with no rule.
5750         * job.c (construct_command_argv_internal): Eat backslash-NL combos
5751         when constructing the line to recurse on for slow, too.
5753 Sat Jan 11 02:20:27 1992  Roland McGrath  (roland@albert.gnu.ai.mit.edu)
5755         * file.c (enter_file): Don't strip leading `./'s.
5756         * read.c (parse_file_seq): Take new arg STRIP; if nonzero, do it here.
5757         * default.c (set_default_suffixes), function.c (string_glob),
5758         read.c (read_makefile), rule.c (install_pattern_rule): Change callers.
5760         * default.c (default_variables) [_IBMR2]: FC=xlf
5762         * job.c (construct_command_argv_internal): Turn backslash-NL and
5763         following whitespace into a single space, rather than just eating
5764         the backslash.
5766         * make.texinfo (Copying): @include gpl.texinfo, rather than
5767         duplicating its contents.
5769 Fri Nov  8 20:06:03 1991  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5771         * job.c (construct_command_argv_internal): Make sure not to bother
5772         processing an empty line.
5774         * Version 3.62.0.
5776         * job.c (construct_command_argv_internal): Always recurse for slow;
5777         simple case didn't handle finding newlines.
5779 Tue Nov  5 18:51:10 1991  Roland McGrath  (roland@wookumz.gnu.ai.mit.edu)
5781         * job.c (construct_command_argv_internal): Set RESTP properly when
5782         slow; don't \ify past a newline.
5784 Fri Nov  1 19:34:28 1991  Roland McGrath  (roland@churchy.gnu.ai.mit.edu)
5786         * make.h [sgi]: #include <alloca.h>.
5790 See ChangeLog.1 for earlier changes.