diff options
author | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-11-15 15:00:43 +0100 |
---|---|---|
committer | Gwenole Beauchesne <gwenole.beauchesne@intel.com> | 2012-11-16 11:57:46 +0100 |
commit | 799f5d37b183630e6c9564e6e693826ea269f824 (patch) | |
tree | 8388c3d9c6cf8f0c9768fc4c164744c66324f2de /gst-libs/gst | |
parent | bb41f601c3c319309915b5a837e5930f7fe59158 (diff) |
Fix build with the GNU gold linker.
In particular, fix libgstvaapi-glx DSO dependencies to include libgstbase
and libgstvideo libs, e.g. for gst_video_buffer_get_overlay_composition().
Diffstat (limited to 'gst-libs/gst')
-rw-r--r-- | gst-libs/gst/vaapi/Makefile.am | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gst-libs/gst/vaapi/Makefile.am b/gst-libs/gst/vaapi/Makefile.am index 7f645c8d..9d7441f6 100644 --- a/gst-libs/gst/vaapi/Makefile.am +++ b/gst-libs/gst/vaapi/Makefile.am @@ -311,12 +311,15 @@ libgstvaapi_glx_@GST_MAJORMINOR@_la_CFLAGS = \ -I$(top_srcdir)/gst-libs \ $(GLIB_CFLAGS) \ $(GST_BASE_CFLAGS) \ + $(GST_VIDEO_CFLAGS) \ $(GL_CFLAGS) \ $(LIBVA_GLX_CFLAGS) \ $(NULL) libgstvaapi_glx_@GST_MAJORMINOR@_la_LIBADD = \ $(GLIB_LIBS) \ + $(GST_BASE_LIBS) \ + $(GST_VIDEO_LIBS) \ $(GL_LIBS) \ $(LIBVA_GLX_LIBS) \ libgstvaapi-x11-@GST_MAJORMINOR@.la \ |