[Mesa-dev] [PATCH 2/2] egl: Use pkg-config for Android NDK build

2016-11-10 Thread Gurchetan Singh
It's possible to build Mesa for Android using the traditional autotools workflow [1]. ChromiumOS fetches Android prebuilts and puts them in a sysroot. We now want to use pkg-config to specify the location of system headers and libraries [2]. To enable this, let's add the required pkg-config checks

Re: [Mesa-dev] [PATCH 2/2] egl: Use pkg-config for Android NDK build

2016-11-10 Thread Emil Velikov
On 9 November 2016 at 22:20, Gurchetan Singh wrote: > It's possible to build Mesa for Android using the traditional > autotools workflow. To enable this, let's add the required > pkg-config checks and link against them. > > v2: Bundle pkg-config checks together (Emil) > --- > configure.ac

[Mesa-dev] [PATCH 2/2] egl: Use pkg-config for Android NDK build

2016-11-09 Thread Gurchetan Singh
It's possible to build Mesa for Android using the traditional autotools workflow. To enable this, let's add the required pkg-config checks and link against them. v2: Bundle pkg-config checks together (Emil) --- configure.ac| 1 + src/egl/Makefile.am | 2 ++ 2 files changed, 3 insertions(

Re: [Mesa-dev] [PATCH 2/2] egl: Use pkg-config for Android NDK build

2016-10-28 Thread Emil Velikov
On 27 October 2016 at 17:07, Gurchetan Singh wrote: > It's possible to build Mesa for Android using the traditional > autotools workflow. To enable this, let's add the required > pkg-config checks and link against them. Does the upstream repositories have the files or one requires extra patches ?

[Mesa-dev] [PATCH 2/2] egl: Use pkg-config for Android NDK build

2016-10-27 Thread Gurchetan Singh
It's possible to build Mesa for Android using the traditional autotools workflow. To enable this, let's add the required pkg-config checks and link against them. --- configure.ac| 3 +++ src/egl/Makefile.am | 1 + 2 files changed, 4 insertions(+) diff --git a/configure.ac b/configure.ac