diff options
Diffstat (limited to 'configure.in.bot')
-rw-r--r-- | configure.in.bot | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/configure.in.bot b/configure.in.bot new file mode 100644 index 00000000..9a79138a --- /dev/null +++ b/configure.in.bot @@ -0,0 +1,36 @@ +dnl put here things which have to be done as very last part of configure + +if test "x$with_vorbis" = xcheck && test "x$have_oggvorbis" = xno; then + echo "" + echo "Ogg Vorbis support was not found." + echo "a KFile-plugin for displaying Ogg Vorbis Information" + echo "has been disabled from compilation." + echo "audiocd:/ will be built without Vorbis support." + all_tests=bad +fi + +if test "x$with_taglib" = xcheck && test "x$have_taglib" = xno; then + echo "" + echo "You're missing TagLib. Without TagLib KDE will not support ID3" + echo "tags in mp3 files. You can find taglib either in KDE's Subversion" + echo "repository under trunk/kdesupport/taglib or at" + echo "http://ktown.kde.org/~wheeler/taglib" + all_tests=bad +fi + +if test "x$with_lame" = xcheck && test "x$have_lame" = xno; then + echo "" + echo "lame not found, MP3 support will be built into audiocd:/, but" + echo "if the library isn't present at runtime it will be disabled." + echo "See http://lame.sourceforge.net/" + all_tests=bad +fi + +if test "x$with_akode" = xcheck && test "x$have_akode" = xno; then + echo "" + echo "aKode was not found. Without it the aKode aRts-plugin will not be" + echo "installed, and aRts will be unable to play many music formats." + echo "You can find aKode in KDE's Subversion repository under" + echo "trunk/kdesupport/akode." + all_tests=bad +fi |