<p>On Jan 31, 2013 2:51 AM, "Michel Dänzer" <<a href="mailto:michel@daenzer.net">michel@daenzer.net</a>> wrote:<br>
><br>
> From: Michel Dänzer <<a href="mailto:michel.daenzer@amd.com">michel.daenzer@amd.com</a>><br>
><br>
> GLX uses mapi/glapi/<a href="http://libglapi.la">libglapi.la</a>, which is only built for OpenGL.<br>
><br>
> Signed-off-by: Michel Dänzer <<a href="mailto:michel.daenzer@amd.com">michel.daenzer@amd.com</a>><br>
> ---<br>
>  <a href="http://configure.ac">configure.ac</a> |    8 ++++++++<br>
>  1 file changed, 8 insertions(+)<br>
><br>
> diff --git a/<a href="http://configure.ac">configure.ac</a> b/<a href="http://configure.ac">configure.ac</a><br>
> index cfd52bf..62cc32b 100644<br>
> --- a/<a href="http://configure.ac">configure.ac</a><br>
> +++ b/<a href="http://configure.ac">configure.ac</a><br>
> @@ -701,6 +701,14 @@ if test "x$enable_dri$enable_xlib_glx" = xyesyes; then<br>
>      AC_MSG_ERROR([DRI and Xlib-GLX cannot be built together])<br>
>  fi<br>
><br>
> +# Disable GLX if OpenGL is not enabled<br>
> +if test "x$enable_glx" = xyes -a \<br>
> +        "x$enable_opengl" = xno; then<br>
> +    AC_MSG_WARN([OpenGL not enabled, disabling GLX])<br>
> +    enable_glx=no<br>
> +    enable_xlib_glx=no<br>
> +fi</p>
<p>Seems correct. I might prefer this to error, but warn is probably good enough. The option to disable opengl didn't exist back when these checks were written.</p>
<p>Reviewed-by: Dan Nicholson <<a href="mailto:dbn.lists@gmail.com">dbn.lists@gmail.com</a>></p>