platform/upstream/make.git
19 years agoFix Savannah bug #11913: ensure that scopes such as foreach, etc. take
Paul Smith [Thu, 9 Jun 2005 19:19:20 +0000 (19:19 +0000)]
Fix Savannah bug #11913: ensure that scopes such as foreach, etc. take
precedence over the global scope when they're used in a global context
(such as an eval).

19 years agoFixed Savannah bugs #13216 and #13218.
Boris Kolpackov [Tue, 31 May 2005 20:54:30 +0000 (20:54 +0000)]
Fixed Savannah bugs #13216 and #13218.

19 years agoImplement new "if... else if... endif" semantics.
Paul Smith [Fri, 13 May 2005 12:45:30 +0000 (12:45 +0000)]
Implement new "if... else if... endif" semantics.

19 years agoFixes to allow "make dist" etc. to work again.
Paul Smith [Tue, 10 May 2005 01:38:18 +0000 (01:38 +0000)]
Fixes to allow "make dist" etc. to work again.

19 years agoDocument the secondary expansion method. Also, some other documentation
Paul Smith [Sun, 8 May 2005 16:50:58 +0000 (16:50 +0000)]
Document the secondary expansion method.  Also, some other documentation
cleanups.

If we find a make error (invalid makefile syntax or something like that)
write back any tokens we have before we exit.

If we have waiting jobs (using -j + -l) set an alarm before we sleep on
the read() system call, so we can wake up to check the load and start
waiting jobs, if there are long-running jobs we would otherwise be
waiting for.  Suggested by Grant Taylor.

19 years agoFix problems with losing tokens in the jobserver, reported by Grant
Paul Smith [Tue, 3 May 2005 13:57:20 +0000 (13:57 +0000)]
Fix problems with losing tokens in the jobserver, reported by Grant
Taylor.  There are two forms of this: first, it was possible to lose
tokens when using -j and -l at the same time, because waiting jobs were
not checked when determining whether any jobs were outstanding.  Second,
if you had an exported recursive variable that contained a $(shell ...)
function there is a possibility to lose tokens, since a token was taken
but the child list was not updated until after the shell function was
complete.

To resolve this I introduced a new variable that counted the number of
tokens we have obtained, rather than checking whether there were any
children on the list.  I also added some sanity checks to make sure we
weren't writing back too many or not enough tokens.  And, the master
make will drain the token pipe before exiting and compare the count of
tokens at the end to what was written there at the beginning.

Also:
  * Ensure a bug in the environment (missing "=") doesn't cause make to core.
  * Rename the .DEFAULT_TARGET variable to .DEFAULT_GOAL, to match the
    terminology in the documentation and other variables like MAKECMDGOALS.
  * Add documentation of the .DEFAULT_GOAL special variable.

Still need to document the secondary expansion stuff...

19 years agoFix performance degradation introduced by the second expansion feature.
Paul Smith [Wed, 13 Apr 2005 03:16:33 +0000 (03:16 +0000)]
Fix performance degradation introduced by the second expansion feature.
I did this by adding intelligence into the algorithm such that the
second expansion was only actually performed when the prerequisite list
contained at least one "$", so we knew it is actually needed.

Without this we were using up a LOT more memory, since every single
target (even ones never used by make) had their file variables
initialized.  This also used a lot more CPU, since we needed to create
and populate a new variable hash table for every target.

There is one issue remaining with this feature: it leaks memory.  In
pattern_search() we now initialize the file variables for every pattern
target, which allocates a hash table, etc.  However, sometimes we
recursively invoke pattern_search() (for intermediate files) with an
automatic variable (alloca() I believe) as the file.  When that function
returns, obviously, the file variable hash memory is lost.

19 years agoFix some Savannah bugs.
Paul Smith [Fri, 8 Apr 2005 12:51:20 +0000 (12:51 +0000)]
Fix some Savannah bugs.
Updates to docs (still need more work here) and NEWS file.
New language.

