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.
31 lines
477 B
Makefile
31 lines
477 B
Makefile
#
|
|
# This builds network tools.
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
CRUNCH_PROGS_sbin+= route ping
|
|
CRUNCH_PROGS_usr.sbin+= arp
|
|
|
|
# inetd
|
|
CRUNCH_PROGS_usr.sbin+= inetd
|
|
CRUNCH_LIBS+= -lwrap
|
|
|
|
#.if ${MK_INET6_SUPPORT} != "no"
|
|
#CRUNCH_PROGS_sbin+= ping6
|
|
#.endif
|
|
|
|
# netstat
|
|
CRUNCH_PROGS_usr.bin+= netstat
|
|
CRUNCH_LIBS+= -lmemstat -lnetgraph
|
|
|
|
# ifconfig
|
|
CRUNCH_PROGS_sbin+= ifconfig
|
|
|
|
# wlan stuff
|
|
CRUNCH_PROGS_usr.sbin+= wlandebug
|
|
|
|
# tcpdump
|
|
CRUNCH_PROGS_usr.sbin+= tcpdump
|
|
# CRUNCH_LIBS+= -lpcap -lcrypto
|