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
19 lines
389 B
Makefile
19 lines
389 B
Makefile
_spath= ${SRCTOP}/contrib/ofed/libirdma
|
|
_ipath= ${SRCTOP}/contrib/ofed/include
|
|
lin_inc=/usr/src/sys/compat/linuxkpi/common/include
|
|
.PATH: ${_spath}
|
|
|
|
SHLIBDIR?= /lib
|
|
LIB= irdma
|
|
SHLIB_MAJOR= 1
|
|
|
|
SRCS= \
|
|
irdma_umain.c \
|
|
irdma_uverbs.c \
|
|
irdma_uk.c \
|
|
|
|
LIBADD= ibverbs pthread
|
|
CFLAGS+= -I${_spath} -I${SRCTOP}/contrib/ofed/libibverbs
|
|
VERSION_MAP= ${_spath}/libirdma.map
|
|
|
|
.include <bsd.lib.mk>
|