* bootstrap: imported a newer bootstrap script.
git-svn-id: svn://svn.zoy.org/elk/trunk@259 55e467fa-43c5-0310-a8a2-de718669efc6
This commit is contained in:
		
							parent
							
								
									550ad4e2a3
								
							
						
					
					
						commit
						6f77a6d9ed
					
				
							
								
								
									
										134
									
								
								bootstrap
								
								
								
								
							
							
						
						
									
										134
									
								
								bootstrap
								
								
								
								
							|  | @ -1,30 +1,44 @@ | ||||||
| #! /bin/sh | #! /bin/sh | ||||||
| 
 | 
 | ||||||
| ##  bootstrap file for Elk -- Sam Hocevar <sam@zoy.org> | # bootstrap: the ultimate bootstrap/autogen.sh script for autotools projects | ||||||
| ##  $Id$ | # Copyright (c) 2002, 2003, 2004, 2005, 2006 Sam Hocevar <sam@zoy.org> | ||||||
|  | # | ||||||
|  | #    This program is free software; you can redistribute it and/or | ||||||
|  | #    modify it under the terms of the Do What The Fuck You Want To | ||||||
|  | #    Public License, Version 2, as published by Sam Hocevar. See | ||||||
|  | #    http://sam.zoy.org/wtfpl/COPYING for more details. | ||||||
|  | # | ||||||
|  | # The latest version of this script can be found at the following place: | ||||||
|  | #   http://sam.zoy.org/autotools/ | ||||||
| 
 | 
 | ||||||
| set -x | # Die if an error occurs | ||||||
| set -e | set -e | ||||||
| 
 | 
 | ||||||
| # Get a sane environment, just in case | # Guess whether we are using configure.ac or configure.in | ||||||
| LANG=C | if test -f configure.ac; then | ||||||
| export LANG |   conffile="configure.ac" | ||||||
| CYGWIN=binmode | elif test -f configure.in; then | ||||||
| export CYGWIN |   conffile="configure.in" | ||||||
|  | else | ||||||
|  |   echo "$0: could not find configure.ac or configure.in" | ||||||
|  |   exit 1 | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | # Check for needed features | ||||||
|  | auxdir="`sed -ne 's/^[ \t]*A._CONFIG_AUX_DIR *( *\([^ )]*\).*/\1/p' $conffile`" | ||||||
|  | libtool="`grep -q '^[ \t]*A._PROG_LIBTOOL' $conffile && echo yes || echo no`" | ||||||
|  | header="`grep -q '^[ \t]*A._CONFIG_HEADER' $conffile && echo yes || echo no`" | ||||||
| 
 | 
 | ||||||
| # Check for automake | # Check for automake | ||||||
| amvers="no" | amvers="no" | ||||||
| if automake-1.9 --version >/dev/null 2>&1; then | for v in "-1.9" "19" "-1.8" "18" "-1.7" "17" "-1.6" "16" "-1.5" "15"; do | ||||||
|   amvers="-1.9" |   if automake${v} --version >/dev/null 2>&1; then | ||||||
| elif automake-1.8 --version >/dev/null 2>&1; then |     amvers="${v}" | ||||||
|   amvers="-1.8" |     break | ||||||
| elif automake-1.7 --version >/dev/null 2>&1; then |   fi | ||||||
|   amvers="-1.7" | done | ||||||
| elif automake-1.6 --version >/dev/null 2>&1; then | 
 | ||||||
