From 72192d55cc6b213b6304dc805566c60a78d96b02 Mon Sep 17 00:00:00 2001 From: Drew Moseley Date: Tue, 21 Jul 2015 08:19:08 -0400 Subject: mesa-demos: Fix building demos which require GLU. Set glu_enabled when pkg-config detects GLU. This is needed so that HAVE_GLU is properly set to enable the GLU based demos. Signed-off-by: Drew Moseley Signed-off-by: Ross Burton Signed-off-by: Richard Purdie --- .../0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'meta') diff --git a/meta/recipes-graphics/mesa/mesa-demos/0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch b/meta/recipes-graphics/mesa/mesa-demos/0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch index 4b07193a7f..6b58c2b776 100644 --- a/meta/recipes-graphics/mesa/mesa-demos/0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch +++ b/meta/recipes-graphics/mesa/mesa-demos/0003-configure-Allow-to-disable-demos-which-require-GLEW-.patch @@ -66,7 +66,7 @@ index 9445424..bc4c8d1 100644 -DEMO_CFLAGS="$DEMO_CFLAGS $GLU_CFLAGS" -DEMO_LIBS="$DEMO_LIBS $GLU_LIBS" +if test "x$enable_glu" = xyes; then -+ PKG_CHECK_MODULES(GLU, [glu], [], ++ PKG_CHECK_MODULES(GLU, [glu], [glu_enabled=yes], + [AC_CHECK_HEADER([GL/glu.h], + [], + AC_MSG_ERROR([GLU not found])) -- cgit 1.2.3-korg