Merge r1.26 from FreeBSD: Now that mem(4) is a kernel module, we need to

depend on it.
main
Eric Anholt 2005-02-19 20:00:55 +00:00
parent 49e19c8d00
commit baeb76076e
1 changed files with 3 additions and 0 deletions

View File

@ -45,6 +45,9 @@ static void drm_cleanup(drm_device_t *dev);
MODULE_VERSION(drm, 1);
MODULE_DEPEND(drm, agp, 1, 1, 1);
MODULE_DEPEND(drm, pci, 1, 1, 1);
#if __FreeBSD_version > 502127
MODULE_DEPEND(drm, mem, 1, 1, 1);
#endif
#endif /* __FreeBSD__ */
#if defined(__NetBSD__) || defined(__OpenBSD__)