[MPlayer-cvslog] r21075 - trunk/configure

Jindrich Makovicka makovick at gmail.com
Mon Nov 20 22:57:13 CET 2006


On Sun, 19 Nov 2006 20:12:29 +0100 (CET)
nplourde <subversion at mplayerhq.hu> wrote:

> Author: nplourde
> Date: Sun Nov 19 20:12:29 2006
> New Revision: 21075
> 
> Modified:
>    trunk/configure
> 
> Log:
> disable x11 gl support on osx

[...]

> $_ld_gl -if (test "$_x11" = yes || win32) && test "$_gl" != no ; then
> +if (test "$_x11" = yes || win32 && test "$_macosx" = no) && test

This disables OpenGL on anything non-Darwin because _macosx
remains set to "auto" there.

if (test "$_x11" = yes || win32) && test "$_macosx" != yes && test
"$_gl" != no ; then

would be better IMO.

-- 
Jindrich Makovicka



More information about the MPlayer-cvslog mailing list