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 /kpovmodeler/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 'kpovmodeler/configure.in.bot')
-rw-r--r-- | kpovmodeler/configure.in.bot | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/kpovmodeler/configure.in.bot b/kpovmodeler/configure.in.bot new file mode 100644 index 00000000..da816798 --- /dev/null +++ b/kpovmodeler/configure.in.bot @@ -0,0 +1,37 @@ +if test "$KPOVMODELER_OPENGL" = "no"; then + if test "$have_gl_headers" = "no"; then + echo "" + echo "You are missing" + if test "$ac_cv_header_GL_gl_h" = "no"; then + echo " - OpenGL (mesa)" + fi + if test "$ac_cv_header_GL_glu_h" = "no"; then + echo " - GLU" + fi + if test "$ac_cv_header_GL_glx_h" = "no"; then + echo " - GLX" + fi + echo "KPovModeler will not be compiled." + echo "You can download them from" + echo "http://mesa3d.sf.net" + echo "" + else + echo "" + echo "Your system fails at linking a small OpenGL application!" + echo "KPovModeler will not be compiled." + echo "Check, if OpenGL and GLU are installed correctly on your system." + echo "For more details about this problem, look at config.log after" + echo "the line \"checking for GL\"." + echo "" + fi + all_tests=bad +fi + +if test -z "$LIBFREETYPE_LIBS"; then + echo "" + echo "You're missing freetype2. KPovModeler will not display true type texts." + echo "You can download it from" + echo "http://www.freetype.org" + echo "" + all_tests=bad +fi |