3 # Copyright 2005, 2006, 2007, 2008, 2009, 2010 by
4 # David Turner, Robert Wilhelm, and Werner Lemberg.
6 # This file is part of the FreeType project, and may only be used, modified,
7 # and distributed under the terms of the FreeType project license,
8 # LICENSE.TXT. By continuing to use, modify, or distribute this file you
9 # indicate that you have read the license and understand and accept it
17 if test $?
!= 0 ; then
18 echo "error while running \`$*'"
25 echo $1 |
sed -e 's/\([0-9][0-9]*\)\..*/\1/g'
30 echo $1 |
sed -e 's/[0-9][0-9]*\.\([0-9][0-9]*\).*/\1/g'
35 # tricky: some version numbers don't include a patch
36 # separated with a point, but something like 1.4-p6
37 patch=`echo $1 | sed -e 's/[0-9][0-9]*\.[0-9][0-9]*\.\([0-9][0-9]*\).*/\1/g'`
38 if test "$patch" = "$1"; then
39 patch=`echo $1 | sed -e 's/[0-9][0-9]*\.[0-9][0-9]*\-p\([0-9][0-9]*\).*/\1/g'`
40 # if there isn't any patch number, default to 0
41 if test "$patch" = "$1"; then
48 # $1: version to check
51 compare_to_minimum_version
()
53 MAJOR1
=`get_major_version $1`
54 MAJOR2
=`get_major_version $2`
55 if test $MAJOR1 -lt $MAJOR2; then
59 if test $MAJOR1 -gt $MAJOR2; then
65 MINOR1
=`get_minor_version $1`
66 MINOR2
=`get_minor_version $2`
67 if test $MINOR1 -lt $MINOR2; then
71 if test $MINOR1 -gt $MINOR2; then
77 PATCH1
=`get_patch_version $1`
78 PATCH2
=`get_patch_version $2`
79 if test $PATCH1 -lt $PATCH2; then
86 # check the version of a given tool against a minimum version number
89 # $2: tool usual name (e.g. `aclocal')
90 # $3: tool variable (e.g. `ACLOCAL')
91 # $4: minimum version to check against
92 # $5: option field index used to extract the tool version from the
98 # assume the output of "[TOOL] --version" is "toolname (GNU toolname foo bar) version"
99 if test "$field"x
= x
; then
100 field
=3 # default to 3 for all GNU autotools, after filtering enclosed string
102 version
=`$1 --version | head -1 | sed 's/([^)]*)/()/g' | cut -d ' ' -f $field`
103 version_check
=`compare_to_minimum_version $version $4`
104 if test "$version_check"x
= 0x
; then
105 echo "ERROR: Your version of the \`$2' tool is too old."
106 echo " Minimum version $4 is required (yours is version $version)."
107 echo " Please upgrade or use the $3 variable to point to a more recent one."
113 if test ! -f .
/builds
/unix
/configure.raw
; then
114 echo "You must be in the same directory as \`autogen.sh'."
115 echo "Bootstrapping doesn't work if srcdir != builddir."
119 # On MacOS X, the GNU libtool is named `glibtool'.
121 LIBTOOLIZE
=libtoolize
122 if test "$HOSTOS"x
= Darwinx
; then
123 LIBTOOLIZE
=glibtoolize
126 if test "$ACLOCAL"x
= x
; then
130 if test "$AUTOCONF"x
= x
; then
134 check_tool_version
$ACLOCAL aclocal ACLOCAL
1.10.1
135 check_tool_version
$LIBTOOLIZE libtoolize LIBTOOLIZE
2.2.4
136 check_tool_version
$AUTOCONF autoconf AUTOCONF
2.62
138 # This sets freetype_major, freetype_minor, and freetype_patch.
139 eval `sed -nf version.sed include/freetype/freetype.h`
141 # We set freetype-patch to an empty value if it is zero.
142 if test "$freetype_patch" = ".0"; then
148 echo "generating \`configure.ac'"
149 sed -e "s;@VERSION@;$freetype_major$freetype_minor$freetype_patch;" \
150 < configure.raw
> configure.ac
152 run aclocal
-I .
--force
153 run
$LIBTOOLIZE --force --copy --install
156 chmod +x mkinstalldirs