dpdk: build without linux-headers

this should only be needed if we would compile the kernel modules in the package,
but we ship these as dkms
This commit is contained in:
John 2021-03-06 13:32:04 +01:00
parent 891fd1e87e
commit 918047a6b4

View file

@ -7,7 +7,7 @@ archs="x86_64 aarch64 ppc64le i686 armv7l"
build_style=meson
configure_args="-Denable_kmods=false -Denable_docs=true -Db_lto=false"
hostmakedepends="doxygen python3-Sphinx pkg-config elfutils"
makedepends="libnuma-devel linux-headers jansson-devel libpcap-devel
makedepends="libnuma-devel jansson-devel libpcap-devel
zlib-devel openssl-devel libbsd-devel libelf libmnl"
depends="python3-pyelftools"
short_desc="Data Plane Development Kit"
@ -23,7 +23,7 @@ case "${XBPS_TARGET_MACHINE}" in
armv7l*) configure_args+=" -Dmachine=armv7-a";;
aarch64*) configure_args+=" -Dmachine=armv8-a";;
ppc64le*) configure_args+=" -Dmachine=power8";;
*) configure_args+=" -Dmachine=default"
*) configure_args+=" -Dmachine=default"
esac
CFLAGS="-fcommon"