2008-08-03 11:30:03 +04:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
which autoconf
|
|
|
|
if ! test $? -eq 0
|
|
|
|
then
|
|
|
|
echo "error, install autoconf"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
which automake
|
|
|
|
if ! test $? -eq 0
|
|
|
|
then
|
|
|
|
echo "error, install automake"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
which libtool
|
|
|
|
if ! test $? -eq 0
|
|
|
|
then
|
|
|
|
echo "error, install libtool"
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2008-08-15 08:08:51 +04:00
|
|
|
touch configure.ac
|
2008-08-03 11:30:03 +04:00
|
|
|
autoreconf -fvi
|