X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fmemif%2Fmeson.build;h=680bc8631c34c5a2302f6059c7a0280875216b21;hb=34d5e97e8dca3c60f72d6328fe20b8fad35ad586;hp=bedc973117ec342f7045d2b17c8f95243f97b774;hpb=c41a04958b09535ffc97e993233aec874cc42b1d;p=dpdk.git diff --git a/drivers/net/memif/meson.build b/drivers/net/memif/meson.build index bedc973117..680bc8631c 100644 --- a/drivers/net/memif/meson.build +++ b/drivers/net/memif/meson.build @@ -1,18 +1,14 @@ # SPDX-License-Identifier: BSD-3-Clause # Copyright 2018-2019 Cisco Systems, Inc. All rights reserved. -if host_machine.system() != 'linux' - build = false +if not is_linux + build = false + reason = 'only supported on Linux' endif -sources = files('rte_eth_memif.c', - 'memif_socket.c') - -allow_experimental_apis = true -# Experimantal APIs: -# - rte_intr_callback_unregister_pending -# - rte_mp_action_register -# - rte_mp_reply -# - rte_mp_request_sync +sources = files( + 'memif_socket.c', + 'rte_eth_memif.c', +) deps += ['hash']