From 9009a48f03c03b1fdbad930087b86be1d1659fab Mon Sep 17 00:00:00 2001 From: Jonathan Lemon Date: Thu, 19 Jul 2001 15:58:40 +0000 Subject: [PATCH] Unconditinally turn on VLAN support when building fxp as a module, since it may be plugged into a kernel that supports VLANs. If the kernel is not VLAN aware, things will still work as before. Modules don't really have option support, so this is somewhat of a hack. --- sys/modules/fxp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/modules/fxp/Makefile b/sys/modules/fxp/Makefile index 334c5644a4cd..ff765084f9e0 100644 --- a/sys/modules/fxp/Makefile +++ b/sys/modules/fxp/Makefile @@ -7,6 +7,6 @@ SRCS= if_fxp.c opt_bdg.h vlan.h device_if.h bus_if.h pci_if.h miibus_if.h CLEANFILES= vlan.h vlan.h: - touch vlan.h + echo '#define NVLAN 1' > vlan.h .include