f2318b73c2
Timer, LPM and Distributor libraries no longer use function versioning and therefore do not need separate build for static and shared version of libraries. This patch removes use_function_versioning from their meson build files and corresponding include from the sources. Fixes:f2fb215843
("timer: remove deprecated code") Fixes:6e5b516761
("distributor: remove deprecated code") Fixes:c381a8d554
("lpm: remove deprecated code") Cc: stable@dpdk.org Signed-off-by: Andrzej Ostruszka <aostruszka@marvell.com> Acked-by: Bruce Richardson <bruce.richardson@intel.com> Acked-by: David Marchand <david.marchand@redhat.com>
10 lines
393 B
Meson
10 lines
393 B
Meson
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2017 Intel Corporation
|
|
|
|
sources = files('rte_lpm.c', 'rte_lpm6.c')
|
|
headers = files('rte_lpm.h', 'rte_lpm6.h')
|
|
# since header files have different names, we can install all vector headers
|
|
# without worrying about which architecture we actually need
|
|
headers += files('rte_lpm_altivec.h', 'rte_lpm_neon.h', 'rte_lpm_sse.h')
|
|
deps += ['hash']
|