platform/upstream/make.git
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

21 years agoNew variables, .VARIABLES and .TARGETS.
Paul Smith [Thu, 1 Aug 2002 13:16:57 +0000 (13:16 +0000)]
New variables, .VARIABLES and .TARGETS.

21 years agoMake sure templates are built.
Paul Smith [Sun, 14 Jul 2002 02:57:04 +0000 (02:57 +0000)]
Make sure templates are built.

21 years agoInstall Greg McGary's patches to port the id-utils hashing functions to
Paul Smith [Thu, 11 Jul 2002 06:38:57 +0000 (06:38 +0000)]
Install Greg McGary's patches to port the id-utils hashing functions to
GNU make.  Also he provides some other performance fixups after doing
some profiling of make on large makefiles.

Modify the test suite to allow the use of Valgrind to find memory problems.

21 years agoImplement SysV-style $$@ support. I looked at E.Parmelan's patch but
Paul Smith [Wed, 10 Jul 2002 12:59:07 +0000 (12:59 +0000)]
Implement SysV-style $$@ support.  I looked at E.Parmelan's patch but
decided to implement this a different way, and didn't use it.

21 years agoDocumentation and tests for order-only prerequisites.
Paul Smith [Tue, 9 Jul 2002 06:35:56 +0000 (06:35 +0000)]
Documentation and tests for order-only prerequisites.
Add a new test suite for automatic variables.

