diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2002-01-09 11:45:58 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2002-01-09 11:45:58 +0000 |
commit | 16529aa8567ab1848f0e84df72f823a03695814d (patch) | |
tree | bba6c0ca27065dcdb4e8d5d0c3b0f1ac9ec7d445 /sys/modules/smbfs | |
parent | 52a504f88d0ffe375d2be6da101ccf6a08176b54 (diff) | |
download | FreeBSD-src-16529aa8567ab1848f0e84df72f823a03695814d.zip FreeBSD-src-16529aa8567ab1848f0e84df72f823a03695814d.tar.gz |
Use KMODDEPS to document module dependencies on libiconv and
libmchain.
KMODDEPS seems to be a no-op in HEAD, but is required in RELENG_4,
where MODULE_DEPEND seems to be a no-op.
Therefore, this change is harmless in -CURRENT, but will fix the
dependencies when merged to RELENG_4, where they are currently not
registered!
PR: kern/33625
Submitted by: Joe Marcus Clarke <marcus@marcuscom.com>
Diffstat (limited to 'sys/modules/smbfs')
-rw-r--r-- | sys/modules/smbfs/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sys/modules/smbfs/Makefile b/sys/modules/smbfs/Makefile index 800a634..e8d088bb 100644 --- a/sys/modules/smbfs/Makefile +++ b/sys/modules/smbfs/Makefile @@ -7,6 +7,7 @@ ${.CURDIR}/../../fs/smbfs KMOD= smbfs +KMODDEPS= libiconv libmchain SRCS= vnode_if.h \ opt_inet.h opt_ipx.h \ |