Added -lXmu and -lXi for glut library.

This commit is contained in:
Jacek Caban 2003-12-03 20:26:43 +00:00 committed by Alexandre Julliard
parent 9142f7730b
commit 5e69f118e8
2 changed files with 4 additions and 4 deletions

4
configure vendored
View File

@ -8007,7 +8007,7 @@ if test "${ac_cv_lib_glut_glutMainLoop+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
ac_check_lib_save_LIBS=$LIBS
LIBS="-lglut $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS $LIBS"
LIBS="-lglut $OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXmu -lXi -lX11 $X_EXTRA_LIBS $LIBS"
cat >conftest.$ac_ext <<_ACEOF
#line $LINENO "configure"
/* confdefs.h. */
@ -8056,7 +8056,7 @@ fi
echo "$as_me:$LINENO: result: $ac_cv_lib_glut_glutMainLoop" >&5
echo "${ECHO_T}$ac_cv_lib_glut_glutMainLoop" >&6
if test $ac_cv_lib_glut_glutMainLoop = yes; then
GLUT_LIBS="-lglut"
GLUT_LIBS="-lglut -lXmu -lXi"
GLUT32FILES='$(GLUT32FILES)'

View File

@ -343,9 +343,9 @@ This prevents linking to OpenGL. Delete the file and restart configure.])
dnl Check for glut32 library.
AC_CHECK_LIB(glut,glutMainLoop,
[AC_SUBST(GLUT_LIBS,"-lglut")
[AC_SUBST(GLUT_LIBS,"-lglut -lXmu -lXi")
AC_SUBST(GLUT32FILES,'$(GLUT32FILES)')],,
$OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lX11 $X_EXTRA_LIBS)
$OPENGL_LIBS $X_LIBS $X_PRE_LIBS -lXmu -lXi -lX11 $X_EXTRA_LIBS)
fi
fi