blob: e0fbad4cd9f36916dfc9ef9931db6706aca332cc (
plain)
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
|
#!/bin/sh
package=zexy
KERN=$(uname -s)
case "${KERN}" in
Darwin)
PATH=/sw/bin:${PATH}
;;
*)
;;
esac
echo PATH: $PATH
AUTORECONF=$(which autoreconf)
AUTOHEADER=$(which autoheader)
AUTOMAKE=$(which automake)
ACLOCAL=$(which aclocal)
LIBTOOL=$(which libtool)
LIBTOOLIZE=$(which libtoolize)
AUTOCONF=$(which autoconf)
case "${KERN}" in
MINGW*)
AUTORECONF=""
;;
*)
;;
esac
#check whether the system supports pushd/popd
if pushd . > /dev/null 2>&1
then
popd > /dev/null 2>&1
else
## some shells (namely dash) don't support pushd/popd
## here we provide some dummies
pushd () {
echo "ignoring pushd to $@"
}
popd () {
echo "ignoring popd ..."
}
fi
autoconf_getsubdirs () {
if [ -e configure.ac ]; then
cat configure.ac | sed -e 's|#.*$||' | grep AC_CONFIG_SUBDIRS | \
sed -e 's|^.*AC_CONFIG_SUBDIRS(\[\(.*\)\]).*$|\1|'
fi
}
runit () {
echo " $@"
$@
}
manual_autoreconf_doit () {
echo faking autoreconf for $1
pushd $1
runit $ACLOCAL -I . -I $BASEDIR/m4 || exit 1
runit $LIBTOOLIZE --automake -c || exit 1
runit $AUTOCONF || exit 1
if test -e configure.ac && grep AC_CONFIG_HEADER configure.ac > /dev/null 2>&1; then
runit $AUTOHEADER --force || exit 1
fi
if [ -e Makefile.am ]; then
runit $AUTOMAKE --add-missing -c || exit 1
fi
popd
}
manual_autoreconf () {
echo faking autoreconf..
BASEDIR=${0%/*}
pushd $BASEDIR
BASEDIR=$(pwd)
popd
if [ "x${SUBDIRS}" = "x" ]; then
#SUBDIRS=autoconf_getsubdirs
SUBDIRS="."
fi
# check for all the needed helpers
DIE=0
($AUTOCONF --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have autoconf installed to compile $package."
echo "Download the appropriate package for your distribution,"
echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
DIE=1
}
($AUTOMAKE --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have automake installed to compile $package."
echo "Download the appropriate package for your system,"
echo "or get the source from one of the GNU ftp sites"
echo "listed in http://www.gnu.org/order/ftp.html"
DIE=1
}
($ACLOCAL --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have aclocal installed to compile $package."
echo "Download the appropriate package for your system,"
echo "or get the source from one of the GNU ftp sites"
echo "listed in http://www.gnu.org/order/ftp.html"
DIE=1
}
($LIBTOOL --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have libtool installed to compile $package."
echo "Download the appropriate package for your system,"
echo "or get the source from one of the GNU ftp sites"
echo "listed in http://www.gnu.org/order/ftp.html"
DIE=1
}
($LIBTOOLIZE --version) < /dev/null > /dev/null 2>&1 || {
echo
echo "You must have libtoolize installed to compile $package."
echo "Download the appropriate package for your system,"
echo "or get the source from one of the GNU ftp sites"
echo "listed in http://www.gnu.org/order/ftp.html"
DIE=1
}
if test "$DIE" -eq 1; then
exit 1
fi
for s in ${SUBDIRS}; do
manual_autoreconf_doit ${BASEDIR}/${s}
done
}
if test x$AUTORECONF != x; then
echo running autoreconf ${AUTORECONF}
$AUTORECONF --force --verbose --install
else
echo not running autoreconf...
manual_autoreconf
fi
|