diff options
author | Sean D'Epagnier <sean@depagnier.com> | 2008-01-06 22:00:32 +0000 |
---|---|---|
committer | David Schleef <ds@schleef.org> | 2008-01-06 22:00:32 +0000 |
commit | 7a2ab45440df546852490dcb04ecf9a79f8cb41d (patch) | |
tree | 84e654e586e11ca68f105933396bbb6f2d8d75d3 /sys/fbdev/Makefile.am | |
parent | 815666e762e6ff17aea1f505eee67c38193e6b86 (diff) | |
download | gst-plugins-bad-7a2ab45440df546852490dcb04ecf9a79f8cb41d.tar.gz gst-plugins-bad-7a2ab45440df546852490dcb04ecf9a79f8cb41d.tar.bz2 gst-plugins-bad-7a2ab45440df546852490dcb04ecf9a79f8cb41d.zip |
Add fbdev-based video sink. Linux-only. See bug #506549.
Original commit message from CVS:
Patch by: Sean D'Epagnier <sean@depagnier.com>
* configure.ac:
* sys/Makefile.am:
* sys/fbdev/Makefile.am:
* sys/fbdev/gstfbdevsink.c:
* sys/fbdev/gstfbdevsink.h:
Add fbdev-based video sink. Linux-only. See bug #506549.
Diffstat (limited to 'sys/fbdev/Makefile.am')
-rw-r--r-- | sys/fbdev/Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/fbdev/Makefile.am b/sys/fbdev/Makefile.am new file mode 100644 index 00000000..2fd938d0 --- /dev/null +++ b/sys/fbdev/Makefile.am @@ -0,0 +1,14 @@ +plugin_LTLIBRARIES = libgstfbdevsink.la + +libgstfbdevsink_la_SOURCES = gstfbdevsink.c +libgstfbdevsink_la_CFLAGS = \ + $(GST_PLUGINS_BASE_CFLAGS) \ + $(GST_CFLAGS) \ + $(LIBFBDEV_CFLAGS) +libgstfbdevsink_la_LIBADD = \ + $(GST_PLUGINS_BASE_LIBS) \ + $(GST_BASE_LIBS) \ + $(LIBFBDEV_LIBS) +libgstfbdevsink_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) + +noinst_HEADERS = gstfbdevsink.h |