Changeset 69021 in vbox
- Timestamp:
- Oct 9, 2017 7:23:26 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 118292
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Additions/linux/drm/Makefile.module.kms
r68760 r69021 22 22 include $(obj)/Makefile.include.header 23 23 24 BUILD = 1 25 24 26 # We want to build on Linux 3.11 and later, plus the 3.10 EL 7.3 and later 25 27 # kernels. This file was added in 3.11 and back-ported to the EL 7.3 kernel. 26 ifneq ($(wildcard $(KERN_INCL)/drm/drm_rect.h),) 28 ifeq ($(wildcard $(KERN_INCL)/drm/drm_rect.h),) 29 BUILD = 30 endif 31 32 # And we do not want to build on EL6, regardless of what may have been 33 # backported. 34 ifneq ($(wildcard /etc/redhat-release),) 35 ifneq ($(shell grep "Enterprise.*release 6" /etc/redhat-release),) 36 BUILD = 37 endif 38 endif 39 40 ifneq ($(BUILD),) 27 41 28 42 MOD_NAME = vboxvideo
Note:
See TracChangeset
for help on using the changeset viewer.