diff options
author | Michael Smith <msmith@songbirdnest.com> | 2009-10-23 18:28:22 -0700 |
---|---|---|
committer | Michael Smith <msmith@songbirdnest.com> | 2009-10-23 18:28:22 -0700 |
commit | 2da535f56fb239ef2c42871ee9b1a43f35ff341d (patch) | |
tree | ae2000d9a101db90966b138732b0231fedc54e27 /sys | |
parent | b0b54d9324f1d926e8924ef0a44981e356e92b27 (diff) |
osxvideo: explicitly link to GST_LIBS
Diffstat (limited to 'sys')
-rw-r--r-- | sys/osxvideo/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/osxvideo/Makefile.am b/sys/osxvideo/Makefile.am index 71fc6206..a9aeeb0e 100644 --- a/sys/osxvideo/Makefile.am +++ b/sys/osxvideo/Makefile.am @@ -5,7 +5,10 @@ libgstosxvideosink_la_SOURCES = osxvideosink.m cocoawindow.m libgstosxvideosink_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) \ $(GST_PLUGINS_BASE_CFLAGS) libgstosxvideosink_la_LIBADD = \ - $(GST_BASE_LIBS) $(GST_PLUGINS_BASE_LIBS) -lgstvideo-$(GST_MAJORMINOR) \ + $(GST_LIBS) \ + $(GST_BASE_LIBS) \ + $(GST_PLUGINS_BASE_LIBS) \ + -lgstvideo-$(GST_MAJORMINOR) \ -lgstinterfaces-$(GST_MAJORMINOR) libgstosxvideosink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -Wl,-framework -Wl,Cocoa -Wl,-framework -Wl,QuickTime -Wl,-framework -Wl,OpenGL |