don't need glut anymore

This commit is contained in:
espes 2015-08-16 23:26:20 +10:00
parent dc39687af6
commit c7ef267951
2 changed files with 1 additions and 3 deletions

3
configure vendored
View File

@ -2648,12 +2648,11 @@ libs_softmmu="$libs_softmmu $fdt_libs"
# opengl probe, used by milkymist-tmu2
if test "$opengl" != "no" ; then
if test "$darwin" = "yes" ; then
opengl_libs="-framework OpenGL -framework GLUT"
opengl_libs="-framework OpenGL"
cat > $TMPC << EOF
#include <OpenGL/gl.h>
#include <OpenGL/CGLTypes.h>
#include <OpenGL/CGLCurrent.h>
#include <GLUT/glut.h>
int main(void) { return GL_VERSION != 0; }
EOF
elif test "$mingw32" = "yes" ; then

View File

@ -31,7 +31,6 @@
#include <GL/glew.h>
#include <GL/glx.h>
#include <GL/glxext.h>
#include <GL/glut.h>
#include <X11/Xlib.h>
#include "gloffscreen.h"