mirror of https://github.com/BOINC/boinc.git
Fixed glut detection bug in configure script
svn path=/trunk/boinc/; revision=4702
This commit is contained in:
parent
94e06bda19
commit
296aaf1b36
|
@ -20495,8 +20495,9 @@ Bruce 2 Dec 2004
|
||||||
- Modified admin ops pages so that workunit displays transition time,
|
- Modified admin ops pages so that workunit displays transition time,
|
||||||
and target_nresults. Results pages displays deadline not received time
|
and target_nresults. Results pages displays deadline not received time
|
||||||
for results that are still in progress or were never received.
|
for results that are still in progress or were never received.
|
||||||
|
- Fixed glut detection bug in configure script
|
||||||
checkin-notes
|
checkin-notes
|
||||||
|
configure.ac
|
||||||
zip/
|
zip/
|
||||||
boinc_zip.h
|
boinc_zip.h
|
||||||
html/
|
html/
|
||||||
|
|
|
@ -159,9 +159,11 @@ of the BOINC application API library.
|
||||||
|
|
||||||
================================================================================
|
================================================================================
|
||||||
])
|
])
|
||||||
else
|
else
|
||||||
AC_CHECK_HEADERS([gl.h glu.h glut.h glaux.h GL/gl.h GL/glu.h GL/glut.h GL/glaux.h OpenGL/gl.h OpenGL/glu.h OpenGL/glut.h OpenGL/glaux.h GLUT/glut.h MesaGL/gl.h MesaGL/glu.h MesaGL/glut.h MesaGL/glaux.h])
|
AC_CHECK_HEADERS([gl.h glu.h glut.h glaux.h GL/gl.h GL/glu.h GL/glut.h GL/glaux.h OpenGL/gl.h OpenGL/glu.h OpenGL/glut.h OpenGL/glaux.h GLUT/glut.h MesaGL/gl.h MesaGL/glu.h MesaGL/glut.h MesaGL/glaux.h])
|
||||||
|
have_glut=yes
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AM_CONDITIONAL(BUILD_GRAPHICS_API, [ test "$have_glut" = yes ])
|
AM_CONDITIONAL(BUILD_GRAPHICS_API, [ test "$have_glut" = yes ])
|
||||||
dnl --------------------------------------------------------------------------------
|
dnl --------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue