blob: 15c2c8ced6b67636b9d620e03d2cebdca8407792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
if test x$have_gmp = xno; then
echo ""
echo "----------------------------------------------------------"
echo "KTorrent ERROR:"
echo "KTorrent requires gmp (http://www.swox.com/gmp)"
echo "----------------------------------------------------------"
echo ""
fi
if test x$missing_avahi_warning = xyes; then
echo ""
echo "----------------------------------------------------------"
echo "KTorrent WARNING:"
echo "Cannot find avahi-client with version 0.6.10 or later or"
echo "cannot find avahi-tqt."
echo "The zeroconf plugin will not be installed because of this."
echo "----------------------------------------------------------"
echo ""
fi
|