X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=drivers%2Fnet%2Fmemif%2Fmeson.build;h=680bc8631c34c5a2302f6059c7a0280875216b21;hb=34d5e97e8dca3c60f72d6328fe20b8fad35ad586;hp=287a30ef29fa69b1cef84f66824e59ddae50fbe9;hpb=09c7e63a71f9f2a31efd7e94458019ea4dc427b6;p=dpdk.git diff --git a/drivers/net/memif/meson.build b/drivers/net/memif/meson.build index 287a30ef29..680bc8631c 100644 --- a/drivers/net/memif/meson.build +++ b/drivers/net/memif/meson.build @@ -1,15 +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 +sources = files( + 'memif_socket.c', + 'rte_eth_memif.c', +) deps += ['hash']