aboutsummaryrefslogtreecommitdiffstats
path: root/meta/recipes-bsp/usbutils/usbutils/iconv.patch
diff options
context:
space:
mode:
authorRoss Burton <ross.burton@intel.com>2017-11-17 18:03:12 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2017-11-29 23:41:38 +0000
commitaddf309165059a113a6d02ea5fb29a0f495c1485 (patch)
tree14fe0ce2d20abd1e776434ab55087e6eb20b94a2 /meta/recipes-bsp/usbutils/usbutils/iconv.patch
parent502cdfe3dd5ea3cd70937c92ff1bd8d6faa829eb (diff)
downloadopenembedded-core-contrib-addf309165059a113a6d02ea5fb29a0f495c1485.tar.gz
usbutils: remove uclibc-specific patch
This patch is only needed for uclibc, which we don't support in oe-core anymore. Signed-off-by: Ross Burton <ross.burton@intel.com>
Diffstat (limited to 'meta/recipes-bsp/usbutils/usbutils/iconv.patch')
-rw-r--r--meta/recipes-bsp/usbutils/usbutils/iconv.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/meta/recipes-bsp/usbutils/usbutils/iconv.patch b/meta/recipes-bsp/usbutils/usbutils/iconv.patch
deleted file mode 100644
index 6455567174..0000000000
--- a/meta/recipes-bsp/usbutils/usbutils/iconv.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-This patch adds support for detecting iconv support using autotools
-uclibc does not have iconv implementation inside libc like glibc, therefore
-the existing checks were not sufficient, it worked for glibc but not for
-uclibc. The new patch portably detects the iconv support and adds the
-libiconv to linker cmdline
-
-This patch should be submitted upstream too
-
-Upstream-Status: Pending
-
-Signed-off-by: Khem Raj <raj.khem@gmail.com>
-
-Index: usbutils-008/configure.ac
-===================================================================
---- usbutils-008.orig/configure.ac
-+++ usbutils-008/configure.ac
-@@ -10,7 +10,9 @@ AC_USE_SYSTEM_EXTENSIONS
- AC_SYS_LARGEFILE
-
- AC_CHECK_HEADERS([byteswap.h])
--AC_CHECK_FUNCS([nl_langinfo iconv])
-+
-+AM_GNU_GETTEXT
-+AM_ICONV
-
- PKG_CHECK_MODULES(LIBUSB, libusb-1.0 >= 1.0.0)
-
-Index: usbutils-008/Makefile.am
-===================================================================
---- usbutils-008.orig/Makefile.am
-+++ usbutils-008/Makefile.am
-@@ -29,7 +29,8 @@ lsusb_CPPFLAGS = \
-
- lsusb_LDADD = \
- $(LIBUSB_LIBS) \
-- $(UDEV_LIBS)
-+ $(UDEV_LIBS) \
-+ $(LIBICONV)
-
- man_MANS = \
- lsusb.8 \