Numerous updates and bug fixes.
[make/kirr.git] / ChangeLog
blob30f13b9ce12a3bc425e4201fd33fc7fed9de1fbf
1 2004-03-20  Paul D. Smith  <psmith@gnu.org>
3         * variable.c (do_variable_definition): Don't append from the
4         global set if a previous non-appending target-specific variable
5         definition exists.  Reported by Oliver Schmidt <oschmidt@gmx.net>
6         (with fix).
8         * expand.c (reference_variable): Don't give up on variables with
9         no value that have the target-specific append flag set: they might
10         have a value after all.  Reported by Oliver Schmidt
11         <oschmidt@gmx.net> (with fix) and also by Maksim A. Nikulin
12         <nikulin@dx1cmd.inp.nsk.su>.
14         * rule.c (count_implicit_rule_limits): Don't delete patterns which
15         refer to absolute pathnames in directories that don't exist: some
16         portion of the makefile could create those directories before we
17         match the pattern.  Fixes bugs #775 and #108.
19         Fixes from Jonathan R. Grant  <jg-make@jguk.org>:
21         * main.c (main): Free makefile_mtimes if we have any.
22         * README.W32.template: Update documentation for the current status
23         of the MS-Windows port.
24         * NMakefile.template (MAKE): Add "MAKE = nmake".  A conflicting
25         environment variable is sometimes already defined which causes the
26         build to fail.
27         * main.c (debug_signal_handler): Only define this function if
28         SIGUSR1 is available.
30         Fixes for OS/2 from Andreas Beuning <andreas.buening@nexgo.de>:
32         * configure.in [OS/2]: Relocate setting of HAVE_SA_RESTART for OS/2.
33         * README.OS2.template: Documentation updates.
34         * build.template: Add LIBINTL into LOADLIBES.  Add $CFLAGS to the
35         link line for safety.
36         * maintMakefile (build.sh.in): Remove an extraneous ")".
37         * job.c (child_execute_job): Close saved FDs.
38         * job.c (exec_command) [OS/2]: exec_command(): If the command
39         can't be exec'ed and if the shell is not Unix-sh, then try again
40         with argv = { "cmd", "/c", ... }. Normally, this code is never
41         reached for the cmd shell unless the command really doesn't exist.
42         (construct_command_argv_internal) [OS/2]: The code for cmd
43         handling now uses new_argv = { "cmd", "/c", "original line", NULL}.
44         The CMD builtin commands are case insensitive so use strcasecmp().
46 2004-03-19  Paul D. Smith  <psmith@gnu.org>
48         * read.c (do_define): Re-order line counter increment so the count
49         is accurate (we were losing one line per define).  Reported by
50         Dave Yost <Dave@Yost.com>.
52 2004-03-06  Paul D. Smith  <psmith@gnu.org>
54         * configure.in (HAVE_ANSI_COMPILER): Define if we have an ANSI/ISO
55         compiler.
56         * make.h: Convert uses of __STDC__ to HAVE_ANSI_COMPILER.
57         * misc.c (message,error,fatal): Ditto.
58         * configh.dos.template: Define HAVE_ANSI_COMPILER.
59         * config.h.W32.template: Ditto.
60         * config.h-vms.template: Ditto.
61         * config.ami.template: Ditto.
63 2004-03-04  Paul D. Smith  <psmith@gnu.org>
65         * README.template: Add a note about broken /bin/sh on SunOS
66         4.1.3_U1 & 4.1.4.  Fix up Savannah links.
68         * misc.c (message, error, fatal): Don't use "..." if we're using
69         varargs.  ansi2knr should handle this but it doesn't work: it
70         translates "..." to va_dcl etc. but _AFTER_ the preprocessor is
71         done.  On many systems (SunOS for example) va_dcl is a #define.
72         So, force the use of the non-"..." version on pre-ANSI compilers.
74         * maintMakefile (sign-dist): Create some rules to help automate
75         the new GNU ftp upload method.
77 2004-02-24  Paul D. Smith  <psmith@gnu.org>
79         * config.h.W32.template: Add HAVE_STDARG_H
80         * config.h-vms.template: Ditto.
81         * config.ami.template: Ditto.
83 2004-02-23  Jonathan Grant  <jg-make@jguk.org>
85         * README.W32.template: Add a notation about -j with BATCH_MODE_ONLY.
86         * build_w32.bat: Remove extra "+".
88 2004-02-23  Paul D. Smith  <psmith@gnu.org>
90         * make.h: Create an UNUSED macro to mark unused parameters.
91         * (many): Clean up warnings by applying UNUSED, fixing
92         signed/unsigned incompatibilities, etc.
94         * acinclude.m4 (AC_STRUCT_ST_MTIM_NSEC): Add quoting to silence
95         autoconf warnings.
96         * filedef.h: Name the command_state enumeration.
97         * file.c (set_command_state): Use the enumeration in the function
98         argument.
100         * configure.in: Explicitly set SET_MAKE to empty, to disable
101         MAKE=make even when no make already exists.  Fix bug #3823.
103 2004-02-22  Paul D. Smith  <psmith@gnu.org>
105         * maintMakefile: Perl script to clean up all non-CVS files.  Use
106         it on all the subdirectories for the cvs-clean target.
108         * main.c (decode_switches): Require non-empty strings for all our
109         string command-line options.  Fixes Debian bug # 164165.
111         * configure.in: Check for stdarg.h and varargs.h.
112         * make.h (USE_VARIADIC): Set this if we can use variadic functions
113         for printing messages.
114         * misc.c: Check USE_VARIADIC instead of (obsolete) HAVE_STDVARARGS.
115         (message): Ditto.
116         (error): Ditto.
117         (fatal): Ditto.
119         A number of patches for OS/2 support from Andreas Buening
120         <andreas.buening@nexgo.de>:
122         * job.c (child_handler) [OS/2]: Allow this on OS/2 but we have to
123         disable the SIGCHLD handler.
124         (reap_children) [OS/2]: Remove special handling of job_rfd.
125         (set_child_handler_action_flags) [OS/2]: Use this function in OS/2.
126         (new_job) [OS/2]: Disable the SIGCHLD handler on OS/2.
127         * main.c (main) [OS/2]: Special handling for paths in OS/2.
128         * configure.in [OS/2]: Force SA_RESTART for OS/2.
129         * Makefile.am (check-regression): Use $(EXEEXT) for Windows-type
130         systems.
132 2004-02-21  Paul D. Smith  <psmith@gnu.org>
134         * w32/subproc/sub_proc.c (process_easy) [W32]: Christoph Schulz
135         <mail@kristov.de> reports that if process_begin() fails we don't
136         handle the error condition correctly in all cases.
137         * w32/subproc/w32err.c (map_windows32_error_to_string): Make sure
138         to have a newline on the message.
140         * job.c (construct_command_argv_internal): Add "test" to UNIX
141         sh_cmds[].  Fixes Savannah bug # 7606.
143 2004-02-04  Paul D. Smith  <psmith@gnu.org>
145         * job.c (vms_handle_apos) [VMS]: Fix various string handling
146         situations in VMS DCL.  Fixes Savannah bug #5533.  Fix provided by
147         Hartmut Becker <Hartmut.Becker@hp.com>.
149 2004-01-21  Paul D. Smith  <psmith@gnu.org>
151         * job.c (load_too_high): Implement an algorithm to control the
152         "thundering herd" problem when using -l to control job creation
153         via the load average.  The system only recomputes the load once a
154         second but we can start many jobs in a second.  To solve this we
155         keep track of the number of jobs started in the last second and
156         apply a weight to try to guess what a correct load would be.
157         The algorithm was provided by Thomas Riedl <thomas.riedl@siemens.com>.
158         Also fixes bug #4693.
159         (reap_children): Decrease the job count for this second.
160         (start_job_command): Increase the job count for this second.
162         * read.c (conditional_line): Expand the text after ifn?def before
163         checking to see if it's a single word.  Fixes bug #7257.
165 2004-01-09  Paul D. Smith  <psmith@gnu.org>
167         * file.c (print_file): Recurse to print all targets in
168         double-colon rules.  Fixes bug #4518, reported (with patch) by
169         Andrew Chatham <chatham@google.com>.
171 2004-01-07  Paul D. Smith  <psmith@gnu.org>
173         * acinclude.m4: Remove make_FUNC_SETVBUF_REVERSED.
174         * configure.in: Change make_FUNC_SETVBUF_REVERSED to
175         AC_FUNC_SETVBUF_REVERSED.
177         * doc/make.texi (Target-specific): Fix Savannah bug #1772.
178         (MAKE Variable): Fix Savannah bug #4898.
180         * job.c (construct_command_argv_internal): Add "!" to the list of
181         shell escape chars.  POSIX sh allows it to appear before a
182         command, to negate the exit code.  Fixes bug #6404.
184         * implicit.c (pattern_search): When matching an implicit rule,
185         remember which dependencies have the ignore_mtime flag set.
186         Original fix provided in Savannah patch #2349, by Benoit
187         Poulot-Cazajous <Benoit.Poulot-Cazajous@jaluna.com>.
189 2003-11-22  Paul D. Smith  <psmith@gnu.org>
191         * README.W32.template (Outputs): Clarification on -j with
192         BATCH_MODE_ONLY_SEHLL suggested by Jonathan R. Grant
193         <jg-make@jguk.org>.
195 2003-11-02  Paul D. Smith  <psmith@gnu.org>
197         * function.c (func_if): Strip all the trailing whitespace from the
198         condition, then don't expand it.  Fixed bug # 5798.
200         * expand.c (recursively_expand_for_file): If we're expanding a
201         variable with no file context, then use the variable's context.
202         Fixes bug # 6195.
204 2003-10-21  Paul D. Smith  <psmith@gnu.org>
206         * main.c (log_working_directory): Add newlines to printf()s.
208         * README.cvs: Add a note to ignore warnings during autoreconf.
210         * maintMakefile (po_repo): Set a new URL for PO file updates.
211         (get-config/config.guess get-config/config.sub): Get these files
212         from the Savannah config project instead of ftp.gnu.org.
214 2003-08-22  Paul D. Smith  <psmith@gnu.org>
216         * misc.c (xmalloc, xrealloc): Add one to 0 sizes, to cater to
217         systems which don't yet implement the C89 standard :-/.
219 2003-07-18  Paul D. Smith  <psmith@gnu.org>
221         * dir.c (directory_contents_hash_1, directory_contents_hash_1)
222         [WINDOWS32]: Initialize hash.
224 2003-06-19  Earnie Boyd  <earnie@uses.sf.net>
226         * dir.c (read_dirstream): Provide a workaround for broken versions of
227         the MinGW dirent structure.
229 2003-05-30  Earnie Boyd  <earnie@users.sf.net>
231         * w32/include/dirent.h: Add __MINGW32__ filter.
233 2003-05-30  Earnie Boyd  <earnie@users.sf.net>
235         * make.h: Add global declaration of *make_host.
236         * main.c (print_usage): Remove local declaration of *make_host.
237         (print_version): Display "This program built for ..." after Copyright
238         notice.
240 2003-05-30  Earnie Boyd  <earnie@users.sf.net>
242         * doc/make.texi: Change "ifinfo" to "ifnottex" as suggested by the
243         execution of "makeinfo --html make.texi".
245 2003-04-30  Paul D. Smith  <psmith@gnu.org>
247         * build.template: Make some changes to maybe allow this script to
248         work on DOS/Windows/OS2 systems.  Suggested by Andreas Buening.
250         * README.OS2.template: New file for OS/2 support.  Original
251         contributed by Andreas Buening.
252         * configure.in: Invoke new pds_AC_DOS_PATHS macro to test for
253         DOS-style paths.
255 2003-04-19  Paul D. Smith  <psmith@gnu.org>
257         Fix bug #1405: allow a target to match multiple pattern-specific
258         variables.
260         * rule.c (create_pattern_var, lookup_pattern_var): Move these to
261         variable.c, where they've always belonged.
262         * rule.h: Move the prototypes and struct pattern_var as well.
263         * variable.c (initialize_file_variables): Invoke
264         lookup_pattern_var() in a loop, until no more matches are found.
265         If a match is found, create a new variable set for the target's
266         pattern variables.  Then merge the contents of each matching
267         pattern variable set into the target's pattern variable set.
268         (lookup_pattern_var): Change this function to be usable
269         in a loop.  It takes a starting position: if NULL, start at the
270         beginning; if non-NULL, start with the pattern variable after that
271         position, and return the next matching pattern.
272         (create_pattern_var): Create a unique instance of
273         pattern-specific variables for every definition in the makefile.
274         Don't combine the same pattern together.  This allows us to
275         process the variable handling properly even when the same pattern
276         is used multiple times.
277         (parse_variable_definition): New function: break out the parsing
278         of a variable definition line from try_variable_definition.
279         (try_variable_definition): Call parse_variable_definition to
280         parse.
281         (print_variable_data_base): Print out pattern-specific variables.
282         * variable.h (struct variable): Remember when a variable is
283         conditional.  Also remember its flavor.
284         (struct pattern_var): Instead of keeping a variable set, we just
285         keep a single variable for each pattern.
286         * read.c (record_target_var): Each pattern variable contains only a
287         single variable, not a set, so create it properly.
288         * doc/make.texi (Pattern-specific): Document the new behavior.
290 2003-04-17  Paul D. Smith  <psmith@gnu.org>
292         * dir.c (file_exists_p) [VMS]: Patch provided with Bug #3018 by
293         Jean-Pierre Portier <portierjp2@free.fr>.  I don't understand the
294         file/directory naming rules for VMS so I can't tell whether this
295         is correct or not.
297 2003-04-09  Paul D. Smith  <psmith@gnu.org>
299         * configure.in (HAVE_DOS_PATHS): Define this on systems that need
300         DOS-style pathnames: backslash separators and drive specifiers.
302 2003-03-28  Paul D. Smith  <psmith@gnu.org>
304         * file.c (snap_deps): If .SECONDARY with no targets is given, set
305         the intermediate flag on all targets.  Fixes bug #2515.
307 2003-03-24  Paul D. Smith  <psmith@gnu.org>
309         * configure.in, Makefile.am, glob/Makefile.am, doc/Makefile.am:
310         Upgrade to autoconf 2.57 and automake 1.7.3.
312         * job.c: More OS/2 changes from Andreas Buening.
314         * file.c (print_file): Fix variable initialization.
315         Fixes bug #2892.
317         * remake.c (notice_finished_file):
319         * make.h (ENULLLOOP): Set errno = 0 before invoking the command;
320         some calls (like readdir()) return NULL in valid situations
321         without resetting errno.  Fixes bug #2846.
323 2003-02-25  Paul D. Smith  <psmith@gnu.org>
325         Port to OS/2 (__EMX__) by Andreas Buening <andreas.buening@nexgo.de>.
327         * job.c (_is_unixy_shell) [OS/2]: New function.
328         Set default shell to /bin/sh.
329         (reap_children): Close the job_rfd pipe here since we don't use a
330         SIGCHLD handler.
331         (set_child_handler_action_flags): define this to empty on OS/2.
332         (start_job_command): Close the jobserver pipe and use
333         child_execute_job() instead of fork/exec.
334         (child_execute_job): Rewrite to handle stdin/stdout FDs and spawn
335         rather than exec'ing, then reconfigure stdin/stdout.
336         (exec_command): Rewrite to use spawn instead of exec.  Return the
337         PID of the child.
339         * main.c (main) [OS/2]: Call initialize_main().  Handle argv[0] as
340         in DOS.  Handle the TEMP environment variable as in DOS.  Don't
341         use a SIGCHLD handler on OS/2.  Choose a shell as in DOS.  Don't
342         use -j in DOS mode.  Use child_execute_job() instead of
343         exec_command().
345         * function.c (func_shell) [OS/2]: Can't use fork/exec on OS/2: use
346         spawn() instead.
348         * job.h [OS/2]: Move CLOSE_ON_EXEC here from job.c.  Add
349         prototypes that return values.
351         * remake.c (f_mtime) [OS/2]: Handle FAT timestamp offsets for OS/2.
353         * read.c (readline) [OS/2]: Don't handle CRLF specially on OS/2.
354         * default.c (default_suffixes) [OS/2]: Set proper default suffixes
355         for OS/2.
356         * vpath.c (construct_vpath_list) [OS/2]: Handle OS/2 paths like
357         DOS paths.
359 2003-02-24  Paul D. Smith  <psmith@gnu.org>
361         * default.c [VMS]: New default rules for .cxx -> .obj compiles.
362         * job.c (child_execute_job) [VMS]: New code for handling spawn().
363         (child_execute_job) [VMS]: Handle error status properly.
364         Patches provided by Hartmut Becker <Hartmut.Becker@compaq.com>.
366         * function.c (func_shell): Use EINTRLOOP() while reading from the
367         subshell pipe (Fixes bug #2502).
368         * job.c (free_child): Use EINTRLOOP() while writing tokens to the
369         jobserver pipe.
370         * main.c (main): Ditto.
372 2003-01-30  Paul D. Smith  <psmith@gnu.org>
374         * read.c (eval): eval() was not fully reentrant, because the
375         collapsed buffer was static.  Change it to be an automatic
376         variable so that eval() can be invoked recursively.
377         Fixes bug # 2238.
378         (eval): Apply patch # 1022: fix memory reference error on long
379         target-specific variable lines.
380         Patch provided by Steve Brown <Steve.Brown@macquarie.com>.
382         * function.c (check_numeric): Combine the is_numeric() function
383         into this function, since it's only called from one place.
384         Constify this function.  Have it print the incorrect string in the
385         error message.  Fixes bug #2407.
386         (strip_whitespace): Constify.
387         (func_if): Constify.
388         * expand.c (expand_argument): Constify.
390 2003-01-29  Paul D. Smith  <psmith@gnu.org>
392         Fix bug # 2169, also reported by other people on various systems.
394         * make.h: Some systems, such as Solaris and PTX, do not fully
395         implement POSIX-compliant SA_RESTART functionality; important
396         system calls like stat() and readdir() can still fail with EINTR
397         even if SA_RESTART has been set on the signal handler.  So,
398         introduce macros EINTRLOOP() and ENULLLOOP() which can loop on
399         EINTR for system calls which return -1 or 0 (NULL), respectively,
400         on error.
401         Also, remove the old atomic_stat()/atomic_readdir() and
402         HAVE_BROKEN_RESTART handling.
404         * configure.in: Remove setting of HAVE_BROKEN_RESTART.
406         * arscan.c (ar_member_touch): Use EINTRLOOP() to wrap fstat().
407         * remake.c (touch_file): Ditto.
409         * commands.c (delete_target): Use EINTRLOOP() to wrap stat().
410         * read.c (construct_include_path): Ditto.
411         * remake.c (name_mtime): Ditto.
412         * vpath.c (selective_vpath_search): Ditto.
413         * dir.c (find_directory): Ditto.
414         (local_stat): Ditto.
415         (find_directory): Use ENULLLOOP() to wrap opendir().
416         (dir_contents_file_exists_p): Use ENULLLOOP() to wrap readdir().
418         * misc.c: Remove HAVE_BROKEN_RESTART, atomic_stat(), and
419         atomic_readdir() handling.
421 2003-01-22  Paul D. Smith  <psmith@gnu.org>
423         * function.c (func_call): Fix Bug #1744.  If we're inside a
424         recursive invocation of $(call ...), mask any of the outer
425         invocation's arguments that aren't used by this one, so that this
426         invocation doesn't "inherit" them accidentally.
428 2002-12-05  Paul D. Smith  <psmith@gnu.org>
430         * function.c (subst_expand): Valery Khamenia reported a
431         pathological performance hit when doing substitutions on very
432         large values with lots of words: turns out we were invoking
433         strlen() a ridiculous number of times.  Instead of having each
434         call to sindex() call strlen() again, keep track of how much of
435         the text we've seen and pass the length to sindex().
437 2002-11-19  Paul D. Smith  <psmith@gnu.org>
439         * README.cvs, configure.in: Upgrade to require autoconf 2.56.
442 2002-11-16  Paul D. Smith  <psmith@gnu.org>
444         * NMakefile.template (OBJS): Add hash.c object file.
445         * SMakefile.template (srcs): Ditto.
446         * Makefile.ami (objs): Ditto.
447         * build_w32.bat: Ditto.
449         * Makefile.DOS.template: Remove extra dependencies.
451 2002-10-25  Paul D. Smith  <psmith@gnu.org>
453         * expand.c (install_variable_buffer): New function.  Install a new
454         variable_buffer context and return the previous one.
455         (restore_variable_buffer): New function.  Free the current
456         variable_buffer context and put a previously saved one back.
457         * variable.h: Prototypes for {install,restore}_variable_buffer.
458         * function.c (func_eval): Push a new variable_buffer context
459         before we eval, then restore the old one when we're done.
460         Fixes Bug #1517.
462         * read.c (install_conditionals): New function.  Install a new
463         conditional context and return the previous one.
464         (restore_conditionals): New function.  Free the current
465         conditional context and put a previously saved one back.
466         (eval): Use the {install,restore}_conditionals for "include"
467         handling.
468         (eval_buffer): Use {install,restore}_conditionals to preserve the
469         present conditional state before we evaluate the buffer.
470         Fixes Bug #1516.
472         * doc/make.texi (Quick Reference): Add references to $(eval ...)
473         and $(value ...).
474         (Recursion): Add a variable index entry for CURDIR.
476         * README.cvs: Update to appropriate versions.
477         * Makefile.am (nodist_loadavg_SOURCES): automake gurus point out I
478         don't need to copy loadavg.c: automake is smart enough to create
479         it for me.  Still have a bug in automake related to ansi2knr tho.
481 2002-10-14  Paul D. Smith  <psmith@gnu.org>
483         * remake.c (notice_finished_file): Only touch targets if they have
484         at least one command (as per POSIX).  Resolve Bug #1418.
486         * *.c: Convert to using ANSI C-style function definitions.
487         * Makefile.am: Enable the ansi2knr feature of automake.
488         * configure.in: ditto.
490 2002-10-13  Paul D. Smith  <psmith@gnu.org>
492         * commands.c (set_file_variables): Bug #1379: Don't use alloca()
493         for automatic variable values like $^, etc.  In the case of very
494         large lists of prerequisites this causes problems.  Instead reuse
495         a static buffer (resizeable) for each variable.
497         * read.c (eval): Fix Bug #1391: allow "export" keyword in
498         target-specific variable definitions.  Check for it and set an
499         "exported" flag.
500         (record_target_var): Set the export field to v_export if the
501         "exported" flag is set.
502         * doc/make.texi (Target-specific): Document the ability to use
503         "export".
505         * doc/make.texi: Change the name of the section on automatic
506         variables from "Automatic" to "Automatic Variables".  Added text
507         clarifying the scope of automatic variables.
509 2002-10-04  Paul D. Smith  <psmith@gnu.org>
511         * read.c (eval): Allow SysV $$@ variables to use {} braces as well
512         as () braces.
513         (record_files): Ditto.
515         * expand.c (variable_expand_string): In $(A:x=y) expansion limit
516         the search for the '=' to only within the enclosing parens.
518 2002-10-03  Paul D. Smith  <psmith@gnu.org>
520         Version 3.80 released.
522         * dir.c: Change hash functions to use K&R function definition style.
523         * function.c: Ditto.
524         * read.c: Ditto.
525         * variable.c: Ditto.
527         Update to automake 1.7.
529         * Makefile.am (AUTOMAKE_OPTIONS): Update to require 1.7.
530         (pdf): Remove this target as automake now provides one.
532         * configure.in: Change AM_CONFIG_HEADER to AC_CONFIG_HEADERS.
534 2002-09-30  Martin P.J. Zinser  <zinser@decus.de>
536         * makefile.com: Updates for GNU make 3.80.
537         * makefile.vms: Ditto.
539 2002-09-23  Paul D. Smith  <psmith@gnu.org>
541         * read.c (enum make_word_type): Remove w_comment.
542         (get_next_mword): Don't treat comment characters as special; where
543         this function is used we will never see a comment (it's stripped
544         before we get here) and treating comments specially means that
545         targets like "foo\#bar" aren't handled properly.
547 2002-09-18  Paul D. Smith  <psmith@gnu.org>
549         * doc/make.texi (Bugs): Update with some info on Savannah, etc.
551         * read.c (eval): Expansion of arguments to export/unexport was
552         ignoring all arguments after the first one.  Change the algorithm
553         to expand the whole line once, then parse the results.
555 2002-09-17  Paul D. Smith  <psmith@gnu.org>
557         Fix Bug #940 (plus another bug I found while looking at this):
559         * read.c (record_target_var): enter_file() will add a new entry if
560         it's a double-colon target: we don't want to do that in this
561         situation.  Invoke lookup_file() and only enter_file() if it does
562         not already exist.  If the file we get back is a double-colon then
563         add this variable to the "root" double-colon target.
565         * variable.c (initialize_file_variables): If this file is a
566         double-colon target but is not the "root" target, then initialize
567         the root and make the root's variable list the parent of our
568         variable list.
570 2002-09-13  Paul D. Smith  <psmith@gnu.org>
572         * doc/make.texi (MAKE Variable): Add some indexing for "+".
574         * hash.c (round_up_2): Get rid of a warning.
576 2002-09-12  Paul D. Smith  <psmith@gnu.org>
578         * Makefile.am (loadavg_SOURCES, loadavg.c): Tiptoe around automake
579         so it doesn't complain about getloadavg.c.
581         * commands.c (set_file_variables): Make sure we always alloca() at
582         least 1 character for the value of $? (for '\0').
584 2002-09-11  Paul D. Smith  <psmith@gnu.org>
586         * hash.h (STRING_COMPARE, ISTRING_COMPARE, STRING_N_COMPARE): Fix
587         macro to use RESULT instead of the incorrect _RESULT_.
589         * make.h (HAVE_BROKEN_RESTART): Add prototypes for atomic_stat()
590         and atomic_readdir().  We need to #include dirent.h to get this to
591         work.
592         * misc.c (atomic_readdir): Fix typos.
594 2002-09-10  Paul D. Smith  <psmith@gnu.org>
596         * read.c (eval): Expand variable lists given to export and
597         unexport, so that "export $(LIST_OF_VARIABLES)" (etc.) works.
598         (conditional_line): Ditto for "ifdef".  Fixes bug #103.
600         * doc/make.texi (Variables/Recursion): Document this.
601         (Conditional Syntax): And here.
603 2002-09-09  Paul D. Smith  <psmith@gnu.org>
605         * configure.in: Check for memmove().
607 2002-09-07  Paul D. Smith  <psmith@gnu.org>
609         * configure.in (HAVE_BROKEN_RESTART): Define this on PTX systems;
610         Michael Sterrett <msterret@coat.com> reports that while it has
611         SA_RESTART, it does not work properly.
613         * misc.c (atomic_stat): If HAVE_BROKEN_RESTART, create a function
614         that invokes stat() and loops to do it again if it returns EINTR.
615         (atomic_readdir): Ditto, with readdir().
617         * make.h (stat, readdir): If HAVE_BROKEN_RESTART, alias stat()
618         and readdir() to atomic_stat() and atomic_readdir().
620 2002-09-04  Paul D. Smith  <psmith@gnu.org>
622         * implicit.c (pattern_search): Daniel <barkalow@reputation.com>
623         reports that GNU make sometimes doesn't recognize that targets can
624         be made, when directories can be created as prerequisites.  He
625         reports that changing the order of predicates in the DEP->changed
626         flag test so that lookup_file() is always performed, solves this
627         problem.
629 2002-08-08  Paul D. Smith  <psmith@gnu.org>
631         * configure.in: Require a newer version of gettext.
633         * misc.c (perror_with_name): Translate the format string (for
634         right-to-left language support).
635         (pfatal_with_name): Ditto.
637         * main.c: Create a static array of strings to store the usage
638         text.  This is done to facilitate translations.
639         (struct command_switch): Remove argdesc and description fields.
640         (switches): Remove values for obsolete fields.
641         (print_usage): Print each element of the usage array.
643         * hash.c: Change function definitions to be K&R style.
645 2002-08-02  Paul D. Smith  <psmith@gnu.org>
647         * NEWS: Remove the mention of .TARGETS; we aren't going to publish
648         this one because it's too hard to get right.  We'll look at it for
649         a future release.
650         * main.c (main): Don't create the .TARGETS variable.
651         * variable.c (handle_special_var): Don't handle .TARGETS.
653 2002-08-01  Paul D. Smith  <psmith@gnu.org>
655         * main.c (switches): Add a new option, -B (--always-make).  If
656         specified, make will rebuild all targets that it encounters even
657         if they don't appear to be out of date.
658         (always_make_flag): New flag.
659         * make.h: Extern always_make_flag.
660         * remake.c (update_file_1): Check always_make_flag; if it's set we
661         will always rebuild any target we can, even if none of its
662         prerequisites are newer.
663         * NEWS: Mention it.
665         * doc/make.texi (Shell Function): Make it clear that make
666         variables marked as "export" are not passed to instances of the
667         shell function.
669         Add new introspection variable .VARIABLES and .TARGETS.
671         * variable.c (handle_special_var): New function.  If the variable
672         reference passed in is "special" (.VARIABLES or .TARGETS),
673         calculate the new value if necessary.  .VARIABLES is handled here:
674         walk through the hash of defined variables and construct a value
675         which is a list of the names.  .TARGETS is handled by
676         build_target_list().
677         (lookup_variable): Invoke handle_special_var().
678         * file.c (build_target_list): Walk through the hask of known files
679         and construct a list of the names of all the ones marked as
680         targets.
681         * main.c (main): Initialize them to empty (and as simple variables).
682         * doc/make.texi (Special Variables): Document them.
683         * NEWS: Mention them.
685         * variable.h (struct variable): Add a new flag "exportable" which
686         is true if the variable name is valid for export.
687         * variable.c (define_variable_in_set): Set "exportable" when a new
688         variable is defined.
689         (target_environment): Use the "exportable" flag instead of
690         re-checking the name here... an efficiency improvement.
692 2002-07-31  Paul D. Smith  <psmith@gnu.org>
694         * config.h-vms.template: Updates to build on VMS.  Thanks to
695         Brian_Benning@aksteel.com for helping verify the build.
696         * makefile.com: Build the new hash.c file.
697         * hash.h: Use strcpmi(), not stricmp(), in the
698         HAVE_CASE_INSENSITIVE_FS case.
700 2002-07-30  Paul D. Smith  <psmith@gnu.org>
702         * hash.h (ISTRING_COMPARE, return_ISTRING_COMPARE): Add missing
703         backslashes to the HAVE_CASE_INSENSITIVE_FS case.
704         Reported by <Brian_Benning@aksteel.com>.
706 2002-07-10  Paul D. Smith  <psmith@gnu.org>
708         * variable.c (pop_variable_scope): Remove variable made unused by
709         new hash infrastructure.
710         * read.c (dep_hash_cmp): Rewrite this to handle ignore_mtime
711         comparisons as well as name comparisons.
712         * variable.h: Add a prototype for new hash_init_function_table().
713         * file.c (lookup_file): Remove variables made unused by new hash
714         infrastructure.
715         * dir.c (directory_contents_hash_2): Missing return of hash value.
716         (dir_contents_file_exists_p): Remove variables made unused by new
717         hash infrastructure.
720         Installed Greg McGary's integration of the hash functions from the
721         GNU id-utils package:
723 2002-07-10  Greg McGary  <greg@mcgary.org>
725         * scripts/functions/filter-out: Add literals to to the
726         pattern space in order to add complexity, and trigger
727         use of an internal hash table.  Fix documentation strings.
728         * scripts/targets/INTERMEDIATE: Reverse order of files
729         passed to expected `rm' command.
731 2002-07-10  Greg McGary  <greg@mcgary.org>
733         * Makefile.am (SRCS): Add hash.c (noinst_HEADERS): Add hash.h
734         * hash.c: New file, taken from id-utils.
735         * hash.h: New file, taken from id-utils.
737         * make.h (HASH, HASHI): Remove macros.
738         (find_char_unquote): Change arglist in decl.
739         (hash_init_directories): New function decl.
740         * variable.h (hash.h): New #include.
741         (MAKELEVEL_NAME, MAKELEVEL_LENGTH): New constants.
742         * filedef.h (hash.h): New #include.
743         (struct file) [next]: Remove member.
744         (file_hash_enter): Remove function decl.
745         (init_hash_files): New function decl.
747         * ar.c (ar_name): Delay call to strlen until needed.
748         * main.c (initialize_global_hash_tables): New function.
749         (main): Call it.  Use MAKELEVEL_NAME & MAKELEVEL_LENGTH.
750         * misc.c (remove_comments): Pass char constants to find_char_unquote.
751         * remake.c (notice_finished_file): Update last_mtime on `prev' chain.
753         * dir.c (hash.h): New #include.
754         (struct directory_contents) [next, files]: Remove members.
755         [ctime]: Add member for VMS.  [dirfiles]: Add hash-table member.
756         (directory_contents_hash_1, directory_contents_hash_2,
757         directory_contents_hash_cmp): New functions.
758         (directories_contents): Change type to `struct hash_table'.
759         (struct directory) [next]: Remove member.
760         (directory_hash_1, directory_hash_2, directory_hash_cmp): New funcs.
761         (directory): Change type to `struct hash_table'.
762         (struct dirfile) [next]: Remove member.
763         [length]: Add member.  [impossible]: widen type to fill alignment gap.
764         (dirfile_hash_1, dirfile_hash_2, dirfile_hash_cmp): New functions.
765         (find_directory): Use new hash table package.
766         (dir_contents_file_exists_p): Likewise.
767         (file_impossible): Likewise.
768         (file_impossible_p): Likewise.
769         (print_dir_data_base): Likewise.
770         (open_dirstream): Likewise.
771         (read_dirstream): Likewise.
772         (hash_init_directories): New function.
774         * file.c (hash.h): New #include.
775         (file_hash_1, file_hash_2, file_hash_cmp): New functions.
776         (files): Change type to `struct hash_table'.
777         (lookup_file): Use new hash table package.
778         (enter_file): Likewise.
779         (remove_intermediates): Likewise.
780         (snap_deps): Likewise.
781         (print_file_data_base): Likewise.
783         * function.c
784         (function_table_entry_hash_1, function_table_entry_hash_2,
785         function_table_entry_hash_cmp): New functions.
786         (lookup_function): Remove `table' argument.
787         Use new hash table package.
788         (struct a_word) [chain, length]: New members.
789         (a_word_hash_1, a_word_hash_2, a_word_hash_cmp): New functions.
790         (struct a_pattern): New struct.
791         (func_filter_filterout): Pass through patterns noting boundaries
792         and '%', if present.  Note a_word length.  Use a hash table if
793         arglists are large enough to justify cost.
794         (function_table_init): Renamed from function_table.
795         (function_table): Declare as `struct hash_table'.
796         (FUNCTION_TABLE_ENTRIES): New constant.
797         (hash_init_function_table): New function.
799         * read.c (hash.h): New #include.
800         (read_makefile): Pass char constants to find_char_unquote.
801         (dep_hash_1, dep_hash_2, dep_hash_cmp): New functions.
802         (uniquize_deps): Use hash table to efficiently identify duplicates.
803         (find_char_unquote): Accept two char-constant stop chars, rather
804         than a string constant, avoiding zillions of calls to strchr.
805         Tighten inner search loops to test only for desired delimiters.
807         * variable.c (variable_hash_1, variable_hash_2,
808         variable_hash_cmp): New functions.
809         (variable_table): Declare as `struct hash_table'.
810         (global_variable_set): Remove initialization.
811         (init_hash_global_variable_set): New function.
812         (define_variable_in_set): Use new hash table package.
813         (lookup_variable): Likewise.
814         (lookup_variable_in_set): Likewise.
815         (initialize_file_variables): Likewise.
816         (pop_variable_scope): Likewise.
817         (create_new_variable_set): Likewise.
818         (merge_variable_sets): Likewise.
819         (define_automatic_variables): Likewise.
820         (target_environment): Likewise.
821         (print_variable_set): Likewise.
823 2002-07-10  Paul D. Smith  <psmith@gnu.org>
825         Implement the SysV make syntax $$@, $$(@D), and $$(@F) in the
826         prerequisite list.  A real SysV make will expand the entire
827         prerequisites list _twice_: we don't do that as it's a big
828         backward-compatibility problem.  We only replace those specific
829         variables.
831         * read.c (record_files): Replace any $@, $(@D), and $(@F) variable
832         references left in the list of prerequisites.  Check for .POSIX as
833         we record targets, so we can disable non-POSIX behavior while
834         reading makefiles as well as running them.
835         (eval): Check the prerequisite list to see if we have anything
836         that looks like a SysV prerequisite variable reference.
838 2002-07-09  Paul D. Smith  <psmith@gnu.org>
840         * doc/make.texi (Prerequisite Types): Add a new section describing
841         order-only prerequisites.
843         * read.c (uniquize_deps): If we have the same file as both a
844         normal and order-only prereq, get rid of the order-only prereq,
845         since the normal one supersedes it.
847 2002-07-08  Paul D. Smith  <psmith@gnu.org>
849         * AUTHORS: Added Greg McGary to the AUTHORS file.
850         * NEWS: Blurbed order-only prerequisites.
851         * file.c (print_file): Show order-only deps properly when printing
852         the database.
854         * maintMakefile: Add "update" targets for wget'ing the latest
855         versions of various external files.  Taken from Makefile.maint in
856         autoconf, etc.
858         * dosbuild.bat: Somehow we got _double_ ^M's.  Remove them.
859         Reported by Eli Zaretskii <eliz@is.elta.co.il>.
861 2002-07-07  Paul D. Smith  <psmith@gnu.org>
863         * po/*.po: Remove.  We'll use wget to retrieve them at release
864         time.
866         * variable.c (do_variable_definition) [W32]: On W32 using cmd
867         rather than a shell you get an exception.  Make sure we look up
868         the variable.  Patch provided by Eli Zaretskii <eliz@is.elta.co.il>.
870         * remake.c (notice_finished_file): Fix handling of -t flag.
871         Patch provided by Henning Makholm <henning@makholm.net>.
873         * implicit.c (pattern_search): Some systems apparently run short
874         of stack space, and using alloca() in this function caused an
875         overrun.  I modified it to use xmalloc() on the two variables
876         which seemed like they might get large.  Fixes Bug #476.
878         * main.c (print_version): Update copyright notice to conform with
879         GNU standards.
880         (print_usage): Update help output.
882         * function.c (func_eval): Create a new make function, $(eval
883         ...).  Expand the arguments, put them into a buffer, then invoke
884         eval_buffer() on the resulting string.
885         (func_quote): Create a new function, $(quote VARNAME).  Inserts
886         the value of the variable VARNAME without expanding it any
887         further.
889         * read.c (struct ebuffer): Change the linebuffer structure to an
890         "eval buffer", which can be either a file or a buffer.
891         (eval_makefile): Move the code in the old read_makefile() which
892         located a makefile into here: create a struct ebuffer with that
893         information.  Have it invoke the new function eval() with that
894         ebuffer.
895         (eval_buffer): Create a new function that creates a struct ebuffer
896         that holds a string buffer instead of a file.  Have it invoke
897         eval() with that ebuffer.
898         (eval): New function that contains the guts of the old
899         read_makefile() function: this function parses makefiles.  Obtains
900         data to parse from the provided ebuffer.  Some modifications to
901         make the flow of the function cleaner and clearer.  Still could
902         use some work here...
903         (do_define): Takes a struct ebuffer instead of a FILE*.  Read the
904         contents of the define/endef variable from the ebuffer.
905         (readstring): Read the next line from a string-style ebuffer.
906         (readline): Read the next line from an ebuffer.  If it's a string
907         ebuffer, invoke readstring().  If it's a FILE* ebuffer, read it
908         from the file.
910         * dep.h (eval_buffer): Prototype eval_buffer();
912         * variable.c (do_variable_definition): Make sure that all
913         non-target-specific variables are registered in the global set.
914         If we're invoked from an $(eval ...) we might be inside a $(call
915         ...) or other function which has pushed a variable scope; we still
916         want to define our variables from evaluated makefile code in the
917         global scope.
919 2002-07-03  Greg McGary  <greg@mcgary.org>
921         * dep.h (struct dep) [ignore_mtime]: New member.
922         [changed]: convert to a bitfield.
923         * implicit.c (pattern_search): Zero ignore_mtime.
924         * main.c (main, handle_non_switch_argument): Likewise.
925         * rule.c (convert_suffix_rule): Likewise.
926         * read.c (read_all_makefiles, read_makefile, multi_glob): Likewise.
927         (read_makefile): Parse '|' in prerequisite list.
928         (uniquize_deps): Consider ignore_mtime when comparing deps.
929         * remake.c (update_file_1, check_dep): Don't force remake for
930         dependencies that have d->ignore_mtime.
931         * commands.c (FILE_LIST_SEPARATOR): New constant.
932         (set_file_variables): Don't include a
933         prerequisite in $+, $^ or $? if d->ignore_mtime.
934         Define $|.
936 2002-06-18  Paul D. Smith  <psmith@gnu.org>
938         * make.texinfo: Updates for next revision.  New date/rev/etc.
939         Recreate all Info menus.  Change license on the manual to the GNU
940         Free Documentation License.  A number of typos.
941         (Variables Simplify): Don't use "-" before it's defined.
942         (Automatic Prerequisites): Rewrite the target example to work
943         properly if the compile fails.  Remove incorrect comments about
944         how "set -e" behaves.
945         (Text Functions): Move the "word", "wordlist", "words", and
946         "firstword" functions here, from "File Name Functions".
947         * make-stds.texi: Update from latest GNU version.
948         * fdl.texi: (created) Import the latest GNU version.
950 2002-06-06  Paul D. Smith  <psmith@gnu.org>
952         * variable.c (do_variable_definition): New function: extract the
953         part of try_variable_definition() that actually sets the value
954         into a separate function.
955         (try_variable_definition): Call do_variable_definition() after
956         parsing the variable definition string.
957         (define_variable_in_set): Make the name argument const.
959         * variable.h (enum variable_flavor): Make public.
960         (do_variable_definition): Create prototype.
962         * read.c (read_all_makefiles): Create a new built-in variable,
963         MAKEFILE_LIST.
964         (read_makefile): Add each makefile read in to this variable value.
966 2002-05-18  Eli Zaretskii  <eliz@is.elta.co.il>
968         * Makefile.DOS.template: Tweak according to changes in the
969         distribution.  Add back the dependencies of *.o files.
971         * configh.dos.template: Synchronize with config.h.in.
973 2002-05-09  Paul D. Smith  <psmith@gnu.org>
975         * file.c (file_timestamp_now): Use K&R function declaration.
977         * getloadavg.c (getloadavg): Merge setlocale() fix from sh-utils
978         getloadavg.c.  Autoconf thinks QNX is SVR4-like, but it isn't, so
979         #undef it.  Remove predefined setup of NLIST_STRUCT.  Decide
980         whether to include nlist.h based on HAVE_NLIST_H.  Change obsolete
981         NLIST_NAME_UNION to new HAVE_STRUCT_NLIST_N_UN_N_NAME.
982         * configure.in (NLIST_STRUCT): Define this if we have nlist.h and
983         nlist.n_name is a pointer rather than an array.
985         * acinclude.m4 (make_FUNC_SETVBUF_REVERSED): Grab the latest
986         version of AC_FUNC_SETVBUF_REVERSED from autoconf CVS.
987         * configure.in: Use it instead of the old version.
989         * main.c (main): Prefer setvbuf() to setlinebuf().
991 2002-05-08  Paul D. Smith  <psmith@gnu.org>
993         * Makefile.am (make_LDADD): Add GETLOADAVG_LIBS.
994         (loadavg_LDADD): Ditto.
996 2002-04-29  Paul D. Smith  <psmith@gnu.org>
998         * expand.c (recursively_expand_for_file): Rename
999         recursively_expand() to recursively_expand_for_file() and provide
1000         an extra argument, struct file.  If the argument is provided, set
1001         the variable scope to that of the file before expanding.
1002         * variable.h (recursively_expand): Make this a macro that invokes
1003         recursively_expand_for_file() with a NULL file pointer.
1004         * variable.c (target_environment): Call the renamed function and
1005         provide the current file context.
1006         Fixes Debian bug #144306.
1008 2002-04-28  Paul D. Smith  <psmith@gnu.org>
1010         Allow $(call ...) user-defined variables to be self-referencing
1011         without throwing an error.  Allows implementation of transitive
1012         closures, among other possibly useful things.
1013         Requested by: Philip Guenther <guenther@sendmail.com>
1015         * variable.h (struct variable): Add a new field: exp_count, and
1016         new macros to hold its size and maximum value.
1017         (warn_undefined): Make this a macro.
1018         * variable.c (define_variable_in_set): Initialize it.
1019         * expand.c (recursively_expand): If we detect recursive expansion
1020         of a variable, check the exp_count field.  If it's greater than 0
1021         allow the recursion and decrement the count.
1022         (warn_undefined): Remove this (now a macro in variable.h).
1023         * function.c (func_call): Before we expand the user-defined
1024         function, modify its exp_count field to contain the maximum
1025         number of recursive calls we'll allow.  After the call, reset it
1026         to 0.
1028 2002-04-21  Paul D. Smith  <psmith@gnu.org>
1030         Modified to use latest autoconf (2.53), automake (1.6.1), and
1031         gettext (0.11.1).  We're using gettext's new "external" support,
1032         to avoid including libintl source with GNU make.
1034         * README.cvs: New file.  Explain how to build GNU make from CVS.
1036         * configure.in: Modify checking for the system glob library.
1037         Use AC_EGREP_CPP instead of AC_TRY_CPP.  Remove the setting of
1038         GLOBDIR (we will always put "glob" in SUBDIRS, so automake
1039         etc. will manage it correctly).  Set an automake conditional
1040         USE_LOCAL_GLOB to decide whether to compile the glob library.
1042         * getloadavg.c (main): Include make.h in the "TEST" program to
1043         avoid warnings.
1045         * Makefile.am: Remove special rules for loadavg.  Replace them
1046         with Automake capabilities for building extra programs.
1048         * signame.c: This file does nothing if the system provide
1049         strsignal().  If not, it implements strsignal().  If the system
1050         doesn't define sys_siglist, then we make our own; otherwise we use
1051         the system version.
1052         * signame.h: Removed.
1054         * main.c (main): No need to invoke signame_init().  Update copyright.
1056         * ABOUT-NLS: Removed.
1057         * gettext.c: Removed.
1058         * gettext.h: Get a simplified copy from the gettext package.
1059         * po/*: Created.
1060         * i18n/*.po: Moved to po/.
1061         * i18n/: Removed.
1063         * config/*: Created.  Contains package configuration helper files.
1064         * config.guess, config.sub: Moved to config directory.
1066         * configure.in (AC_CONFIG_FILES): Add po/Makefile.in, config/Makefile.
1067         Rework to use new-style autoconf features.  Use the "external"
1068         mode for gettext.  Make the build.sh config file conditional on
1069         whether build.sh.in exists, to avoid autoconf errors.
1070         * acinclude.m4: Removed almost all macros as being obsolete.
1071         Rewrote remaining macros to use AC_DEFINE.
1072         * acconfig.h: Removed.
1074         * Makefile.am (EXTRA_DIST): Add config/config.rpath.  Use a
1075         conditional to handle customs support.  Remove special handling
1076         for i18n features.
1078 2002-04-20  Paul D. Smith  <psmith@gnu.org>
1080         * function.c (func_call): Don't mark the argument variables $1,
1081         etc. as recursive.  They've already been fully expanded so
1082         there's no need to do it again, and doing so strips escaped $'s.
1083         Reported by Sebastian Glita <glseba@yahoo.com>.
1085         * remake.c (notice_finished_file): Walk through double-colon
1086         entries via the prev field, not the next field!
1087         Reported by Greg McGary <greg@mcgary.org>.
1089         * main.c (main): If the user specifies -q and asks for a specific
1090         target which is a makefile, we got an assert.  In that case it
1091         turns out we should continue normally instead.
1093         * i18n/de.po, i18n/fr.po: Installed an updated translation.
1095         * i18n/he.po: Installed a new translation.
1097 2002-01-07  Paul D. Smith  <psmith@gnu.org>
1099         * i18n/es.po, i18n/ru.po: Installed an updated translation.
1101 2001-12-04  Paul D. Smith  <psmith@gnu.org>
1103         * i18n/ja.po: Installed an updated translation.
1105 2001-09-04  Paul D. Smith  <psmith@gnu.org>
1107         * i18n/da.po: Installed an updated translation.
1109 2001-08-03  Paul D. Smith  <psmith@gnu.org>
1111         * i18n/fr.po: Installed an updated translation.
1112         Resolves Debian bug #106720.
1114 2001-06-13  Paul D. Smith  <psmith@gnu.org>
1116         * i18n/da.po, configure.in (ALL_LINGUAS): Installed a new
1117         translation.
1119 2001-06-11  Paul D. Smith  <psmith@gnu.org>
1121         * i18n/ko.po: Installed a new translation.
1123 2001-05-06  Paul D. Smith  <psmith@gnu.org>
1125         Modify the EINTR handling.
1127         * job.c (new_job): Reorganize the jobserver algorithm.  Reorder
1128         the way in which we manage the file descriptor/signal handler race
1129         trap to be more efficient.
1131 2001-05-06  Paul Eggert  <eggert@twinsun.com>
1133         Restart almost all system calls that are interrupted, instead
1134         of worrying about EINTR.  The lone exception is the read() for
1135         job tokens.
1137         * configure.in (HAVE_SA_RESTART): New macro.
1138         (MAKE_JOBSERVER): Define to 1 only if HAVE_SA_RESTART.
1139         * main.c (main): Use SA_RESTART instead of the old,
1140         nonstandard SA_INTERRUPT.
1142         * configure.in (AC_CHECK_FUNCS): Add bsd_signal.
1143         * main.c (bsd_signal): New function or macro,
1144         if the implementation doesn't supply it.
1145         (The bsd_signal function will be in POSIX 1003.1-200x.)
1146         (HANDLESIG): Remove.
1147         (main, FATAL_SIG): Use bsd_signal instead of signal or HANDLESIG.
1149         * make.h (EINTR_SET): Remove.
1150         (SA_RESTART): New macro.
1152         * arscan.c (ar_member_touch): Don't worry about EINTR.
1153         * function.c (func_shell): Likewise.
1154         * job.c (reap_children, free_child, new_job): Likewise.
1155         * main.c (main): Likewise.
1156         * remake.c (touch_file, name_mtime): Likewise.
1158         * arscan.c (ar_member_touch): Fix bug uncovered by EINTR removal;
1159         if fstat failed with errno!=EINTR, the error was ignored.
1161         * job.c (set_child_handler_action_flags): New function.
1162         (new_job): Use it to temporarily clear the SIGCHLD action flags
1163         while reading the token.
1165 2001-05-02  Paul D. Smith  <psmith@gnu.org>
1167         * job.c (start_job_command): Don't add define/endef per-line flags
1168         to the top-level flags setting.
1170 2001-04-03  Paul D. Smith  <psmith@gnu.org>
1172         * arscan.c (VMS_get_member_info,ar_scan) [VMS]: VMS sets the low
1173         bit on error, so check for odd return values, not non-0 return
1174         values.
1175         (VMS_get_member_info): Calculate the timezone differences correctly.
1176         Reported by John Fowler <jfowler@nyx.net>.
1179 2001-03-14  Paul D. Smith  <psmith@gnu.org>
1181         * variable.c (lookup_variable) [VMS]: Null-terminate the variable
1182         value before invoking define_variable().
1183         Reported by John Fowler <jfowler@nyx.net>.
1185 2001-02-07  Paul D. Smith  <psmith@gnu.org>
1187         * read.c (record_target_var): If we reset the variable due to a
1188         command-line variable setting overriding it, turn off the "append"
1189         flag.
1191 2001-01-17  Paul D. Smith  <psmith@gnu.org>
1193         * variable.c (lookup_variable) [VMS]: When getting values from the
1194         environment, allocate enough space for the _value_ plus escapes,
1195         not enough space for the name plus escapes :-/.
1196         Reported by John Fowler <jfowler@nyx.net>.
1198         * remake.c (f_mtime): Removed the "***" prefix from the mod time
1199         warnings that make generates, so it doesn't look like an error.
1200         Reported by Karl Berry <karl@gnu.org>.
1203         Fix for PR/2020:  Rework appended target-specific variables.  I'm
1204         fairly confident this algorithm is finally correct.
1206         * expand.c (allocated_variable_append): Rewrite.  Instead of
1207         expanding each appended variable then adding all the expanded
1208         strings together, we append all the unexpanded values going up
1209         through the variable set contexts, then expand the final result.
1210         This behaves just like non-target-specific appended variable
1211         values, while the old way didn't in various corner cases.
1212         (variable_append): New function: recursively append the unexpanded
1213         value of a variable, walking from the outermost variable scope to
1214         the innermost.
1215         * variable.c (lookup_variable): Remove the code that looked up the
1216         variable set list if the found variable was "append".  We don't
1217         need this anymore.
1218         (lookup_variable_in_set): Make this non-static so we can use it
1219         elsewhere.
1220         (try_variable_definition): Use lookup_variable_in_set() rather
1221         than faking out current_variable_set_list by hand (cleanup).
1222         * variable.h: Add a prototype for the now non-static
1223         lookup_variable_in_set().
1225 2000-11-17  Paul D. Smith  <psmith@gnu.org>
1227         * remake.c (f_mtime) [WINDOWS32]: On various advice, I changed the
1228         WINDOWS32 port to assume timestamps can be up to 3 seconds away
1229         before throwing a fit.
1231 2000-11-17  Paul D. Smith  <psmith@gnu.org>
1233         * read.c (readline): CRLF calculations had a hole, if you hit the
1234         buffer grow scenario just right.  Reworked the algorithm to avoid
1235         the need for len or lastlen at all.  Problem description with
1236         sample code chages provided by Chris Faylor <cgf@redhat.com>.
1238 2000-10-24  Paul D. Smith  <psmith@gnu.org>
1240         * gettext.c (SWAP): Declare this with the prototype, otherwise
1241         some systems don't work (non-32-bit?  Reported for Cray T3E).
1242         Reported by Thorstein Thorsteinsson <thor@signe.teokem.lu.se>.
1244 2000-10-05  Paul D. Smith  <psmith@gnu.org>
1246         * acinclude.m4 (AM_LC_MESSAGES): Remove undefined macro
1247         AM_LC_MESSAGES; it doesn't seem to do anything anyway??
1249         * i18n/gl.po, configure.in (ALL_LINGUAS): New Galician translation.
1251 2000-09-22  Paul D. Smith  <psmith@gnu.org>
1253         * gettext.c: Don't #define _GETTEXT_H here; we only include some
1254         parts of the real gettext.h here, and we expect to really include
1255         the real gettext.h later.  If we keep this #define, it's ignored.
1257 2000-09-21  Paul D. Smith  <psmith@gnu.org>
1259         * main.c (log_working_directory): Rework the text to use complete
1260         sentences, to make life simpler for the translators.
1262 2000-08-29  Paul D. Smith  <psmith@gnu.org>
1264         * file.c (remove_intermediates): Print a debug message before we
1265         remove intermediate files, so the user (if she uses -d) knows
1266         what's going on.
1268 2000-08-21  Paul D. Smith  <psmith@gnu.org>
1270         * variable.c (try_variable_definition): Change how we handle
1271         target-specific append variable defns: instead of just setting the
1272         value, expand it as an append _but_ only within the current
1273         target's context.  Otherwise we lose all but the last value if the
1274         variable is appended more than once within the current target
1275         context.  Fixes PR/1831.
1277 2000-08-16  Paul D. Smith  <psmith@gnu.org>
1279         * function.c (func_shell): Nul-terminate the buffer before
1280         printing an exec error message (just in case it's not!).
1281         Fixes PR/1860, reported by Joey Hess <joey@valinux.com>.
1283 2000-07-25  Paul D. Smith  <psmith@gnu.org>
1285         * job.c (construct_command_argv_internal): Add "~" to the list of
1286         sh_chars[] which disallow optimizing out the shell call.
1288 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1290         * NEWS, make.texinfo: Document .LOW_RESOLUTION_TIME, which
1291         supersedes --disable-nsec-timestamps.
1292         * make.texinfo: Consistently use "time stamp" instead of "timestamp".
1293         * README: Remove --disable-nsec-timestamps.
1295         * filedef.h (struct file.low_resolution_time): New member.
1296         * file.c (snap_deps): Add support for .LOW_RESOLUTION_TIME.
1297         * remake.c (update_file_1):
1298         Avoid spurious rebuilds due to low resolution time stamps,
1299         generalizing the earlier code that applied only to archive members.
1300         (f_mtime): Archive members always have low resolution time stamps.
1302         * configure.in: Remove --disable-nsec-timestamps, as this has
1303         been superseded by .LOW_RESOLUTION_TIME.
1305 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1307         * configure.in (enable_nsec_timestamps): Renamed from
1308         make_cv_nsec_timestamps, since enable/disable options
1309         shouldn't be cached.
1311 2000-07-23  Bruno Haible  <haible@clisp.cons.org>
1312        and  Paul Eggert  <eggert@twinsun.com>
1314         * file.c (file_timestamp_now):
1315         Use preprocessor-time check for FILE_TIMESTAMP_HI_RES
1316         so that clock_gettime is not linked unless needed.
1318         * filedef.h (FILE_TIMESTAMP_HI_RES):
1319         Remove definition; "configure" now does this.
1321         * configure.in (jm_AC_TYPE_UINTMAX_T): Move up,
1322         to before high resolution file timestamp check,
1323         since that check now uses uintmax_t.
1324         (FILE_TIMESTAMP_HI_RES): Define to nonzero if the code should use
1325         high resolution file timestamps.
1326         (HAVE_CLOCK_GETTIME): Do not define if !FILE_TIMESTAMP_HI_RES,
1327         so that we don't link in clock_gettime unnecessarily.
1329 2000-07-17  Paul D. Smith  <psmith@gnu.org>
1331         * i18n/ja.po: New version of the translation file.
1333 2000-07-07  Paul D. Smith  <psmith@gnu.org>
1335         * remake.c (f_mtime): If NO_FLOAT is defined, don't bother with
1336         the offset calculation.
1337         (name_mtime): Replace EINTR test with EINTR_SET macro.
1339 2000-07-07  Paul Eggert  <eggert@twinsun.com>
1341         Fix for PR/1811:
1343         * remake.c (update_file_1):
1344         Avoid spurious rebuilds of archive members due to their
1345         timestamp resolution being only one second.
1346         (f_mtime): Avoid spurious warnings of timestamps in the future due to
1347         the clock's resolution being lower than file timestamps'.
1348         When warning about future timestamps, report only the discrepancy,
1349         not the absolute value of the timestamp and the current time.
1351         * file.c (file_timestamp_now): New arg RESOLUTION.
1352         * filedef.h (file_timestamp_now): Likewise.
1353         (FILE_TIMESTAMP_NS): Now returns int.  All uses changed.
1355 2000-07-05  Paul D. Smith  <psmith@gnu.org>
1357         * variable.c (lookup_variable) [VMS]: Remove vestigial references
1358         to listp.  Fixes PR/1793.
1360 2000-06-26  Paul Eggert  <eggert@twinsun.com>
1362         * Makefile.am (MAINTAINERCLEANFILES): New macro, with stamp-pot in it.
1364         * dir.c (vms_hash): Ensure ctype macro args are nonnegative.
1366         * remake.c (f_mtime): Remove unused var memtime.
1368 2000-06-25  Martin Buchholz  <martin@xemacs.org>
1370         * make.texinfo, NEWS, TODO.private: Minor spelling corrections.
1371         Ran spell-check on make.texinfo.
1373 2000-06-23  Paul D. Smith  <psmith@gnu.org>
1375         * main.c (main): Replace EXIT_SUCCESS, EXIT_FAILURE, and
1376         EXIT_TROUBLE with MAKE_SUCCESS, MAKE_FAILURE, and MAKE_TROUBLE.
1377         * make.h: Define these macros.
1379         * Version 3.79.1 released.
1381         * configure.in: Add a new option, --disable-nsec-timestamps, to
1382         avoid using sub-second timestamps on systems that support it.  It
1383         can lead to problems, e.g. if your makefile relies on "cp -p".
1384         * README.template: Document the issue with "cp -p".
1386         * config.guess, config.sub: Updated.
1390 See ChangeLog.2, available in the CVS repository at:
1392         http://savannah.gnu.org/cvs/?group=make
1394 for earlier changes.