diff options
author | Matthew Waters <matthew@centricular.com> | 2016-11-17 17:51:54 +1100 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2017-01-10 13:57:37 +1100 |
commit | a030e64a31d7186fefb98ed1298c58fab39369b5 (patch) | |
tree | 14938fa6ad25a509b2b6a0b2ff3709174ea2af04 /pkgconfig | |
parent | b16cd484bf97fb886d0bf48f75881046827a4a66 (diff) |
gl/pkg-config: don't advertise all our dependent libraries as deps
If an application/library explicitly needs a library, it needs to link
against it itself.
Diffstat (limited to 'pkgconfig')
-rw-r--r-- | pkgconfig/gstreamer-gl-uninstalled.pc.in | 2 | ||||
-rw-r--r-- | pkgconfig/gstreamer-gl.pc.in | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/pkgconfig/gstreamer-gl-uninstalled.pc.in b/pkgconfig/gstreamer-gl-uninstalled.pc.in index 1d2955936..a21ac4621 100644 --- a/pkgconfig/gstreamer-gl-uninstalled.pc.in +++ b/pkgconfig/gstreamer-gl-uninstalled.pc.in @@ -10,6 +10,6 @@ Description: Streaming media framework, OpenGL plugins libraries, uninstalled Version: @VERSION@ Requires: gstreamer-base-@GST_API_VERSION@ gstreamer-@GST_API_VERSION@ -Libs: -L${libdir} -lgstgl-@GST_API_VERSION@ @GL_LIBS@ +Libs: -L${libdir} -lgstgl-@GST_API_VERSION@ Cflags: -I@abs_top_srcdir@/gst-libs -I@abs_top_builddir@/gst-libs diff --git a/pkgconfig/gstreamer-gl.pc.in b/pkgconfig/gstreamer-gl.pc.in index 112ce2109..a3a9dc6cc 100644 --- a/pkgconfig/gstreamer-gl.pc.in +++ b/pkgconfig/gstreamer-gl.pc.in @@ -9,5 +9,5 @@ Description: Streaming media framework, OpenGL plugins libraries Version: @VERSION@ Requires: gstreamer-base-@GST_API_VERSION@ gstreamer-@GST_API_VERSION@ -Libs: -L${libdir} -lgstgl-@GST_API_VERSION@ @GL_LIBS@ +Libs: -L${libdir} -lgstgl-@GST_API_VERSION@ Cflags: -I${includedir} -I${libdir}/gstreamer-@GST_API_VERSION@/include @GL_CFLAGS@ |