diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 13:49:04 -0700 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2015-08-08 17:38:18 -0700 |
commit | 56bd759df1d0c750a065b8c845e93d5dfa6b549d (patch) | |
tree | 3f91093cdb475e565ae857f1c5a7fd339e2d781e /dev-lang/gnat-gcc/files/gnat-gcc-4.5.4-tex-version-workaround.patch | |
download | gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.gz gentoo-56bd759df1d0c750a065b8c845e93d5dfa6b549d.tar.xz |
proj/gentoo: Initial commit
This commit represents a new era for Gentoo:
Storing the gentoo-x86 tree in Git, as converted from CVS.
This commit is the start of the NEW history.
Any historical data is intended to be grafted onto this point.
Creation process:
1. Take final CVS checkout snapshot
2. Remove ALL ChangeLog* files
3. Transform all Manifests to thin
4. Remove empty Manifests
5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$
5.1. Do not touch files with -kb/-ko keyword flags.
Signed-off-by: Robin H. Johnson <robbat2@gentoo.org>
X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests
X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project
X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration
X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn
X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts
X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration
X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging
X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
Diffstat (limited to 'dev-lang/gnat-gcc/files/gnat-gcc-4.5.4-tex-version-workaround.patch')
-rw-r--r-- | dev-lang/gnat-gcc/files/gnat-gcc-4.5.4-tex-version-workaround.patch | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/dev-lang/gnat-gcc/files/gnat-gcc-4.5.4-tex-version-workaround.patch b/dev-lang/gnat-gcc/files/gnat-gcc-4.5.4-tex-version-workaround.patch new file mode 100644 index 00000000000..46f4d5c3de5 --- /dev/null +++ b/dev-lang/gnat-gcc/files/gnat-gcc-4.5.4-tex-version-workaround.patch @@ -0,0 +1,75 @@ +Index: gcc-4.5.4/configure +=================================================================== +--- gcc-4.5.4.orig/configure ++++ gcc-4.5.4/configure +@@ -8384,9 +8384,9 @@ case " $build_configdirs " in + *) + + # For an installed makeinfo, we require it to be from texinfo 4.7 or +- # higher, else we use the "missing" dummy. ++ # some higher 4.x, else we use the "missing" dummy. + if ${MAKEINFO} --version \ +- | egrep 'texinfo[^0-9]*(4\.([7-9]|[1-9][0-9])|[5-9]|[1-9][0-9])' >/dev/null 2>&1; then ++ | egrep 'texinfo[^0-9]*(4\.([7-9]|[1-9][0-9]))' >/dev/null 2>&1; then + : + else + MAKEINFO="$MISSING makeinfo" +Index: gcc-4.5.4/gcc/configure +=================================================================== +--- gcc-4.5.4.orig/gcc/configure ++++ gcc-4.5.4/gcc/configure +@@ -7401,8 +7401,8 @@ fi + + if test -n "$MAKEINFO"; then + # Found it, now check the version. +- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for modern makeinfo" >&5 +-$as_echo_n "checking for modern makeinfo... " >&6; } ++ { $as_echo "$as_me:${as_lineno-$LINENO}: checking for 4.7+ makeinfo" >&5 ++$as_echo_n "checking for 4.7+ makeinfo... " >&6; } + if test "${gcc_cv_prog_makeinfo_modern+set}" = set; then : + $as_echo_n "(cached) " >&6 + else +@@ -7411,7 +7411,7 @@ else + + case $ac_prog_version in + '') gcc_cv_prog_makeinfo_modern=no;; +- 4.[7-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*) gcc_cv_prog_makeinfo_modern=yes;; ++ 4.[7-9]*|4.[1-9][0-9]*) gcc_cv_prog_makeinfo_modern=yes;; + *) gcc_cv_prog_makeinfo_modern=no;; + esac + +@@ -7427,10 +7427,10 @@ $as_echo "$gcc_cv_prog_makeinfo_modern" + + if test $gcc_cv_prog_makeinfo_modern = no; then + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: +-*** Makeinfo is missing or too old. ++*** Makeinfo is missing, too old or too new. + *** Info documentation will not be built." >&5 + $as_echo "$as_me: WARNING: +-*** Makeinfo is missing or too old. ++*** Makeinfo is missing, too old or too new. + *** Info documentation will not be built." >&2;} + BUILD_INFO= + else +Index: gcc-4.5.4/libiberty/configure +=================================================================== +--- gcc-4.5.4.orig/libiberty/configure ++++ gcc-4.5.4/libiberty/configure +@@ -2440,13 +2440,13 @@ $as_echo "$as_me: WARNING: + ;; + *) + case x"`$MAKEINFO --version | grep 'GNU texinfo'`" in +- x*\ [1-3].* ) +- MAKEINFO="@echo $MAKEINFO is too old, 4.0 or newer required; true" ++ x*\ [1-35-9].* ) ++ MAKEINFO="@echo $MAKEINFO is not 4.x; true" + BUILD_INFO= + { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: +-*** Makeinfo is too old. Info documentation will not be built." >&5 ++*** Makeinfo is not 4.x. Info documentation will not be built." >&5 + $as_echo "$as_me: WARNING: +-*** Makeinfo is too old. Info documentation will not be built." >&2;} ++*** Makeinfo is not 4.x. Info documentation will not be built." >&2;} + ;; + esac + ;; |