You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
710 B
25 lines
710 B
if test -z "$LIBART_LIBS"; then
|
|
echo ""
|
|
echo "You're missing libart 2.3.8. karbon will not be compiled."
|
|
echo "You can download libart from"
|
|
echo "http://svg.kde.org/download.html"
|
|
echo ""
|
|
all_tests=bad
|
|
else
|
|
if test -z "$LIBFONTCONFIG_LIBS"; then
|
|
echo ""
|
|
echo "You're missing fontconfig 1.0.1 or newer. karbon will not have text support."
|
|
echo "You can download fontconfig from http://fontconfig.org/"
|
|
echo ""
|
|
all_tests=bad
|
|
fi
|
|
|
|
if test -z "$LIBFREETYPE_LIBS"; then
|
|
echo ""
|
|
echo "You're missing libfreetype 5.0 or newer. karbon will not have text support."
|
|
echo "You can download libfreetype from http://www.freetype.org/"
|
|
echo ""
|
|
all_tests=bad
|
|
fi
|
|
fi
|