19 years agoFixed Savannah bug #12320.
Boris Kolpackov [Tue, 15 Mar 2005 15:31:47 +0000 (15:31 +0000)]
Fixed Savannah bug #12320.

19 years agoFixed Savannah bug #12267.
Boris Kolpackov [Thu, 10 Mar 2005 09:14:09 +0000 (09:14 +0000)]
Fixed Savannah bug #12267.

19 years agoFixed Savannah bug #12266.
Boris Kolpackov [Wed, 9 Mar 2005 19:21:34 +0000 (19:21 +0000)]
Fixed Savannah bug #12266.

19 years agoFixed Savannah bug #12202.
Boris Kolpackov [Fri, 4 Mar 2005 14:31:09 +0000 (14:31 +0000)]
Fixed Savannah bug #12202.

19 years ago- Missing docs for $|
Paul Smith [Fri, 4 Mar 2005 12:52:32 +0000 (12:52 +0000)]
- Missing docs for $|
- Update NEWS and AUTHORS files.
- Fix support request #103195.
- Apply patch #3679
- Fix handling of sys_siglist in autoconf/etc.

19 years agoFixed stem termination and stem triple-expansion bugs.
Boris Kolpackov [Thu, 3 Mar 2005 17:39:48 +0000 (17:39 +0000)]
Fixed stem termination and stem triple-expansion bugs.

19 years agoFixed Savannah bug #12180.
Boris Kolpackov [Tue, 1 Mar 2005 08:01:05 +0000 (08:01 +0000)]
Fixed Savannah bug #12180.

19 years ago- Fix bug #7144 (infinite loop sometimes with -q and double-colon rules)
Paul Smith [Mon, 28 Feb 2005 09:41:25 +0000 (09:41 +0000)]
- Fix bug #7144 (infinite loop sometimes with -q and double-colon rules)
- Resolve support request #103195 (rationalize wordlist fn arguments)

19 years ago* New feature: -L option
Paul Smith [Mon, 28 Feb 2005 07:48:22 +0000 (07:48 +0000)]
* New feature: -L option
* New function: $(info ...)
* Disallow $(eval ...) to create prereq relationships inside command scripts
  (caused core dumps)
* Try to allow more tests to succeed in Windows/DOS by sanitizing CRLF and \
* Various bug fixes and code cleanups (see the ChangeLog entry)

19 years agoImplementation of the .DEFAULT_TARGET special variable.
Boris Kolpackov [Sun, 27 Feb 2005 22:24:30 +0000 (22:24 +0000)]
Implementation of the .DEFAULT_TARGET special variable.

19 years agoImplementation of the second expansion in explicit
Boris Kolpackov [Sun, 27 Feb 2005 21:40:23 +0000 (21:40 +0000)]
Implementation of the second expansion in explicit
rules, static pattern rules and implicit rules.

19 years agoAdd configure operations to support MINGW on Windows.
Paul Smith [Sat, 26 Feb 2005 01:41:48 +0000 (01:41 +0000)]
Add configure operations to support MINGW on Windows.

19 years agoUpdate NEWS file.
Paul Smith [Wed, 16 Feb 2005 05:38:10 +0000 (05:38 +0000)]
Update NEWS file.

19 years agoAdd a patch from Paul Eggert that's been lying around in my directory for
Paul Smith [Wed, 16 Feb 2005 05:03:42 +0000 (05:03 +0000)]
Add a patch from Paul Eggert that's been lying around in my directory for
a long time, disabling stack size limits where possible.

Update version to beta2.

19 years agoFlush stdout after printing directory info.
Paul Smith [Thu, 10 Feb 2005 00:10:57 +0000 (00:10 +0000)]
Flush stdout after printing directory info.
Fix references to MINGW #define constants.
Remove WINDOWS32 ifdef from sub_proc.h.
Only add variables to the command line for recursion once.
New features in run_make_test: #PWD# and #MAKEPATH# replacements.
Test the multi-variable fix in the recursion regression test.

