git: 091fec118892 - main - route: switch transport protocol to Netlink.
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sat, 08 Apr 2023 19:37:33 UTC
The branch main has been updated by melifaro: URL: https://cgit.FreeBSD.org/src/commit/?id=091fec1188929dab8f1239fa7d2ec41383c4d534 commit 091fec1188929dab8f1239fa7d2ec41383c4d534 Author: Alexander V. Chernikov <melifaro@FreeBSD.org> AuthorDate: 2023-04-08 18:01:25 +0000 Commit: Alexander V. Chernikov <melifaro@FreeBSD.org> CommitDate: 2023-04-08 18:02:57 +0000 route: switch transport protocol to Netlink. All known bugs have been fixed, try to enable Netlink once again. --- sbin/route/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sbin/route/Makefile b/sbin/route/Makefile index 6bae363375a9..ddebd2a1d166 100644 --- a/sbin/route/Makefile +++ b/sbin/route/Makefile @@ -19,7 +19,11 @@ CFLAGS+= -DINET6 .endif CFLAGS+= -I. +.if ${MK_NETLINK_SUPPORT} != "no" +SRCS+= route_netlink.c +.else CFLAGS+=-DWITHOUT_NETLINK +.endif HAS_TESTS= SUBDIR.${MK_TESTS}+= tests