diff options
author | Will Newton <will.newton@gmail.com> | 2009-06-16 21:33:56 +0100 |
---|---|---|
committer | Will Newton <will.newton@gmail.com> | 2009-06-16 21:37:35 +0100 |
commit | 9310e12d5bbb5e10f899672980fb63bd24382bd1 (patch) | |
tree | aa5eed79fde317cf03a9a3f74a9eee4cfc027eb2 /package/multimedia/gstreamer/Config.in | |
parent | 220dca451ef4b2f680ca35caacb29f6a6138068a (diff) |
gstreamer: Allow libxml2 dependency to be configured.
gstreamer uses libxml2 to support the plugin registry and pipeline
load/save features. This change allows the user to build gstreamer without
libxml2 which saves a large amount of space on the target.
Closes #373.
Signed-off-by: Will Newton <will.newton@gmail.com>
Diffstat (limited to 'package/multimedia/gstreamer/Config.in')
-rw-r--r-- | package/multimedia/gstreamer/Config.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/package/multimedia/gstreamer/Config.in b/package/multimedia/gstreamer/Config.in index 213d65010..8c8080173 100644 --- a/package/multimedia/gstreamer/Config.in +++ b/package/multimedia/gstreamer/Config.in @@ -1,8 +1,13 @@ config BR2_PACKAGE_GSTREAMER bool "gstreamer" select BR2_PACKAGE_LIBGLIB2 - select BR2_PACKAGE_LIBXML2 help GStreamer is an open source multimedia framework. http://gstreamer.freedesktop.org/ + +config BR2_PACKAGE_GSTREAMER_LIBXML2 + bool "require libxml2 for registry and load/save" + default y + select BR2_PACKAGE_LIBXML2 + depends on BR2_PACKAGE_GSTREAMER |