f5256f8dfd
Since we now always use _FILE_OFFSET_BITS=64 flag when building DPDK, we can remove the Makefile and C-file #defines setting it individually for parts of the build. Signed-off-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: Luca Boccassi <bluca@debian.org>
21 lines
423 B
Meson
21 lines
423 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
# meson file, for building this example as part of a main DPDK build.
|
|
#
|
|
# To build this example as a standalone application with an already-installed
|
|
# DPDK instance, use 'make'
|
|
|
|
if not is_linux
|
|
build = false
|
|
endif
|
|
|
|
if not cc.has_header('linux/virtio_scsi.h')
|
|
build = false
|
|
endif
|
|
|
|
deps += 'vhost'
|
|
sources = files(
|
|
'scsi.c', 'vhost_scsi.c'
|
|
)
|