mirror of
https://github.com/opnsense/src.git
synced 2026-06-08 08:12:27 -04:00
It was disabled by default in fe52b7f60e. We planned to (but did not)
remove the option before FreeBSD 14. Remove it now, for FreeBSD 15.
Relnotes: Yes
Reviewed by: imp
Sponsored by: The FreeBSD Foundation
Differential Revision: https://reviews.freebsd.org/D31558
22 lines
271 B
Makefile
22 lines
271 B
Makefile
_spath= ${SRCTOP}/contrib/ofed/libmlx5
|
|
.PATH: ${_spath}
|
|
|
|
SHLIBDIR?= /lib
|
|
LIB= mlx5
|
|
SHLIB_MAJOR= 1
|
|
|
|
SRCS= \
|
|
buf.c \
|
|
cq.c \
|
|
dbrec.c \
|
|
mlx5.c \
|
|
qp.c \
|
|
srq.c \
|
|
verbs.c
|
|
|
|
LIBADD= ibverbs pthread
|
|
CFLAGS+= -I${_spath}
|
|
VERSION_MAP= ${_spath}/libmlx5.map
|
|
|
|
.include <bsd.lib.mk>
|
|
|