a bit more careful about interpretation of libXmu and libXi tests for glut-test

svn path=/trunk/boinc/; revision=11623
This commit is contained in:
Reinhard Prix 2006-12-06 00:47:45 +00:00
parent 295255d991
commit 41661c005d
1 changed files with 3 additions and 3 deletions

View File

@ -340,12 +340,12 @@ AC_CHECK_LIB([Xmu], [main], [have_Xmu="yes"], [have_Xmu="no"])
AC_CHECK_LIB([Xi], [main], [have_Xi="yes"], [have_Xi="no"])
AX_CHECK_GLUT
if test "$no_glut" = yes; then
if test "X${no_x}" != "Xyes" -a "$no_glut" = yes; then
if test "$have_Xmu" = no; then
AC_MSG_WARN([Test for glut-dev failed because of missing libXmu-dev!])
AC_MSG_WARN([Test for glut-dev might have failed because of missing libXmu-dev!])
fi
if test "$have_Xi" = no; then
AC_MSG_WARN([Test for glut-dev failed because of missing libXi-dev!])
AC_MSG_WARN([Test for glut-dev might have failed because of missing libXi-dev!])
fi
fi