aboutsummaryrefslogtreecommitdiff
path: root/sys/compat/linux/linux_ipc.c
diff options
context:
space:
mode:
authorJohn Baldwin <jhb@FreeBSD.org>2005-07-29 19:40:39 +0000
committerJohn Baldwin <jhb@FreeBSD.org>2005-07-29 19:40:39 +0000
commit813a5e14ec61e790efc247513f1f84315ab06575 (patch)
tree104a8c7ab650a8b3e4674f18d6b957489e7d57ad /sys/compat/linux/linux_ipc.c
parentbca7902961016f08e145e80739008dcbb4aa0970 (diff)
downloadsrc-813a5e14ec61e790efc247513f1f84315ab06575.tar.gz
src-813a5e14ec61e790efc247513f1f84315ab06575.zip
Move MODULE_DEPEND() statements for SYSVIPC dependencies to linux_ipc.c
so that they aren't duplicated 3 times and are also in the same file as the code that depends on the SYSVIPC modules.
Notes
Notes: svn path=/head/; revision=148540
Diffstat (limited to 'sys/compat/linux/linux_ipc.c')
-rw-r--r--sys/compat/linux/linux_ipc.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/compat/linux/linux_ipc.c b/sys/compat/linux/linux_ipc.c
index 83c018873f1b..0989847e3c84 100644
--- a/sys/compat/linux/linux_ipc.c
+++ b/sys/compat/linux/linux_ipc.c
@@ -815,3 +815,7 @@ linux_shmctl(struct thread *td, struct linux_shmctl_args *args)
return EINVAL;
}
}
+
+MODULE_DEPEND(linux, sysvmsg, 1, 1, 1);
+MODULE_DEPEND(linux, sysvsem, 1, 1, 1);
+MODULE_DEPEND(linux, sysvshm, 1, 1, 1);