Make sppp a kld.

This commit is contained in:
John Hay 2001-01-03 08:12:30 +00:00
parent c89863e8b9
commit 121a47e264
2 changed files with 19 additions and 1 deletions

View File

@ -11,7 +11,7 @@ SUBDIR= 3dfx accf_data accf_http agp aha amr an aue \
if_ppp if_sl if_tap if_tun ip6fw ipfilter ipfw ispfw joy kue \
linux lnc md mfs mii mlx msdos ncp netgraph nfs ntfs nullfs \
nwfs pcn portal procfs ${_random} \
rl rp sf sis sk sn sound ste sym syscons sysvipc ti tl twe tx \
rl rp sf sis sk sn sound sppp ste sym syscons sysvipc ti tl twe tx \
udbp ugen uhid ukbd ulpt umapfs umass umodem ums union urio usb \
uscanner \
vinum vn vpo vr vx wb wx xl

18
sys/modules/sppp/Makefile Normal file
View File

@ -0,0 +1,18 @@
# $FreeBSD$
.PATH: ${.CURDIR}/../../net
KMOD= sppp
SRCS= if_spppsubr.c
SRCS+= opt_inet.h opt_inet6.h opt_ipx.h
NOMAN=
opt_inet.h:
echo "#define INET 1" > opt_inet.h
opt_inet6.h:
echo "#define INET6 1" > opt_inet6.h
opt_ipx.h:
echo "#define IPX 1" > opt_ipx.h
.include <bsd.kmod.mk>