blob: 32613855eea21f5a97264715f00991969f8570e4 (
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
|
# configure.in.bot
# This file is used for printing important messages at the end of configure
echo ""
if test x$basket_warning_gpgme = xyes; then
echo " ===================================="
echo " === BasKet Note Pads - WARNING ==================================="
echo " ===================================="
echo " ="
echo " = BasKet Note Pads requires gpgme version 1.0 and"
echo " = libgpg-error version 1.0."
echo " = BasKet Note Pads will still be built, but there is no encryption."
echo " ="
echo " = Packages you need to install if you want encryption:"
echo " = Suse: gpgme-devel"
echo " = Kubuntu: libgpgme11-dev"
echo " = Fedora Core: gpgme-devel"
echo " = Mandriva: libgpgme11-devel"
echo " = Gentoo: app-crypt/gpgme"
echo " ="
fi
if test x$basket_warning_kontact = xyes; then
echo " ===================================="
echo " === BasKet Note Pads - WARNING ==================================="
echo " ===================================="
echo " ="
echo " = BasKet Note Pads requires tdepim."
echo " = BasKet Note Pads will still be built, but there is no"
echo " = Kontact integration."
echo " ="
echo " = Packages you need to install if you want Kontact integration:"
echo " = Suse: tdepim3-devel"
echo " = Kubuntu: tdepim-dev"
echo " = Fedora Core: tdepim-devel"
echo " = Mandriva: libtdepim2-common-devel & libtdepim2-kontact-devel"
echo " = Gentoo: kde-base/kontact"
echo " ="
fi
|