diff options
author | Saul Wold <sgw@linux.intel.com> | 2014-11-13 14:38:06 -0800 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2015-01-16 23:08:21 +0000 |
commit | 399c0fa9a831f8dbcd7ab94ac5713101d417a1ec (patch) | |
tree | bc040a8e5a134ea97a9b7421755181f178016086 /meta/recipes-bsp/usbutils/usbutils-008 | |
parent | 1f63bd2d9f31e74da5f558ca7097a306b8b3b755 (diff) | |
download | poky-399c0fa9a831f8dbcd7ab94ac5713101d417a1ec.tar.gz |
usbutils: Add version 008
The latest version of usbutil (v008) uses the latest version of udev (v196 or greater)
which is only available as part of the systemd package. So add systemd as a DEPENDS and
REQUIRED_DISTRO_FEATURE.
Add v008 version of iconv.patch
COPYING file is GPLv2, but has newer formatting and address change.
(From OE-Core rev: 3d88f74833fafd5c928c64d9ecc0aa257b7bb0f6)
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-bsp/usbutils/usbutils-008')
-rw-r--r-- | meta/recipes-bsp/usbutils/usbutils-008/iconv.patch | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/meta/recipes-bsp/usbutils/usbutils-008/iconv.patch b/meta/recipes-bsp/usbutils/usbutils-008/iconv.patch new file mode 100644 index 0000000000..6455567174 --- /dev/null +++ b/meta/recipes-bsp/usbutils/usbutils-008/iconv.patch | |||
@@ -0,0 +1,41 @@ | |||
1 | This patch adds support for detecting iconv support using autotools | ||
2 | uclibc does not have iconv implementation inside libc like glibc, therefore | ||
3 | the existing checks were not sufficient, it worked for glibc but not for | ||
4 | uclibc. The new patch portably detects the iconv support and adds the | ||
5 | libiconv to linker cmdline | ||
6 | |||
7 | This patch should be submitted upstream too | ||
8 | |||
9 | Upstream-Status: Pending | ||
10 | |||
11 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
12 | |||
13 | Index: usbutils-008/configure.ac | ||
14 | =================================================================== | ||
15 | --- usbutils-008.orig/configure.ac | ||
16 | +++ usbutils-008/configure.ac | ||
17 | @@ -10,7 +10,9 @@ AC_USE_SYSTEM_EXTENSIONS | ||
18 | AC_SYS_LARGEFILE | ||
19 | |||
20 | AC_CHECK_HEADERS([byteswap.h]) | ||
21 | -AC_CHECK_FUNCS([nl_langinfo iconv]) | ||
22 | + | ||
23 | +AM_GNU_GETTEXT | ||
24 | +AM_ICONV | ||
25 | |||
26 | PKG_CHECK_MODULES(LIBUSB, libusb-1.0 >= 1.0.0) | ||
27 | |||
28 | Index: usbutils-008/Makefile.am | ||
29 | =================================================================== | ||
30 | --- usbutils-008.orig/Makefile.am | ||
31 | +++ usbutils-008/Makefile.am | ||
32 | @@ -29,7 +29,8 @@ lsusb_CPPFLAGS = \ | ||
33 | |||
34 | lsusb_LDADD = \ | ||
35 | $(LIBUSB_LIBS) \ | ||
36 | - $(UDEV_LIBS) | ||
37 | + $(UDEV_LIBS) \ | ||
38 | + $(LIBICONV) | ||
39 | |||
40 | man_MANS = \ | ||
41 | lsusb.8 \ | ||