Hook autofs to the build.
This commit is contained in:
parent
7b3b73051a
commit
0793d4d1e4
@ -54,6 +54,8 @@
|
||||
..
|
||||
..
|
||||
fs
|
||||
autofs
|
||||
..
|
||||
devfs
|
||||
..
|
||||
fdescfs
|
||||
|
@ -43,7 +43,7 @@ LSUBDIRS= cam/scsi dev/an dev/bktr dev/firewire dev/ic dev/iicbus \
|
||||
isofs/cd9660 netatm/ipatm netatm/sigpvc netatm/spans netatm/uni \
|
||||
netgraph/atm security/mac_biba security/mac_bsdextended \
|
||||
security/mac_lomac security/mac_mls security/mac_partition \
|
||||
ufs/ffs ufs/ufs
|
||||
ufs/ffs ufs/ufs fs/autofs
|
||||
|
||||
.if !defined(NO_BLUETOOTH)
|
||||
LSUBSUBDIRS= netgraph/bluetooth/include
|
||||
|
@ -1,14 +1,17 @@
|
||||
# $Id: Makefile,v 1.3 2004/08/31 08:49:56 bright Exp $
|
||||
# $Id: Makefile,v 1.4 2004/08/31 16:26:24 bright Exp $
|
||||
# $FreeBSD$
|
||||
|
||||
LIB=autofs
|
||||
SHLIB_MAJOR= 1
|
||||
SHLIB_MINOR= 0
|
||||
WARNS=4
|
||||
CFLAGS+= -I${.CURDIR}/../autofs -Werror
|
||||
CFLAGS+= -g
|
||||
#CFLAGS+= -I${.CURDIR}/../autofs -Werror
|
||||
#CFLAGS+= -g
|
||||
|
||||
#CFLAGS+= -I${.CURDIR}/../../sys
|
||||
|
||||
SRCS= libautofs.c
|
||||
INCS= libautofs.h
|
||||
MAN+= libautofs.3
|
||||
|
||||
.include <bsd.lib.mk>
|
||||
|
@ -43,7 +43,7 @@
|
||||
#include <sys/stat.h>
|
||||
#include <sys/sysctl.h>
|
||||
|
||||
#include <autofs.h>
|
||||
#include <fs/autofs/autofs.h>
|
||||
|
||||
#include "libautofs.h"
|
||||
|
||||
|
@ -744,6 +744,7 @@ options FFS #Fast filesystem
|
||||
options NFSCLIENT #Network File System client
|
||||
|
||||
# The rest are optional:
|
||||
options AUTOFS #Auto File System
|
||||
options CD9660 #ISO 9660 filesystem
|
||||
options FDESCFS #File descriptor filesystem
|
||||
options HPFS #OS/2 File system
|
||||
|
@ -858,6 +858,9 @@ dev/xe/if_xe_pccard.c optional xe pccard
|
||||
dev/zs/zs.c optional zs
|
||||
dev/zs/zs_sbus.c optional zs fhc
|
||||
dev/zs/zs_sbus.c optional zs sbus
|
||||
fs/autofs/autofs_vnops.c optional autofs
|
||||
fs/autofs/autofs_vfsops.c optional autofs
|
||||
fs/autofs/autofs_util.c optional autofs
|
||||
fs/deadfs/dead_vnops.c standard
|
||||
fs/devfs/devfs_devs.c standard
|
||||
fs/devfs/devfs_rule.c standard
|
||||
|
@ -161,6 +161,7 @@ INCLUDE_CONFIG_FILE opt_config.h
|
||||
# time, since the corresponding lkms cannot work if there are any static
|
||||
# dependencies. Unusability is enforced by hiding the defines for the
|
||||
# options in a never-included header.
|
||||
AUTOFS opt_dontuse.h
|
||||
CD9660 opt_dontuse.h
|
||||
CODA opt_dontuse.h
|
||||
EXT2FS opt_dontuse.h
|
||||
|
@ -27,6 +27,7 @@ SUBDIR= ${_3dfx} \
|
||||
ath \
|
||||
${_ath_hal} \
|
||||
aue \
|
||||
autofs \
|
||||
${_awi} \
|
||||
axe \
|
||||
bfe \
|
||||
|
Loading…
Reference in New Issue
Block a user