aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGerald Pfeifer <gerald@FreeBSD.org>2023-09-11 11:56:12 +0000
committerGerald Pfeifer <gerald@FreeBSD.org>2023-09-11 11:56:12 +0000
commit2f0499ea740fac3715c7699bfbe94028050df6fa (patch)
tree6d641778213dc64414a7fdb6cc72d2786b1453d4
parentc3d8ae1fccb298e6ff3847ad6d401774ec22746a (diff)
downloadports-2f0499ea740fac3715c7699bfbe94028050df6fa.tar.gz
ports-2f0499ea740fac3715c7699bfbe94028050df6fa.zip
emulators/wine-devel: Default to LLVM 15 (instead of 10 or 11)
Port dc3c11a883551eab418c265403c383b27bad8000 from emulators/wine: If the user has set the default version of LLVM to 10 or 11, use LLVM 15 instead (rather than LLVM 12 as before). LLVM 15 is the current default in ports, so one less version to install in case. Plus it's what everyone else uses. And what this port uses in most cases. Approved by: portmgr (blanket)
-rw-r--r--emulators/wine-devel/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/emulators/wine-devel/Makefile b/emulators/wine-devel/Makefile
index a033535ec4d2..c003b452a600 100644
--- a/emulators/wine-devel/Makefile
+++ b/emulators/wine-devel/Makefile
@@ -115,7 +115,7 @@ X11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \
.include <bsd.port.pre.mk>
.if (${LLVM_DEFAULT} == 10 || ${LLVM_DEFAULT} == 11)
-_LLVM_VERSION= 12
+_LLVM_VERSION= 15
.else
_LLVM_VERSION= ${LLVM_DEFAULT}
.endif