19 years agoAdd a new Irish (ga) translation.
Paul Smith [Wed, 9 Feb 2005 21:28:00 +0000 (21:28 +0000)]
Add a new Irish (ga) translation.
Fixed the CVS download URL to be simplified.
Fixed the .texi doc download: the ftp site was decommed so use CVS.

19 years agoAdd a Finnish translation.
Paul Smith [Tue, 1 Feb 2005 23:02:17 +0000 (23:02 +0000)]
Add a Finnish translation.
Update the URL for the GNU translation site in maintMakefile; the old one
stopped working.

19 years agoHandle build.sh in a better way (recommendation from the automake mailing
Paul Smith [Mon, 6 Dec 2004 15:03:45 +0000 (15:03 +0000)]
Handle build.sh in a better way (recommendation from the automake mailing
list).

19 years agoFix bug with SHELL handling: make sure the variable struct is initialized.
Paul Smith [Sun, 5 Dec 2004 18:09:31 +0000 (18:09 +0000)]
Fix bug with SHELL handling: make sure the variable struct is initialized.

19 years agoFix problems with README and build.sh
Paul Smith [Tue, 30 Nov 2004 20:58:52 +0000 (20:58 +0000)]
Fix problems with README and build.sh

Apply an old patch from Paul Eggert.

19 years agoImplemented `realpath' and `abspath' built-in functions.
Boris Kolpackov [Tue, 30 Nov 2004 19:51:24 +0000 (19:51 +0000)]
Implemented `realpath' and `abspath' built-in functions.

19 years agoFix bug #10252: Remove any trailing slashes from -C arguments (WINDOWS32).
Paul Smith [Mon, 29 Nov 2004 01:35:13 +0000 (01:35 +0000)]
Fix bug #10252: Remove any trailing slashes from -C arguments (WINDOWS32).

Add a regression test for "@" before a define/enddef vs. one inside.

19 years agoFix for bug #1276: Handle SHELL according to POSIX requirements.
Paul Smith [Sun, 28 Nov 2004 23:11:23 +0000 (23:11 +0000)]
Fix for bug #1276: Handle SHELL according to POSIX requirements.

POSIX requires that the value of SHELL in the makefile NOT be exported
to sub-commands.  Instead, the value in the environment when make was
invoked should be passed to the environment of sub-commands.  Note that
make still uses SHELL to _run_ sub-commands; it just doesn't change the
value of the SHELL variable in the environment of sub-commands.

As an extension to POSIX, if the makefile explicitly exports SHELL then
GNU make _will_ use it in the environment of sub-commands.

19 years agoFix WINDOWS32 bug #11155 with patch from Alessandro Vesely.
Paul Smith [Sun, 28 Nov 2004 16:58:51 +0000 (16:58 +0000)]
Fix WINDOWS32 bug #11155 with patch from Alessandro Vesely.

19 years agoPatch for command line parsing for VMS from Hartmut Becker.
Paul Smith [Fri, 12 Nov 2004 21:30:20 +0000 (21:30 +0000)]
Patch for command line parsing for VMS from Hartmut Becker.

19 years agoNew $(lastword ) built-in function: implementation, documentation and tests.
Boris Kolpackov [Thu, 21 Oct 2004 17:42:24 +0000 (17:42 +0000)]
New $(lastword ) built-in function: implementation, documentation and tests.

19 years agoApply patch from Alessandro Vesely for WINDOWS32-specific bug # 9748.
Paul Smith [Wed, 6 Oct 2004 13:09:22 +0000 (13:09 +0000)]
Apply patch from Alessandro Vesely for WINDOWS32-specific bug # 9748.

19 years agoMoved expansion of simple pattern-specific variables from the rebuild stage
Boris Kolpackov [Tue, 5 Oct 2004 16:56:14 +0000 (16:56 +0000)]
Moved expansion of simple pattern-specific variables from the rebuild stage
to the read stage.

19 years agoImplemented dontcare flag inheritance when rebuilding makefiles.
Boris Kolpackov [Tue, 28 Sep 2004 18:13:55 +0000 (18:13 +0000)]
Implemented dontcare flag inheritance when rebuilding makefiles.

19 years agobugfix for exported pattern-specific variables
Boris Kolpackov [Mon, 27 Sep 2004 18:09:52 +0000 (18:09 +0000)]
bugfix for exported pattern-specific variables

19 years agoUpdate the test template. A few fixes in run_make_test().
Paul Smith [Wed, 22 Sep 2004 04:36:17 +0000 (04:36 +0000)]
Update the test template.  A few fixes in run_make_test().
Rename implicit_prereq_eval to patternrules, to be the start of a suite
of tests of pattern rules.

19 years agoFixed bug in implicit rule prerequisite evaluation code. Added test.
Boris Kolpackov [Tue, 21 Sep 2004 20:23:12 +0000 (20:23 +0000)]
Fixed bug in implicit rule prerequisite evaluation code. Added test.

19 years agoSome code cleanups and efficiency enhancements. As far as I can tell
Paul Smith [Tue, 21 Sep 2004 13:51:58 +0000 (13:51 +0000)]
Some code cleanups and efficiency enhancements.  As far as I can tell
none of these have impacts that are visible to the user (although in
some cases that appears to be nothing more than dumb luck :-/).

19 years agoRemove sindex() and replace with strstr().
Paul Smith [Tue, 21 Sep 2004 12:07:12 +0000 (12:07 +0000)]
Remove sindex() and replace with strstr().
Windows: allow users to set SHELL to cmd.exe and have it behave as if no
UNIX shell were found.

19 years agoAdd some more unit tests for variable flavors.
Paul Smith [Tue, 21 Sep 2004 05:39:04 +0000 (05:39 +0000)]
Add some more unit tests for variable flavors.
Allow run_make_tests() to be invoked with an undef makefile string, in
which case it re-uses the previous string.

19 years agoFix some bugs in variable pattern substitution (e.g. $(VAR:A=B)),
Paul Smith [Tue, 21 Sep 2004 04:00:31 +0000 (04:00 +0000)]
Fix some bugs in variable pattern substitution (e.g. $(VAR:A=B)),
reported by Markus Mauhart <qwe123@chello.at>.  One was a simple typo; to
fix the other we call patsubst_expand() for all instances of variable
substitution, even when there is no '%'.  We used to call subst_expand()
with a special flag set in the latter case, but it didn't work properly
in all situations.  Easier to just use patsubst_expand() since that's
what it is.

20 years agoVarious enhancements
Paul Smith [Sun, 16 May 2004 19:16:52 +0000 (19:16 +0000)]
Various enhancements
  - OS/2 Patches
  - OpenVMS updates
  - Sanitize the handling of -include/sinclude with and without -k
  - Fix the setting of $< for order-only rules.

20 years agoNumerous updates and bug fixes.
Paul Smith [Mon, 22 Mar 2004 15:11:48 +0000 (15:11 +0000)]
Numerous updates and bug fixes.
A number of W32 cleanups from J.Grant.
A number of OS/2 cleanups from Andreas Buening.
Various random bug fixes.

20 years agoDon't use __STDC__; some compilers don't set it properly.
Paul Smith [Sat, 6 Mar 2004 08:05:17 +0000 (08:05 +0000)]
Don't use __STDC__; some compilers don't set it properly.
Use autoconf's test to set HAVE_ANSI_COMPILER and check that instead.

20 years agoMore maintainer rules.
Paul Smith [Sat, 6 Mar 2004 08:00:17 +0000 (08:00 +0000)]
More maintainer rules.

20 years agoUpdates to automate generation of GNU upload artifacts.
Paul Smith [Thu, 4 Mar 2004 13:42:51 +0000 (13:42 +0000)]
Updates to automate generation of GNU upload artifacts.
Fix a problem compiling on old, pre-ANSI systems.  getloadavg test is still
broken, but make builds.
Document a breakage on SunOS 4.x systems.

20 years agoFix the origin regression test.
Paul Smith [Wed, 25 Feb 2004 19:30:27 +0000 (19:30 +0000)]
Fix the origin regression test.
Remove sample code from make.h I accidentally left behind.

20 years agoAdd in HAVE_STDARG_H to the various port config files.
Paul Smith [Wed, 25 Feb 2004 01:23:13 +0000 (01:23 +0000)]
Add in HAVE_STDARG_H to the various port config files.

20 years agoMany compiler warning cleanups.
Paul Smith [Tue, 24 Feb 2004 13:50:19 +0000 (13:50 +0000)]
Many compiler warning cleanups.
Small fixes for W32 (from Jonathan Grant  <jg-make@jguk.org>)
Maintainer enhancements to clean up the tree.

20 years agoNumerous fixes: patches for OS/2; core for -f ''; makefile updates.
Paul Smith [Mon, 23 Feb 2004 06:25:54 +0000 (06:25 +0000)]
Numerous fixes: patches for OS/2; core for -f ''; makefile updates.

20 years agoVMS fix.
Paul Smith [Sat, 21 Feb 2004 17:10:41 +0000 (17:10 +0000)]
VMS fix.

20 years agoMany bug fixes etc.
Paul Smith [Wed, 21 Jan 2004 06:32:59 +0000 (06:32 +0000)]
Many bug fixes etc.
- Apply a fix for the "thundering herd" problem when using "-j -l".
  This also fixes bug #4693.
- Fix bug #7257: allow functions as ifdef arguments
- Fix bug #4518: make sure we print all double-colon rules with -p.
- Upgrade to autconf 2.58/automake 1.8/gettext 0.13.1
- Various doc cleanups, etc.

20 years agoEnhancements to the documentation (fixes bugs #1772 and 4898).
Paul Smith [Thu, 8 Jan 2004 03:17:08 +0000 (03:17 +0000)]
Enhancements to the documentation (fixes bugs #1772 and 4898).
Add "!" to the list of shell escape characters: POSIX sh allows it to be
used to negate the return value of the command.

20 years agoFix order-only prerequisites for pattern rules. (Savannah patch #2349).
Paul Smith [Wed, 7 Jan 2004 19:36:39 +0000 (19:36 +0000)]
Fix order-only prerequisites for pattern rules. (Savannah patch #2349).
Add a regression test for this.

Older libraries don't allow *alloc(0), so make sure we don't ever do that.

20 years agoFix bugs 5798 and 6195.
Paul Smith [Tue, 4 Nov 2003 07:40:29 +0000 (07:40 +0000)]
Fix bugs 5798 and 6195.

20 years agoAdded MINGW32 changes.
Paul Smith [Mon, 3 Nov 2003 22:04:09 +0000 (22:04 +0000)]
Added MINGW32 changes.

This commits a number of changes from Earnie Boyd that allows GNU make
to build for MINGW32 systems.  Only missing from this commit are the
changes to configure.in etc.; I'm waiting for Earnie to sign papers for
those new files.

Also not here is any README.mingw32 etc. which would explain how to use
this port.

20 years agoBuild fixes due to changes in the FSF web site.
Paul Smith [Wed, 22 Oct 2003 04:35:27 +0000 (04:35 +0000)]
Build fixes due to changes in the FSF web site.
Add new language support.
Minor configure, etc. cleanups.

21 years agoUpdated for autoconf 2.57, automake 1.7.6, and gettext 0.12.1.
Paul Smith [Thu, 31 Jul 2003 13:04:32 +0000 (13:04 +0000)]
Updated for autoconf 2.57, automake 1.7.6, and gettext 0.12.1.
Fixed problems with the dist target (adding missing files).
Workaround for a bug in gettext 0.12.1 po/Makefile.in.in where distclean
wasn't cleaning everything, which caused distcheck to fail.

21 years agoMinor updates for Windows and OS/2.
Paul Smith [Sat, 19 Jul 2003 02:46:25 +0000 (02:46 +0000)]
Minor updates for Windows and OS/2.

21 years ago- Fix bug #1405: allow multiple pattern-specific variables to match a target.
Paul Smith [Fri, 2 May 2003 01:44:59 +0000 (01:44 +0000)]
- Fix bug #1405: allow multiple pattern-specific variables to match a target.
- Fix some uncleanliness about the implementation of patterns-specific vars.
- Some enhancements to the OS/2 port.

21 years agoFix bug #2515: the .SECONDARY target with no prerequisites wasn't
Paul Smith [Fri, 28 Mar 2003 06:31:44 +0000 (06:31 +0000)]
Fix bug #2515: the .SECONDARY target with no prerequisites wasn't
behaving properly (if you listed prerequisites it worked properly).

21 years agoFix bug #2892.
Paul Smith [Tue, 25 Mar 2003 03:21:42 +0000 (03:21 +0000)]
Fix bug #2892.
More OS/2 updates from Andreas Buening.
Upgrade build system to autoconf 2.57 and automake 1.7.3.

21 years agoFix bug #2846.
Paul Smith [Tue, 25 Mar 2003 02:46:42 +0000 (02:46 +0000)]
Fix bug #2846.

21 years agoCommit fix for bug #1418.
Paul Smith [Tue, 25 Mar 2003 00:15:25 +0000 (00:15 +0000)]
Commit fix for bug #1418.
Upgrade to require autoconf 2.56.
Fix a pathological performance hit substituting in large values with
lots of words.

21 years agoAdd support for OS/2, contributed by Andreas Buening <andreas.buening@nexgo.de>
Paul Smith [Mon, 24 Mar 2003 23:14:15 +0000 (23:14 +0000)]
Add support for OS/2, contributed by Andreas Buening <andreas.buening@nexgo.de>
Also a small patch from Hartmut Becker <Hartmut.Becker@compaq.com> for VMS.

21 years agoFix bug #2238: the read.c:eval() function was not entirely reentrant.
Paul Smith [Thu, 30 Jan 2003 07:49:17 +0000 (07:49 +0000)]
Fix bug #2238: the read.c:eval() function was not entirely reentrant.
Apply patch #1022: fix a memory corruption on very long target-specific
variable definition lines.

21 years agoEnhancement (bug #2407) Make error messages more clear.
Paul Smith [Thu, 30 Jan 2003 06:21:36 +0000 (06:21 +0000)]
Enhancement (bug #2407)  Make error messages more clear.

21 years agoPortability fix for glob.h building in FreeBSD ports system.
Paul Smith [Thu, 30 Jan 2003 05:22:52 +0000 (05:22 +0000)]
Portability fix for glob.h building in FreeBSD ports system.

Implement a fix for bug # 2169: too many OSs, even major OSs like Solaris,
don't properly implement SA_RESTART: important system calls like stat() can
still fail when SA_RESTART is set.  So, forget the BROKEN_RESTART config
check and get rid of atomic_stat() and atomic_readdir(), and implement
permanent wrappers for EINTR checking on various system calls (stat(),
fstat(), opendir(), and readdir() so far).

21 years agoFix bug #1744: mask extra arguments to recursive invocations of $(call ...)
Paul Smith [Wed, 22 Jan 2003 13:45:44 +0000 (13:45 +0000)]
Fix bug #1744: mask extra arguments to recursive invocations of $(call ...)

21 years agoAdded Ukrainian translation.
Paul Smith [Thu, 19 Dec 2002 14:31:45 +0000 (14:31 +0000)]
Added Ukrainian translation.

21 years agoAdd hash.c etc. to various non-UNIX makefiles.
Paul Smith [Tue, 19 Nov 2002 04:39:15 +0000 (04:39 +0000)]
Add hash.c etc. to various non-UNIX makefiles.

21 years agoFix eval bugs 1516 and 1517.
Paul Smith [Fri, 25 Oct 2002 22:01:47 +0000 (22:01 +0000)]
Fix eval bugs 1516 and 1517.

21 years agoA few minor fixes to the manual and automake files.
Paul Smith [Fri, 25 Oct 2002 18:42:52 +0000 (18:42 +0000)]
A few minor fixes to the manual and automake files.

21 years agoConvert the source code to use ANSI C style function definitions and
Paul Smith [Mon, 14 Oct 2002 21:54:04 +0000 (21:54 +0000)]
Convert the source code to use ANSI C style function definitions and
enable the automake ansi2knr capability.

Right now this doesn't quite build using a K&R compiler because of a
problem with the loadavg test program, but the rest of the code works.  I'm
asking the automake list about this problem.

21 years agoFix bug#1379: don't use alloca() where it could overrun the stack size.
Paul Smith [Sun, 13 Oct 2002 18:50:10 +0000 (18:50 +0000)]
Fix bug#1379: don't use alloca() where it could overrun the stack size.

Implemented enhancement #1391: allow "export" in target-specific
variable definitions.

Change the Info name of the "Automatic" node to "Automatic Variables".
Add text clarifying the scope of automatic variables to that section.

21 years agoFix core dump on malformed variable line (Debian bug #81656)
Paul Smith [Sat, 5 Oct 2002 13:45:47 +0000 (13:45 +0000)]
Fix core dump on malformed variable line (Debian bug #81656)
Allow SysV-style variable references to use {} in addition to ().
Add variable.h to the POTFILES.in since it has a translatable string.

21 years agoUpdate version info. 3.80
Paul Smith [Fri, 4 Oct 2002 03:17:56 +0000 (03:17 +0000)]
Update version info.

21 years agoDon't put .cvsignore files in the distributed tar file.
Paul Smith [Fri, 4 Oct 2002 02:28:59 +0000 (02:28 +0000)]
Don't put .cvsignore files in the distributed tar file.

21 years agoFix K&R-isms found on SunOS 4.1.4 builds.
Paul Smith [Fri, 4 Oct 2002 02:12:52 +0000 (02:12 +0000)]
Fix K&R-isms found on SunOS 4.1.4 builds.

21 years agoSome updates for automake 1.7 and prep for releasing 3.80.
Paul Smith [Thu, 3 Oct 2002 05:46:12 +0000 (05:46 +0000)]
Some updates for automake 1.7 and prep for releasing 3.80.

21 years agoAdd VMS updates from Martin Zinser.
Paul Smith [Tue, 1 Oct 2002 15:32:14 +0000 (15:32 +0000)]
Add VMS updates from Martin Zinser.

21 years agoFix a bug handling target/prerequisite names containing comment
Paul Smith [Mon, 23 Sep 2002 22:16:40 +0000 (22:16 +0000)]
Fix a bug handling target/prerequisite names containing comment
characters.

21 years agoFix a bug exporting/unexporting multiple variables in one command.
Paul Smith [Wed, 18 Sep 2002 20:51:58 +0000 (20:51 +0000)]
Fix a bug exporting/unexporting multiple variables in one command.
Update the text about reporting bugs.

21 years agoAdd some indexing to the manual.
Paul Smith [Wed, 18 Sep 2002 04:35:52 +0000 (04:35 +0000)]
Add some indexing to the manual.
Fix a few simple casting warnings, etc.

21 years agoFix bug #940 (from the Savannah bug tracker): make sure that target-
Paul Smith [Tue, 17 Sep 2002 21:52:45 +0000 (21:52 +0000)]
Fix bug #940 (from the Savannah bug tracker): make sure that target-
specific variables work correctly in conjunction with double-colon
targets.

21 years agoFixups for the release. One bug fix, some automake complaint fixes,
Paul Smith [Thu, 12 Sep 2002 22:15:58 +0000 (22:15 +0000)]
Fixups for the release.  One bug fix, some automake complaint fixes,
and a function return type fix for older systems.

21 years agoFix HAVE_BROKEN_RESTART logic.
Paul Smith [Wed, 11 Sep 2002 16:55:44 +0000 (16:55 +0000)]
Fix HAVE_BROKEN_RESTART logic.
Fix hash.h typos (only noticed when using Windows).
Update .cvsignore files.

21 years agoFix regex matching for modification time warnings.
Paul Smith [Tue, 10 Sep 2002 22:39:18 +0000 (22:39 +0000)]
Fix regex matching for modification time warnings.
The ones we had were weird, and failed for multiple warnings in a
single file.

21 years agoA few test bug fixes:
Paul Smith [Tue, 10 Sep 2002 22:23:20 +0000 (22:23 +0000)]
A few test bug fixes:
  * Never use "touch" in make rules; it breaks on most sub-second
    supporting systems.  Use echo "" > $@ instead.
  * Forgot to close test makefiles before using them!

All the above worked fine on Linux but failed miserably on Solaris.

21 years agoHave the test driver check for the new format of the time skew error
Paul Smith [Tue, 10 Sep 2002 20:59:03 +0000 (20:59 +0000)]
Have the test driver check for the new format of the time skew error
messages.

21 years agoAdd support for broken SA_RESTART on PTX.
Paul Smith [Tue, 10 Sep 2002 07:27:28 +0000 (07:27 +0000)]
Add support for broken SA_RESTART on PTX.
Fix bug #103: allow ifdef, export, and unexport to expand their arguments.

21 years agoWhoops; configure wasn't looking for memmove.
Paul Smith [Mon, 9 Sep 2002 21:20:41 +0000 (21:20 +0000)]
Whoops; configure wasn't looking for memmove.

21 years agoFix for complex situations where directories are declared as prerequisites.
Paul Smith [Wed, 4 Sep 2002 07:26:19 +0000 (07:26 +0000)]
Fix for complex situations where directories are declared as prerequisites.
Info on this fix from barkalow@reputation.com: thanks!

Some updates/cleanups of some of the tests; added a forgotten -t test, etc.

21 years agoUpdate some NEWS and README nits, and add new gettext macros to config's
Paul Smith [Tue, 3 Sep 2002 21:43:04 +0000 (21:43 +0000)]
Update some NEWS and README nits, and add new gettext macros to config's
Makefile.am.

21 years agoUpdate to a new version of automake and gettext.
Paul Smith [Sat, 10 Aug 2002 01:27:16 +0000 (01:27 +0000)]
Update to a new version of automake and gettext.
Invent a new macro HAVE_DOS_PATHS and change various instances of:
  #if defined(WINDOWS) || defined(__MSDOS__)
to use the new macro instead.  This should help make the OS/2 port
cleaner, as well.
Invent a cvs-clean maintainer target that tries to get the workspace
back to the state it was in after a CVS checkout.
New language.

21 years agoChange the version.
Paul Smith [Thu, 8 Aug 2002 05:39:17 +0000 (05:39 +0000)]
Change the version.
Update to require new gettext.
Change hash.c to by K&R.
Redo some strings to make i18n simpler.

21 years agoIncorporate some VMS fixes.
Paul Smith [Thu, 8 Aug 2002 00:11:19 +0000 (00:11 +0000)]
Incorporate some VMS fixes.
Add -B option docs.
Add .VARIABLES variable.
Add a few new tests.
Add a new translation: Swedish