mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-05 17:52:29 +00:00
68788e904c
git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@233 e378c898-3ddf-0310-93e7-cc216c733640
46 lines
729 B
Bash
Executable File
46 lines
729 B
Bash
Executable File
#! /bin/sh
|
|
|
|
echo aclocal...
|
|
(aclocal --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo aclocal not found
|
|
exit 1
|
|
}
|
|
|
|
aclocal
|
|
|
|
echo autoheader...
|
|
(autoheader --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo autoheader not found
|
|
exit 1
|
|
}
|
|
|
|
autoheader
|
|
|
|
echo libtoolize...
|
|
(libtoolize --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo libtoolize not found
|
|
exit 1
|
|
}
|
|
|
|
libtoolize --automake --copy --force
|
|
|
|
echo automake...
|
|
(automake --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo automake not found
|
|
exit 1
|
|
}
|
|
|
|
automake --add-missing --copy --gnu
|
|
|
|
echo autoconf...
|
|
(autoconf --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo autoconf not found
|
|
exit 1
|
|
}
|
|
|
|
autoconf
|
|
|
|
echo ready to configure
|
|
|
|
exit 0
|