Skip to content

Commit

Permalink
net/mlx: fix meson build with custom dependency path
Browse files Browse the repository at this point in the history
[ upstream commit de38dd8 ]

If rdma-core is not installed in a standard directory of the system,
it is possible to specify the location of the pkgconfig file via
an environment variable:
PKG_CONFIG_PATH=$PKG_CONFIG_PATH:~/rdma-core/build/lib/pkgconfig

In this case, the dependency may become mandatory to specify
for the configuration tests (checking dependency symbols or fields).

Some spacing is also fixed around.

Fixes: 8e49376 ("net/mlx4: add external allocator for Verbs object")
Fixes: 1dd7c7e ("net/mlx4: support meson build")
Fixes: 96d7c62 ("net/mlx5: support meson build")

Suggested-by: Luca Boccassi <bluca@debian.org>
Signed-off-by: Thomas Monjalon <thomas@monjalon.net>
Acked-by: Luca Boccassi <bluca@debian.org>
Acked-by: Matan Azrad <matan@mellanox.com>
  • Loading branch information
tmonjalo authored and kevintraynor committed Nov 22, 2019
1 parent dc0b530 commit eadf2e5
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions drivers/net/mlx4/meson.build
Expand Up @@ -64,17 +64,17 @@ if build
# mlx4_autoconf.h file is still generated.
# input array for meson member search:
# [ "MACRO to define if found", "header for the search",
# "symbol to search","struct member to search" ]
# "symbol to search", "struct member to search" ]
#
has_member_args = [
[ 'HAVE_IBV_MLX4_WQE_LSO_SEG', 'infiniband/mlx4dv.h',
'struct mlx4_wqe_lso_seg', 'mss_hdr_size' ],
]
config = configuration_data()
foreach arg:has_member_args
file_prefix = '#include<' + arg[1] + '>'
file_prefix = '#include <' + arg[1] + '>'
config.set(arg[0], cc.has_member(arg[2], arg[3],
prefix : file_prefix))
prefix: file_prefix, dependencies: libs))
endforeach
configure_file(output : 'mlx4_autoconf.h', configuration : config)
endif
Expand Down
7 changes: 4 additions & 3 deletions drivers/net/mlx5/meson.build
Expand Up @@ -249,12 +249,13 @@ if build
]
config = configuration_data()
foreach arg:has_sym_args
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2]))
config.set(arg[0], cc.has_header_symbol(arg[1], arg[2],
dependencies: libs))
endforeach
foreach arg:has_member_args
file_prefix = '#include<' + arg[1] + '>'
file_prefix = '#include <' + arg[1] + '>'
config.set(arg[0], cc.has_member(arg[2], arg[3],
prefix : file_prefix))
prefix : file_prefix, dependencies: libs))
endforeach
configure_file(output : 'mlx5_autoconf.h', configuration : config)
endif
Expand Down

0 comments on commit eadf2e5

Please sign in to comment.