[vlc-devel] [PATCH] configure: disable opengl on OS/2
Rémi Denis-Courmont
remi at remlab.net
Tue Nov 12 19:25:58 CET 2013
Le mardi 12 novembre 2013 23:55:57 KO Myung-Hun a écrit :
> ---
> configure.ac | 6 +++++-
> 1 files changed, 5 insertions(+), 1 deletions(-)
Why? TBH, this looks like a work-around more than a solution to whatever the
problem may be.
>
> diff --git a/configure.ac b/configure.ac
> index 59352b8..054a8a1 100644
> --- a/configure.ac
> +++ b/configure.ac
> @@ -2965,7 +2965,11 @@ PKG_CHECK_MODULES([GL], [gl], [
> ])
> GL_LIBS="-lopengl32"
> ], [
> - GL_LIBS="-lGL"
> + AS_IF([test "${SYS}" = "os2"], [
> + have_gl="no"
> + ], [
> + GL_LIBS="-lGL"
> + ])
> ])
> ], [
> have_gl="no"
--
Rémi Denis-Courmont
http://www.remlab.net/
More information about the vlc-devel
mailing list