]> git.ipfire.org Git - thirdparty/squid.git/blob - bootstrap.sh
Release Notes: update and spelling corrections
[thirdparty/squid.git] / bootstrap.sh
1 #!/bin/sh
2 # Used to setup the configure.ac, autoheader and Makefile.in's if configure
3 # has not been generated. This script is only needed for developers when
4 # configure has not been run, or if a Makefile.am in a non-configured directory
5 # has been updated
6
7 # Autotool versions preferred. To override either edit the script
8 # to match the versions you want to use, or set the variables on
9 # the command line like "env acver=.. amver=... ./bootstrap.sh"
10 acversions="${acver:-.}" # 2.68 2.67 2.66 2.65 2.64 2.63 2.62 2.61}"
11 amversions="${amver:-.}" # 1.11 1.10 1.9}"
12 ltversions="${ltver:-.}" # 2.2}"
13
14 check_version()
15 {
16 eval $2 --version 2>/dev/null | grep -i "$1.* $3" >/dev/null
17 }
18
19 show_version()
20 {
21 tool=$1
22 variant=$2
23 ${tool}${variant} --version 2>/dev/null | head -1 | sed -e 's/.*) //'
24 }
25
26 find_variant()
27 {
28 tool=$1
29 found="NOT_FOUND"
30 shift
31 versions="$*"
32 for version in $versions; do
33 for variant in "" "-${version}" "`echo $version | sed -e 's/\.//g'`"; do
34 if check_version $tool ${tool}${variant} $version; then
35 found="${variant}"
36 break
37 fi
38 done
39 if [ "x$found" != "xNOT_FOUND" ]; then
40 break
41 fi
42 done
43 if [ "x$found" = "xNOT_FOUND" ]; then
44 echo "WARNING: Cannot find $tool version $versions" >&2
45 echo "Trying `$tool --version | head -1`" >&2
46 found=""
47 fi
48 echo $found
49 }
50
51 find_path()
52 {
53 tool=$1
54 path=`which $tool`
55 if test $? -gt 0 ; then
56 # path for $tool not found. Not defining, and hoping for the best
57 echo
58 return
59 fi
60 echo $(dirname $path)
61 }
62
63 bootstrap() {
64 if "$@"; then
65 true # Everything OK
66 else
67 echo "$1 failed"
68 echo "Autotool bootstrapping failed. You will need to investigate and correct" ;
69 echo "before you can develop on this source tree"
70 exit 1
71 fi
72 }
73
74 bootstrap_libtoolize() {
75 ltver=$1
76
77 ltdl="--ltdl"
78
79 bootstrap libtoolize$ltver $ltdl --force --copy --automake
80
81 # customize generated libltdl, if any
82 if test -d libltdl
83 then
84 src=libltdl
85
86 # do not bundle with the huge standard license text
87 rm -f $src/COPYING.LIB
88 makefile=$src/Makefile.in
89 sed 's/COPYING.LIB/ /g' $makefile > $makefile.new;
90 chmod u+w $makefile
91 mv $makefile.new $makefile
92 chmod u-w $makefile
93 fi
94 }
95
96 # Adjust paths of required autool packages
97 amver=`find_variant automake ${amversions}`
98 acver=`find_variant autoconf ${acversions}`
99 ltver=`find_variant libtool ${ltversions}`
100
101 # Produce debug output about what version actually found.
102 amversion=`show_version automake "${amver}"`
103 acversion=`show_version autoconf "${acver}"`
104 ltversion=`show_version libtool "${ltver}"`
105
106 # Find the libtool path to get the right aclocal includes
107 ltpath=`find_path libtool$ltver`
108
109 # Set environment variable to tell automake which autoconf to use.
110 AUTOCONF="autoconf${acver}" ; export AUTOCONF
111
112 echo "automake ($amversion) : automake$amver"
113 echo "autoconf ($acversion) : autoconf$acver"
114 echo "libtool ($ltversion) : libtool$ltver"
115 echo "libtool path : $ltpath"
116
117 for dir in \
118 "" \
119 lib/libTrie
120 do
121 if [ -z "$dir" ] || [ -d $dir ]; then
122 if (
123 echo "Bootstrapping $dir"
124 cd ./$dir
125 if [ -n "$dir" ] && [ -f bootstrap.sh ]; then
126 ./bootstrap.sh
127 elif [ ! -f $dir/configure ]; then
128 # Make sure cfgaux exists
129 mkdir -p cfgaux
130
131 if test -n "$ltpath"; then
132 acincludeflag="-I $ltpath/../share/aclocal"
133 else
134 acincludeflag=""
135 fi
136
137 # Bootstrap the autotool subsystems
138 bootstrap aclocal$amver $acincludeflag
139 bootstrap autoheader$acver
140 bootstrap_libtoolize $ltver
141 bootstrap automake$amver --foreign --add-missing --copy -f
142 bootstrap autoconf$acver --force
143 fi ); then
144 : # OK
145 else
146 exit 1
147 fi
148 fi
149 done
150
151 # Make a copy of SPONSORS we can package
152 sed -e 's/@Squid-[0-9\.]*://' <SPONSORS.list > SPONSORS || (rm -f SPONSORS && exit 1)
153
154 # Fixup autoconf recursion using --silent/--quiet option
155 # autoconf should inherit this option whe recursing into subdirectories
156 # but it currently doesn't for some reason.
157 if ! grep "configure_args --quiet" configure >/dev/null; then
158 echo "Fixing configure recursion"
159 ed -s configure <<'EOS' >/dev/null || true
160 /ac_sub_configure_args=/
161 +1
162 i
163 # Add --quiet option if used
164 test "$silent" = yes &&
165 ac_sub_configure_args="$ac_sub_configure_args --quiet"
166 .
167 w
168 EOS
169 fi
170
171 echo "Autotool bootstrapping complete."