X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fmemif%2Fmeson.build;h=9c3ba432d07dfcd452f9b29579a7520469feff0a;hb=675911d0330b0802e845657c3f4edc5886cf8685;hp=bedc973117ec342f7045d2b17c8f95243f97b774;hpb=c41a04958b09535ffc97e993233aec874cc42b1d;p=dpdk.git diff --git a/drivers/net/memif/meson.build b/drivers/net/memif/meson.build index bedc973117..9c3ba432d0 100644 --- a/drivers/net/memif/meson.build +++ b/drivers/net/memif/meson.build @@ -1,18 +1,12 @@ # 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 - deps += ['hash']