libusb: Add patch to fix issues with libtool 2.2.2

git-svn-id: https://svn.o-hand.com/repos/poky/trunk@4261 311d38ba-8fff-0310-9ca6-ca027cbcb966
This commit is contained in:
Richard Purdie 2008-04-14 22:31:15 +00:00
parent 8bf48dff56
commit 04f6ecb3e6
2 changed files with 22 additions and 2 deletions

View File

@ -0,0 +1,17 @@
For some reason libtool 2.2.2 can't cope with this, LT_LANG(C++) works though.
RP - 14/4/08
Index: libusb-0.1.12/configure.in
===================================================================
--- libusb-0.1.12.orig/configure.in 2008-04-14 22:08:26.000000000 +0100
+++ libusb-0.1.12/configure.in 2008-04-14 22:09:43.000000000 +0100
@@ -149,7 +149,7 @@
fi
# Checks for programs.
-AC_LANG_CPLUSPLUS
+LT_LANG(C++)
AC_PROG_CC
AM_PROG_CC_C_O
AC_PROG_INSTALL

View File

@ -3,9 +3,12 @@ access to USB devices."
HOMEPAGE = "http://libusb.sf.net"
SECTION = "libs"
LICENSE = "LGPL"
PR = "r1"
PR = "r2"
SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.gz"
SRC_URI = "${SOURCEFORGE_MIRROR}/libusb/libusb-${PV}.tar.gz \
file://configure_fix.patch;patch=1"
FILESDIR = "${@os.path.dirname(bb.data.getVar('FILE',d,1))}/libusb"
S = "${WORKDIR}/libusb-${PV}"