diff options
author | Rene Ladan <rene@FreeBSD.org> | 2018-11-02 13:32:34 +0000 |
---|---|---|
committer | Rene Ladan <rene@FreeBSD.org> | 2018-11-02 13:32:34 +0000 |
commit | 8a502cb2d43b4059a5678ee4539ca03603104107 (patch) | |
tree | 2c2c3d0def8d9d1ad349013f7b532f0065f57789 /graphics/drm-kmod | |
parent | databases/percona57-server: Adapt ${name}_limits to the new resource (diff) |
Remove compatibility code for FreeBSD < 11.2 from all ports.
Simplify some ports where DragonFlyBSD no longer needs to be special-cased.
Submitted by: rene
Reviewed by: bapt, jbeich
Differential Revision: https://reviews.freebsd.org/D17724
Notes
Notes:
svn path=/head/; revision=483807
Diffstat (limited to 'graphics/drm-kmod')
-rw-r--r-- | graphics/drm-kmod/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/graphics/drm-kmod/Makefile b/graphics/drm-kmod/Makefile index 7bbd2a0a162a..aec438abb4c3 100644 --- a/graphics/drm-kmod/Makefile +++ b/graphics/drm-kmod/Makefile @@ -22,9 +22,7 @@ RUN_DEPENDS= ${KMODDIR}/drm.ko:graphics/drm-legacy-kmod IGNORE= legacy kmod not required on less than 12.0 .endif .else -.if ${OSVERSION} < 1101510 -IGNORE= not supported on 11.1 or older, no kernel support -.elif ${OSVERSION} >= 1101510 && ${OSVERSION} < 1200000 +.if ${OSVERSION} >= 1101510 && ${OSVERSION} < 1200000 RUN_DEPENDS= ${KMODDIR}/drm.ko:graphics/drm-stable-kmod .elif ${OSVERSION} >= 1200000 && ${OSVERSION} < 1200045 IGNORE= not supported on older 12, no kernel support |