2c284d9395
IPX was a network transport protocol in Novell's NetWare network operating system from late 80s and then 90s. The NetWare itself switched to TCP/IP as default transport in 1998. Later, in this century the Novell Open Enterprise Server became successor of Novell NetWare. The last release that claimed to still support IPX was OES 2 in 2007. Routing equipment vendors (e.g. Cisco) discontinued support for IPX in 2011. Thus, IPX won't be supported in FreeBSD 11.0-RELEASE.
27 lines
421 B
Makefile
27 lines
421 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
|
|
KMOD= sppp
|
|
SRCS= if_spppfr.c if_spppsubr.c slcompress.c
|
|
SRCS+= opt_inet.h opt_inet6.h
|
|
|
|
EXPORT_SYMS= sppp_attach \
|
|
sppp_detach \
|
|
sppp_input \
|
|
sppp_ioctl \
|
|
sppp_dequeue \
|
|
sppp_pick \
|
|
sppp_isempty \
|
|
sppp_flush
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_inet.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
opt_inet6.h:
|
|
echo "#define INET6 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|