blob: 61327eb36b4dca45897291bb540250d78f885c01 [file] [log] [blame]
Brad Bishop19323692019-04-05 15:28:33 -04001From 99a5784d33ad5e0e6fa00338d2732cbccad7661c Mon Sep 17 00:00:00 2001
Patrick Williamsd8c66bc2016-06-20 12:57:21 -05002From: Khem Raj <raj.khem@gmail.com>
3Date: Wed, 13 Jan 2016 16:08:22 -0800
4Subject: [PATCH] Add STAGING_INCDIR to searchpath for egl headers
5
6bcm_host.h is in standard includedir in sysroot
7add that to header search paths.
8
9Signed-off-by: Khem Raj <raj.khem@gmail.com>
10---
11Upstream-Status: Submitted
12
13 wscript | 3 ++-
14 1 file changed, 2 insertions(+), 1 deletion(-)
15
16diff --git a/wscript b/wscript
Brad Bishop19323692019-04-05 15:28:33 -040017index 195e247..0f6ec53 100644
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050018--- a/wscript
19+++ b/wscript
Brad Bishop19323692019-04-05 15:28:33 -040020@@ -177,9 +177,10 @@ def configure_raspberrypi_device(conf, platform):
Patrick Williamsd8c66bc2016-06-20 12:57:21 -050021 conf.check_cxx(mandatory = 1, lib = ['GLESv2', 'EGL', 'bcm_host'], uselib_store = 'EGL')
22 import os
23 sysroot = conf.options.sysroot + conf.options.prefix
24+ std_include_path = os.path.join(sysroot, 'include')
25 vcos_pthread_path = os.path.join(sysroot, 'include/interface/vcos/pthreads')
26 vcms_host_path = os.path.join(sysroot, 'include/interface/vmcs_host/linux')
27- if not conf.check_cxx(mandatory = 0, header_name = ['vcos_platform_types.h', 'EGL/egl.h', 'bcm_host.h'], includes = [vcos_pthread_path, vcms_host_path], uselib_store = 'EGL'):
28+ if not conf.check_cxx(mandatory = 0, header_name = ['vcos_platform_types.h', 'EGL/egl.h', 'bcm_host.h'], includes = [vcos_pthread_path, vcms_host_path, std_include_path], uselib_store = 'EGL'):
29 conf.fatal('Check if --prefix and --sysroot are set correctly.')
30 conf.env['WITH_APIS'] = []
31 if check_gles2(conf):
32--
Brad Bishop19323692019-04-05 15:28:33 -0400332.19.1