mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-12-21 16:32:25 +01:00
Add missing dependencies on the SYSVIPC modules.
This commit is contained in:
parent
813a5e14ec
commit
ec1f24a934
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148541
@ -385,6 +385,8 @@ svr4_sys_semsys(td, uap)
|
||||
return EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
MODULE_DEPEND(svr4elf, sysvsem, 1, 1, 1);
|
||||
#endif
|
||||
|
||||
#ifdef SYSVMSG
|
||||
@ -579,6 +581,8 @@ svr4_sys_msgsys(td, uap)
|
||||
return EINVAL;
|
||||
}
|
||||
}
|
||||
|
||||
MODULE_DEPEND(svr4elf, sysvmsg, 1, 1, 1);
|
||||
#endif
|
||||
|
||||
#ifdef SYSVSHM
|
||||
@ -788,4 +792,6 @@ svr4_sys_shmsys(td, uap)
|
||||
return ENOSYS;
|
||||
}
|
||||
}
|
||||
|
||||
MODULE_DEPEND(svr4elf, sysvshm, 1, 1, 1);
|
||||
#endif /* SYSVSHM */
|
||||
|
@ -405,3 +405,7 @@ ibcs2_shmsys(td, uap)
|
||||
}
|
||||
return EINVAL;
|
||||
}
|
||||
|
||||
MODULE_DEPEND(ibcs2, sysvmsg, 1, 1, 1);
|
||||
MODULE_DEPEND(ibcs2, sysvsem, 1, 1, 1);
|
||||
MODULE_DEPEND(ibcs2, sysvshm, 1, 1, 1);
|
||||
|
Loading…
Reference in New Issue
Block a user