blob: fbb068dcd0cc43971ec9a05ebceb6c795a64dd4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
echo ""
if test -n "$RESMGR_LIB"; then
echo "K3b - Resmgr support: yes"
else
echo "K3b - Resmgr support: no"
fi
echo ""
if test x$have_hal = xyes; then
echo "K3b - Compile HAL support yes"
else
echo "K3b - Compile HAL support no"
if test "x$ac_cv_use_hal" = "xyes" ; then
echo "K3b - You are missing the HAL >= 0.5 headers and libraries"
echo "K3b - or the DBus Qt bindings."
fi
fi
|