From 09092bf884bdb6ff25173ca91b2579620fd58b09 Mon Sep 17 00:00:00 2001 From: George Matsumura Date: Wed, 17 Jun 2020 04:20:10 -0600 Subject: [PATCH] cogl: Add dependency on cogl-path The path functions in the cogl API have now been split into a separate one which builds from the same codebase. In order to compile with this change, the new library has to be added as an explicit dependency. Signed-off-by: George Matsumura --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 8b2ab18ec..d5fb4ceda 100644 --- a/configure.ac +++ b/configure.ac @@ -400,7 +400,7 @@ CAIRO_ENABLE_SURFACE_BACKEND(glesv3, OpenGLESv3, no, [ dnl =========================================================================== CAIRO_ENABLE_SURFACE_BACKEND(cogl, Cogl, no, [ - cogl_REQUIRES="cogl-2.0-experimental" + cogl_REQUIRES="cogl-2.0-experimental, cogl-path-2.0-experimental" PKG_CHECK_MODULES(cogl, $cogl_REQUIRES,, [use_cogl="no"]) ])