mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
* Backport the patch which adds generic architecture detection * Remove the no longer required patch to fix padding for mips64 (From OE-Core rev: 699da7aff18c8b7630dd6da7323081a25ba7a9c2) Signed-off-by: Nathan Rossi <nathan.rossi@xilinx.com> Signed-off-by: Ross Burton <ross.burton@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
30 lines
1.0 KiB
BlitzBasic
30 lines
1.0 KiB
BlitzBasic
SUMMARY = "Asynchronous I/O library"
|
|
DESCRIPTION = "Asynchronous input/output library that uses the kernels native interface"
|
|
HOMEPAGE = "http://lse.sourceforge.net/io/aio.html"
|
|
|
|
LICENSE = "LGPLv2.1+"
|
|
LIC_FILES_CHKSUM = "file://COPYING;md5=d8045f3b8f929c1cb29a1e3fd737b499"
|
|
|
|
SRC_URI = "${DEBIAN_MIRROR}/main/liba/libaio/libaio_${PV}.orig.tar.gz \
|
|
file://generic-arch-dectection-for-padding-defines.patch \
|
|
file://00_arches.patch \
|
|
file://destdir.patch \
|
|
file://libaio_fix_for_x32.patch \
|
|
file://libaio_fix_for_mips_syscalls.patch \
|
|
"
|
|
|
|
SRC_URI[md5sum] = "2a35602e43778383e2f4907a4ca39ab8"
|
|
SRC_URI[sha256sum] = "e019028e631725729376250e32b473012f7cb68e1f7275bfc1bbcdd0f8745f7e"
|
|
|
|
EXTRA_OEMAKE =+ "prefix=${prefix} includedir=${includedir} libdir=${libdir}"
|
|
# Need libc for stack-protector's __stack_chk_fail_local() bounce function
|
|
LDFLAGS_append_x86 = " -lc"
|
|
|
|
do_configure () {
|
|
sed -i 's#LINK_FLAGS=.*#LINK_FLAGS=$(LDFLAGS)#' src/Makefile
|
|
}
|
|
|
|
do_install () {
|
|
oe_runmake install DESTDIR=${D}
|
|
}
|