diff options
author | luigi <luigi@FreeBSD.org> | 2009-12-17 17:44:34 +0000 |
---|---|---|
committer | luigi <luigi@FreeBSD.org> | 2009-12-17 17:44:34 +0000 |
commit | a34926abd3f22c5249f624c78fef78ff0c389299 (patch) | |
tree | 9d9db9219c7e5f7e003ec14c537c7bdd0ffd92c8 /sys/modules/ipfw | |
parent | 1961bff3a991c36b62fb19a76c67e64465197b65 (diff) | |
download | FreeBSD-src-a34926abd3f22c5249f624c78fef78ff0c389299.zip FreeBSD-src-a34926abd3f22c5249f624c78fef78ff0c389299.tar.gz |
Now that ipfw is split into multiple files, we need
to list them all in the Makefile for the module,
otherwise it won't load due to missing symbols.
The problem only affected head with ipfw built as a module.
Reported by David Horn
Diffstat (limited to 'sys/modules/ipfw')
-rw-r--r-- | sys/modules/ipfw/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/modules/ipfw/Makefile b/sys/modules/ipfw/Makefile index dd31d7e..b48d5c5 100644 --- a/sys/modules/ipfw/Makefile +++ b/sys/modules/ipfw/Makefile @@ -6,6 +6,8 @@ KMOD= ipfw SRCS= ip_fw2.c ip_fw_pfil.c +SRCS+= ip_fw_dynamic.c ip_fw_log.c ip_fw_nat.c +SRCS+= ip_fw_sockopt.c ip_fw_table.c SRCS+= opt_inet6.h opt_ipsec.h CFLAGS+= -DIPFIREWALL |