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