diff --git a/.devtoolset-9-make.metadata b/.devtoolset-9-make.metadata new file mode 100644 index 0000000..6619007 --- /dev/null +++ b/.devtoolset-9-make.metadata @@ -0,0 +1 @@ +7d9d11eb36cfb752da1fb11bb3e521d2a3cc8830 SOURCES/make-4.2.1.tar.bz2 diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9cc2bff --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/make-4.2.1.tar.bz2 diff --git a/SOURCES/make-4.2-getcwd.patch b/SOURCES/make-4.2-getcwd.patch new file mode 100644 index 0000000..5942e2e --- /dev/null +++ b/SOURCES/make-4.2-getcwd.patch @@ -0,0 +1,12 @@ +diff -Nrup a/makeint.h b/makeint.h +--- a/makeint.h 2016-05-21 16:22:32.000000000 -0400 ++++ b/makeint.h 2017-06-08 23:00:34.957343608 -0400 +@@ -596,7 +596,7 @@ long int lseek (); + # endif + + # ifdef HAVE_GETCWD +-# if !defined(VMS) && !defined(__DECC) ++# if !defined(VMS) && !defined(__DECC) && !defined(getcwd) + char *getcwd (); + # endif + # else diff --git a/SOURCES/make-4.2-j8k.patch b/SOURCES/make-4.2-j8k.patch new file mode 100644 index 0000000..57d6a92 --- /dev/null +++ b/SOURCES/make-4.2-j8k.patch @@ -0,0 +1,25 @@ +diff -Nrup a/main.c b/main.c +--- a/main.c 2016-05-31 03:17:26.000000000 -0400 ++++ b/main.c 2017-06-08 22:55:47.632288750 -0400 +@@ -2051,6 +2051,21 @@ main (int argc, char **argv, char **envp + } + #endif + ++#ifdef PIPE_BUF ++ if (job_slots > PIPE_BUF) ++#elif defined _POSIX_PIPE_BUF ++ if (job_slots > _POSIX_PIPE_BUF) ++#else ++ if (job_slots > 512) ++#endif ++ { ++ O (error, NILF, ++ _("More parallel jobs (-jN) than this platform can handle requested.")); ++ O (error, NILF, _("Resetting to single job (-j1) mode.")); ++ job_slots = 1; ++ } ++ ++ + /* If we have >1 slot at this point, then we're a top-level make. + Set up the jobserver. + diff --git a/SOURCES/make-4.2-newlines.patch b/SOURCES/make-4.2-newlines.patch new file mode 100644 index 0000000..16f6585 --- /dev/null +++ b/SOURCES/make-4.2-newlines.patch @@ -0,0 +1,19 @@ +diff -Nrup a/job.c b/job.c +--- a/job.c 2016-05-21 16:22:32.000000000 -0400 ++++ b/job.c 2017-06-11 09:44:05.330432768 -0400 +@@ -3144,13 +3144,14 @@ construct_command_argv_internal (char *l + #endif + if (PRESERVE_BSNL) + { +- *(ap++) = '\\'; ++ *(ap++) = '\''; + /* Only non-batch execution needs another backslash, + because it will be passed through a recursive + invocation of this function. */ + if (!batch_mode_shell) + *(ap++) = '\\'; + *(ap++) = '\n'; ++ *(ap++) = '\''; + } + ++p; + continue; diff --git a/SOURCES/make-4.2-noclock_gettime.patch b/SOURCES/make-4.2-noclock_gettime.patch new file mode 100644 index 0000000..4dea96a --- /dev/null +++ b/SOURCES/make-4.2-noclock_gettime.patch @@ -0,0 +1,12 @@ +diff -Nrup a/configure b/configure +--- a/configure 2016-06-10 19:03:21.000000000 -0400 ++++ b/configure 2017-06-08 22:26:52.452908851 -0400 +@@ -9026,7 +9026,7 @@ return clock_gettime (); + return 0; + } + _ACEOF +-for ac_lib in '' rt posix4; do ++for ac_lib in '' posix4; do + if test -z "$ac_lib"; then + ac_res="none required" + else diff --git a/SOURCES/make-4.2-trace.patch b/SOURCES/make-4.2-trace.patch new file mode 100644 index 0000000..b9b0f75 --- /dev/null +++ b/SOURCES/make-4.2-trace.patch @@ -0,0 +1,101 @@ +diff -Nrup a/debug.h b/debug.h +--- a/debug.h 2016-02-28 12:48:44.000000000 -0500 ++++ b/debug.h 2017-06-11 10:22:11.180077939 -0400 +@@ -20,6 +20,9 @@ this program. If not, see \n")); ++ DB( DB_EVAL, ("%s\n", argv[0])); + eval_buffer (argv[0], NULL); ++ DBS( DB_EVAL, ("### eval <--\n")); ++ depth -= 1; + + restore_variable_buffer (buf, len); + +@@ -2584,6 +2590,7 @@ func_call (char *o, char **argv, const c + if (v == 0 || *v->value == '\0') + return o; + ++ depth += 1; + body = alloca (flen + 4); + body[0] = '$'; + body[1] = '('; +@@ -2591,6 +2598,8 @@ func_call (char *o, char **argv, const c + body[flen+2] = ')'; + body[flen+3] = '\0'; + ++ DBS(DB_CALL, ("### call %s -->\n", body)); ++ + /* Set up arguments $(1) .. $(N). $(0) is the function name. */ + + push_new_variable_scope (); +@@ -2600,6 +2609,7 @@ func_call (char *o, char **argv, const c + char num[11]; + + sprintf (num, "%d", i); ++ DBS(DB_CALL, ("### arg %i for call %s is '%s'\n", i, body, *argv)); + define_variable (num, strlen (num), *argv, o_automatic, 0); + } + +@@ -2613,6 +2623,7 @@ func_call (char *o, char **argv, const c + char num[11]; + + sprintf (num, "%d", i); ++ DBS(DB_CALL, ("### arg %i for call %s is implicit\n", i, body)); + define_variable (num, strlen (num), "", o_automatic, 0); + } + +@@ -2623,7 +2634,14 @@ func_call (char *o, char **argv, const c + + saved_args = max_args; + max_args = i; ++ + o = variable_expand_string (o, body, flen+3); ++ DBS(DB_CALL, ("### call to %s expended into\n", body)); ++ DB(DB_CALL, ("%s\n", o)); ++ DBS(DB_CALL, ("### call %s <--\n", body)); ++ ++ depth -= 1; ++ + max_args = saved_args; + + v->exp_count = 0; +diff -Nrup a/main.c b/main.c +--- a/main.c 2017-06-11 10:20:12.053504852 -0400 ++++ b/main.c 2017-06-11 10:28:37.914642751 -0400 +@@ -755,6 +755,12 @@ decode_debug_flags (void) + case 'b': + db_level |= DB_BASIC; + break; ++ case 'c': ++ db_level |= DB_CALL; ++ break; ++ case 'e': ++ db_level |= DB_EVAL; ++ break; + case 'i': + db_level |= DB_BASIC | DB_IMPLICIT; + break; diff --git a/SOURCES/make-4.2-warn_undefined_function.patch b/SOURCES/make-4.2-warn_undefined_function.patch new file mode 100644 index 0000000..3cb06d3 --- /dev/null +++ b/SOURCES/make-4.2-warn_undefined_function.patch @@ -0,0 +1,64 @@ +diff -Nrup a/main.c b/main.c +--- a/main.c 2017-06-11 10:01:27.874528811 -0400 ++++ b/main.c 2017-06-11 10:08:13.235058577 -0400 +@@ -310,6 +310,11 @@ static int print_usage_flag = 0; + + int warn_undefined_variables_flag; + ++/* If nonzero, we should print a warning message ++ for each attemtp to call an undefined user function. */ ++ ++int warn_undefined_functions_flag; ++ + /* If nonzero, always build all targets, regardless of whether + they appear out of date or not. */ + +@@ -408,6 +413,8 @@ static const char *const usage[] = + Consider FILE to be infinitely new.\n"), + N_("\ + --warn-undefined-variables Warn when an undefined variable is referenced.\n"), ++ N_("\ ++ --warn-undefined-functions Warn when an undefined user function is called.\n"), + NULL + }; + +@@ -471,6 +478,8 @@ static const struct command_switch switc + "warn-undefined-variables" }, + { CHAR_MAX+6, strlist, &eval_strings, 1, 0, 0, 0, 0, "eval" }, + { CHAR_MAX+7, string, &sync_mutex, 1, 1, 0, 0, 0, "sync-mutex" }, ++ { CHAR_MAX+8, flag, &warn_undefined_functions_flag, 1, 1, 0, 0, 0, ++ "warn-undefined-functions" }, + { 0, 0, 0, 0, 0, 0, 0, 0, 0 } + }; + +diff -Nrup a/makeint.h b/makeint.h +--- a/makeint.h 2017-06-11 10:01:27.875528807 -0400 ++++ b/makeint.h 2017-06-11 10:09:13.231845428 -0400 +@@ -647,7 +647,7 @@ extern int env_overrides, no_builtin_rul + extern int print_version_flag, print_directory_flag, check_symlink_flag; + extern int warn_undefined_variables_flag, trace_flag, posix_pedantic; + extern int not_parallel, second_expansion, clock_skew_detected; +-extern int rebuilding_makefiles, one_shell, output_sync, verify_flag; ++extern int rebuilding_makefiles, one_shell, output_sync, verify_flag, warn_undefined_functions_flag; + + extern const char *default_shell; + +diff -Nrup a/variable.h b/variable.h +--- a/variable.h 2016-05-21 16:22:32.000000000 -0400 ++++ b/variable.h 2017-06-11 10:10:40.957533767 -0400 +@@ -225,6 +225,15 @@ void undefine_variable_in_set (const cha + (int)(l), (n)); \ + }while(0) + ++/* Warn that NAME is an undefined function. */ ++ ++#define warn_undefined_function(n,l) do{\ ++ if (warn_undefined_functions_flag) \ ++ error (reading_file, \ ++ _("warning: undefined function `%.*s'"), \ ++ (int)(l), (n)); \ ++ }while(0) ++ + char **target_environment (struct file *file); + + struct pattern_var *create_pattern_var (const char *target, diff --git a/SOURCES/make-4.2-weird-shell.patch b/SOURCES/make-4.2-weird-shell.patch new file mode 100644 index 0000000..fd46446 --- /dev/null +++ b/SOURCES/make-4.2-weird-shell.patch @@ -0,0 +1,16 @@ +diff -Nrup a/job.c b/job.c +--- a/job.c 2016-05-21 16:22:32.000000000 -0400 ++++ b/job.c 2017-06-11 09:37:31.964954015 -0400 +@@ -2561,7 +2561,11 @@ construct_command_argv_internal (char *l + + /* See if it is safe to parse commands internally. */ + if (shell == 0) +- shell = default_shell; ++ { ++ shell = default_shell; ++ if (shellflags == 0) ++ shellflags = "-c"; ++ } + #ifdef WINDOWS32 + else if (strcmp (shell, default_shell)) + { diff --git a/SPECS/make.spec b/SPECS/make.spec new file mode 100644 index 0000000..7f10098 --- /dev/null +++ b/SPECS/make.spec @@ -0,0 +1,463 @@ +# -*- coding: utf-8 -*- +%{?scl:%scl_package make} +Summary: A GNU tool which simplifies the build process for users +Name: %{?scl_prefix}make +Epoch: 1 +Version: 4.2.1 +Release: 1%{?dist} +License: GPLv2+ +Group: Development/Tools +URL: http://www.gnu.org/software/make/ +Source: ftp://ftp.gnu.org/gnu/make/make-%{version}.tar.bz2 + +Patch1: make-4.2-noclock_gettime.patch +Patch2: make-4.2-j8k.patch +Patch3: make-4.2-getcwd.patch + +# Upstream: https://savannah.gnu.org/bugs/?30748 +Patch4: make-4.2-weird-shell.patch + +Patch5: make-4.2-newlines.patch + +# http://savannah.gnu.org/bugs/?34335 +Patch6: make-4.2-warn_undefined_function.patch + +# http://lists.gnu.org/archive/html/bug-make/2011-06/msg00032.html +Patch7: make-4.2-trace.patch + +# Buildroot: %(mktemp -ud %{_tmppath}/make-%{version}-%{release}-XXXXXX) +BuildRoot: %{_tmppath}/make-%{version}-%{release}-root-%(%{__id_u} -n) +Requires(post): /sbin/install-info +Requires(preun): /sbin/install-info +BuildRequires: procps +BuildRequires: perl +%{?scl:Requires:%scl_runtime} + +%description +A GNU tool for controlling the generation of executables and other +non-source files of a program from the program's source files. Make +allows users to build and install packages without any significant +knowledge about the details of the build process. The details about +how the program should be built are provided for make in the program's +makefile. + +%prep +echo "STARTING PREP of make" +%setup -q -n make-%{version} +%patch1 -p1 +%patch2 -p1 +%patch3 -p1 +%patch4 -p1 +%patch5 -p1 +%patch6 -p1 +%patch7 -p1 + +rm -f tests/scripts/features/parallelism.orig + +# Disable the output-sync test until upstream resolves timeout issue. +rm -f tests/scripts/features/output-sync + +%build +echo "STARTING CONFIGURE of make" +%configure +echo "STARTING MAKE of make" +make %{?_smp_mflags} + +%install +rm -rf ${RPM_BUILD_ROOT} +make DESTDIR=$RPM_BUILD_ROOT install +ln -sf make ${RPM_BUILD_ROOT}/%{_bindir}/gmake +ln -sf make.1 ${RPM_BUILD_ROOT}/%{_mandir}/man1/gmake.1 +rm -f ${RPM_BUILD_ROOT}/%{_infodir}/dir + +%find_lang make + +%check +echo ============TESTING=============== +/usr/bin/env LANG=C make check +echo ============END TESTING=========== + +%clean +rm -rf ${RPM_BUILD_ROOT} + +%post +if [ -f %{_infodir}/make.info.gz ]; then # for --excludedocs + /sbin/install-info %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." || : +fi + +%preun +if [ $1 = 0 ]; then + if [ -f %{_infodir}/make.info.gz ]; then # for --excludedocs + /sbin/install-info --delete %{_infodir}/make.info.gz %{_infodir}/dir --entry="* Make: (make). The GNU make utility." || : + fi +fi + +%files -f make.lang +%defattr(-,root,root) +%doc NEWS README COPYING AUTHORS +%{_bindir}/* +%{_mandir}/man*/* +%{_infodir}/*.info* +%{_includedir}/gnumake.h + +%changelog +* Mon Aug 5 2019 DJ Delorie - 4.2.1-1 +- Reset to -1 for devtoolset-9 (#1736673) + +* Fri Jul 13 2018 Patsy Franklin - 4.2.1-4 +- Spec file clean-up and rebuild for DTS 8.0 + +* Wed Feb 21 2018 Patsy Franklin - 4.2.1-3 +- Rebuild for DTS 7.1 + +* Tue Jun 13 2017 Patsy Franklin - 4.2.1-2 +- After rebase, output-sync test can randomly timeout. + Disable until resolved upstream. + +* Thu Jun 8 2017 Patsy Franklin - 4.2.1-1 +- Rebase to make-4.2.1 + Removed two patches that have been resolved upstream. + Reworked seven patches. + Resolves: #1455702 and #1455705 +- make no longer segfaults inside a chroot without /dev/pts + Resolves: #1451452 and #1455695 + +* Tue Sep 13 2016 Patsy Franklin - 4.1-3 +- Increase time before timeout for test fopen-fail to prevent + failing before issuing expected error. + +* Wed Aug 03 2016 Patsy Franklin - 4.1-2 +- Fix the change log to include the BZ. + +* Wed Aug 03 2016 Patsy Franklin - 4.1-1 +- Initial version for DTS. (BZ #1353327) + +* Thu Jul 07 2016 Patsy Franklin - 1:3.82-23 +- In very obscure situations we may incorrectly write the free token + back to the pipe. + Resolves: #1322670 + +* Thu Jun 30 2016 Patsy Franklin - 1:3.82-22 +- Check if the target-specific variable is the same as the global + variable, and if it is, don't free it. Savannah bug #31743. + Resolves: #1323206 + +* Fri Jan 24 2014 Daniel Mach - 1:3.82-21 +- Mass rebuild 2014-01-24 + +* Fri Dec 27 2013 Daniel Mach - 1:3.82-20 +- Mass rebuild 2013-12-27 + +* Thu Aug 22 2013 Petr Machata - 1:3.82-19 +- make now restores rlimit to its original values before launching + subprocess via $(shell) (make-3.82-func_shell-rlimit.patch) +- Determinize one test (make-3.82-tests-SECONDARY.patch) + +* Fri Jul 26 2013 Petr Machata - 1:3.82-18 +- Backport upstream patch that adds wildcard expansion to pattern + rules. (make-3.82-stem_glob.patch) + +* Wed Jun 19 2013 Petr Machata - 1:3.82-17 +- Add another fix for upstream bug 30612 + +* Thu Apr 4 2013 Petr Machata - 1:3.82-16 +- Update config.sub and config.guess to support aarch64 + +* Thu Feb 14 2013 Fedora Release Engineering - 1:3.82-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Thu Nov 29 2012 Petr Machata - 1:3.82-14 +- Drop patch5, which hasn't been applied for years + +* Mon Sep 10 2012 Petr Machata - 1:3.82-13 +- Add fix for upstream bug 30653 +- Resolves: #835424 + +* Fri Jul 27 2012 Fedora Release Engineering - 1:3.82-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Tue Mar 13 2012 Petr Machata - 1:3.82-11 +- Add a patch for avoiding glob if possible by Michael Meeks + +* Mon Mar 12 2012 Petr Machata - 1:3.82-10 +- Apply the following patches, proposed upstream by Norbert Thiebaud: + - A patch for warning on call of undefined function + - A patch for tracing calls to "eval" and "call" + +* Fri Jan 13 2012 Fedora Release Engineering - 1:3.82-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Thu Nov 3 2011 Petr Machata - 1:3.82-8 +- Add a patch for preserving -j across Makefile rebuild +- Resolves: #698702 + +* Wed Oct 26 2011 Fedora Release Engineering - 1:3.82-7 +- Rebuilt for glibc bug#747377 + +* Thu May 12 2011 Lubomir Rintel - 1:3.82-6 +- Fix free-after-use with nested assignments (#703104) + +* Tue Feb 08 2011 Fedora Release Engineering - 1:3.82-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Wed Oct 27 2010 Petr Machata - 1:3.82-4 +- Fix a discrepancy between behavior of find_next_token and + pre-allocation of token memory in func_sort. +- Resolves: #643359 + +* Wed Sep 29 2010 jkeating - 1:3.82-3 +- Rebuilt for gcc bug 634757 + +* Mon Sep 13 2010 Petr Machata - 1:3.82-2 +- Add upstream fixes for upstream bugs 30612 and 30723 +- Resolves: #631552 + +* Wed Aug 11 2010 Petr Machata - 1:3.82-1 +- Upstream 3.82: + - Drop rlimit, fdleak, strcpy-overlap, recursion-test, double-free + patches, make supports this functionality now + - Disable the memory patch for the time being + - Port remaining patches + - Add weird-shell patch, upstream bug 30748 +- Resolves: #618998 + +* Wed Aug 11 2010 Petr Machata - 1:3.81-21 +- Add BR procps +- Resolves: #616813 + +* Thu Jul 1 2010 Petr Machata - 1:3.81-20 +- Add a patch by Steve Kemp @debian that might fix the double free + problem. +- Related: #609806 + +* Fri Jun 4 2010 Petr Machata - 1:3.81-19 +- Fix testsuite on F13 +- Resolves: #600004 + +* Tue Aug 11 2009 Petr Machata - 1:3.81-18 +- Fix installation with --excludedocs +- Resolves: #515917 + +* Fri Jul 31 2009 Petr Machata - 1:3.81-17 +- Replace the use of strcpy on overlapping areas with memmove +- Resolves: #514721 + +* Sat Jul 25 2009 Fedora Release Engineering - 1:3.81-16 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild + +* Wed Feb 25 2009 Fedora Release Engineering - 1:3.81-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild + +* Mon Sep 22 2008 Petr Machata - 1:3.81-14 +- Fix patches to apply cleanly with fuzz=0 + +* Tue Sep 16 2008 Petr Machata - 1:3.81-13 +- Mark opened files as cloexec to prevent their leaking through fork +- Resolves: #462090 + +* Tue Mar 25 2008 Petr Machata - 1:3.81-12 +- Fix the rlimit patch. The success flag is kept in memory shared + with parent process after vfork, and so cannot be reset. +- Related: #214033 + +* Tue Feb 19 2008 Fedora Release Engineering - 1:3.81-11 +- Autorebuild for GCC 4.3 + +* Thu Oct 4 2007 Petr Machata - 1:3.81-10 +- Fix parallel builds with reexec. +- Related: #212111, #211290 + +* Thu Oct 4 2007 Petr Machata - 1:3.81-8 +- Cleaned up per merge review. +- Related: #226120 + +* Thu Aug 16 2007 Petr Machata - 1:3.81-7 +- Fix licensing tag. + +* Fri Mar 16 2007 Petr Machata - 1:3.81-6 +- Always run testsuite with C locale. +- Resolves: #232607 + +* Thu Feb 22 2007 Petr Machata - 1:3.81-5 +- Fix newline handling for quoted SHELL. +- Resolves: #219409 + +* Fri Feb 2 2007 Petr Machata - 1:3.81-4 +- Tidy up the specfile per rpmlint comments +- Use utf-8 and fix national characters in contributor's names + +* Thu Jan 25 2007 Petr Machata - 1:3.81-3 +- Ville Skyttä: patch for non-failing %%post, %%preun +- Resolves: #223709 + +* Thu Jan 25 2007 Petr Machata - 1:3.81-2 +- make now restores rlimit to its original values before launching + subprocess (#214033) + +* Wed Jul 12 2006 Jesse Keating - 1:3.81-1.1 +- rebuild + +* Tue May 23 2006 Petr Machata - 1:3.81-1 +- Upstream 3.81: + - Contains several backwards incompatible changes. See NEWS inside + the source package to find out more. +- memory patch and error reporting patch were ported to this version. + +* Wed Mar 15 2006 Petr Machata 1:3.80-11 +- Applied (five years old) patch from Jonathan Kamens to allow make to + handle several pattern-specific variables (#52962). + + The patch was changed so that it forces make to process pattern + specific variables in the same order as they appear in file. + (Upstream make behaves this way, too.) This is change from old make + behavior, which processed the variables in reverse order. In case + you used only x=a assignments, this had the effect of using the + first pattern specific variable that matched. For x+=a this just + doesn't work, and it produces absolutely nonintuitive results. + +- (It would be great if make's target-specific variables were handled + the same way as pattern-specific ones, just without the pattern + component. However current handling is documented and considered a + feature.) + +* Fri Feb 10 2006 Jesse Keating - 1:3.80-10.2 +- bump again for double-long bug on ppc(64) + +* Tue Feb 07 2006 Jesse Keating - 1:3.80-10.1 +- rebuilt for new gcc4.1 snapshot and glibc changes + +* Thu Feb 02 2006 Petr Machata 3.80-10 +- H.J. Lu caught a typo in the patch and provided a new one. (#175376) + +* Mon Jan 09 2006 Petr Machata 3.80-9 +- Applied patch from H.J. Lu. Somehow reduces make's enormous memory + consumption. (#175376) + +* Fri Dec 09 2005 Jesse Keating +- rebuilt + +* Mon Aug 22 2005 Jakub Jelinek 3.80-8 +- make sure errno for error reporting is not lost accross _() calls +- report EOF on read pipe differently from read returning < 0 reporting + +* Mon Mar 7 2005 Jakub Jelinek 3.80-7 +- rebuilt with GCC 4 + +* Mon Dec 13 2004 Jakub Jelinek 3.80-6 +- refuse -jN where N is bigger than PIPE_BUF (#142691, #17374) + +* Thu Oct 7 2004 Jakub Jelinek 3.80-5 +- add URL rpm tag (#134799) + +* Tue Jun 15 2004 Elliot Lee +- rebuilt + +* Fri Feb 13 2004 Elliot Lee +- rebuilt + +* Tue Dec 02 2003 Florian La Roche +- add important bug-fixes from make home-page + +* Sun Nov 30 2003 Florian La Roche +- update to 3.80 + +* Wed Jun 04 2003 Elliot Lee +- rebuilt + +* Wed Jan 22 2003 Tim Powers +- rebuilt + +* Sun Dec 29 2002 Tim Powers +- fix references to %%install in the changelog so that the package will build + +* Tue Dec 03 2002 Elliot Lee 3.79.1-15 +- _smp_mflags +- Fix ppc build (sys_siglist issues in patch2) + +* Fri Jun 21 2002 Tim Powers +- automated rebuild + +* Thu May 23 2002 Tim Powers +- automated rebuild + +* Thu May 23 2002 Jakub Jelinek +- Run make check during build + +* Thu May 23 2002 Bernhard Rosenkraenzer +- Fix build with current auto* tools + +* Fri Jan 25 2002 Jakub Jelinek +- rebuilt with gcc 3.1 + +* Fri Jul 6 2001 Trond Eivind Glomsrød +- s/Copyright/License/ +- langify +- Make sure it isn't setgid if built as root + +* Sun Jun 24 2001 Elliot Lee +- Bump release + rebuild. + +* Mon Aug 7 2000 Tim Waugh +- change info-dir entry so that 'info make' works (#15029). + +* Tue Aug 1 2000 Jakub Jelinek +- assume we don't have clock_gettime in configure, so that + make is not linked against -lpthread (and thus does not + limit stack to 2MB). + +* Sat Jul 22 2000 Jeff Johnson +- add locale files (#14362). + +* Wed Jul 12 2000 Prospector +- automatic rebuild + +* Sat Jun 24 2000 Preston Brown +- 3.79.1 bugfix release + +* Mon Jun 5 2000 Jeff Johnson +- FHS packaging. + +* Sun May 7 2000 Bernhard Rosenkraenzer +- Fix build for some odd situations, such as + - previously installed make != GNU make + - /bin/sh != bash + +* Mon Apr 17 2000 Florian La Roche +- update to 3.79 + +* Thu Feb 24 2000 Cristian Gafton +- add patch from Andreas Jaeger to fix dtype lookups (for glibc 2.1.3 + builds) + +* Mon Feb 7 2000 Jeff Johnson +- compress man page. + +* Fri Jan 21 2000 Cristian Gafton +- apply patch to fix a /tmp race condition from Thomas Biege +- simplify %%install + +* Sat Nov 27 1999 Jeff Johnson +- update to 3.78.1. + +* Thu Apr 15 1999 Bill Nottingham +- added a serial tag so it upgrades right + +* Sun Mar 21 1999 Cristian Gafton +- auto rebuild in the new build environment (release 5) + +* Wed Sep 16 1998 Cristian Gafton +- added a patch for large file support in glob + +* Tue Aug 18 1998 Jeff Johnson +- update to 3.77 + +* Mon Apr 27 1998 Prospector System +- translations modified for de, fr, tr + +* Thu Oct 16 1997 Donnie Barnes +- udpated from 3.75 to 3.76 +- various spec file cleanups +- added install-info support + +* Mon Jun 02 1997 Erik Troan +- built against glibc