From 44745b9320ac588d31c8e9bcdd29ef1f1ba0caac Mon Sep 17 00:00:00 2001 From: Matthias Braun Date: Sun, 17 Jul 2005 11:36:29 +0000 Subject: [PATCH] --disable-opengl doesn't make sense anymore SVN-Revision: 2724 --- configure.ac | 22 +++------------------- 1 file changed, 3 insertions(+), 19 deletions(-) diff --git a/configure.ac b/configure.ac index 5cd7ac130..18cafa863 100644 --- a/configure.ac +++ b/configure.ac @@ -85,31 +85,15 @@ AC_SUBST([VARIANT]) AC_C_BIGENDIAN() -AC_MSG_CHECKING(whether OpenGL should be used) -AC_ARG_ENABLE(opengl, - AC_HELP_STRING([--disable-opengl], [disable OpenGL support]), - [enable_opengl=$enableval], enable_opengl=yes) -if test "$enable_opengl" = "yes"; then - AC_MSG_RESULT([yes]) -else - AC_MSG_RESULT([no]) -fi - AM_ICONV AC_SUBST([ICONV_LIBS], [$LIBICONV]) dnl =========================================================================== dnl Check for OpenGL -if test "$enable_opengl" = "yes"; then - AX_CHECK_GL -fi -if test "$no_gl" = "yes" -o "$enable_opengl" = "no"; then - GL_AVAILABLE="no" - AC_DEFINE([NOOPENGL],, [Define if opengl should not be used]) -else - GL_AVAILABLE="yes" +AX_CHECK_GL +if test "$no_gl" = "yes"; then + AC_MSG_ERROR([Please install opengl libraries and headers]) fi -AC_SUBST([GL_AVAILABLE]) dnl Check for SDL SDL_VERSION=1.2.4 -- 2.11.0