alsa-tools: add patch for mips since it does not have io.h

[YOCTO #4051]

(From OE-Core rev: 67f1083a10f7435aeb861ba2e872d6498375d927)

Signed-off-by: Saul Wold <sgw@linux.intel.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
Saul Wold 2013-03-20 10:21:27 -07:00 committed by Richard Purdie
parent e7f7fcb831
commit ecb30a910b
2 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,13 @@
Index: alsa-tools-1.0.26.1/hda-verb/hda-verb.c
===================================================================
--- alsa-tools-1.0.26.1.orig/hda-verb/hda-verb.c
+++ alsa-tools-1.0.26.1/hda-verb/hda-verb.c
@@ -13,7 +13,7 @@
#include <ctype.h>
#include <unistd.h>
#include <sys/ioctl.h>
-#ifndef __PPC__
+#if __PPC__ || __MIPS__
#include <sys/io.h>
#endif
#include <sys/types.h>

View File

@ -11,6 +11,7 @@ LIC_FILES_CHKSUM = "file://hdsploader/COPYING;md5=94d55d512a9ba36caa9b7df079bae1
file://ld10k1/COPYING.LIB;md5=7fbc338309ac38fefcd64b04bb903e34"
SRC_URI = "ftp://ftp.alsa-project.org/pub/tools/alsa-tools-${PV}.tar.bz2 \
file://mips_has_no_io_h.patch \
file://autotools.patch"
SRC_URI[md5sum] = "805526ea5d6c40e1f2c94cee86141230"