diff options
author | mbr <mbr@FreeBSD.org> | 2004-07-06 13:37:18 +0000 |
---|---|---|
committer | mbr <mbr@FreeBSD.org> | 2004-07-06 13:37:18 +0000 |
commit | a77e1f23b2c8c8c3b3fb666099d5f4c638b57b2c (patch) | |
tree | 42b0ef09d56703af1b2576b7764cab4de6a82fcb /usr.sbin | |
parent | e8d276ef5f42bb44674fe603f1f9b61ffca9748e (diff) | |
download | FreeBSD-src-a77e1f23b2c8c8c3b3fb666099d5f4c638b57b2c.zip FreeBSD-src-a77e1f23b2c8c8c3b3fb666099d5f4c638b57b2c.tar.gz |
Unbreak pcfs support
PR: 68679
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/amd/include/config.h | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/usr.sbin/amd/include/config.h b/usr.sbin/amd/include/config.h index b77f1a8..9585bc1 100644 --- a/usr.sbin/amd/include/config.h +++ b/usr.sbin/amd/include/config.h @@ -574,6 +574,9 @@ /* Define to 1 if you have the <msdosfs/msdosfsmount.h> header file. */ /* #undef HAVE_MSDOSFS_MSDOSFSMOUNT_H */ +/* Define to 1 if you have the <fs/msdosfs/msdosfsmount.h> header file. */ +#define HAVE_FS_MSDOSFS_MSDOSFSMOUNT_H 1 + /* Define to 1 if you have the <ndbm.h> header file. */ #define HAVE_NDBM_H 1 @@ -692,19 +695,19 @@ /* #undef HAVE_PCFS_ARGS_T_DSTTIME */ /* Define if `fspec' is member of `pcfs_args_t'. */ -/* #undef HAVE_PCFS_ARGS_T_FSPEC */ +#define HAVE_PCFS_ARGS_T_FSPEC 1 /* Define if `gid' is member of `pcfs_args_t'. */ -/* #undef HAVE_PCFS_ARGS_T_GID */ +#define HAVE_PCFS_ARGS_T_GID 1 /* Define if `mask' is member of `pcfs_args_t'. */ -/* #undef HAVE_PCFS_ARGS_T_MASK */ +#define HAVE_PCFS_ARGS_T_MASK 1 /* Define if `secondswest' is member of `pcfs_args_t'. */ /* #undef HAVE_PCFS_ARGS_T_SECONDSWEST */ /* Define if `uid' is member of `pcfs_args_t'. */ -/* #undef HAVE_PCFS_ARGS_T_UID */ +#define HAVE_PCFS_ARGS_T_UID 1 /* Define to 1 if you have the `plock' function. */ /* #undef HAVE_PLOCK */ @@ -1981,7 +1984,7 @@ #define nfs_args_t struct nfs_args /* Define a type for the pcfs_args structure */ -/* #undef pcfs_args_t */ +#define pcfs_args_t struct msdosfs_args /* Define to `int' if <sys/types.h> does not define. */ /* #undef pid_t */ |