21 years agoVarious cleanups reported by people using the alpha release.
Paul Smith [Mon, 8 Jul 2002 13:05:02 +0000 (13:05 +0000)]
Various cleanups reported by people using the alpha release.
Incorporate "order-only" prerequisites patch.  Wrote a test for it.
The test shows what might be a bug in the code; I need to look at it
more closely (anyway it doesn't behave as I expected).  Also I haven't
done the docs yet.

21 years agoRemove .po files; we'll retrieve them directly from the translation site.
Paul Smith [Mon, 8 Jul 2002 03:25:34 +0000 (03:25 +0000)]
Remove .po files; we'll retrieve them directly from the translation site.

21 years agoMajor updates in preparation for 3.80.
Paul Smith [Mon, 8 Jul 2002 02:26:47 +0000 (02:26 +0000)]
Major updates in preparation for 3.80.
New version of the manual, put into the doc subdir.
Enhancements: $(eval ...) and $(value ...) functions, various bug
fixes, etc.  See the ChangeLog.
More to come.

21 years agoUpdate the README template.
Paul Smith [Wed, 29 May 2002 22:24:09 +0000 (22:24 +0000)]
Update the README template.

22 years agoInstall newest German translation.
Paul Smith [Mon, 13 May 2002 14:40:16 +0000 (14:40 +0000)]
Install newest German translation.

22 years agoFix Debian bug #144306: pass target-specific variables into the environment
Paul Smith [Fri, 10 May 2002 03:15:07 +0000 (03:15 +0000)]
Fix Debian bug #144306: pass target-specific variables into the environment
properly.

Fix configure: allow cross-compilation; fix getloadavg (still needs _lots_
of work!)

Let $(call ...) functions to be self-referencing.  Lets us do transitive
closures, for example.

22 years agoRemove our local copy so we can use the standard version.
Paul Smith [Wed, 24 Apr 2002 21:52:21 +0000 (21:52 +0000)]
Remove our local copy so we can use the standard version.

22 years agoAdd back initial "\" which was accidentally removed a year ago! :-/.
Paul Smith [Wed, 24 Apr 2002 21:36:38 +0000 (21:36 +0000)]
Add back initial "\" which was accidentally removed a year ago! :-/.

22 years agoUpdates for new tools. Everything works now building on Linux,
Paul Smith [Mon, 22 Apr 2002 04:35:19 +0000 (04:35 +0000)]
Updates for new tools.  Everything works now building on Linux,
including creating make packages.  I'll try some other systems tomorrow.
Also added a new translation: Croatian.  Thanks!

22 years agoUpdates and fixes for CVS builds.
Paul Smith [Mon, 22 Apr 2002 02:11:31 +0000 (02:11 +0000)]
Updates and fixes for CVS builds.
Created a README.cvs describing the procedure.

22 years agoUpdate GNU make to use Autoconf 2.53, Automake 1.6.1, Gettext 0.11.1.
Paul Smith [Sun, 21 Apr 2002 23:57:24 +0000 (23:57 +0000)]
Update GNU make to use Autoconf 2.53, Automake 1.6.1, Gettext 0.11.1.
We're using Gettext's "external" feature to avoid including the intl
code in the GNU make distribution.

22 years agoInstalled a new translation for Hebrew.
Paul Smith [Sat, 20 Apr 2002 19:35:15 +0000 (19:35 +0000)]
Installed a new translation for Hebrew.

22 years agoUpdates to translaations.
Paul Smith [Sat, 20 Apr 2002 19:25:54 +0000 (19:25 +0000)]
Updates to translaations.
Fix an assert() in an obscure use of -q
Handling of double-colon timestamp updates was broken in a bizarre way.
Store arguments to $(call ...) functions in simple variables, not recursive
variables.

22 years agoInstall updated translations.
Paul Smith [Tue, 12 Mar 2002 01:36:17 +0000 (01:36 +0000)]
Install updated translations.

22 years agoInstall a new Japanese translation.
Paul Smith [Tue, 4 Dec 2001 18:47:02 +0000 (18:47 +0000)]
Install a new Japanese translation.

22 years agoUpdate copyright info.
Paul Smith [Sun, 18 Nov 2001 18:38:02 +0000 (18:38 +0000)]
Update copyright info.

22 years agoInstalled the da.po (Danish) translation file.
Paul Smith [Sun, 19 Aug 2001 04:55:51 +0000 (04:55 +0000)]
Installed the da.po (Danish) translation file.

Fixed some translation string issues.

22 years agoInstalled a new French translation (resolves Debian Bug #106720)
Paul Smith [Fri, 3 Aug 2001 19:02:51 +0000 (19:02 +0000)]
Installed a new French translation (resolves Debian Bug #106720)

22 years agoNew/updated translations; minor update to the index of the manual.
Paul Smith [Thu, 5 Jul 2001 00:35:03 +0000 (00:35 +0000)]
New/updated translations; minor update to the index of the manual.

22 years agoNew translation.
Paul Smith [Fri, 1 Jun 2001 03:57:19 +0000 (03:57 +0000)]
New translation.

22 years agoFix for EINTR problems when using jobserver.
Paul Smith [Fri, 1 Jun 2001 03:56:50 +0000 (03:56 +0000)]
Fix for EINTR problems when using jobserver.
New translation files.
Fix for @+ inside define macros being applied too widely.
Various other bug fixes.

23 years agoSome VMS fixes sent by John Fowler.
Paul Smith [Mon, 21 May 2001 06:16:00 +0000 (06:16 +0000)]
Some VMS fixes sent by John Fowler.
Fix: make flags on some lines of define/endef don't affect other lines

23 years agoSome bug fixes and document updates.
Paul Smith [Sun, 21 Jan 2001 06:49:11 +0000 (06:49 +0000)]
Some bug fixes and document updates.

23 years ago* Fix FAT handling on Windows to match the DJGPP port's FAT handling.
Paul Smith [Fri, 17 Nov 2000 06:59:08 +0000 (06:59 +0000)]
* Fix FAT handling on Windows to match the DJGPP port's FAT handling.
* Fix a potential hole in readline if lines end in ^M (CRLF).

23 years ago* Various bug fixes.
Paul Smith [Thu, 5 Oct 2000 16:27:06 +0000 (16:27 +0000)]
* Various bug fixes.
* New Galician translation.

23 years ago* Rework phrasing to allow for better translations.
Paul Smith [Thu, 21 Sep 2000 04:14:38 +0000 (04:14 +0000)]
* Rework phrasing to allow for better translations.
# New Japanese translation file.

23 years agoFix PR/1831. See the ChangeLog.
Paul Smith [Mon, 21 Aug 2000 06:18:35 +0000 (06:18 +0000)]
Fix PR/1831.  See the ChangeLog.

23 years ago* Various fixes; see the ChangeLog.
Paul Smith [Sun, 30 Jul 2000 18:26:42 +0000 (18:26 +0000)]
* Various fixes; see the ChangeLog.

23 years ago* Minor code cleanups
Paul Smith [Fri, 7 Jul 2000 17:34:56 +0000 (17:34 +0000)]
* Minor code cleanups
* Fix for PR/1811, from Paul Eggert.

23 years ago* Fix PR/1791.
Paul Smith [Fri, 23 Jun 2000 19:43:11 +0000 (19:43 +0000)]
* Fix PR/1791.

23 years ago* Released 3.79.1 3.79.1
Paul Smith [Fri, 23 Jun 2000 18:55:43 +0000 (18:55 +0000)]
* Released 3.79.1

23 years ago* Fix -q so it works more correctly.
Paul Smith [Fri, 23 Jun 2000 15:55:46 +0000 (15:55 +0000)]
* Fix -q so it works more correctly.
* Don't print "nothing to do" messages for ":" commands
* Update the version to 3.79.1

23 years ago* Fix PR/1709.
Paul Smith [Thu, 22 Jun 2000 00:45:34 +0000 (00:45 +0000)]
* Fix PR/1709.

23 years ago* A couple of nits.
Paul Smith [Tue, 20 Jun 2000 21:32:40 +0000 (21:32 +0000)]
* A couple of nits.

23 years ago* More updates and fixes.
Paul Smith [Tue, 20 Jun 2000 05:48:40 +0000 (05:48 +0000)]
* More updates and fixes.

23 years ago* Various fixes for problems in the 3.79.0.1 pretest.
Paul Smith [Mon, 19 Jun 2000 21:22:44 +0000 (21:22 +0000)]
* Various fixes for problems in the 3.79.0.1 pretest.

23 years ago* Typo.
Paul Smith [Wed, 14 Jun 2000 22:29:48 +0000 (22:29 +0000)]
* Typo.

23 years ago* More fixes for configuring gettext correctly.
Paul Smith [Wed, 14 Jun 2000 22:29:30 +0000 (22:29 +0000)]
* More fixes for configuring gettext correctly.

23 years ago* Some timestamp fixes from Paul Eggert.
Paul Smith [Tue, 13 Jun 2000 05:22:52 +0000 (05:22 +0000)]
* Some timestamp fixes from Paul Eggert.
* Fix compilation on Linux; use libintl.h and not gettext.h when using
  the system gettext.

23 years ago* Lots of bug fixes and cleanup; new i18n files, etc.
Paul Smith [Wed, 7 Jun 2000 05:43:37 +0000 (05:43 +0000)]
* Lots of bug fixes and cleanup; new i18n files, etc.

23 years agoNew translation files.
Paul Smith [Thu, 1 Jun 2000 14:37:58 +0000 (14:37 +0000)]
New translation files.

24 years ago* Various bug fixes.
Paul Smith [Sat, 22 Apr 2000 02:11:17 +0000 (02:11 +0000)]
* Various bug fixes.

24 years ago* Some final cleanups, and release 3.79. 3.79
Paul Smith [Wed, 5 Apr 2000 16:02:55 +0000 (16:02 +0000)]
* Some final cleanups, and release 3.79.

24 years ago* Fix bug handling archive members: convert timestamp to nsec properly
Paul Smith [Mon, 3 Apr 2000 05:58:41 +0000 (05:58 +0000)]
* Fix bug handling archive members: convert timestamp to nsec properly
  on those systems that support it.

24 years ago* New config.sub and config.guess 3.78.92
Paul Smith [Wed, 29 Mar 2000 03:23:18 +0000 (03:23 +0000)]
* New config.sub and config.guess
* Update version number for release
* Fixes to the build.sh to handle i18n/gettext
* Make dash-n more robust.

24 years ago* Handle case of empty static pattern rule prerequisites.
Paul Smith [Mon, 27 Mar 2000 20:53:50 +0000 (20:53 +0000)]
* Handle case of empty static pattern rule prerequisites.
* Fix linenumbers in error messages for rule definitions.

24 years ago* A large number of fixes/enhancements. See the ChangeLog.
Paul Smith [Mon, 27 Mar 2000 06:54:37 +0000 (06:54 +0000)]
* A large number of fixes/enhancements.  See the ChangeLog.
* Added a new version of the German translation file.

24 years ago* Ignore attempt to change a file into itself.
Paul Smith [Sun, 26 Mar 2000 06:56:54 +0000 (06:56 +0000)]
* Ignore attempt to change a file into itself.
* Define COFLAGS to avoid unknown variable warning.
* Fix some usec problems on UnixWare.
* Don't remove .INTERMEDIATE targets specified on the command line.

24 years ago* Fix backslash-escape in targets. 3.78.91
Paul Smith [Wed, 9 Feb 2000 19:57:15 +0000 (19:57 +0000)]
* Fix backslash-escape in targets.
* Release 3.78.91.

24 years ago* Fix some warnings in gettext.c and function.c
Paul Smith [Wed, 9 Feb 2000 07:02:18 +0000 (07:02 +0000)]
* Fix some warnings in gettext.c and function.c
* Don't try to execute tests which are actually directories.

24 years ago* Fix for dir.c from Andreas Schwab. filedef-cleanup-base
Paul Smith [Mon, 7 Feb 2000 19:54:04 +0000 (19:54 +0000)]
* Fix for dir.c from Andreas Schwab.
* Fix += target-specific variables: if your direct parent doesn't have a
  setting for the variable but his parent does, you'll get recursive
  expansion errors.

24 years ago* Updates for VMS, Windows, and DOS ports.
Paul Smith [Sat, 5 Feb 2000 07:50:47 +0000 (07:50 +0000)]
* Updates for VMS, Windows, and DOS ports.
* Clean up some warnings.

24 years ago* Fix PR/1407.
Paul Smith [Sat, 5 Feb 2000 07:37:40 +0000 (07:37 +0000)]
* Fix PR/1407.
* Keep filename/lineno information for variables, for debugging.

24 years ago* Some pre-pretest release cleanup.
Paul Smith [Thu, 27 Jan 2000 00:00:27 +0000 (00:00 +0000)]
* Some pre-pretest release cleanup.

24 years ago* Updated gettext to use more advanced libit 0.7 version.
Paul Smith [Tue, 25 Jan 2000 07:42:51 +0000 (07:42 +0000)]
* Updated gettext to use more advanced libit 0.7 version.
* Various cleanups.

24 years ago* A few fixes.
Paul Smith [Sun, 23 Jan 2000 07:05:16 +0000 (07:05 +0000)]
* A few fixes.

24 years ago* Mention it in NEWS.
Paul Smith [Sat, 22 Jan 2000 08:59:09 +0000 (08:59 +0000)]
* Mention it in NEWS.

24 years ago* Implement GNU gettext internationalization support in GNU make.
Paul Smith [Sat, 22 Jan 2000 08:57:17 +0000 (08:57 +0000)]
* Implement GNU gettext internationalization support in GNU make.

24 years ago* More fixes to VMS by Hartmut Becker.
Paul Smith [Sat, 22 Jan 2000 05:59:28 +0000 (05:59 +0000)]
* More fixes to VMS by Hartmut Becker.

24 years ago* Merge VMS patches by Hartmut Becker.
Paul Smith [Sat, 22 Jan 2000 05:43:03 +0000 (05:43 +0000)]
* Merge VMS patches by Hartmut Becker.

24 years ago* Change $(call...) to not expand arguments by default.
Paul Smith [Tue, 11 Jan 2000 07:31:42 +0000 (07:31 +0000)]
* Change $(call...) to not expand arguments by default.
* Unify the way arguments are passed to builtin functions in function.c.

24 years ago* Fix problems with double-colon rules.
Paul Smith [Sat, 18 Dec 1999 17:43:47 +0000 (17:43 +0000)]
* Fix problems with double-colon rules.
* Fix problems with INTERMEDIATE rules.

24 years ago* Various changes and fixes. See ChangeLog.
Paul Smith [Wed, 8 Dec 1999 20:13:50 +0000 (20:13 +0000)]
* Various changes and fixes.  See ChangeLog.

24 years ago* Update debugging to use string flags instead of integers.
Paul Smith [Sat, 27 Nov 1999 08:09:42 +0000 (08:09 +0000)]
* Update debugging to use string flags instead of integers.

24 years ago* Add new debug header file.
Paul Smith [Mon, 22 Nov 1999 06:16:48 +0000 (06:16 +0000)]
* Add new debug header file.

24 years ago* Add new debugging output level selection feature.
Paul Smith [Mon, 22 Nov 1999 06:15:35 +0000 (06:15 +0000)]
* Add new debugging output level selection feature.

24 years ago* Many cleanups and bugfixes.
Paul Smith [Wed, 17 Nov 1999 07:33:47 +0000 (07:33 +0000)]
* Many cleanups and bugfixes.
* New handling of += in target-specific variables.

24 years ago* Fix PR/1394.
Paul Smith [Fri, 15 Oct 1999 07:00:58 +0000 (07:00 +0000)]
* Fix PR/1394.
* Apply changes from Paul Eggert.
* Many other cleanups (index/rindex --> strchr/strrchr, etc.)

24 years ago* Ensure -Iglob comes before any user-specified CPPFLAGS.
Paul Smith [Thu, 14 Oct 1999 23:20:12 +0000 (23:20 +0000)]
* Ensure -Iglob comes before any user-specified CPPFLAGS.

24 years ago* Fix PR/1379: -n/-q behaves correctly when all commands are recursive.
Paul Smith [Wed, 13 Oct 1999 07:00:23 +0000 (07:00 +0000)]
* Fix PR/1379: -n/-q behaves correctly when all commands are recursive.

24 years ago* Fix test suite on DOS (PR/1344)
Paul Smith [Fri, 8 Oct 1999 06:32:24 +0000 (06:32 +0000)]
* Fix test suite on DOS (PR/1344)
* Fix target-specific vars bug (PR/1378)

24 years ago* Fix for DOS short filenames.
Paul Smith [Wed, 29 Sep 1999 06:29:38 +0000 (06:29 +0000)]
* Fix for DOS short filenames.

24 years ago* Ouch: found a bug where re-exec from changed makefiles turned off 3.78.1
Paul Smith [Thu, 23 Sep 1999 18:23:33 +0000 (18:23 +0000)]
* Ouch: found a bug where re-exec from changed makefiles turned off
  jobserver :(.

24 years ago* Oops. Fix a problem running submakes like $(MAKE) $(MFLAGS). 3.78
Paul Smith [Wed, 22 Sep 1999 05:57:52 +0000 (05:57 +0000)]
* Oops.  Fix a problem running submakes like $(MAKE) $(MFLAGS).