diff options
author | Phil Edworthy <phil.edworthy@renesas.com> | 2010-11-16 13:28:09 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2010-12-31 00:17:19 +0100 |
commit | 4696e075f6461d467340c78ecd7033301cac1dd7 (patch) | |
tree | 3efadcf94f11b63b5544b0f67e126f0dd186bbab /package/multimedia/gst-plugins-good/gst-plugins-good.mk | |
parent | eeea3ea6a88a8f1c7511abf0b429297a562e7d30 (diff) |
gst-plugins-good: Add option for v4l2
Signed-off-by: Phil Edworthy <phil.edworthy@renesas.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/multimedia/gst-plugins-good/gst-plugins-good.mk')
-rw-r--r-- | package/multimedia/gst-plugins-good/gst-plugins-good.mk | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/multimedia/gst-plugins-good/gst-plugins-good.mk b/package/multimedia/gst-plugins-good/gst-plugins-good.mk index c44bdff50..62d9d4701 100644 --- a/package/multimedia/gst-plugins-good/gst-plugins-good.mk +++ b/package/multimedia/gst-plugins-good/gst-plugins-good.mk @@ -15,7 +15,6 @@ GST_PLUGINS_GOOD_CONF_OPT = \ --disable-sunaudio \ --disable-osx_audio \ --disable-osx_video \ - --disable-gst_v4l2 \ --disable-x \ --disable-xshm \ --disable-xvideo \ @@ -290,6 +289,12 @@ else GST_PLUGINS_GOOD_CONF_OPT += --disable-y4m endif +ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_V4L2),y) +GST_PLUGINS_GOOD_CONF_OPT += --enable-gst_v4l2 +else +GST_PLUGINS_GOOD_CONF_OPT += --disable-gst_v4l2 +endif + ifeq ($(BR2_PACKAGE_GST_PLUGINS_GOOD_PLUGIN_ANNODEX),y) GST_PLUGINS_GOOD_CONF_OPT += --enable-annodex GST_PLUGINS_GOOD_DEPENDENCIES += libxml2 |