|   amvers="-1.6" | if test "${amvers}" = "no" && automake --version > /dev/null 2>&1; then | ||||||
| elif automake-1.5 --version >/dev/null 2>&1; then |  | ||||||
|   amvers="-1.5" |  | ||||||
| elif automake --version > /dev/null 2>&1; then |  | ||||||
|   amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`" |   amvers="`automake --version | sed -e '1s/[^0-9]*//' -e q`" | ||||||
|   if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then |   if expr "$amvers" "<" "1.5" > /dev/null 2>&1; then | ||||||
|     amvers="no" |     amvers="no" | ||||||
|  | @ -34,38 +48,74 @@ elif automake --version > /dev/null 2>&1; then | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| if test "$amvers" = "no"; then | if test "$amvers" = "no"; then | ||||||
|   set +x |  | ||||||
|   echo "$0: you need automake version 1.5 or later" |   echo "$0: you need automake version 1.5 or later" | ||||||
|   exit 1 |   exit 1 | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| # Check for libtool | # Check for autoconf | ||||||
| libtoolize="no" | acvers="no" | ||||||
| if libtoolize --version >/dev/null 2>&1; then | for v in "" "259" "253"; do | ||||||
|   libtoolize="libtoolize" |   if autoconf${v} --version >/dev/null 2>&1; then | ||||||
| elif glibtoolize --version >/dev/null 2>&1; then |     acvers="${v}" | ||||||
|   libtoolize="glibtoolize" |     break | ||||||
|   fi |   fi | ||||||
|  | done | ||||||
| 
 | 
 | ||||||
| if test "$libtoolize" = "no"; then | if test "$acvers" = "no"; then | ||||||
|   set +x |   echo "$0: you need autoconf" | ||||||
|   echo "$0: you need libtool" |  | ||||||
|   exit 1 |   exit 1 | ||||||
| fi | fi | ||||||
| 
 | 
 | ||||||
| # Remove old cruft | # Check for libtool | ||||||
| rm -f aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh INSTALL | if test "$libtool" = "yes"; then | ||||||
| rm -Rf autom4te.cache autotools |   libtoolize="no" | ||||||
| mkdir autotools |   if glibtoolize --version >/dev/null 2>&1; then | ||||||
| 
 |     libtoolize="glibtoolize" | ||||||
| ${libtoolize} --copy --force |   else | ||||||
| if test -f "ltmain.sh"; then |     for v in "16" "15" "" "14"; do | ||||||
|   echo "$0: working around a minor libtool issue" |       if libtoolize${v} --version >/dev/null 2>&1; then | ||||||
|   mv ltmain.sh autotools/ |         libtoolize="libtoolize${v}" | ||||||
|  |         break | ||||||
|  |       fi | ||||||
|  |     done | ||||||
|   fi |   fi | ||||||
| 
 | 
 | ||||||
| aclocal${amvers} |   if test "$libtoolize" = "no"; then | ||||||
| autoconf |     echo "$0: you need libtool" | ||||||
| autoheader |     exit 1 | ||||||
| automake${amvers} --add-missing --copy |   fi | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | # Remove old cruft | ||||||
|  | for x in aclocal.m4 configure config.guess config.log config.sub config.cache config.h.in config.h compile libtool.m4 ltoptions.m4 ltsugar.m4 ltversion.m4 ltmain.sh libtool ltconfig missing mkinstalldirs depcomp install-sh; do rm -f $x autotools/$x; if test -n "$auxdir"; then rm -f "$auxdir/$x"; fi; done | ||||||
|  | rm -Rf autom4te.cache | ||||||
|  | if test -n "$auxdir" -a ! -d "$auxdir"; then mkdir "$auxdir"; fi | ||||||
|  | 
 | ||||||
|  | # Explain what we are doing from now | ||||||
|  | set -x | ||||||
|  | 
 | ||||||
|  | # Bootstrap package | ||||||
|  | if test "$libtool" = "yes"; then | ||||||
|  |   ${libtoolize} --copy --force | ||||||
|  |   if test -n "$auxdir" -a -f "ltmain.sh"; then | ||||||
|  |     echo "$0: working around a minor libtool issue" | ||||||
|  |     mv ltmain.sh "$auxdir/" | ||||||
|  |   fi | ||||||
|  | fi | ||||||
|  | 
 | ||||||
|  | if test -n "$auxdir"; then | ||||||
|  |   aclocal${amvers} -I autotools | ||||||
|  | else | ||||||
|  |   aclocal${amvers} | ||||||
|  | fi | ||||||
|  | autoconf${acvers} | ||||||
|  | if test "$header" = "yes"; then | ||||||
|  |   autoheader${acvers} | ||||||
|  | fi | ||||||
|  | #add --include-deps if you want to bootstrap with any other compiler than gcc | ||||||
|  | #automake${amvers} --add-missing --copy --include-deps | ||||||
|  | automake${amvers} --foreign --add-missing --copy | ||||||
|  | 
 | ||||||
|  | # Remove cruft that we no longer want | ||||||
|  | rm -Rf autom4te.cache | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue
	
	 sam
						sam