Created
May 13, 2012 23:28
-
-
Save ghthor/2690769 to your computer and use it in GitHub Desktop.
Patch to fix building libinfinity with automake-1.12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/autogen.sh b/autogen.sh | |
index b78711e..e8c3681 100755 | |
--- a/autogen.sh | |
+++ b/autogen.sh | |
@@ -316,13 +316,14 @@ AUTOHEADER=`echo $AUTOCONF | sed s/autoconf/autoheader/` | |
case $REQUIRED_AUTOMAKE_VERSION in | |
1.4*) automake_progs="automake-1.4" ;; | |
- 1.5*) automake_progs="automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6 automake-1.5" ;; | |
- 1.6*) automake_progs="automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6" ;; | |
- 1.7*) automake_progs="automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7" ;; | |
- 1.8*) automake_progs="automake-1.11 automake-1.10 automake-1.9 automake-1.8" ;; | |
- 1.9*) automake_progs="automake-1.11 automake-1.10 automake-1.9" ;; | |
- 1.10*) automake_progs="automake-1.11 automake-1.10" ;; | |
- 1.11*) automake_progs="automake-1.11" ;; | |
+ 1.5*) automake_progs="automake-1.12 automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6 automake-1.5" ;; | |
+ 1.6*) automake_progs="automake-1.12 automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7 automake-1.6" ;; | |
+ 1.7*) automake_progs="automake-1.12 automake-1.11 automake-1.10 automake-1.9 automake-1.8 automake-1.7" ;; | |
+ 1.8*) automake_progs="automake-1.12 automake-1.11 automake-1.10 automake-1.9 automake-1.8" ;; | |
+ 1.9*) automake_progs="automake-1.12 automake-1.11 automake-1.10 automake-1.9" ;; | |
+ 1.10*) automake_progs="automake-1.12 automake-1.11 automake-1.10" ;; | |
+ 1.11*) automake_progs="automake-1.12 automake-1.11" ;; | |
+ 1.12*) automake_progs="automake-1.12" ;; | |
esac | |
version_check automake AUTOMAKE "$automake_progs" $REQUIRED_AUTOMAKE_VERSION \ | |
"http://ftp.gnu.org/pub/gnu/automake/automake-$REQUIRED_AUTOMAKE_VERSION.tar.gz" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment