summaryrefslogtreecommitdiffstats
path: root/digikam/configure.in.bot
blob: 8a34d97b52b3dc4efe9f3ab70651bcee4f922df6 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
dnl Put here things to be done at the very end - telling users
dnl about additional packages to install.

echo ""
echo "-- digiKam configure results -------------------"

if test "x$included_sqlite3" = "xno"; then
    if test "x$have_sqlite3" != "xyes"; then
        echo "-- using internal libsqlite3...... NO"
        echo "-- libsqlite3 library found....... NO"
        echo ""
        echo "digiKam have been set to be compiled using shared libsqlite3 library."
        echo "digiKam needs libsqlite3 library development package."
        echo "You need to install the right version first."
        echo "Look depencies description from README for details."
        echo "libsqlite3 website is http://www.sqlite.org"
        echo ""
        all_tests=bad
    else
        echo "-- using internal libsqlite3...... NO"
        echo "-- libsqlite3 library found....... YES"
    fi
else
    echo "-- using internal libsqlite3...... YES"
fi

if test "x$have_libgphoto2" != "xyes"; then
  echo "-- libgphoto2 library found....... NO"
  echo ""
  echo "digiKam needs libgphoto2 library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libgphoto2 website is http://www.gphoto.org"
  echo ""
  all_tests=bad
else
  echo "-- libgphoto2 library found....... YES"
fi

if test "x$have_tiff" != "xyes"; then
  echo "-- libtiff library found.......... NO"
  echo ""
  echo "digiKam needs libtiff library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libtiff website is http://www.remotesensing.org/libtiff"
  echo ""
  all_tests=bad
else
  echo "-- libtiff library found..... .... YES"
fi

if test "x$have_png" != "xyes"; then
  echo "-- libpng library found........... NO"
  echo ""
  echo "digiKam needs libpng library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libpng website is http://www.libpng.org/pub/png/libpng.html"
  echo ""
  all_tests=bad
else
  echo "-- libpng library found........... YES"
fi

if test "x$have_jasper" != "xyes"; then
  echo "-- libjasper library found........ NO"
  echo ""
  echo "digiKam needs libjasper library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libjasper website is http://www.ece.uvic.ca/~mdadams/jasper"
  echo "Important note: libjasper has to be configured with --enable-shared=yes"
  echo "as otherwise the required dynamic libraries are not created."
  echo ""
  all_tests=bad
else
  echo "-- libjasper library found........ YES"
fi

if test "x$have_lcms" != "xyes"; then
  echo "-- liblcms library found.......... NO"
  echo ""
  echo "digiKam needs liblcms library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "liblcms website is http://www.littlecms.com"
  echo ""
  all_tests=bad
else
  echo "-- liblcms library found.......... YES"
fi

if test "x$have_libkipi" != "xyes"; then
  echo "-- libkipi library found.......... NO"
  echo ""
  echo "digiKam needs libkipi library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libkipi website is http://www.kipi-plugins.org"
  echo ""
  all_tests=bad
else
  echo "-- libkipi library found.......... YES"
fi

if test "x$have_libkexiv2" != "xyes"; then
  echo "-- libkexiv2 library found........ NO"
  echo ""
  echo "digiKam needs libkexiv2 library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libkexiv2 website is http://www.kipi-plugins.org"
  echo ""
  all_tests=bad
else
  echo "-- libkexiv2 library found........ YES"
fi

if test "x$have_libkdcraw" != "xyes"; then
  echo "-- libkdcraw library found........ NO"
  echo ""
  echo "digiKam needs libkdcraw library development package."
  echo "You need to install the right version first."
  echo "Look depencies description from README for details."
  echo "libkdcraw website is at http://www.kipi-plugins.org"
  echo ""
  all_tests=bad
else
  echo "-- libkdcraw library found........ YES"
fi

echo "------------------------------------------------"