diff options
author | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
---|---|---|
committer | toma <toma@283d02a7-25f6-0310-bc7c-ecb5cbfe19da> | 2009-11-25 17:56:58 +0000 |
commit | 47d455dd55be855e4cc691c32f687f723d9247ee (patch) | |
tree | 52e236aaa2576bdb3840ebede26619692fed6d7d /ksvg/configure.in.bot | |
download | tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.tar.gz tdegraphics-47d455dd55be855e4cc691c32f687f723d9247ee.zip |
Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features.
BUG:215923
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdegraphics@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'ksvg/configure.in.bot')
-rw-r--r-- | ksvg/configure.in.bot | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ksvg/configure.in.bot b/ksvg/configure.in.bot new file mode 100644 index 00000000..cd823b77 --- /dev/null +++ b/ksvg/configure.in.bot @@ -0,0 +1,25 @@ +if test -z "$LCMS_LIBS" -o -z "$LIBART_LIBS" -o \ + -z "$FREETYPE_LIBS" -o -z "$FRIBIDI_LIBS" -o -z "$FONTCONFIG_LIBS"; then + echo "" + echo "Some of the libraries required for KSVG are missing or too old," + echo "therefore KSVG will not be compiled." + echo "" + echo "If you want to compile KSVG you should install:" + if test -z "$LCMS_LIBS"; then + echo " * lcms 1.09 or newer (http://www.littlecms.com/)" + fi + if test -z "$LIBART_LIBS"; then + echo " * libart 2.3.8 or newer (http://www.levien.com/libart/)" + fi + if test -z "$FREETYPE_LIBS"; then + echo " * freetype 2.0.6 or newer (http://www.freetype.org)" + fi + if test -z "$FONTCONFIG_LIBS"; then + echo " * fontconfig 2.2.0 or newer (http://fontconfig.org)" + fi + if test -z "$FRIBIDI_LIBS"; then + echo " * fribidi 0.10.4 or newer (http://freedesktop.org/Software/FriBidi)" + fi + echo "" + all_tests=bad +fi |