From: Peter Kümmel Date: Sun, 1 Jun 2014 10:18:28 +0000 (+0200) Subject: sunxi-mali: use only -I${includedir} as pkg-config Cflags X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=1ff9045f4b62b53f55457f00a80d63e77acd758c;p=buildroot.git sunxi-mali: use only -I${includedir} as pkg-config Cflags Using only -I${includedir} in common practice. Settings only -I${includedir}/GLES2 breaks Qt5's CMake files, because at configure time CMake only searchs the paths reported by pkg-config, and not even /usr/include is used as default. Even though pkg-config strips out standard include path, that's not the case with pkgconf (which we are using) in cross-compilation, which correctly reports the /usr/include dir prefixed with the sysroot. Reviewed-by: "Yann E. MORIN" Signed-off-by: Peter Kümmel Signed-off-by: Thomas Petazzoni --- diff --git a/package/sunxi-mali/egl.pc b/package/sunxi-mali/egl.pc index b062ad1d35..2823209a72 100644 --- a/package/sunxi-mali/egl.pc +++ b/package/sunxi-mali/egl.pc @@ -8,5 +8,5 @@ Description: ARM Mali implementation of EGL Version: 1.4 Requires: Libs: -L${libdir} -lEGL -lGLESv2 -lUMP -Cflags: -I${includedir}/EGL/ -I${includedir} +Cflags: -I${includedir} diff --git a/package/sunxi-mali/glesv2.pc b/package/sunxi-mali/glesv2.pc index 9273678093..4702d1394c 100644 --- a/package/sunxi-mali/glesv2.pc +++ b/package/sunxi-mali/glesv2.pc @@ -8,5 +8,5 @@ Description: ARM Mali implementation of OpenGL ESv2 Version: 2.0 Requires: Libs: -L${libdir} -lGLESv2 -lGLESv1_CM -lUMP -Cflags: -I${includedir}/GLES2 +Cflags: -I${includedir}