Re: [Mesa-dev] mesa: don't install GLX files if GLX is not built

2016-07-07 Thread Emil Velikov
On 7 July 2016 at 15:14, Akihiko Odaki wrote: > Hi Emil, > > On 2016-07-07 19:11, Emil Velikov wrote: >> >> [Adding back mesa-dev] > > > Sorry, I mistakenly clicked "Reply" instead of "Reply All". > >> Hi Akihiko Odaki >> >> Before anything, let me say a couple of things about DRI. >> The DRI inte

Re: [Mesa-dev] mesa: don't install GLX files if GLX is not built

2016-07-07 Thread Akihiko Odaki
Hi Emil, On 2016-07-07 19:11, Emil Velikov wrote: [Adding back mesa-dev] Sorry, I mistakenly clicked "Reply" instead of "Reply All". Hi Akihiko Odaki Before anything, let me say a couple of things about DRI. The DRI interface is an abstraction layer where you have winsys (GLX/EGL/other) agn

Re: [Mesa-dev] mesa: don't install GLX files if GLX is not built

2016-07-07 Thread Emil Velikov
[Adding back mesa-dev] Hi Akihiko Odaki Before anything, let me say a couple of things about DRI. The DRI interface is an abstraction layer where you have winsys (GLX/EGL/other) agnostic DRI module and different DRI loaders, each implementing different winsys' API. Thus DRI modules do/should not

Re: [Mesa-dev] mesa: don't install GLX files if GLX is not built

2016-07-05 Thread Emil Velikov
Hi Akihiko Odaki, Thanks for the patch. I have a question below On 26 June 2016 at 02:54, Akihiko Odaki wrote: > Signed-off-by: Akihiko Odaki > > diff --git a/configure.ac b/configure.ac > index cc9bc47..320781a 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -1060,6 +1060,7 @@ xno) >

[Mesa-dev] mesa: don't install GLX files if GLX is not built

2016-06-25 Thread Akihiko Odaki
Signed-off-by: Akihiko Odaki diff --git a/configure.ac b/configure.ac index cc9bc47..320781a 100644 --- a/configure.ac +++ b/configure.ac @@ -1060,6 +1060,7 @@ xno) ;; esac +AM_CONDITIONAL(HAVE_GLX, test "x$enable_glx" != xno) AM_CONDITIONAL(HAVE_DRI_GLX, test "x$enable_glx" = xdri) AM_