blob: 718d6ba1d34fbb303fbb3ea84b2755532a0953dc (
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
|
echo ""
if test "$use_k3b_debug" = "yes"; then
echo ""
echo "K3b - K3B DEBUGGING ENABLED! THIS ENABLES ADDITIONAL DEBUGGING OUTPUT"
echo "K3b - AND FUNCTIONALITY WHICH IS ONLY INTENDED FOR K3B DEVELOPERS!"
echo "K3b - THIS MAY EVEN SLOW DOWN K3B IN SOME PLACES!"
echo ""
fi
if test "$cdrecord_suid_root" != "yes"; then
echo ""
echo "K3b - Suid root test for cdrecord, cdrdao, and wodim deactivated"
echo "K3b - This is NOT recommended although it might work out fine ;)"
echo ""
fi
if $have_taglib; then
echo "K3b - Audio meta data reading with Taglib: yes"
else
echo "K3b - Audio meta data reading with Taglib: no"
echo "K3b - You are missing the Taglib headers and libraries."
echo "K3b - The mp3 and flac decoder plugins will fall back to"
echo "K3b - using KMetaFileInfo."
fi
echo ""
echo "K3b - Audio resampling:"
if test -n "$LIBSAMPLERATE"; then
echo "K3b - using installed version"
else
echo "K3b - using version bundled with K3b"
fi
echo ""
if test x$arts_available = xyes; then
echo "K3b - Audioplayer available (aRts) yes"
else
echo "K3b - Audioplayer available (aRts) no"
fi
echo ""
if test x$compile_k3bsetup = xyes; then
echo "K3b - Compile K3bSetup 2: yes"
else
echo "K3b - Compile K3bSetup 2: no"
fi
echo ""
if $have_mb; then
echo "K3b - Tag guessing using MusicBrainz yes"
else
echo "K3b - Tag guessing using MusicBrainz no"
if test "$ac_cv_use_musicbrainz" = "yes"; then
echo "K3b - You are missing the musicbrainz headers and libraries."
echo "K3b - K3b will be compiled without support for tag guessing."
fi
fi
|