mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
databases/mysql57-server: fix build on current (temporary fix)
- add temporary work around to use llvm from ports on recent currents
This commit is contained in:
parent
0aa71514e2
commit
43e3b39981
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=546322
@ -162,6 +162,17 @@ CMAKE_ARGS+= -DWITH_SSL=${OPENSSLBASE}
|
||||
CXXFLAGS+= -fpermissive
|
||||
.endif
|
||||
|
||||
# mysql57-server fails to compile with llvm11, which was imported to current in r364284
|
||||
# without a version increase (1300109 = r364274).
|
||||
# Until a proper fix is provided, simply use llvm from ports, which probably could be
|
||||
# a backport of amongst other tings:
|
||||
# https://github.com/mysql/mysql-server/commit/08f46b3c00ee70e7ed7825daeb91df2289f80f50
|
||||
.if ${CHOSEN_COMPILER_TYPE} == clang && ${OPSYS} == FreeBSD && ${OSVERSION} >= 1300109
|
||||
BUILD_DEPENDS+= clang${LLVM_DEFAULT}:devel/llvm${LLVM_DEFAULT}
|
||||
CC= ${LOCALBASE}/bin/clang${LLVM_DEFAULT}
|
||||
CXX= ${LOCALBASE}/bin/clang++${LLVM_DEFAULT}
|
||||
.endif
|
||||
|
||||
post-extract:
|
||||
@${RM} -rv ${WRKSRC}/sql/sql_hints.yy.cc ${WRKSRC}/sql/sql_hints.yy.h
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user