diff options
author | Hugues Fruchet <hugues.fruchet@st.com> | 2017-06-09 14:18:03 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-06-10 23:33:14 +0200 |
commit | f837251785e9389f53d695ddb8a094707865171b (patch) | |
tree | f6451e8e45c1a53043151e4b29824b6b16d46254 /package/libv4l/0004-configure.ac-clarify-configure-summary.patch | |
parent | 0ea16a9fcf1f0748bd30183d9f937a3ea2f2fb27 (diff) | |
download | buildroot-f837251785e9389f53d695ddb8a094707865171b.tar.gz buildroot-f837251785e9389f53d695ddb8a094707865171b.zip |
package/libv4l: allow build of v4l2 utilities on noMMU platforms
This commit removes the dependencies on MMU and dynamic libraries.
In order to build v4l2 utilities such as compliancy tools like
v4l2-compliance or cec-compliance, v4-utils can now be built without
dynamic libraries support.
In that case the v4l-utils parts which depends on dynamic library
support are not built:
- libv4l & libv4lconvert libraries
- libv4l plugins
- rds-ctl utility
- contrib test utilities
The rest of the utilities are built.
Signed-off-by: Hugues Fruchet <hugues.fruchet@st.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/libv4l/0004-configure.ac-clarify-configure-summary.patch')
-rw-r--r-- | package/libv4l/0004-configure.ac-clarify-configure-summary.patch | 73 |
1 files changed, 73 insertions, 0 deletions
diff --git a/package/libv4l/0004-configure.ac-clarify-configure-summary.patch b/package/libv4l/0004-configure.ac-clarify-configure-summary.patch new file mode 100644 index 0000000000..dc6760082b --- /dev/null +++ b/package/libv4l/0004-configure.ac-clarify-configure-summary.patch @@ -0,0 +1,73 @@ +From 069efd194cf4cb225075440ae58137ea6375fb8b Mon Sep 17 00:00:00 2001 +From: Hans Verkuil <hans.verkuil@cisco.com> +Date: Mon, 15 May 2017 15:13:00 +0200 +Subject: [PATCH] configure.ac: clarify configure summary + +Some of the texts are rather obscure and misleading. Fix those. + +Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com> +Signed-off-by: Hugues Fruchet <hugues.fruchet@st.com> +--- + configure.ac | 48 ++++++++++++++++++++++++------------------------ + 1 file changed, 24 insertions(+), 24 deletions(-) + +diff --git a/configure.ac b/configure.ac +index e468b3a..3c70969 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -475,28 +475,28 @@ cat <<EOF + compile time options summary + ============================ + +- Host OS : $host_os +- X11 : $x11_pkgconfig +- GL : $gl_pkgconfig +- glu : $glu_pkgconfig +- libjpeg : $have_jpeg +- libudev : $have_libudev +- pthread : $have_pthread +- QT version : $QT_VERSION +- ALSA support : $USE_ALSA +- +- build dynamic libs : $enable_shared +- build static libs : $enable_static +- +- gconv : $USE_GCONV +- +- libv4l : $USE_LIBV4L +- v4l_plugins : $USE_V4L_PLUGINS +- v4l_wrappers : $USE_V4L_WRAPPERS +- libdvbv5 : $USE_LIBDVBV5 +- dvbv5-daemon : $USE_DVBV5_REMOTE +- v4lutils : $USE_V4LUTILS +- qv4l2 : $USE_QV4L2 +- v4l2-ctrl : $USE_V4L2_CTL +- v4l2-compliance : $USE_V4L2_COMPLIANCE ++ Host OS : $host_os ++ X11 : $x11_pkgconfig ++ GL : $gl_pkgconfig ++ glu : $glu_pkgconfig ++ libjpeg : $have_jpeg ++ libudev : $have_libudev ++ pthread : $have_pthread ++ QT version : $QT_VERSION ++ ALSA support : $USE_ALSA ++ ++ build dynamic libs : $enable_shared ++ build static libs : $enable_static ++ ++ gconv : $USE_GCONV ++ ++ dynamic libv4l : $USE_LIBV4L ++ v4l_plugins : $USE_V4L_PLUGINS ++ v4l_wrappers : $USE_V4L_WRAPPERS ++ libdvbv5 : $USE_LIBDVBV5 ++ dvbv5-daemon : $USE_DVBV5_REMOTE ++ v4lutils : $USE_V4LUTILS ++ qv4l2 : $USE_QV4L2 ++ v4l2-ctl uses libv4l : $USE_V4L2_CTL ++ v4l2-compliance uses libv4l: $USE_V4L2_COMPLIANCE + EOF +-- +1.9.1 + |