From 3fd7741172f1368e96ead7a17821e7d7eb6b83ba Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 27 Aug 2019 11:56:49 +0100 Subject: gst, pango: Add missing pkg-config dependencies Adding automated tests for the Debian -dev packages, which link a trivial program to the pkg-config module under test, revealed that these .pc files were not self-contained. Add the necessary dependencies for linking to succeed. Signed-off-by: Simon McVittie --- cogl-gst/cogl-gst-1.0.pc.in | 2 +- cogl-gst/cogl-gst-2.0-experimental.pc.in | 2 +- cogl-pango/cogl-pango-1.0.pc.in | 2 +- cogl-pango/cogl-pango-2.0-experimental.pc.in | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cogl-gst/cogl-gst-1.0.pc.in b/cogl-gst/cogl-gst-1.0.pc.in index b3189ca0..22c2b61a 100644 --- a/cogl-gst/cogl-gst-1.0.pc.in +++ b/cogl-gst/cogl-gst-1.0.pc.in @@ -3,7 +3,7 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ apiversion=1.0 -requires=@COGL_PKG_REQUIRES@ cogl-1.0 +requires=@COGL_PKG_REQUIRES@ @COGL_GST_PKG_REQUIRES@ cogl-1.0 Name: Cogl Description: A GStreamer integration library for Cogl diff --git a/cogl-gst/cogl-gst-2.0-experimental.pc.in b/cogl-gst/cogl-gst-2.0-experimental.pc.in index 3a82751d..5eb1c8f2 100644 --- a/cogl-gst/cogl-gst-2.0-experimental.pc.in +++ b/cogl-gst/cogl-gst-2.0-experimental.pc.in @@ -3,7 +3,7 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ apiversion=@COGL_API_VERSION@ -requires=@COGL_PKG_REQUIRES@ cogl-2.0-experimental +requires=@COGL_PKG_REQUIRES@ @COGL_GST_PKG_REQUIRES@ cogl-2.0-experimental Name: Cogl Description: A GStreamer integration library for Cogl diff --git a/cogl-pango/cogl-pango-1.0.pc.in b/cogl-pango/cogl-pango-1.0.pc.in index e105de90..ee6f1a2f 100644 --- a/cogl-pango/cogl-pango-1.0.pc.in +++ b/cogl-pango/cogl-pango-1.0.pc.in @@ -3,7 +3,7 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ apiversion=1.0 -requires=@COGL_PKG_REQUIRES@ cogl-1.0 +requires=@COGL_PKG_REQUIRES@ @COGL_PANGO_PKG_REQUIRES@ cogl-1.0 Name: Cogl Description: An object oriented GL/GLES Abstraction/Utility Layer diff --git a/cogl-pango/cogl-pango-2.0-experimental.pc.in b/cogl-pango/cogl-pango-2.0-experimental.pc.in index 98eb16ae..33018a34 100644 --- a/cogl-pango/cogl-pango-2.0-experimental.pc.in +++ b/cogl-pango/cogl-pango-2.0-experimental.pc.in @@ -3,7 +3,7 @@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ apiversion=@COGL_API_VERSION@ -requires=@COGL_PKG_REQUIRES@ cogl-2.0-experimental +requires=@COGL_PKG_REQUIRES@ @COGL_PANGO_PKG_REQUIRES@ cogl-2.0-experimental Name: Cogl Description: An object oriented GL/GLES Abstraction/Utility Layer -- cgit v1.2.1 From ec3d788e74ac4e55eb62912b18e5805261f718f7 Mon Sep 17 00:00:00 2001 From: Simon McVittie Date: Tue, 27 Aug 2019 14:57:34 +0100 Subject: cogl-pango-2.0-experimental.pc: Reference correct library name It's libcogl-pango.so, not libcoglpango.so. Signed-off-by: Simon McVittie --- cogl-pango/cogl-pango-2.0-experimental.pc.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogl-pango/cogl-pango-2.0-experimental.pc.in b/cogl-pango/cogl-pango-2.0-experimental.pc.in index 33018a34..233714e0 100644 --- a/cogl-pango/cogl-pango-2.0-experimental.pc.in +++ b/cogl-pango/cogl-pango-2.0-experimental.pc.in @@ -8,6 +8,6 @@ requires=@COGL_PKG_REQUIRES@ @COGL_PANGO_PKG_REQUIRES@ cogl-2.0-experimental Name: Cogl Description: An object oriented GL/GLES Abstraction/Utility Layer Version: @COGL_1_VERSION@ -Libs: -L${libdir} -lcoglpango +Libs: -L${libdir} -lcogl-pango Cflags: -I${includedir}/cogl Requires: ${requires} -- cgit v1.2.1