diff options
Diffstat (limited to 'x11/nvidia-driver/Makefile')
-rw-r--r-- | x11/nvidia-driver/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/x11/nvidia-driver/Makefile b/x11/nvidia-driver/Makefile index dcc5da991172..317e494ecbdf 100644 --- a/x11/nvidia-driver/Makefile +++ b/x11/nvidia-driver/Makefile @@ -321,6 +321,15 @@ post-patch: .SILENT .if ! ${PORT_OPTIONS:MDOCS} ${REINPLACE_CMD} -E 's/(x11).*/\1/ ; /doc/d' ${WRKSRC}/Makefile .endif +# DMAP_MIN_ADDRESS and DMAP_MAX_ADDRESS is deleted from src at commit +# 4dd828c80828637452a8a4e07a64e294c82e5d8b on main branch. +# Note that there are about 10 days of broken window, as the commit +# does not have corresponding version bump. +.if ${OSVERSION} >= 1500051 + ${REINPLACE_CMD} -e 's/DMAP_MIN_ADDRESS/kva_layout.dmap_low/' \ + -e 's/DMAP_MAX_ADDRESS/kva_layout.dmap_high/' \ + ${WRKSRC}/src/nvidia/nvidia_subr.c +.endif pre-install: @${MKDIR} ${STAGEDIR}${PREFIX}/${MODULESDIR}/drivers \ |