diff options
author | 2005-01-30 13:26:36 +0000 | |
---|---|---|
committer | 2005-01-30 13:26:36 +0000 | |
commit | ef28c72a71d9a4b750a2271af2b4f8fec52c8e8c (patch) | |
tree | 0c6e0aa0f72eda9b1bab525fe92edc844493d744 /sys-devel/automake/files | |
parent | Add RDEPEND on lib-compat. Bug #66858. (diff) | |
download | historical-ef28c72a71d9a4b750a2271af2b4f8fec52c8e8c.tar.gz historical-ef28c72a71d9a4b750a2271af2b4f8fec52c8e8c.tar.bz2 historical-ef28c72a71d9a4b750a2271af2b4f8fec52c8e8c.zip |
Add a few patches from fedora and dont run error.test since its known to fail and no one really cares to fix it in this old version #79529.
Package-Manager: portage-2.0.51-r15
Diffstat (limited to 'sys-devel/automake/files')
4 files changed, 50 insertions, 29 deletions
diff --git a/sys-devel/automake/files/1.4/00_all_ansi2knr-stdlib.patch b/sys-devel/automake/files/1.4/00_all_ansi2knr-stdlib.patch new file mode 100644 index 000000000000..78aa2e3d6a3f --- /dev/null +++ b/sys-devel/automake/files/1.4/00_all_ansi2knr-stdlib.patch @@ -0,0 +1,11 @@ +--- ansi2knr.c.orig 2005-01-30 06:54:09.702046352 -0500 ++++ ansi2knr.c 2005-01-30 06:54:17.719827464 -0500 +@@ -132,7 +132,7 @@ + + #endif /* not HAVE_CONFIG_H */ + +-#if STDC_HEADERS ++#if STDC_HEADERS || HAVE_STDLIB_H + # include <stdlib.h> + #else + /* diff --git a/sys-devel/automake/files/1.4/00_all_libtoolize.patch b/sys-devel/automake/files/1.4/00_all_libtoolize.patch new file mode 100644 index 000000000000..d71d66c973c5 --- /dev/null +++ b/sys-devel/automake/files/1.4/00_all_libtoolize.patch @@ -0,0 +1,17 @@ +Patch from redhat/fedora which made it into upstream. + +--- automake.in Wed Jul 12 11:40:03 2000 ++++ automake.in Thu Nov 9 07:04:46 2000 +@@ -6882,9 +6882,11 @@ + $suppress = 1; + + # Maybe run libtoolize. ++ @libtoolize_args = ('--automake'); ++ push @libtoolize_args, '-c' if $copy_missing; + if ($seen_libtool + && grep ($_ eq $file, @libtoolize_files) +- && system ('libtoolize', '--automake')) ++ && system ('libtoolize', @libtoolize_args)) + { + $message = "installing \`$errfile'"; + $suppress = 0; diff --git a/sys-devel/automake/files/1.4/00_all_subdirs-89656.patch b/sys-devel/automake/files/1.4/00_all_subdirs-89656.patch new file mode 100644 index 000000000000..7500fc98d9ac --- /dev/null +++ b/sys-devel/automake/files/1.4/00_all_subdirs-89656.patch @@ -0,0 +1,22 @@ +Patch from redhat/fedora which made it into upstream. + +--- automake-1.4-p6/subdirs.am.subdirs 2001-07-16 22:47:36.000000000 -0700 ++++ automake-1.4-p6/subdirs.am 2003-04-25 08:24:35.000000000 -0700 +@@ -27,7 +27,7 @@ + all-recursive install-data-recursive install-exec-recursive \ + installdirs-recursive install-recursive uninstall-recursive @INSTALLINFO@ \ + check-recursive installcheck-recursive info-recursive dvi-recursive: +- @set fnord $(MAKEFLAGS); amf=$$2; \ ++ @set fnord $$MAKEFLAGS; amf=$$2; \ + dot_seen=no; \ + target=`echo $@ | sed s/-recursive//`; \ + list='$(SUBDIRS)'; for subdir in $$list; do \ +@@ -55,7 +55,7 @@ check-recursive installcheck-recursive i + ## bombs. + mostlyclean-recursive clean-recursive distclean-recursive \ + maintainer-clean-recursive: +- @set fnord $(MAKEFLAGS); amf=$$2; \ ++ @set fnord $$MAKEFLAGS; amf=$$2; \ + dot_seen=no; \ + rev=''; list='$(SUBDIRS)'; for subdir in $$list; do \ + rev="$$subdir $$rev"; \ diff --git a/sys-devel/automake/files/automake-1.4_p5-ignore-duplicates.patch b/sys-devel/automake/files/automake-1.4_p5-ignore-duplicates.patch deleted file mode 100644 index c24b30d8fce2..000000000000 --- a/sys-devel/automake/files/automake-1.4_p5-ignore-duplicates.patch +++ /dev/null @@ -1,29 +0,0 @@ ---- aclocal Sat Jun 29 00:28:56 2002 -+++ aclocal Fri Jun 28 23:23:31 2002 -@@ -397,17 +420,18 @@ - - if (/$ac_defun_rx/) - { -- if (!defined $map{$1}) -+ if (! defined $map{$1}) - { - $map{$1} = $file; - } -- # Allow acinclude.m4 to override other macro files. -- elsif ($map{$1} ne 'acinclude.m4' || $file eq 'acinclude.m4') -- { -- warn "aclocal: $file: $.: duplicated macro \`$1'\n"; -- $exit_status = 1; -- } -- print STDERR "Found macro $1 in $file: $.\n" if $verbosity; -+ -+ # Note: we used to give an error here if we saw a -+ # duplicated macro. However, this turns out to be -+ # extremely unpopular. It causes actual problems which -+ # are hard to work around, especially when you must -+ # mix-and-match tool versions. -+ -+ print STDERR "aclocal: found macro $1 in $file: $.\n" if $verbose; - } - } - close (FILE); |