diff options
author | ru <ru@FreeBSD.org> | 2006-03-20 14:24:58 +0000 |
---|---|---|
committer | ru <ru@FreeBSD.org> | 2006-03-20 14:24:58 +0000 |
commit | 270427ac5b64903635b7c9feb7225e1933d14495 (patch) | |
tree | cbf0f7476670cafdc131d52ec306bf8158483b82 /rescue | |
parent | 97bfff6a7061775735666479d81b810b1a959dcd (diff) | |
download | FreeBSD-src-270427ac5b64903635b7c9feb7225e1933d14495.zip FreeBSD-src-270427ac5b64903635b7c9feb7225e1933d14495.tar.gz |
Extend coverage of the MK_IPX build option to the following:
- <netipx> headers [1]
- IPX library (libipx)
- IPX support in ifconfig(8)
- IPXrouted(8)
- new MK_NCP option
New MK_NCP build option controls:
- <netncp> and <fs/nwfs> headers
- NCP library (libncp)
- ncplist(1) and ncplogin(1)
- mount_nwfs(8)
- ncp and nwfs kernel modules
User knobs: WITHOUT_IPX, WITHOUT_IPX_SUPPORT, WITHOUT_NCP.
[1] <netsmb/netbios.h> unconditionally uses <netipx> headers
so they are still installed. This needs to be dealt with.
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/rescue/Makefile | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/rescue/rescue/Makefile b/rescue/rescue/Makefile index 44e29ab..7ccce9d 100644 --- a/rescue/rescue/Makefile +++ b/rescue/rescue/Makefile @@ -134,14 +134,21 @@ CRUNCH_PROGS_sbin+= ipf # crunchgen does not like C++ programs; this should be fixed someday # CRUNCH_PROGS+= devd -CRUNCH_LIBS+= -lalias -lbsdxml -lcam -lcurses -ldevstat -lipsec -lipx \ - -lgeom -lkiconv -lmd -lreadline -lsbuf -lufs -lz +CRUNCH_LIBS+= -lalias -lbsdxml -lcam -lcurses -ldevstat -lipsec +.if ${MK_IPX} != "no" +CRUNCH_LIBS+= -lipx +.endif +CRUNCH_LIBS+= -lgeom -lkiconv -lmd -lreadline -lsbuf -lufs -lz .if ${MACHINE_ARCH} == "i386" CRUNCH_PROGS_sbin+= sconfig fdisk CRUNCH_ALIAS_bsdlabel= disklabel -#CRUNCH_PROGS+= mount_nwfs mount_smbfs -#CRUNCH_LIBS+= -lncp -lsmb +#.if ${MK_NCP} != "no" +#CRUNCH_PROGS+= mount_nwfs +#CRUNCH_LIBS+= -lncp +#.endif +#CRUNCH_PROGS+= mount_smbfs +#CRUNCH_LIBS+= -lsmb .endif .if ${MACHINE} == "pc98" |