blob: 8d4e595b4ee36f8000657b9cf2dd6ecf25f98e8a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
if test x$have_gl = xno; 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_glut_h" = "no"; then
echo " - GLUT"
fi
echo "OpenGL support has been disabled."
echo "Some of the screensavers wont be compiled."
echo ""
all_tests=bad
fi
|