mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-06 18:22:32 +00:00
ee353bfc9f
* Fixed transfer list to mark peers that sent bad data once the chunk has successfully passed the hash check. git-svn-id: svn://rakshasa.no/libtorrent/trunk/rtorrent@731 e378c898-3ddf-0310-93e7-cc216c733640
52 lines
975 B
Bash
Executable File
52 lines
975 B
Bash
Executable File
#! /bin/sh
|
|
|
|
echo aclocal...
|
|
(aclocal --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo aclocal not found
|
|
exit 1
|
|
}
|
|
|
|
aclocal -I ./scripts -I . ${ACLOCAL_FLAGS}
|
|
|
|
echo autoheader...
|
|
(autoheader --version) < /dev/null > /dev/null 2>&1 || {
|
|
echo autoheader not found
|
|
exit 1
|
|
}
|
|
|
|
autoheader
|
|
|
|
echo -n "libtoolize... "
|
|
if ( (glibtoolize --version) < /dev/null > /dev/null 2>&1 ); then
|
|
echo "using glibtoolize"
|
|
glibtoolize --automake --copy --force
|
|
|
|
elif ( (libtoolize --version) < /dev/null > /dev/null 2>&1 ) ; then
|
|
echo "using libtoolize"
|
|
libtoolize --automake --copy --force
|
|
|
|
else
|
|
echo "libtoolize nor glibtoolize not found"
|
|
exit 1
|
|
fi
|
|
|
|
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
|