-
Notifications
You must be signed in to change notification settings - Fork 7
/
autogen.sh
executable file
·309 lines (275 loc) · 7.45 KB
/
autogen.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
#!/bin/sh -e
#
# Copyright (C) 2000-2003 the xine project
#
# This file is part of xine, a unix video player.
#
# xine is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# xine is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA
#
# Maintained by Stephen Torri <[email protected]>
#
# run this to generate all the initial makefiles, etc.
PROG=xine-lib
# Minimum value required to build
export WANT_AUTOMAKE_1_9=1
export WANT_AUTOMAKE=1.9
AUTOMAKE_MIN=1.9.0
AUTOCONF_MIN=2.59
LIBTOOL_MIN=1.5.20
# Check how echo works in this /bin/sh
case `echo -n` in
-n) _echo_n= _echo_c='\c';;
*) _echo_n=-n _echo_c=;;
esac
srcdir="`dirname "$0"`"
detect_configure_ac() {
test -z "$srcdir" && srcdir=.
(test -f "$srcdir"/configure.ac) || {
echo $_echo_n "*** Error ***: Directory "\`$srcdir\`" does not look like the"
echo " top-level directory"
exit 1
}
}
parse_version_no() {
# version no. is extended/truncated to three parts; only digits are handled
perl -e 'my $v = <>;
chomp $v;
my @v = split (" ", $v);
$v = $v[$#v];
$v =~ s/[^0-9.].*$//;
@v = split (/\./, $v);
push @v, 0 while $#v < 2;
print $v[0] * 10000 + $v[1] * 100 + $v[2], "\n"'
}
#--------------------
# AUTOCONF
#-------------------
detect_autoconf() {
set -- `type autoconf 2>/dev/null`
RETVAL=$?
NUM_RESULT=$#
RESULT_FILE=$3
if [ $RETVAL -eq 0 -a $NUM_RESULT -eq 3 -a -f "$RESULT_FILE" ]; then
AC="`autoconf --version | parse_version_no`"
if [ `expr $AC` -ge "`echo $AUTOCONF_MIN | parse_version_no`" ]; then
autoconf_ok=yes
fi
else
echo
echo "**Error**: You must have \`autoconf' >= $AUTOCONF_MIN installed to"
echo " compile $PROG. Download the appropriate package"
echo " for your distribution or source from ftp.gnu.org."
exit 1
fi
}
run_autoheader () {
if test x"$autoconf_ok" != x"yes"; then
echo
echo "**Warning**: Version of autoconf is less than $AUTOCONF_MIN."
echo " Some warning message might occur from autoconf"
echo
fi
echo $_echo_n " + Running autoheader: $_echo_c";
autoheader;
echo "done."
}
run_autoconf () {
if test x"$autoconf_ok" != x"yes"; then
echo
echo "**Warning**: Version of autoconf is less than $AUTOCONF_MIN."
echo " Some warning message might occur from autoconf"
echo
fi
echo $_echo_n " + Running autoconf: $_echo_c";
autoconf;
sed -i -e '/gnu_ld/,/;;/ s/--rpath \${wl}/--rpath,/' configure
echo "done."
}
#--------------------
# LIBTOOL
#-------------------
try_libtool_executable() {
libtool=$1
set -- `type $libtool 2>/dev/null`
RETVAL=$?
NUM_RESULT=$#
RESULT_FILE=$3
if [ $RETVAL -eq 0 -a $NUM_RESULT -eq 3 -a -f "$RESULT_FILE" ]; then
LT="`$libtool --version | awk '{ print $4 }' | parse_version_no`"
if [ `expr $LT` -ge "`echo $LIBTOOL_MIN | parse_version_no`" ]; then
libtool_ok=yes
fi
fi
}
detect_libtool() {
# try glibtool first, then libtool
try_libtool_executable 'glibtool'
if [ "x$libtool_ok" != "xyes" ]; then
try_libtool_executable 'libtool'
if [ "x$libtool_ok" != "xyes" ]; then
echo
echo "**Error**: You must have \`libtool' >= $LIBTOOL_MIN installed to"
echo " compile $PROG. Download the appropriate package"
echo " for your distribution or source from ftp.gnu.org."
exit 1
fi
fi
}
run_libtoolize() {
if test x"$libtool_ok" != x"yes"; then
echo
echo "**Warning**: Version of libtool is less than $LIBTOOL_MIN."
echo " Some warning message might occur from libtool"
echo
fi
echo $_echo_n " + Running libtoolize: $_echo_c";
"${libtool}ize" --force --copy >/dev/null 2>&1;
echo "done."
}
#--------------------
# AUTOMAKE
#--------------------
detect_automake() {
#
# expected output from 'type' is
# automake is /usr/local/bin/automake
#
set -- `type automake 2>/dev/null`
RETVAL=$?
NUM_RESULT=$#
RESULT_FILE=$3
if [ $RETVAL -eq 0 -a $NUM_RESULT -eq 3 -a -f "$RESULT_FILE" ]; then
AM="`automake --version | parse_version_no`"
if [ `expr $AM` -ge "`echo $AUTOMAKE_MIN | parse_version_no`" ]; then
automake_ok=yes
fi
else
echo
echo "**Error**: You must have \`automake' >= $AUTOMAKE_MIN installed to"
echo " compile $PROG. Download the appropriate package"
echo " for your distribution or source from ftp.gnu.org."
exit 1
fi
}
run_automake () {
if test x"$automake_ok" != x"yes"; then
echo
echo "**Warning**: Version of automake is less than $AUTOMAKE_MIN."
echo " Some warning message might occur from automake"
echo
fi
echo $_echo_n " + Running automake: $_echo_c";
automake --gnu --add-missing --copy -Wno-portability;
echo "done."
}
#--------------------
# ACLOCAL
#-------------------
detect_aclocal() {
# if no automake, don't bother testing for aclocal
set -- `type aclocal 2>/dev/null`
RETVAL=$?
NUM_RESULT=$#
RESULT_FILE=$3
if [ $RETVAL -eq 0 -a $NUM_RESULT -eq 3 -a -f "$RESULT_FILE" ]; then
AC="`aclocal --version | parse_version_no`"
if [ `expr $AC` -ge "`echo $AUTOMAKE_MIN | parse_version_no`" ]; then
aclocal_ok=yes
fi
else
echo
echo "**Error**: You must have \`aclocal' >= $AUTOMAKE_MIN installed to"
echo " compile $PROG. Download the appropriate package"
echo " for your distribution or source from ftp.gnu.org."
exit 1
fi
}
run_aclocal () {
if test x"$aclocal_ok" != x"yes"; then
echo
echo "**Warning**: Version of aclocal is less than $AUTOMAKE_MIN."
echo " Some warning message might occur from aclocal"
echo
fi
echo $_echo_n " + Running autopoint: $_echo_c"
autopoint
echo "done."
echo $_echo_n " + Running aclocal: $_echo_c"
aclocal -I m4
echo "done."
}
#--------------------
# CONFIGURE
#-------------------
run_configure () {
rm -f config.cache
echo " + Running 'configure $@':"
if [ -z "$*" ]; then
echo " ** If you wish to pass arguments to ./configure, please"
echo " ** specify them on the command line."
fi
if test -f configure; then
./configure "$@"
else
"$srcdir"/configure "$@"
fi
}
#---------------
# MAIN
#---------------
detect_configure_ac
cd "$srcdir"
detect_autoconf
detect_libtool
detect_automake
detect_aclocal
# help: print out usage message
# *) run aclocal, autoheader, automake, autoconf, configure
case "$1" in
aclocal)
run_aclocal
;;
autoheader)
run_autoheader
;;
automake)
run_aclocal
run_automake
;;
autoconf)
run_aclocal
run_autoconf
;;
libtoolize)
run_libtoolize
;;
noconfig)
run_libtoolize
run_aclocal
run_autoheader
run_automake
run_autoconf
;;
*)
run_libtoolize
run_aclocal
run_autoheader
run_automake
run_autoconf
# return to our original directory
cd - >/dev/null
run_configure "$@"
;;
esac