diff options
| author | Andrey V. Elsukov <ae@FreeBSD.org> | 2017-02-06 08:49:57 +0000 |
|---|---|---|
| committer | Andrey V. Elsukov <ae@FreeBSD.org> | 2017-02-06 08:49:57 +0000 |
| commit | fcf596178b5f2be36424ecbc1b6a3224b29c91d2 (patch) | |
| tree | 1414e21902027eab50c7a3241e4b14dac39d42e9 /sys/modules/ipsec | |
| parent | 39f8282b4846de6cb20efe49c32b41b635fd3e68 (diff) | |
Notes
Diffstat (limited to 'sys/modules/ipsec')
| -rw-r--r-- | sys/modules/ipsec/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/sys/modules/ipsec/Makefile b/sys/modules/ipsec/Makefile new file mode 100644 index 000000000000..ed061f317768 --- /dev/null +++ b/sys/modules/ipsec/Makefile @@ -0,0 +1,14 @@ +# $FreeBSD$ + +.PATH: ${.CURDIR}/../../net ${.CURDIR}/../../netipsec + +KMOD= ipsec +SRCS= if_ipsec.c ipsec.c ipsec_input.c ipsec_mbuf.c ipsec_mod.c \ + ipsec_output.c xform_ah.c xform_esp.c xform_ipcomp.c \ + opt_inet.h opt_inet6.h opt_ipsec.h opt_sctp.h +SRCS.INET= udpencap.c + +opt_ipsec.h: + @echo "#define IPSEC_SUPPORT 1" > ${.TARGET} + +.include <bsd.kmod.mk> |
