d494babace
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.
28 lines
431 B
Makefile
28 lines
431 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../net
|
|
|
|
KMOD= arcnet
|
|
SRCS= if_arcsubr.c
|
|
SRCS+= opt_inet.h opt_inet6.h opt_ofed.h
|
|
|
|
EXPORT_SYMS= arc_frag_init \
|
|
arc_frag_next \
|
|
arc_ifattach \
|
|
arc_ifdetach \
|
|
arc_input \
|
|
arc_ioctl \
|
|
arc_isphds \
|
|
arc_output \
|
|
arc_storelladdr
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_inet.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
|
|
opt_inet6.h:
|
|
echo "#define INET6 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|