git: 966e279052f3 - main - if_glxgb: fix stand-alone module build
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 05 Jun 2022 18:06:41 UTC
The branch main has been updated by eugen:
URL: https://cgit.FreeBSD.org/src/commit/?id=966e279052f33b1665480e0327c177013cb8205a
commit 966e279052f33b1665480e0327c177013cb8205a
Author: Eugene Grosbein <eugen@FreeBSD.org>
AuthorDate: 2022-06-05 17:54:50 +0000
Commit: Eugene Grosbein <eugen@FreeBSD.org>
CommitDate: 2022-06-05 17:58:40 +0000
if_glxgb: fix stand-alone module build
Fix module build outside of kernel build environment.
MFC after: 3 days
---
sys/modules/qlxgb/Makefile | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sys/modules/qlxgb/Makefile b/sys/modules/qlxgb/Makefile
index cb53184d3154..49a7779d9054 100644
--- a/sys/modules/qlxgb/Makefile
+++ b/sys/modules/qlxgb/Makefile
@@ -33,6 +33,6 @@
KMOD= if_qlxgb
SRCS= qla_os.c qla_dbg.c qla_hw.c qla_misc.c qla_isr.c qla_ioctl.c
-SRCS+= device_if.h bus_if.h pci_if.h
+SRCS+= device_if.h bus_if.h pci_if.h opt_inet.h
.include <bsd.kmod.mk>